2020-04-02 23:07:06 +02:00
|
|
|
From d633e665eee335b9034539c79130481e1cdaebf4 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
|
2020-04-02 23:07:06 +02:00
|
|
|
index 53c15c1c0b..29c66b983d 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-12-11 03:43:21 +01:00
|
|
|
@@ -27,7 +27,7 @@ public class ChunkCache implements IBlockAccess, ICollisionAccess {
|
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) {
|
2019-12-11 03:43:21 +01:00
|
|
|
- this.c[k - this.a][l - this.b] = ichunkprovider.a(k, l);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
2020-04-02 23:07:06 +02:00
|
|
|
index 5e7158ba10..39a0c45bb0 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-12-11 03:43:21 +01:00
|
|
|
@@ -28,7 +28,7 @@ public abstract class NavigationAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
private BlockPosition q;
|
2019-07-20 06:01:24 +02:00
|
|
|
private int r;
|
2019-12-11 03:43:21 +01:00
|
|
|
private float s;
|
|
|
|
- private final Pathfinder t;
|
|
|
|
+ private final Pathfinder t; public Pathfinder getPathfinder() { return this.t; } // 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
|
2020-04-02 23:07:06 +02:00
|
|
|
index 6199570618..67c63cfe33 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;
|
2019-12-11 03:43:21 +01:00
|
|
|
- private final PathfinderAbstract e;
|
|
|
|
+ private final 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
|
2020-04-02 23:07:06 +02:00
|
|
|
index ef248ebcc4..4240ca81cb 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-12-11 03:43:21 +01:00
|
|
|
@@ -365,7 +365,8 @@ public class PathfinderNormal extends PathfinderAbstract {
|
|
|
|
PathType pathtype = c(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-12-11 03:43:21 +01:00
|
|
|
PathType pathtype1 = c(iblockaccess, i, j - 1, k);
|
2019-01-01 04:15:55 +01:00
|
|
|
|
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-12-11 03:43:21 +01:00
|
|
|
@@ -402,8 +403,12 @@ public class PathfinderNormal extends PathfinderAbstract {
|
|
|
|
for (int i1 = -1; i1 <= 1; ++i1) {
|
|
|
|
for (int j1 = -1; j1 <= 1; ++j1) {
|
|
|
|
if (l != 0 || j1 != 0) {
|
|
|
|
- Block block = iblockaccess.getType(blockposition_pooledblockposition.d(l + i, i1 + j, j1 + k)).getBlock();
|
|
|
|
-
|
|
|
|
+ // Paper start
|
|
|
|
+ Block block = iblockaccess.getBlockIfLoaded(blockposition_pooledblockposition.d(l + i, i1 + j, j1 + k));
|
|
|
|
+ if (block == null) {
|
|
|
|
+ pathtype = PathType.BLOCKED;
|
|
|
|
+ } else
|
|
|
|
+ // Paper end
|
|
|
|
if (block == Blocks.CACTUS) {
|
2018-10-05 05:18:46 +02:00
|
|
|
pathtype = PathType.DANGER_CACTUS;
|
2019-12-11 03:43:21 +01:00
|
|
|
} else if (block != Blocks.FIRE && block != Blocks.LAVA) {
|
|
|
|
@@ -440,7 +445,8 @@ public class PathfinderNormal extends PathfinderAbstract {
|
2018-10-05 05:18:46 +02:00
|
|
|
|
2019-12-11 03:43:21 +01:00
|
|
|
protected static PathType c(IBlockAccess iblockaccess, int i, int j, int k) {
|
2019-01-01 04:15:55 +01:00
|
|
|
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
|
|
|
--
|
2020-04-02 23:07:06 +02:00
|
|
|
2.25.1
|
2018-07-15 03:53:17 +02:00
|
|
|
|