Paper/patches/server/0372-Optimise-Chunk-getFluid.patch

62 lines
3.0 KiB
Diff
Raw Normal View History

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
Date: Tue, 14 Jan 2020 14:59:08 -0800
Subject: [PATCH] Optimise Chunk#getFluid
Removing the try catch and generally reducing ops should make it
faster on its own, however removing the try catch makes it
easier to inline due to code size
diff --git a/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java b/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java
2022-06-08 06:06:41 +02:00
index 74952112182ac94942474f1c7cf21a6301abbcc7..930fa1703727249585b4ac045db15d55736c58fd 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java
+++ b/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java
2022-06-08 06:06:41 +02:00
@@ -381,18 +381,20 @@ public class LevelChunk extends ChunkAccess {
2021-06-11 14:02:28 +02:00
}
public FluidState getFluidState(int x, int y, int z) {
- try {
2021-06-14 00:05:18 +02:00
- int l = this.getSectionIndex(y);
-
- if (l >= 0 && l < this.sections.length) {
- LevelChunkSection chunksection = this.sections[l];
+ // try { // Paper - remove try catch
2021-06-11 14:02:28 +02:00
+ // Paper start - reduce the number of ops in this call
2021-06-14 00:05:18 +02:00
+ int index = this.getSectionIndex(y);
2021-06-11 14:02:28 +02:00
+ if (index >= 0 && index < this.sections.length) {
+ LevelChunkSection chunksection = this.sections[index];
if (!chunksection.hasOnlyAir()) {
- return chunksection.getFluidState(x & 15, y & 15, z & 15);
2021-06-11 14:02:28 +02:00
+ return chunksection.states.get((y & 15) << 8 | (z & 15) << 4 | x & 15).getFluidState();
+ // Paper end
2021-06-11 14:02:28 +02:00
}
}
return Fluids.EMPTY.defaultFluidState();
2021-06-14 00:05:18 +02:00
+ /* // Paper - remove try catch
} catch (Throwable throwable) {
CrashReport crashreport = CrashReport.forThrowable(throwable, "Getting fluid state");
CrashReportCategory crashreportsystemdetails = crashreport.addCategory("Block being got");
2022-06-08 06:06:41 +02:00
@@ -402,6 +404,7 @@ public class LevelChunk extends ChunkAccess {
2021-06-11 14:02:28 +02:00
});
throw new ReportedException(crashreport);
}
+ */ // Paper - remove try catch
}
// CraftBukkit start
diff --git a/src/main/java/net/minecraft/world/level/chunk/LevelChunkSection.java b/src/main/java/net/minecraft/world/level/chunk/LevelChunkSection.java
2022-06-08 06:06:41 +02:00
index ba4da27861236eb62d208f2a660e232a143232ac..2ad73237f4664535c3d5120a54b713f44cddb793 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/level/chunk/LevelChunkSection.java
+++ b/src/main/java/net/minecraft/world/level/chunk/LevelChunkSection.java
2022-06-08 06:06:41 +02:00
@@ -54,7 +54,7 @@ public class LevelChunkSection {
2021-06-11 14:02:28 +02:00
}
public FluidState getFluidState(int x, int y, int z) {
- return ((BlockState) this.states.get(x, y, z)).getFluidState();
2021-06-14 00:05:18 +02:00
+ return this.states.get(x, y, z).getFluidState(); // Paper - diff on change - we expect this to be effectively just getType(x, y, z).getFluid(). If this changes we need to check other patches that use IBlockData#getFluid.
2021-06-11 14:02:28 +02:00
}
public void acquire() {