2019-07-20 06:01:24 +02:00
|
|
|
From 5ff0a28a206a6167b2cc2ed85be0bdbc41633c19 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-07-20 06:01:24 +02:00
|
|
|
index 869e8548c6..beb50d2068 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);
|
2019-05-27 08:14:14 +02:00
|
|
|
+ this.c[k - this.a][l - this.b] = world.getChunkIfLoadedImmediately(k, l); // Paper
|
2018-10-05 05:31:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-27 08:14:14 +02:00
|
|
|
@@ -91,7 +91,7 @@ public class ChunkCache implements IWorldReader {
|
|
|
|
int k = i - this.a;
|
|
|
|
int l = j - this.b;
|
|
|
|
|
|
|
|
- return k >= 0 && k < this.c.length && l >= 0 && l < this.c[k].length;
|
|
|
|
+ return k >= 0 && k < this.c.length && l >= 0 && l < this.c[k].length && this.c[k][l] != null; // Paper - We don't always load chunks
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
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-07-20 06:01:24 +02:00
|
|
|
index 4d04ba8fc6..126c05adc7 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-07-20 06:01:24 +02:00
|
|
|
@@ -27,7 +27,7 @@ public abstract class NavigationAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
protected PathfinderAbstract o;
|
|
|
|
private BlockPosition q;
|
2019-07-20 06:01:24 +02:00
|
|
|
private int r;
|
|
|
|
- private Pathfinder s;
|
|
|
|
+ private Pathfinder s; public Pathfinder getPathfinder() { return this.s; } // Paper - OBFHELPER
|
2018-10-05 05:18:46 +02:00
|
|
|
|
|
|
|
public NavigationAbstract(EntityInsentient entityinsentient, World world) {
|
2019-01-01 04:15:55 +01:00
|
|
|
this.g = Vec3D.a;
|
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-07-20 06:01:24 +02:00
|
|
|
index 30b4569a39..0cec80ec7d 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-07-20 06:01:24 +02:00
|
|
|
@@ -19,7 +19,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/PathfinderNormal.java b/src/main/java/net/minecraft/server/PathfinderNormal.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index 617c29a58a..45fd135034 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();
|
2019-05-27 08:14:14 +02:00
|
|
|
+ Block block = iblockaccess.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();
|
2019-05-27 08:14:14 +02:00
|
|
|
+ Block block = iblockaccess.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);
|
2019-05-27 08:14:14 +02:00
|
|
|
+ IBlockData iblockdata = iblockaccess.getTypeIfLoaded(blockposition); // Paper
|
2018-10-05 05:18:46 +02:00
|
|
|
+ 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-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2018-07-15 03:53:17 +02:00
|
|
|
|