2021-06-18 07:51:04 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Thu, 16 Apr 2020 16:13:59 -0700
|
|
|
|
Subject: [PATCH] Optimize ServerLevels chunk level checking methods
|
|
|
|
|
|
|
|
These can be hot functions (i.e entity ticking and block ticking),
|
|
|
|
so inline where possible, and avoid the abstraction of the
|
|
|
|
Either class.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2021-08-26 04:16:27 +02:00
|
|
|
index 021915680f6aa054585527dc0caf18b65795a1b7..e3b9f7b92e4f3e8b64e2b13bdf2b3fcee12c7cda 100644
|
2021-06-18 07:51:04 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2021-07-11 09:01:29 +02:00
|
|
|
@@ -2034,15 +2034,18 @@ public class ServerLevel extends Level implements WorldGenLevel {
|
2021-06-18 07:51:04 +02:00
|
|
|
public boolean isPositionTickingWithEntitiesLoaded(BlockPos blockposition) {
|
|
|
|
long i = ChunkPos.asLong(blockposition);
|
|
|
|
|
|
|
|
- return this.chunkSource.isPositionTicking(i) && this.areEntitiesLoaded(i);
|
|
|
|
+ // Paper start - optimize is ticking ready type functions
|
|
|
|
+ ChunkHolder chunkHolder = this.chunkSource.chunkMap.getVisibleChunkIfPresent(i);
|
|
|
|
+ return chunkHolder != null && chunkHolder.isTickingReady() && this.areEntitiesLoaded(i);
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isPositionEntityTicking(BlockPos blockposition) {
|
|
|
|
- return this.entityManager.isPositionTicking(blockposition);
|
|
|
|
+ return this.entityManager.isPositionTicking(ChunkPos.asLong(blockposition)); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isPositionEntityTicking(ChunkPos chunkcoordintpair) {
|
|
|
|
- return this.entityManager.isPositionTicking(chunkcoordintpair);
|
|
|
|
+ return this.entityManager.isPositionTicking(chunkcoordintpair.toLong()); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
private final class EntityCallbacks implements LevelCallback<Entity> {
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/ChunkPos.java b/src/main/java/net/minecraft/world/level/ChunkPos.java
|
|
|
|
index 439f82a48e6f6ce7b4773505ced32324cacb302d..2a99aa989ac5c19d99bb3cbc0934425e46573cd7 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/level/ChunkPos.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/ChunkPos.java
|
|
|
|
@@ -48,7 +48,7 @@ public class ChunkPos {
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long asLong(BlockPos blockPos) {
|
|
|
|
- return asLong(SectionPos.blockToSectionCoord(blockPos.getX()), SectionPos.blockToSectionCoord(blockPos.getZ()));
|
|
|
|
+ return (((long)blockPos.getX() >> 4) & 4294967295L) | ((((long)blockPos.getZ() >> 4) & 4294967295L) << 32); // Paper - inline
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int getX(long pos) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/entity/PersistentEntitySectionManager.java b/src/main/java/net/minecraft/world/level/entity/PersistentEntitySectionManager.java
|
2021-08-27 11:51:18 +02:00
|
|
|
index 8b21080f5fd85ba6c1c3c8ac30e4a9d143c71e11..a98ef525ff57867edbc86ebebe626895c7a9bf25 100644
|
2021-06-18 07:51:04 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/entity/PersistentEntitySectionManager.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/entity/PersistentEntitySectionManager.java
|
2021-08-27 11:51:18 +02:00
|
|
|
@@ -362,6 +362,11 @@ public class PersistentEntitySectionManager<T extends EntityAccess> implements A
|
2021-06-18 07:51:04 +02:00
|
|
|
public LevelEntityGetter<T> getEntityGetter() {
|
|
|
|
return this.entityGetter;
|
|
|
|
}
|
|
|
|
+ // Paper start
|
|
|
|
+ public final boolean isPositionTicking(long position) {
|
|
|
|
+ return this.chunkVisibility.get(position).isTicking();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
2021-08-27 11:51:18 +02:00
|
|
|
public boolean isPositionTicking(BlockPos blockposition) {
|
|
|
|
return ((Visibility) this.chunkVisibility.get(ChunkPos.asLong(blockposition))).isTicking();
|