2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 28 Mar 2016 21:22:26 -0400
|
|
|
|
Subject: [PATCH] EntityPathfindEvent
|
|
|
|
|
|
|
|
Fires when an Entity decides to start moving to a location.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/navigation/FlyingPathNavigation.java b/src/main/java/net/minecraft/world/entity/ai/navigation/FlyingPathNavigation.java
|
2021-11-23 13:15:10 +01:00
|
|
|
index 57a17458dbe1629ebbf58fea9f43f09511b91fb0..dda38820f763f93513b5d83a4239197b48a45238 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ai/navigation/FlyingPathNavigation.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ai/navigation/FlyingPathNavigation.java
|
2021-06-12 04:24:43 +02:00
|
|
|
@@ -35,7 +35,7 @@ public class FlyingPathNavigation extends PathNavigation {
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Path createPath(Entity entity, int distance) {
|
|
|
|
- return this.createPath(entity.blockPosition(), distance);
|
2021-11-04 01:54:11 +01:00
|
|
|
+ return this.createPath(entity.blockPosition(), entity, distance); // Paper - Forward target entity
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/navigation/GroundPathNavigation.java b/src/main/java/net/minecraft/world/entity/ai/navigation/GroundPathNavigation.java
|
2021-11-23 13:15:10 +01:00
|
|
|
index a9fd90d5282bd013e031b9d7481e3f777d6892c6..a6f8ca71ba5d107cfbd24b8e8a225195dc233637 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ai/navigation/GroundPathNavigation.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ai/navigation/GroundPathNavigation.java
|
2021-11-23 13:15:10 +01:00
|
|
|
@@ -69,7 +69,7 @@ public class GroundPathNavigation extends PathNavigation {
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Path createPath(Entity entity, int distance) {
|
|
|
|
- return this.createPath(entity.blockPosition(), distance);
|
2021-11-04 01:54:11 +01:00
|
|
|
+ return this.createPath(entity.blockPosition(), entity, distance); // Paper - Forward target entity
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private int getSurfaceY() {
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/navigation/PathNavigation.java b/src/main/java/net/minecraft/world/entity/ai/navigation/PathNavigation.java
|
2022-03-01 04:25:13 +01:00
|
|
|
index 0ed51ff1607277801ddf307984bb3b776ed74816..66a2813b0b4fc321d24dde4d51dbf2dc81e6149d 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ai/navigation/PathNavigation.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ai/navigation/PathNavigation.java
|
|
|
|
@@ -10,6 +10,7 @@ import net.minecraft.core.BlockPos;
|
|
|
|
import net.minecraft.core.Vec3i;
|
|
|
|
import net.minecraft.network.protocol.game.DebugPackets;
|
2021-06-12 04:24:43 +02:00
|
|
|
import net.minecraft.tags.BlockTags;
|
2021-06-11 14:02:28 +02:00
|
|
|
+import net.minecraft.server.MCUtil;
|
|
|
|
import net.minecraft.util.Mth;
|
|
|
|
import net.minecraft.world.entity.Entity;
|
|
|
|
import net.minecraft.world.entity.Mob;
|
2021-12-10 15:24:07 +01:00
|
|
|
@@ -106,7 +107,13 @@ public abstract class PathNavigation {
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
@Nullable
|
|
|
|
public Path createPath(BlockPos target, int distance) {
|
|
|
|
- return this.createPath(ImmutableSet.of(target), 8, false, distance);
|
2021-11-04 01:54:11 +01:00
|
|
|
+ // Paper start - add target entity parameter
|
|
|
|
+ return this.createPath(target, null, distance);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
2021-11-04 01:54:11 +01:00
|
|
|
+ @Nullable
|
|
|
|
+ public Path createPath(BlockPos target, Entity entity, int distance) {
|
|
|
|
+ return this.createPath(ImmutableSet.of(target), entity, 8, false, distance);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
2021-06-12 04:24:43 +02:00
|
|
|
@Nullable
|
2021-12-10 15:24:07 +01:00
|
|
|
@@ -116,7 +123,7 @@ public abstract class PathNavigation {
|
2021-06-12 04:24:43 +02:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
@Nullable
|
|
|
|
public Path createPath(Entity entity, int distance) {
|
|
|
|
- return this.createPath(ImmutableSet.of(entity.blockPosition()), 16, true, distance);
|
2021-06-12 04:24:43 +02:00
|
|
|
+ return this.createPath(ImmutableSet.of(entity.blockPosition()), entity, 16, true, distance); // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable
|
2021-12-10 15:24:07 +01:00
|
|
|
@@ -126,6 +133,16 @@ public abstract class PathNavigation {
|
2021-06-12 04:24:43 +02:00
|
|
|
|
|
|
|
@Nullable
|
|
|
|
protected Path createPath(Set<BlockPos> positions, int range, boolean useHeadPos, int distance, float followRange) {
|
|
|
|
+ return this.createPath(positions, null, range, useHeadPos, distance, (float) this.mob.getAttributeValue(Attributes.FOLLOW_RANGE));
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
2021-06-12 04:24:43 +02:00
|
|
|
+
|
|
|
|
+ @Nullable
|
|
|
|
+ protected Path createPath(Set<BlockPos> positions, Entity target, int range, boolean useHeadPos, int distance) {
|
|
|
|
+ return this.createPath(positions, target, range, useHeadPos, distance, (float) this.mob.getAttributeValue(Attributes.FOLLOW_RANGE));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Nullable protected Path createPath(Set<BlockPos> positions, Entity target, int range, boolean useHeadPos, int distance, float followRange) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper end
|
2021-06-12 04:24:43 +02:00
|
|
|
if (positions.isEmpty()) {
|
2021-06-11 14:02:28 +02:00
|
|
|
return null;
|
2021-06-12 04:24:43 +02:00
|
|
|
} else if (this.mob.getY() < (double)this.level.getMinBuildHeight()) {
|
2021-12-10 15:24:07 +01:00
|
|
|
@@ -135,6 +152,23 @@ public abstract class PathNavigation {
|
2021-06-12 04:24:43 +02:00
|
|
|
} else if (this.path != null && !this.path.isDone() && positions.contains(this.targetPos)) {
|
2021-06-11 14:02:28 +02:00
|
|
|
return this.path;
|
|
|
|
} else {
|
|
|
|
+ // Paper start - Pathfind event
|
|
|
|
+ boolean copiedSet = false;
|
2021-06-12 04:24:43 +02:00
|
|
|
+ for (BlockPos possibleTarget : positions) {
|
2021-06-17 23:39:36 +02:00
|
|
|
+ if (!new com.destroystokyo.paper.event.entity.EntityPathfindEvent(this.mob.getBukkitEntity(),
|
|
|
|
+ MCUtil.toLocation(this.mob.level, possibleTarget), target == null ? null : target.getBukkitEntity()).callEvent()) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (!copiedSet) {
|
|
|
|
+ copiedSet = true;
|
2021-06-12 04:24:43 +02:00
|
|
|
+ positions = new java.util.HashSet<>(positions);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+ // note: since we copy the set this remove call is safe, since we're iterating over the old copy
|
2021-06-12 04:24:43 +02:00
|
|
|
+ positions.remove(possibleTarget);
|
|
|
|
+ if (positions.isEmpty()) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
this.level.getProfiler().push("pathfind");
|
2021-06-12 04:24:43 +02:00
|
|
|
BlockPos blockPos = useHeadPos ? this.mob.blockPosition().above() : this.mob.blockPosition();
|
|
|
|
int i = (int)(followRange + (float)range);
|