2019-05-14 04:20:58 +02:00
|
|
|
From 435410e1e7631cb7e5b169d2b0a7f6b8bad0992e 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-05-14 04:20:58 +02:00
|
|
|
index 2c9bf7d00..281f5f04f 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-05-14 04:20:58 +02:00
|
|
|
@@ -25,7 +25,7 @@ public class ChunkCache implements IWorldReader {
|
2018-10-05 05:31:01 +02:00
|
|
|
|
2019-04-27 05:05:36 +02:00
|
|
|
for (k = this.a; k <= i; ++k) {
|
|
|
|
for (l = this.b; l <= j; ++l) {
|
|
|
|
- this.c[k - this.a][l - this.b] = world.getChunkAt(k, l, ChunkStatus.FULL, false);
|
|
|
|
+ this.c[k - this.a][l - this.b] = world.getChunkIfLoaded(k, l); // Paper
|
2018-10-05 05:31:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-05-14 04:20:58 +02:00
|
|
|
index d04eb1bbf..4a91e0d8c 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);
|
2019-04-27 05:05:36 +02:00
|
|
|
this.r = this.a(MathHelper.floor(this.p.getValue() * 16.0D));
|
2018-10-05 05:18:46 +02:00
|
|
|
+ setWorld(); // Paper
|
|
|
|
}
|
|
|
|
|
2019-04-27 05:05:36 +02:00
|
|
|
public BlockPosition h() {
|
2019-05-14 04:20:58 +02:00
|
|
|
@@ -177,6 +179,7 @@ public abstract class NavigationAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
}
|
|
|
|
|
2019-04-27 05:05:36 +02:00
|
|
|
public void c() {
|
2018-10-05 05:18:46 +02:00
|
|
|
+ setWorld(); // Paper
|
|
|
|
++this.e;
|
|
|
|
if (this.m) {
|
2019-04-27 05:05:36 +02:00
|
|
|
this.k();
|
2018-10-05 05:18:46 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/Pathfinder.java b/src/main/java/net/minecraft/server/Pathfinder.java
|
2019-05-14 04:20:58 +02:00
|
|
|
index 359d9a11c..262fa5585 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-04-27 05:05:36 +02:00
|
|
|
@@ -12,7 +12,7 @@ public class Pathfinder {
|
2018-10-05 05:18:46 +02:00
|
|
|
private final Set<PathPoint> b = Sets.newHashSet();
|
|
|
|
private final PathPoint[] c = new PathPoint[32];
|
2019-04-27 05:05:36 +02:00
|
|
|
private final int d;
|
|
|
|
- private PathfinderAbstract e;
|
|
|
|
+ private PathfinderAbstract e; public PathfinderAbstract getPathfinder() { return this.e; } // Paper - OBFHELPER
|
2018-10-05 05:18:46 +02:00
|
|
|
|
2019-04-27 05:05:36 +02:00
|
|
|
public Pathfinder(PathfinderAbstract pathfinderabstract, int i) {
|
|
|
|
this.e = pathfinderabstract;
|
2018-10-05 05:18:46 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/PathfinderAbstract.java b/src/main/java/net/minecraft/server/PathfinderAbstract.java
|
2019-05-14 04:20:58 +02:00
|
|
|
index 92df34aba..e773bef61 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-04-27 05:05:36 +02:00
|
|
|
@@ -7,6 +7,7 @@ public abstract class PathfinderAbstract {
|
2019-01-01 04:15:55 +01:00
|
|
|
|
2019-05-14 04:20:58 +02:00
|
|
|
protected IWorldReader a;
|
2018-10-05 05:18:46 +02:00
|
|
|
protected EntityInsentient b;
|
|
|
|
+ public World world; // Paper
|
2019-04-27 05:05:36 +02:00
|
|
|
protected final Int2ObjectMap<PathPoint> c = new Int2ObjectOpenHashMap();
|
2018-10-05 05:18:46 +02:00
|
|
|
protected int d;
|
|
|
|
protected int e;
|
2019-04-27 05:05:36 +02:00
|
|
|
@@ -19,6 +20,7 @@ public abstract class PathfinderAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
|
2019-05-14 04:20:58 +02:00
|
|
|
public void a(IWorldReader iworldreader, EntityInsentient entityinsentient) {
|
|
|
|
this.a = iworldreader;
|
|
|
|
+ if (iworldreader instanceof World) world = (World) iworldreader; // Paper
|
2018-10-05 05:18:46 +02:00
|
|
|
this.b = entityinsentient;
|
2019-04-27 05:05:36 +02:00
|
|
|
this.c.clear();
|
|
|
|
this.d = MathHelper.d(entityinsentient.getWidth() + 1.0F);
|
2018-10-05 05:18:46 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/PathfinderNormal.java b/src/main/java/net/minecraft/server/PathfinderNormal.java
|
2019-05-14 04:20:58 +02:00
|
|
|
index d97166f8f..51991b8c8 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-05-14 04:20:58 +02:00
|
|
|
@@ -355,7 +355,8 @@ public class PathfinderNormal extends PathfinderAbstract {
|
2019-01-01 04:15:55 +01:00
|
|
|
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-05-14 04:20:58 +02:00
|
|
|
@@ -385,9 +386,10 @@ public class PathfinderNormal extends PathfinderAbstract {
|
2019-01-01 04:15:55 +01:00
|
|
|
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-04-27 05:05:36 +02:00
|
|
|
- Block block = iblockaccess.getType(blockposition_pooledblockposition.d(l + i, j, i1 + k)).getBlock();
|
|
|
|
+ Block block = world.getBlockIfLoaded(blockposition_pooledblockposition.d(l + i, j, i1 + k)); // Paper
|
2019-01-01 04:15:55 +01:00
|
|
|
|
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-05-14 04:20:58 +02:00
|
|
|
@@ -421,7 +423,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-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2018-07-15 03:53:17 +02:00
|
|
|
|