2019-03-20 02:46:00 +01:00
|
|
|
From d059aee7f3cf690c8173570c63b736fdf971921f Mon Sep 17 00:00:00 2001
|
2018-07-04 09:56:57 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 4 Jul 2018 03:39:51 -0400
|
|
|
|
Subject: [PATCH] Avoid Chunk Lookups for Entity/TileEntity Current Chunk
|
|
|
|
|
|
|
|
In many places where we simply want the current chunk the entity
|
|
|
|
is in, instead of doing a hashmap lookup for it, we now have access
|
|
|
|
to the object directly on the Entity/TileEntity object we can directly grab.
|
|
|
|
|
|
|
|
Use that local value instead to reduce lookups in many hot places.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 3ca579e38..1c1f39524 100644
|
2018-07-04 09:56:57 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -723,6 +723,7 @@ public class Chunk implements IChunkAccess {
|
2018-07-19 01:16:19 +02:00
|
|
|
((HeightMap) this.heightMap.get(heightmap_type)).a(along);
|
2018-07-04 09:56:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ public void removeEntity(Entity entity) { b(entity); } // Paper - OBFHELPER
|
|
|
|
public void b(Entity entity) {
|
2018-12-17 06:18:06 +01:00
|
|
|
this.a(entity, entity.chunkY);
|
2018-07-04 09:56:57 +02:00
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-03-20 02:46:00 +01:00
|
|
|
index 08ad88c14..9befa890b 100644
|
2018-07-04 09:56:57 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1192,12 +1192,15 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-04 09:56:57 +02:00
|
|
|
int j;
|
|
|
|
// Paper start - Set based removal lists
|
2018-07-19 01:16:19 +02:00
|
|
|
for (Entity e : this.g) {
|
2018-07-04 09:56:57 +02:00
|
|
|
+ /*
|
|
|
|
j = e.getChunkZ();
|
|
|
|
int k = e.getChunkX();
|
|
|
|
|
2018-07-19 01:16:19 +02:00
|
|
|
if (e.inChunk && this.isChunkLoaded(k, j, true)) {
|
2018-07-04 09:56:57 +02:00
|
|
|
this.getChunkAt(k, j).b(e);
|
|
|
|
- }
|
|
|
|
+ }*/
|
2018-07-19 01:16:19 +02:00
|
|
|
+ Chunk chunk = e.inChunk ? e.getCurrentChunk() : null;
|
2018-07-04 09:56:57 +02:00
|
|
|
+ if (chunk != null) chunk.removeEntity(e);
|
|
|
|
}
|
|
|
|
|
2018-07-19 01:16:19 +02:00
|
|
|
for (Entity e : this.g) {
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1258,12 +1261,17 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-12-17 06:18:06 +01:00
|
|
|
this.methodProfiler.exit();
|
|
|
|
this.methodProfiler.enter("remove");
|
2018-07-04 09:56:57 +02:00
|
|
|
if (entity.dead) {
|
|
|
|
+ // Paper start
|
|
|
|
+ /*
|
2018-12-17 06:18:06 +01:00
|
|
|
j = entity.chunkX;
|
|
|
|
int l = entity.chunkZ;
|
2018-07-04 09:56:57 +02:00
|
|
|
|
2018-07-19 01:16:19 +02:00
|
|
|
if (entity.inChunk && this.isChunkLoaded(j, l, true)) {
|
2018-07-04 09:56:57 +02:00
|
|
|
this.getChunkAt(j, l).b(entity);
|
|
|
|
- }
|
|
|
|
+ }*/
|
2018-07-19 01:16:19 +02:00
|
|
|
+ Chunk chunk = entity.inChunk ? entity.getCurrentChunk() : null;
|
2018-07-04 09:56:57 +02:00
|
|
|
+ if (chunk != null) chunk.removeEntity(entity);
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
guardEntityList = false; // Spigot
|
|
|
|
this.entityList.remove(this.tickPosition--); // CraftBukkit - Use field for loop variable
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1308,7 +1316,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-04 09:56:57 +02:00
|
|
|
BlockPosition blockposition = tileentity.getPosition();
|
|
|
|
|
|
|
|
// Paper start - Skip ticking in chunks scheduled for unload
|
|
|
|
- net.minecraft.server.Chunk chunk = this.getChunkIfLoaded(blockposition);
|
|
|
|
+ net.minecraft.server.Chunk chunk = tileentity.getCurrentChunk();
|
|
|
|
boolean shouldTick = chunk != null;
|
|
|
|
if(this.paperConfig.skipEntityTickingInChunksScheduledForUnload)
|
2018-08-26 20:11:49 +02:00
|
|
|
shouldTick = shouldTick && chunk.scheduledForUnload == null;
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1344,8 +1352,11 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-04 09:56:57 +02:00
|
|
|
tilesThisCycle--;
|
|
|
|
this.tileEntityListTick.remove(tileTickPosition--);
|
|
|
|
//this.tileEntityList.remove(tileentity); // Paper - remove unused list
|
|
|
|
- if (this.isLoaded(tileentity.getPosition())) {
|
2018-07-04 23:29:10 +02:00
|
|
|
- this.getChunkAtWorldCoords(tileentity.getPosition()).d(tileentity.getPosition());
|
2018-07-04 09:56:57 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ net.minecraft.server.Chunk chunk = tileentity.getCurrentChunk();
|
|
|
|
+ if (chunk != null) {
|
2018-07-04 23:29:10 +02:00
|
|
|
+ chunk.removeTileEntity(tileentity.getPosition());
|
2018-07-04 09:56:57 +02:00
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
}
|
2018-07-04 23:29:10 +02:00
|
|
|
}
|
2018-07-04 09:56:57 +02:00
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2018-07-04 09:56:57 +02:00
|
|
|
|