2020-02-11 05:35:46 +01:00
|
|
|
From 5802854a423626f7ea7cb60a6974997beb999c56 Mon Sep 17 00:00:00 2001
|
2020-01-28 01:16:53 +01:00
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Sat, 25 Jan 2020 17:04:35 -0800
|
|
|
|
Subject: [PATCH] Optimise getChunkAt calls for loaded chunks
|
|
|
|
|
|
|
|
bypass the need to get a player chunk, then get the either,
|
|
|
|
then unwrap it...
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkProviderServer.java b/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
2020-02-02 12:53:48 +01:00
|
|
|
index e5af40e9f..0de82202e 100644
|
2020-01-28 01:16:53 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
2020-01-29 02:26:07 +01:00
|
|
|
@@ -354,6 +354,12 @@ public class ChunkProviderServer extends IChunkProvider {
|
2020-01-28 01:16:53 +01:00
|
|
|
return this.getChunkAt(i, j, chunkstatus, flag);
|
|
|
|
}, this.serverThreadQueue).join();
|
|
|
|
} else {
|
|
|
|
+ // Paper start - optimise for loaded chunks
|
|
|
|
+ Chunk ifLoaded = this.getChunkAtIfLoadedMainThread(i, j);
|
|
|
|
+ if (ifLoaded != null) {
|
|
|
|
+ return ifLoaded;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
GameProfilerFiller gameprofilerfiller = this.world.getMethodProfiler();
|
|
|
|
|
|
|
|
gameprofilerfiller.c("getChunk");
|
2020-01-29 02:26:07 +01:00
|
|
|
@@ -404,39 +410,7 @@ public class ChunkProviderServer extends IChunkProvider {
|
2020-01-28 01:16:53 +01:00
|
|
|
if (Thread.currentThread() != this.serverThread) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
- this.world.getMethodProfiler().c("getChunkNow");
|
|
|
|
- long k = ChunkCoordIntPair.pair(i, j);
|
|
|
|
-
|
|
|
|
- for (int l = 0; l < 4; ++l) {
|
|
|
|
- if (k == this.cachePos[l] && this.cacheStatus[l] == ChunkStatus.FULL) {
|
|
|
|
- IChunkAccess ichunkaccess = this.cacheChunk[l];
|
|
|
|
-
|
|
|
|
- return ichunkaccess instanceof Chunk ? (Chunk) ichunkaccess : null;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- PlayerChunk playerchunk = this.getChunk(k);
|
|
|
|
-
|
|
|
|
- if (playerchunk == null) {
|
|
|
|
- return null;
|
|
|
|
- } else {
|
2020-02-02 12:53:48 +01:00
|
|
|
- Either<IChunkAccess, PlayerChunk.Failure> either = (Either) playerchunk.b(ChunkStatus.FULL).getNow(null); // CraftBukkit - decompile error
|
2020-01-28 01:16:53 +01:00
|
|
|
-
|
|
|
|
- if (either == null) {
|
|
|
|
- return null;
|
|
|
|
- } else {
|
2020-02-02 12:53:48 +01:00
|
|
|
- IChunkAccess ichunkaccess1 = (IChunkAccess) either.left().orElse(null); // CraftBukkit - decompile error
|
2020-01-28 01:16:53 +01:00
|
|
|
-
|
|
|
|
- if (ichunkaccess1 != null) {
|
|
|
|
- this.a(k, ichunkaccess1, ChunkStatus.FULL);
|
|
|
|
- if (ichunkaccess1 instanceof Chunk) {
|
|
|
|
- return (Chunk) ichunkaccess1;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return null;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
+ return this.getChunkAtIfLoadedMainThread(i, j); // Paper - optimise for loaded chunks
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2020-01-29 02:26:07 +01:00
|
|
|
index e97b3f103..913511388 100644
|
2020-01-28 01:16:53 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2020-01-28 20:43:57 +01:00
|
|
|
@@ -255,6 +255,14 @@ public abstract class World implements GeneratorAccess, AutoCloseable {
|
2020-01-28 01:16:53 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Chunk getChunkAt(int i, int j) {
|
|
|
|
+ // Paper start - optimise this for loaded chunks
|
|
|
|
+ if (Thread.currentThread() == this.serverThread) {
|
|
|
|
+ Chunk ifLoaded = ((WorldServer) this).getChunkProvider().getChunkAtIfLoadedMainThread(i, j);
|
|
|
|
+ if (ifLoaded != null) {
|
|
|
|
+ return ifLoaded;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
return (Chunk) this.getChunkAt(i, j, ChunkStatus.FULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2020-01-30 10:36:03 +01:00
|
|
|
2.25.0
|
2020-01-28 01:16:53 +01:00
|
|
|
|