2019-07-24 05:20:14 +02:00
|
|
|
From 711732dece46935958e265cecf83aa9e2a70417d Mon Sep 17 00:00:00 2001
|
2019-05-05 04:23:25 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 28 Jul 2018 12:18:27 -0400
|
|
|
|
Subject: [PATCH] Ignore Dead Entities in entityList iteration
|
|
|
|
|
|
|
|
A spigot change delays removal of entities from the entity list.
|
|
|
|
This causes a change in behavior from Vanilla where getEntities type
|
|
|
|
methods will return dead entities that they shouldn't otherwise be doing.
|
|
|
|
|
|
|
|
This will ensure that dead entities are skipped from iteration since
|
|
|
|
they shouldn't of been in the list in the first place.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperCommand.java b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index 360abc05e4..391726d99c 100644
|
2019-05-05 04:23:25 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
|
|
|
@@ -176,6 +176,7 @@ public class PaperCommand extends Command {
|
2019-05-09 16:23:52 +02:00
|
|
|
Collection<Entity> entities = world.entitiesById.values();
|
2019-05-05 04:23:25 +02:00
|
|
|
entities.forEach(e -> {
|
|
|
|
MinecraftKey key = e.getMinecraftKey();
|
|
|
|
+ if (e.shouldBeRemoved) return; // Paper
|
|
|
|
|
|
|
|
MutablePair<Integer, Map<ChunkCoordIntPair, Integer>> info = list.computeIfAbsent(key, k -> MutablePair.of(0, Maps.newHashMap()));
|
|
|
|
ChunkCoordIntPair chunk = new ChunkCoordIntPair(e.getChunkX(), e.getChunkZ());
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index a74e389d14..09e010e670 100644
|
2019-05-05 04:23:25 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2019-05-28 01:01:45 +02:00
|
|
|
@@ -678,6 +678,7 @@ public class Chunk implements IChunkAccess {
|
2019-05-05 04:23:25 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Entity entity1 = (Entity) iterator.next();
|
|
|
|
+ if (entity1.shouldBeRemoved) continue; // Paper
|
|
|
|
|
|
|
|
if (entity1.getBoundingBox().c(axisalignedbb) && entity1 != entity) {
|
|
|
|
if (predicate == null || predicate.test(entity1)) {
|
2019-05-28 01:01:45 +02:00
|
|
|
@@ -715,6 +716,7 @@ public class Chunk implements IChunkAccess {
|
2019-05-05 04:23:25 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Entity entity = (Entity) iterator.next();
|
|
|
|
+ if (entity.shouldBeRemoved) continue; // Paper
|
|
|
|
|
|
|
|
if ((entitytypes == null || entity.getEntityType() == entitytypes) && entity.getBoundingBox().c(axisalignedbb) && predicate.test(entity)) {
|
|
|
|
list.add(entity);
|
2019-05-28 01:01:45 +02:00
|
|
|
@@ -736,6 +738,7 @@ public class Chunk implements IChunkAccess {
|
2019-05-05 04:23:25 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
T t0 = (T) iterator.next(); // CraftBukkit - decompile error
|
|
|
|
+ if (t0.shouldBeRemoved) continue; // Paper
|
|
|
|
|
|
|
|
if (oclass.isInstance(t0) && t0.getBoundingBox().c(axisalignedbb) && (predicate == null || predicate.test(t0))) { // Spigot - instance check
|
|
|
|
list.add(t0);
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index 701090c11e..7d579c119b 100644
|
2019-05-05 04:23:25 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2019-05-06 04:58:04 +02:00
|
|
|
@@ -126,6 +126,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2019-05-05 04:23:25 +02:00
|
|
|
public float D;
|
|
|
|
public float E;
|
2019-05-05 13:32:20 +02:00
|
|
|
public float F;
|
2019-05-05 04:23:25 +02:00
|
|
|
+ public boolean shouldBeRemoved; // Paper
|
|
|
|
public float fallDistance;
|
|
|
|
private float av;
|
|
|
|
private float aw;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index 93d1cf0683..20fb20c2e7 100644
|
2019-05-05 04:23:25 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
2019-07-24 05:20:14 +02:00
|
|
|
@@ -851,7 +851,7 @@ public class WorldServer extends World {
|
2019-05-05 04:23:25 +02:00
|
|
|
|
|
|
|
while (objectiterator.hasNext()) {
|
|
|
|
Entity entity = (Entity) objectiterator.next();
|
2019-07-20 06:01:24 +02:00
|
|
|
-
|
2019-05-05 04:23:25 +02:00
|
|
|
+ if (entity.shouldBeRemoved) continue; // Paper
|
|
|
|
if (entity instanceof EntityInsentient) {
|
|
|
|
EntityInsentient entityinsentient = (EntityInsentient) entity;
|
2019-07-20 06:01:24 +02:00
|
|
|
|
2019-07-24 05:20:14 +02:00
|
|
|
@@ -1144,6 +1144,7 @@ public class WorldServer extends World {
|
2019-05-05 23:39:51 +02:00
|
|
|
entity.origin = entity.getBukkitEntity().getLocation();
|
2019-05-05 04:23:25 +02:00
|
|
|
}
|
2019-05-05 23:39:51 +02:00
|
|
|
// Paper end
|
2019-05-05 04:23:25 +02:00
|
|
|
+ entity.shouldBeRemoved = false; // Paper - shouldn't be removed after being re-added
|
|
|
|
new com.destroystokyo.paper.event.entity.EntityAddToWorldEvent(entity.getBukkitEntity()).callEvent(); // Paper - fire while valid
|
|
|
|
}
|
|
|
|
|
2019-07-24 05:20:14 +02:00
|
|
|
@@ -1157,6 +1158,7 @@ public class WorldServer extends World {
|
2019-05-05 04:23:25 +02:00
|
|
|
this.removeEntityFromChunk(entity);
|
|
|
|
this.entitiesById.remove(entity.getId());
|
|
|
|
this.unregisterEntity(entity);
|
|
|
|
+ entity.shouldBeRemoved = true; // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index 62240fbf92..a4df908bb9 100644
|
2019-05-05 04:23:25 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
2019-07-11 18:59:21 +02:00
|
|
|
@@ -931,6 +931,7 @@ public class CraftWorld implements World {
|
2019-05-05 04:23:25 +02:00
|
|
|
for (Object o : world.entitiesById.values()) {
|
|
|
|
if (o instanceof net.minecraft.server.Entity) {
|
|
|
|
net.minecraft.server.Entity mcEnt = (net.minecraft.server.Entity) o;
|
|
|
|
+ if (mcEnt.shouldBeRemoved) continue; // Paper
|
|
|
|
Entity bukkitEntity = mcEnt.getBukkitEntity();
|
|
|
|
|
|
|
|
// Assuming that bukkitEntity isn't null
|
2019-07-11 18:59:21 +02:00
|
|
|
@@ -950,6 +951,7 @@ public class CraftWorld implements World {
|
2019-05-05 04:23:25 +02:00
|
|
|
for (Object o : world.entitiesById.values()) {
|
|
|
|
if (o instanceof net.minecraft.server.Entity) {
|
|
|
|
net.minecraft.server.Entity mcEnt = (net.minecraft.server.Entity) o;
|
|
|
|
+ if (mcEnt.shouldBeRemoved) continue; // Paper
|
|
|
|
Entity bukkitEntity = mcEnt.getBukkitEntity();
|
|
|
|
|
|
|
|
// Assuming that bukkitEntity isn't null
|
2019-07-11 18:59:21 +02:00
|
|
|
@@ -976,6 +978,7 @@ public class CraftWorld implements World {
|
2019-05-05 04:23:25 +02:00
|
|
|
|
|
|
|
for (Object entity: world.entitiesById.values()) {
|
|
|
|
if (entity instanceof net.minecraft.server.Entity) {
|
|
|
|
+ if (((net.minecraft.server.Entity) entity).shouldBeRemoved) continue; // Paper
|
|
|
|
Entity bukkitEntity = ((net.minecraft.server.Entity) entity).getBukkitEntity();
|
|
|
|
|
|
|
|
if (bukkitEntity == null) {
|
2019-07-11 18:59:21 +02:00
|
|
|
@@ -999,6 +1002,7 @@ public class CraftWorld implements World {
|
2019-05-05 04:23:25 +02:00
|
|
|
|
|
|
|
for (Object entity: world.entitiesById.values()) {
|
|
|
|
if (entity instanceof net.minecraft.server.Entity) {
|
|
|
|
+ if (((net.minecraft.server.Entity) entity).shouldBeRemoved) continue; // Paper
|
|
|
|
Entity bukkitEntity = ((net.minecraft.server.Entity) entity).getBukkitEntity();
|
|
|
|
|
|
|
|
if (bukkitEntity == null) {
|
|
|
|
--
|
2019-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2019-05-05 04:23:25 +02:00
|
|
|
|