2019-07-24 05:20:14 +02:00
|
|
|
From 088133cdf474306bd86db30e27b2345bef28687c Mon Sep 17 00:00:00 2001
|
2018-07-15 03:53:17 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 13 Apr 2016 00:25:28 -0400
|
|
|
|
Subject: [PATCH] Remove unused World Tile Entity List
|
|
|
|
|
|
|
|
Massive hit to performance and it is completely unnecessary.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index 07d1505867..ebeb48f6dc 100644
|
2018-07-15 03:53:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-04-27 05:05:36 +02:00
|
|
|
@@ -40,7 +40,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
|
|
|
|
|
|
|
protected static final Logger LOGGER = LogManager.getLogger();
|
|
|
|
private static final EnumDirection[] a = EnumDirection.values();
|
2018-07-15 03:53:17 +02:00
|
|
|
- public final List<TileEntity> tileEntityList = Lists.newArrayList();
|
|
|
|
+ //public final List<TileEntity> tileEntityList = Lists.newArrayList(); // Paper - remove unused list
|
|
|
|
public final List<TileEntity> tileEntityListTick = Lists.newArrayList();
|
2019-04-27 05:05:36 +02:00
|
|
|
protected final List<TileEntity> tileEntityListPending = Lists.newArrayList();
|
|
|
|
protected final java.util.Set<TileEntity> tileEntityListUnload = com.google.common.collect.Sets.newHashSet(); // Paper
|
2019-06-11 02:29:30 +02:00
|
|
|
@@ -692,9 +692,9 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
2019-04-27 05:05:36 +02:00
|
|
|
}, tileentity::getPosition});
|
|
|
|
}
|
|
|
|
|
|
|
|
- boolean flag = this.tileEntityList.add(tileentity);
|
|
|
|
+ boolean flag = true; // Paper - remove unused list
|
|
|
|
|
|
|
|
- if (flag && tileentity instanceof ITickable) {
|
|
|
|
+ if (flag && tileentity instanceof ITickable && !this.tileEntityListTick.contains(tileentity)) { // Paper
|
|
|
|
this.tileEntityListTick.add(tileentity);
|
|
|
|
}
|
|
|
|
|
2019-06-11 02:29:30 +02:00
|
|
|
@@ -730,7 +730,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
2018-07-15 03:53:17 +02:00
|
|
|
timings.tileEntityTick.startTiming(); // Spigot
|
|
|
|
if (!this.tileEntityListUnload.isEmpty()) {
|
|
|
|
this.tileEntityListTick.removeAll(this.tileEntityListUnload);
|
|
|
|
- this.tileEntityList.removeAll(this.tileEntityListUnload);
|
|
|
|
+ //this.tileEntityList.removeAll(this.tileEntityListUnload); // Paper - remove unused list
|
|
|
|
this.tileEntityListUnload.clear();
|
|
|
|
}
|
|
|
|
|
2019-06-11 02:29:30 +02:00
|
|
|
@@ -791,7 +791,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
2018-07-15 03:53:17 +02:00
|
|
|
tilesThisCycle--;
|
|
|
|
this.tileEntityListTick.remove(tileTickPosition--);
|
2019-04-27 05:05:36 +02:00
|
|
|
// Spigot end
|
2018-07-15 03:53:17 +02:00
|
|
|
- this.tileEntityList.remove(tileentity);
|
|
|
|
+ //this.tileEntityList.remove(tileentity); // Paper - remove unused list
|
|
|
|
if (this.isLoaded(tileentity.getPosition())) {
|
2019-04-27 05:05:36 +02:00
|
|
|
this.getChunkAtWorldCoords(tileentity.getPosition()).removeTileEntity(tileentity.getPosition());
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
2019-06-11 02:29:30 +02:00
|
|
|
@@ -821,7 +821,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
2018-07-15 03:53:17 +02:00
|
|
|
this.notify(tileentity1.getPosition(), iblockdata, iblockdata, 3);
|
|
|
|
// CraftBukkit start
|
|
|
|
// From above, don't screw this up - SPIGOT-1746
|
|
|
|
- if (!this.tileEntityList.contains(tileentity1)) {
|
|
|
|
+ if (true) { // Paper - remove unused list
|
|
|
|
this.a(tileentity1);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2019-07-08 04:54:40 +02:00
|
|
|
@@ -1083,7 +1083,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
2018-07-15 03:53:17 +02:00
|
|
|
} else {
|
|
|
|
if (tileentity != null) {
|
2019-04-27 05:05:36 +02:00
|
|
|
this.tileEntityListPending.remove(tileentity);
|
2018-07-15 03:53:17 +02:00
|
|
|
- this.tileEntityList.remove(tileentity);
|
|
|
|
+ //this.tileEntityList.remove(tileentity); // Paper - remove unused list
|
|
|
|
this.tileEntityListTick.remove(tileentity);
|
|
|
|
}
|
|
|
|
|
2019-07-20 06:01:24 +02:00
|
|
|
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 f63cb1843f..79f97f0de0 100644
|
2019-07-20 06:01:24 +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
|
|
|
@@ -1564,7 +1564,7 @@ public class WorldServer extends World {
|
2019-07-20 06:01:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bufferedwriter.write(String.format("entities: %d\n", this.entitiesById.size()));
|
|
|
|
- bufferedwriter.write(String.format("block_entities: %d\n", this.tileEntityList.size()));
|
|
|
|
+ bufferedwriter.write(String.format("block_entities: %d\n", this.tileEntityListTick.size())); // Paper - remove unused list
|
|
|
|
bufferedwriter.write(String.format("block_ticks: %d\n", this.getBlockTickList().a()));
|
|
|
|
bufferedwriter.write(String.format("fluid_ticks: %d\n", this.getFluidTickList().a()));
|
|
|
|
bufferedwriter.write("distance_manager: " + playerchunkmap.e().c() + "\n");
|
2019-07-24 05:20:14 +02:00
|
|
|
@@ -1727,7 +1727,7 @@ public class WorldServer extends World {
|
2019-07-20 06:01:24 +02:00
|
|
|
|
|
|
|
private void a(Writer writer) throws IOException {
|
|
|
|
CSVWriter csvwriter = CSVWriter.a().a("x").a("y").a("z").a("type").a(writer);
|
|
|
|
- Iterator iterator = this.tileEntityList.iterator();
|
|
|
|
+ Iterator iterator = this.tileEntityListTick.iterator(); // Paper - remove unused list
|
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
TileEntity tileentity = (TileEntity) iterator.next();
|
2018-07-15 03:53:17 +02:00
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2018-07-15 03:53:17 +02:00
|
|
|
|