2019-01-01 04:15:55 +01:00
|
|
|
From 19ecf92a02579bb9c9518f7a192ca00d7d0c3afe Mon Sep 17 00:00:00 2001
|
2018-07-15 03:53:17 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 31 Mar 2016 19:17:58 -0400
|
2018-10-05 05:31:01 +02:00
|
|
|
Subject: [PATCH] Do not load chunks for Pathfinding
|
2018-07-15 03:53:17 +02:00
|
|
|
|
|
|
|
|
2018-10-05 05:31:01 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkCache.java b/src/main/java/net/minecraft/server/ChunkCache.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 49533ac33..eef3ab73f 100644
|
2018-10-05 05:31:01 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkCache.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkCache.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -26,7 +26,7 @@ public class ChunkCache implements IIBlockAccess {
|
2018-10-05 05:31:01 +02:00
|
|
|
|
2019-01-01 04:15:55 +01:00
|
|
|
for (l = this.a; l <= j; ++l) {
|
|
|
|
for (i1 = this.b; i1 <= k; ++i1) {
|
2018-10-05 05:31:01 +02:00
|
|
|
- this.c[l - this.a][i1 - this.b] = world.getChunkAt(l, i1);
|
|
|
|
+ this.c[l - this.a][i1 - this.b] = world.getChunkIfLoaded(l, i1); // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 05:18:46 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/NavigationAbstract.java b/src/main/java/net/minecraft/server/NavigationAbstract.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 604049b08..716d00afb 100644
|
2018-10-05 05:18:46 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/NavigationAbstract.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/NavigationAbstract.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -22,8 +22,9 @@ public abstract class NavigationAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
protected long n;
|
|
|
|
protected PathfinderAbstract o;
|
|
|
|
private BlockPosition q;
|
|
|
|
- private Pathfinder r;
|
|
|
|
+ private Pathfinder r; public Pathfinder getPathfinder() { return r; } // Paper - OBFHELPER
|
|
|
|
|
|
|
|
+ private void setWorld() { if (getPathfinder() != null && getPathfinder().getPathfinder() != null) getPathfinder().getPathfinder().world = getEntity().world; } // Paper
|
|
|
|
public NavigationAbstract(EntityInsentient entityinsentient, World world) {
|
2019-01-01 04:15:55 +01:00
|
|
|
this.g = Vec3D.a;
|
|
|
|
this.h = Vec3D.a;
|
|
|
|
@@ -32,6 +33,7 @@ public abstract class NavigationAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
this.b = world;
|
|
|
|
this.p = entityinsentient.getAttributeInstance(GenericAttributes.FOLLOW_RANGE);
|
|
|
|
this.r = this.a();
|
|
|
|
+ setWorld(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
public BlockPosition i() {
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -174,6 +176,7 @@ public abstract class NavigationAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void d() {
|
|
|
|
+ setWorld(); // Paper
|
|
|
|
++this.e;
|
|
|
|
if (this.m) {
|
|
|
|
this.l();
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Pathfinder.java b/src/main/java/net/minecraft/server/Pathfinder.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 3085338f0..89d51d471 100644
|
2018-10-05 05:18:46 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Pathfinder.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Pathfinder.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -9,7 +9,7 @@ public class Pathfinder {
|
2018-10-05 05:18:46 +02:00
|
|
|
private final Path a = new Path();
|
|
|
|
private final Set<PathPoint> b = Sets.newHashSet();
|
|
|
|
private final PathPoint[] c = new PathPoint[32];
|
|
|
|
- private PathfinderAbstract d;
|
|
|
|
+ private PathfinderAbstract d; public PathfinderAbstract getPathfinder() { return d; } // Paper - OBFHELPER
|
|
|
|
|
|
|
|
public Pathfinder(PathfinderAbstract pathfinderabstract) {
|
|
|
|
this.d = pathfinderabstract;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PathfinderAbstract.java b/src/main/java/net/minecraft/server/PathfinderAbstract.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 36d7e1d96..d722c8513 100644
|
2018-10-05 05:18:46 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PathfinderAbstract.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PathfinderAbstract.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -4,6 +4,7 @@ public abstract class PathfinderAbstract {
|
|
|
|
|
2018-10-05 05:18:46 +02:00
|
|
|
protected IBlockAccess a;
|
|
|
|
protected EntityInsentient b;
|
|
|
|
+ public World world; // Paper
|
2019-01-01 04:15:55 +01:00
|
|
|
protected final IntHashMap<PathPoint> c = new IntHashMap<>();
|
2018-10-05 05:18:46 +02:00
|
|
|
protected int d;
|
|
|
|
protected int e;
|
|
|
|
@@ -16,6 +17,7 @@ public abstract class PathfinderAbstract {
|
|
|
|
|
|
|
|
public void a(IBlockAccess iblockaccess, EntityInsentient entityinsentient) {
|
|
|
|
this.a = iblockaccess;
|
|
|
|
+ if (iblockaccess instanceof World) world = (World) iblockaccess; // Paper
|
|
|
|
this.b = entityinsentient;
|
|
|
|
this.c.c();
|
|
|
|
this.d = MathHelper.d(entityinsentient.width + 1.0F);
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PathfinderNormal.java b/src/main/java/net/minecraft/server/PathfinderNormal.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index d4eb7f862..3b5ace88d 100644
|
2018-10-05 05:18:46 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PathfinderNormal.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PathfinderNormal.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -327,7 +327,8 @@ public class PathfinderNormal extends PathfinderAbstract {
|
|
|
|
PathType pathtype = this.b(iblockaccess, i, j, k);
|
2018-10-05 05:18:46 +02:00
|
|
|
|
2019-01-01 04:15:55 +01:00
|
|
|
if (pathtype == PathType.OPEN && j >= 1) {
|
|
|
|
- Block block = iblockaccess.getType(new BlockPosition(i, j - 1, k)).getBlock();
|
|
|
|
+ Block block = world.getBlockIfLoaded(new BlockPosition(i, j - 1, k)); // Paper
|
2018-10-05 05:18:46 +02:00
|
|
|
+ if (block == null) return PathType.BLOCKED; // Paper
|
2019-01-01 04:15:55 +01:00
|
|
|
PathType pathtype1 = this.b(iblockaccess, i, j - 1, k);
|
|
|
|
|
2018-10-05 05:18:46 +02:00
|
|
|
pathtype = pathtype1 != PathType.WALKABLE && pathtype1 != PathType.OPEN && pathtype1 != PathType.WATER && pathtype1 != PathType.LAVA ? PathType.WALKABLE : PathType.OPEN;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -353,9 +354,10 @@ public class PathfinderNormal extends PathfinderAbstract {
|
|
|
|
for (int l = -1; l <= 1; ++l) {
|
|
|
|
for (int i1 = -1; i1 <= 1; ++i1) {
|
2018-10-05 05:18:46 +02:00
|
|
|
if (l != 0 || i1 != 0) {
|
2019-01-01 04:15:55 +01:00
|
|
|
- Block block = iblockaccess.getType(blockposition_b.c(l + i, j, i1 + k)).getBlock();
|
|
|
|
+ Block block = world.getBlockIfLoaded(blockposition_b.c(l + i, j, i1 + k)); // Paper
|
|
|
|
|
2018-10-05 05:18:46 +02:00
|
|
|
- if (block == Blocks.CACTUS) {
|
|
|
|
+ if (block == null) pathtype = PathType.BLOCKED; // Paper
|
|
|
|
+ else if (block == Blocks.CACTUS) { // Paper
|
|
|
|
pathtype = PathType.DANGER_CACTUS;
|
|
|
|
} else if (block == Blocks.FIRE) {
|
|
|
|
pathtype = PathType.DANGER_FIRE;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -387,7 +389,8 @@ public class PathfinderNormal extends PathfinderAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
|
2019-01-01 04:15:55 +01:00
|
|
|
protected PathType b(IBlockAccess iblockaccess, int i, int j, int k) {
|
|
|
|
BlockPosition blockposition = new BlockPosition(i, j, k);
|
2018-10-05 05:18:46 +02:00
|
|
|
- IBlockData iblockdata = iblockaccess.getType(blockposition);
|
|
|
|
+ IBlockData iblockdata = world.getTypeIfLoaded(blockposition); // Paper
|
|
|
|
+ if (iblockdata == null) return PathType.BLOCKED; // Paper
|
|
|
|
Block block = iblockdata.getBlock();
|
|
|
|
Material material = iblockdata.getMaterial();
|
2019-01-01 04:15:55 +01:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
--
|
2019-01-01 04:15:55 +01:00
|
|
|
2.20.1
|
2018-07-15 03:53:17 +02:00
|
|
|
|