2016-08-28 01:41:58 +02:00
|
|
|
From e13c2b098cff6523e0f9bdaabe9fbb759c7b173f Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Joseph Hirschfeld <joe@ibj.io>
|
|
|
|
Date: Thu, 3 Mar 2016 02:39:54 -0600
|
|
|
|
Subject: [PATCH] Change implementation of (tile)entity removal list
|
|
|
|
|
|
|
|
|
2016-04-02 04:08:40 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2016-08-11 22:07:07 +02:00
|
|
|
index 3228932..cc484dc 100644
|
2016-04-02 04:08:40 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2016-08-11 22:07:07 +02:00
|
|
|
@@ -120,10 +120,10 @@ public abstract class Entity implements ICommandListener {
|
2016-04-02 04:08:40 +02:00
|
|
|
private static final DataWatcherObject<Boolean> aB = DataWatcher.a(Entity.class, DataWatcherRegistry.h);
|
2016-05-12 04:07:46 +02:00
|
|
|
private static final DataWatcherObject<Boolean> aC = DataWatcher.a(Entity.class, DataWatcherRegistry.h);
|
2016-06-09 05:57:14 +02:00
|
|
|
private static final DataWatcherObject<Boolean> aD = DataWatcher.a(Entity.class, DataWatcherRegistry.h);
|
|
|
|
- public boolean ab;
|
2016-04-02 04:08:40 +02:00
|
|
|
- public int ac;
|
|
|
|
- public int ad;
|
2016-06-09 05:57:14 +02:00
|
|
|
- public int ae;
|
|
|
|
+ public boolean ab; public boolean isAddedToChunk() { return ab; } // Paper - OBFHELPER
|
|
|
|
+ public int ac; public int getChunkX() { return ac; } // Paper - OBFHELPER
|
|
|
|
+ public int ad; public int getChunkY() { return ad; } // Paper - OBFHELPER
|
|
|
|
+ public int ae; public int getChunkZ() { return ae; } // Paper - OBFHELPER
|
|
|
|
public boolean ai;
|
2016-04-02 04:08:40 +02:00
|
|
|
public boolean impulse;
|
|
|
|
public int portalCooldown;
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2016-08-11 22:07:07 +02:00
|
|
|
index 5881ffb..a905ff9 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2016-04-13 22:57:34 +02:00
|
|
|
@@ -31,6 +31,11 @@ import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
|
2016-03-25 07:38:38 +01:00
|
|
|
import org.bukkit.generator.ChunkGenerator;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
+// Paper start
|
2016-03-01 00:09:49 +01:00
|
|
|
+import java.util.Set;
|
|
|
|
+import com.google.common.collect.Sets;
|
2016-03-25 07:38:38 +01:00
|
|
|
+// Paper end
|
|
|
|
+
|
|
|
|
public abstract class World implements IBlockAccess {
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2016-03-25 07:38:38 +01:00
|
|
|
private int a = 63;
|
2016-04-13 22:57:34 +02:00
|
|
|
@@ -61,11 +66,11 @@ public abstract class World implements IBlockAccess {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
// Spigot end
|
|
|
|
- protected final List<Entity> f = Lists.newArrayList();
|
|
|
|
+ protected final Set<Entity> f = Sets.newHashSet(); // Paper
|
2016-03-25 08:50:56 +01:00
|
|
|
public final List<TileEntity> tileEntityList = Lists.newArrayList();
|
2016-03-01 00:09:49 +01:00
|
|
|
public final List<TileEntity> tileEntityListTick = Lists.newArrayList();
|
|
|
|
private final List<TileEntity> b = Lists.newArrayList();
|
|
|
|
- private final List<TileEntity> tileEntityListUnload = Lists.newArrayList();
|
|
|
|
+ private final Set<TileEntity> tileEntityListUnload = Sets.newHashSet(); // Paper
|
|
|
|
public final List<EntityHuman> players = Lists.newArrayList();
|
|
|
|
public final List<Entity> j = Lists.newArrayList();
|
|
|
|
protected final IntHashMap<Entity> entitiesById = new IntHashMap();
|
2016-06-09 05:57:14 +02:00
|
|
|
@@ -1393,20 +1398,20 @@ public abstract class World implements IBlockAccess {
|
|
|
|
this.entityList.removeAll(this.f);
|
2016-03-01 00:09:49 +01:00
|
|
|
|
|
|
|
int j;
|
|
|
|
+ // Paper start - Set based removal lists
|
|
|
|
+ for (Entity e : this.f) {
|
2016-06-09 05:57:14 +02:00
|
|
|
+ j = e.getChunkZ();
|
|
|
|
+ int k = e.getChunkX();
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2016-06-09 05:57:14 +02:00
|
|
|
- for (i = 0; i < this.f.size(); ++i) {
|
|
|
|
- entity = (Entity) this.f.get(i);
|
|
|
|
- int k = entity.ac;
|
|
|
|
-
|
|
|
|
- j = entity.ae;
|
|
|
|
- if (entity.ab && this.isChunkLoaded(k, j, true)) {
|
2016-03-01 00:09:49 +01:00
|
|
|
- this.getChunkAt(k, j).b(entity);
|
2016-06-09 05:57:14 +02:00
|
|
|
+ if (e.isAddedToChunk() && this.isChunkLoaded(k, j, true)) {
|
|
|
|
+ this.getChunkAt(k, j).b(e);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- for (i = 0; i < this.f.size(); ++i) {
|
|
|
|
- this.c((Entity) this.f.get(i));
|
|
|
|
+ for (Entity e : this.f) {
|
|
|
|
+ this.c(e);
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
this.f.clear();
|
|
|
|
this.l();
|
|
|
|
--
|
2016-08-11 22:07:07 +02:00
|
|
|
2.9.2.windows.1
|
2016-03-01 00:09:49 +01:00
|
|
|
|