2016-03-25 08:50:56 +01:00
|
|
|
From 5f62245e7a6eaa0c63251b6ae75698fd0e6765c5 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
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2016-03-25 08:50:56 +01:00
|
|
|
index 4f1c1b5..ccef853 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-03-25 07:38:38 +01:00
|
|
|
@@ -30,6 +30,11 @@ import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
|
|
|
|
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;
|
|
|
|
@@ -60,11 +65,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-03-25 07:38:38 +01:00
|
|
|
@@ -1387,19 +1392,20 @@ public abstract class World implements IBlockAccess {
|
2016-03-01 00:09:49 +01:00
|
|
|
|
|
|
|
int j;
|
|
|
|
|
|
|
|
- for (i = 0; i < this.f.size(); ++i) {
|
|
|
|
- entity = (Entity) this.f.get(i);
|
|
|
|
- int k = entity.ab;
|
|
|
|
+ // Paper start - Set based removal lists
|
|
|
|
+ for (Entity e : this.f) {
|
|
|
|
+ j = e.getChunkX();
|
|
|
|
+ int k = e.getChunkZ();
|
|
|
|
|
|
|
|
- j = entity.ad;
|
|
|
|
- if (entity.aa && this.isChunkLoaded(k, j, true)) {
|
|
|
|
- this.getChunkAt(k, j).b(entity);
|
|
|
|
+ if (e.aa && this.isChunkLoaded(k, j, true)) {
|
|
|
|
+ this.getChunkAt(k, j).b(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- 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-03-25 08:50:56 +01:00
|
|
|
2.7.4
|
2016-03-01 00:09:49 +01:00
|
|
|
|