2021-06-11 12:02:28 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 3 Mar 2016 02:07:55 -0600
|
2021-12-05 23:32:02 +00:00
|
|
|
Subject: [PATCH] Optimize isInWorldBounds and getBlockState for inlining
|
2021-06-11 12:02:28 +00:00
|
|
|
|
|
|
|
Hot methods, so reduce # of instructions for the method.
|
|
|
|
|
|
|
|
Move is valid location test to the BlockPosition class so that it can access local variables.
|
|
|
|
|
|
|
|
Replace all calls to the new place to the unnecessary forward.
|
|
|
|
|
|
|
|
Optimize getType and getBlockData to manually inline and optimize the calls
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/core/Vec3i.java b/src/main/java/net/minecraft/core/Vec3i.java
|
2022-03-01 05:43:03 +00:00
|
|
|
index 4587a3668b6be9222cdd74a38229f89f611d1af6..9f32861d791f7e4cb39d2ad01f48e1916fc2b4b1 100644
|
2021-06-11 12:02:28 +00:00
|
|
|
--- a/src/main/java/net/minecraft/core/Vec3i.java
|
|
|
|
+++ b/src/main/java/net/minecraft/core/Vec3i.java
|
2021-12-05 23:32:02 +00:00
|
|
|
@@ -33,6 +33,12 @@ public class Vec3i implements Comparable<Vec3i> {
|
2021-11-23 12:15:10 +00:00
|
|
|
return CODEC.flatXmap(checkOffsetAxes(maxAbsValue), checkOffsetAxes(maxAbsValue));
|
|
|
|
}
|
2021-06-11 12:02:28 +00:00
|
|
|
|
|
|
|
+ // Paper start
|
2021-12-05 23:32:02 +00:00
|
|
|
+ public final boolean isInsideBuildHeightAndWorldBoundsHorizontal(net.minecraft.world.level.LevelHeightAccessor levelHeightAccessor) {
|
2021-06-14 15:10:25 +00:00
|
|
|
+ return getX() >= -30000000 && getZ() >= -30000000 && getX() < 30000000 && getZ() < 30000000 && !levelHeightAccessor.isOutsideBuildHeight(getY());
|
2021-06-11 12:02:28 +00:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
public Vec3i(int x, int y, int z) {
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/Level.java b/src/main/java/net/minecraft/world/level/Level.java
|
2022-09-26 08:02:51 +00:00
|
|
|
index 62c54a0c789ca460ec29b0c653f5abd113736fb9..d612b59e04fcd01a8e2c4c7f43d8735fc208b520 100644
|
2021-06-11 12:02:28 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/Level.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/Level.java
|
2022-06-09 08:51:45 +00:00
|
|
|
@@ -276,7 +276,7 @@ public abstract class Level implements LevelAccessor, AutoCloseable {
|
2021-06-11 12:02:28 +00:00
|
|
|
}
|
|
|
|
|
2021-06-12 02:24:43 +00:00
|
|
|
public boolean isInWorldBounds(BlockPos pos) {
|
|
|
|
- return !this.isOutsideBuildHeight(pos) && Level.isInWorldBoundsHorizontal(pos);
|
2021-12-05 23:32:02 +00:00
|
|
|
+ return pos.isInsideBuildHeightAndWorldBoundsHorizontal(this); // Paper - use better/optimized check
|
2021-06-11 12:02:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isInSpawnableBounds(BlockPos pos) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/ChunkAccess.java b/src/main/java/net/minecraft/world/level/chunk/ChunkAccess.java
|
2022-09-26 08:02:51 +00:00
|
|
|
index 0e787d877901dfcea714b0e14e9fc4358ee30bbe..41e61e6c128f22224665af3f07cd11d69a43062b 100644
|
2021-06-11 12:02:28 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/ChunkAccess.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/ChunkAccess.java
|
2022-09-26 08:02:51 +00:00
|
|
|
@@ -160,6 +160,7 @@ public abstract class ChunkAccess implements BlockGetter, BiomeManager.NoiseBiom
|
2021-06-12 02:24:43 +00:00
|
|
|
return GameEventDispatcher.NOOP;
|
|
|
|
}
|
2021-06-11 12:02:28 +00:00
|
|
|
|
2021-12-05 23:32:02 +00:00
|
|
|
+ public abstract BlockState getBlockState(final int x, final int y, final int z); // Paper
|
2021-06-11 12:02:28 +00:00
|
|
|
@Nullable
|
2021-11-23 12:15:10 +00:00
|
|
|
public abstract BlockState setBlockState(BlockPos pos, BlockState state, boolean moved);
|
2021-06-11 12:02:28 +00:00
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/EmptyLevelChunk.java b/src/main/java/net/minecraft/world/level/chunk/EmptyLevelChunk.java
|
2022-09-26 08:02:51 +00:00
|
|
|
index a78bf00d4559dd99869d93ec78b3525d24331925..b7856c420f346ac4923afa66a9f8276490f27e82 100644
|
2021-06-11 12:02:28 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/EmptyLevelChunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/EmptyLevelChunk.java
|
2022-09-26 08:02:51 +00:00
|
|
|
@@ -55,6 +55,12 @@ public class EmptyLevelChunk extends LevelChunk {
|
|
|
|
public void setBlockEmptinessMap(final boolean[] emptinessMap) {}
|
|
|
|
// Paper end - starlight
|
2021-06-11 12:02:28 +00:00
|
|
|
|
|
|
|
+ // Paper start
|
2021-12-05 23:32:02 +00:00
|
|
|
+ @Override
|
|
|
|
+ public BlockState getBlockState(int x, int y, int z) {
|
2021-06-11 12:02:28 +00:00
|
|
|
+ return Blocks.VOID_AIR.defaultBlockState();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
@Override
|
|
|
|
public BlockState getBlockState(BlockPos pos) {
|
|
|
|
return Blocks.VOID_AIR.defaultBlockState();
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/ImposterProtoChunk.java b/src/main/java/net/minecraft/world/level/chunk/ImposterProtoChunk.java
|
2022-09-26 08:02:51 +00:00
|
|
|
index ac5dff35e2df23b8790bbe65c40acc6a3c77e6ac..8ffc206a858864d277ff94de7c66ffdb07d8f491 100644
|
2021-06-11 12:02:28 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/ImposterProtoChunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/ImposterProtoChunk.java
|
2022-09-26 08:02:51 +00:00
|
|
|
@@ -89,6 +89,12 @@ public class ImposterProtoChunk extends ProtoChunk {
|
2021-06-11 12:02:28 +00:00
|
|
|
public BlockState getBlockState(BlockPos pos) {
|
|
|
|
return this.wrapped.getBlockState(pos);
|
|
|
|
}
|
|
|
|
+ // Paper start
|
2021-12-05 23:32:02 +00:00
|
|
|
+ @Override
|
|
|
|
+ public final BlockState getBlockState(final int x, final int y, final int z) {
|
|
|
|
+ return this.wrapped.getBlockStateFinal(x, y, z);
|
2021-06-11 12:02:28 +00:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public FluidState getFluidState(BlockPos pos) {
|
|
|
|
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-09-26 08:02:51 +00:00
|
|
|
index 20c9eada6f051ecdd5e45e625d7e6289d406a2f8..5244a0a85d80963493d9106dd2674b1701c1919c 100644
|
2021-06-11 12:02:28 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/LevelChunk.java
|
2022-09-26 08:02:51 +00:00
|
|
|
@@ -342,12 +342,29 @@ public class LevelChunk extends ChunkAccess {
|
2022-06-07 19:55:39 +00:00
|
|
|
}
|
2021-06-11 12:02:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - Optimize getBlockData to reduce instructions
|
2021-06-12 02:24:43 +00:00
|
|
|
@Override
|
2021-06-11 12:02:28 +00:00
|
|
|
public BlockState getBlockState(BlockPos pos) {
|
|
|
|
- int i = pos.getX();
|
|
|
|
- int j = pos.getY();
|
|
|
|
- int k = pos.getZ();
|
2021-12-05 23:32:02 +00:00
|
|
|
+ return this.getBlockStateFinal(pos.getX(), pos.getY(), pos.getZ());
|
2021-06-11 12:02:28 +00:00
|
|
|
+ }
|
2021-06-12 02:24:43 +00:00
|
|
|
+
|
2021-12-05 23:32:02 +00:00
|
|
|
+ @Override
|
|
|
|
+ public BlockState getBlockState(final int x, final int y, final int z) {
|
|
|
|
+ return this.getBlockStateFinal(x, y, z);
|
2021-06-11 12:02:28 +00:00
|
|
|
+ }
|
2021-12-05 23:32:02 +00:00
|
|
|
+ public final BlockState getBlockStateFinal(final int x, final int y, final int z) {
|
2021-06-11 12:02:28 +00:00
|
|
|
+ // Method body / logic copied from below
|
2021-06-12 02:24:43 +00:00
|
|
|
+ final int i = this.getSectionIndex(y);
|
2021-12-05 23:32:02 +00:00
|
|
|
+ if (i < 0 || i >= this.sections.length || this.sections[i].nonEmptyBlockCount == 0 || this.sections[i].hasOnlyAir()) {
|
2021-06-11 12:02:28 +00:00
|
|
|
+ return Blocks.AIR.defaultBlockState();
|
|
|
|
+ }
|
|
|
|
+ // Inlined ChunkSection.getType() and DataPaletteBlock.a(int,int,int)
|
|
|
|
+ return this.sections[i].states.get((y & 15) << 8 | (z & 15) << 4 | x & 15);
|
2021-06-12 02:24:43 +00:00
|
|
|
|
2021-06-11 12:02:28 +00:00
|
|
|
+ }
|
|
|
|
+
|
2021-12-05 23:32:02 +00:00
|
|
|
+ public BlockState getBlockState_unused(int i, int j, int k) {
|
2021-06-11 12:02:28 +00:00
|
|
|
+ // Paper end
|
2021-06-12 02:24:43 +00:00
|
|
|
if (this.level.isDebug()) {
|
2021-06-11 12:02:28 +00:00
|
|
|
BlockState iblockdata = null;
|
|
|
|
|
|
|
|
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-07 19:55:39 +00:00
|
|
|
index dddae1e226d8f58cdcfc597e25d4228cd3245cb4..ae37e97e52557b48f129cc02eeea395378a48444 100644
|
2021-06-11 12:02:28 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/LevelChunkSection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/LevelChunkSection.java
|
2022-03-01 05:43:03 +00:00
|
|
|
@@ -21,7 +21,7 @@ public class LevelChunkSection {
|
2021-06-12 02:24:43 +00:00
|
|
|
public static final int SECTION_SIZE = 4096;
|
2021-11-23 12:15:10 +00:00
|
|
|
public static final int BIOME_CONTAINER_BITS = 2;
|
2021-06-11 12:02:28 +00:00
|
|
|
private final int bottomBlockY;
|
|
|
|
- private short nonEmptyBlockCount;
|
|
|
|
+ short nonEmptyBlockCount; // Paper - package-private
|
|
|
|
private short tickingBlockCount;
|
|
|
|
private short tickingFluidCount;
|
2021-11-23 12:15:10 +00:00
|
|
|
public final PalettedContainer<BlockState> states;
|
2021-06-11 12:02:28 +00:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/ProtoChunk.java b/src/main/java/net/minecraft/world/level/chunk/ProtoChunk.java
|
2022-09-26 08:02:51 +00:00
|
|
|
index 040c6092ceed4c693a7a056c0d1a49d3d2242b19..13b62e8e6569c154547bc0d5626488c5b0839f20 100644
|
2021-06-11 12:02:28 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/ProtoChunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/ProtoChunk.java
|
2022-09-26 08:02:51 +00:00
|
|
|
@@ -94,14 +94,18 @@ public class ProtoChunk extends ChunkAccess {
|
2021-06-11 12:02:28 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public BlockState getBlockState(BlockPos pos) {
|
|
|
|
- int i = pos.getY();
|
2021-06-12 02:24:43 +00:00
|
|
|
- if (this.isOutsideBuildHeight(i)) {
|
|
|
|
+ // Paper start
|
2021-12-05 23:32:02 +00:00
|
|
|
+ return getBlockState(pos.getX(), pos.getY(), pos.getZ());
|
2021-06-11 12:02:28 +00:00
|
|
|
+ }
|
2021-12-05 23:32:02 +00:00
|
|
|
+ public BlockState getBlockState(final int x, final int y, final int z) {
|
2021-06-12 02:24:43 +00:00
|
|
|
+ if (this.isOutsideBuildHeight(y)) {
|
2021-06-11 12:02:28 +00:00
|
|
|
return Blocks.VOID_AIR.defaultBlockState();
|
|
|
|
} else {
|
2021-11-23 12:15:10 +00:00
|
|
|
- LevelChunkSection levelChunkSection = this.getSection(this.getSectionIndex(i));
|
|
|
|
- return levelChunkSection.hasOnlyAir() ? Blocks.AIR.defaultBlockState() : levelChunkSection.getBlockState(pos.getX() & 15, i & 15, pos.getZ() & 15);
|
|
|
|
+ LevelChunkSection levelChunkSection = this.getSections()[this.getSectionIndex(y)];
|
|
|
|
+ return levelChunkSection.hasOnlyAir() ? Blocks.AIR.defaultBlockState() : levelChunkSection.getBlockState(x & 15, y & 15, z & 15);
|
2021-06-11 12:02:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public FluidState getFluidState(BlockPos pos) {
|