2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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: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-05-06 11:48:49 +02:00
|
|
|
index 5e7158ba1053ae77fc5c5811d49214e877a5fe30..39a0c45bb0e3d2fcfbcc07192f9e1e61570c922e 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-05-06 11:48:49 +02:00
|
|
|
index 6199570618d4642b7ca7b2472852cec6af0202d9..67c63cfe333e328cbd00ada970bd81efebfe30b6 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-05-06 11:48:49 +02:00
|
|
|
index ef248ebcc4419609836c2025548aefb3afcf27d1..4240ca81cb6debecc54dcf9a550e9d916dfa8f9f 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
|
|
|
|