2019-08-05 18:35:40 +02:00
|
|
|
From 2aab0c3c063b1d75f7d802c8daa63ae29e88a110 Mon Sep 17 00:00:00 2001
|
2015-06-16 14:55:15 +02:00
|
|
|
From: Byteflux <byte@byteflux.net>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Wed, 2 Mar 2016 11:59:48 -0600
|
2015-06-16 14:55:15 +02:00
|
|
|
Subject: [PATCH] Optimize explosions
|
|
|
|
|
|
|
|
The process of determining an entity's exposure from explosions can be
|
|
|
|
expensive when there are hundreds or more entities in range.
|
|
|
|
|
|
|
|
This patch adds a per-tick cache that is used for storing and retrieving
|
|
|
|
an entity's exposure during an explosion.
|
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index c2b9690a0c..a5ec0bc0e0 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-24 04:34:11 +02:00
|
|
|
@@ -145,4 +145,10 @@ public class PaperWorldConfig {
|
2018-07-15 03:53:17 +02:00
|
|
|
disableEndCredits = getBoolean("game-mechanics.disable-end-credits", false);
|
|
|
|
log("End credits disabled: " + disableEndCredits);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean optimizeExplosions;
|
|
|
|
+ private void optimizeExplosions() {
|
|
|
|
+ optimizeExplosions = getBoolean("optimize-explosions", false);
|
|
|
|
+ log("Optimize explosions: " + optimizeExplosions);
|
|
|
|
+ }
|
|
|
|
}
|
2015-06-16 14:55:15 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/Explosion.java b/src/main/java/net/minecraft/server/Explosion.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index cdd8939504..bd6a0bd16b 100644
|
2015-06-16 14:55:15 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Explosion.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Explosion.java
|
2019-04-24 04:34:11 +02:00
|
|
|
@@ -172,7 +172,7 @@ public class Explosion {
|
2015-06-16 14:55:15 +02:00
|
|
|
d8 /= d11;
|
|
|
|
d9 /= d11;
|
|
|
|
d10 /= d11;
|
2019-04-24 04:34:11 +02:00
|
|
|
- double d12 = (double) a(vec3d, entity);
|
|
|
|
+ double d12 = this.getBlockDensity(vec3d, entity); // Paper - Optimize explosions
|
2015-06-16 14:55:15 +02:00
|
|
|
double d13 = (1.0D - d7) * d12;
|
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
// CraftBukkit start
|
2019-04-24 04:34:11 +02:00
|
|
|
@@ -361,4 +361,84 @@ public class Explosion {
|
|
|
|
|
|
|
|
private Effect() {}
|
2015-06-16 14:55:15 +02:00
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper start - Optimize explosions
|
2019-04-24 04:34:11 +02:00
|
|
|
+ private float getBlockDensity(Vec3D vec3d, Entity entity) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (!this.world.paperConfig.optimizeExplosions) {
|
2019-04-24 04:34:11 +02:00
|
|
|
+ return a(vec3d, entity);
|
2015-06-16 14:55:15 +02:00
|
|
|
+ }
|
2019-04-24 04:34:11 +02:00
|
|
|
+ CacheKey key = new CacheKey(this, entity.getBoundingBox());
|
2015-06-16 14:55:15 +02:00
|
|
|
+ Float blockDensity = this.world.explosionDensityCache.get(key);
|
|
|
|
+ if (blockDensity == null) {
|
2019-04-24 04:34:11 +02:00
|
|
|
+ blockDensity = a(vec3d, entity);
|
2015-06-16 14:55:15 +02:00
|
|
|
+ this.world.explosionDensityCache.put(key, blockDensity);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return blockDensity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ static class CacheKey {
|
|
|
|
+ private final World world;
|
|
|
|
+ private final double posX, posY, posZ;
|
|
|
|
+ private final double minX, minY, minZ;
|
|
|
|
+ private final double maxX, maxY, maxZ;
|
|
|
|
+
|
|
|
|
+ public CacheKey(Explosion explosion, AxisAlignedBB aabb) {
|
|
|
|
+ this.world = explosion.world;
|
|
|
|
+ this.posX = explosion.posX;
|
|
|
|
+ this.posY = explosion.posY;
|
|
|
|
+ this.posZ = explosion.posZ;
|
2018-10-23 01:16:21 +02:00
|
|
|
+ this.minX = aabb.minX;
|
|
|
|
+ this.minY = aabb.minY;
|
|
|
|
+ this.minZ = aabb.minZ;
|
|
|
|
+ this.maxX = aabb.maxX;
|
|
|
|
+ this.maxY = aabb.maxY;
|
|
|
|
+ this.maxZ = aabb.maxZ;
|
2015-06-16 14:55:15 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean equals(Object o) {
|
|
|
|
+ if (this == o) return true;
|
|
|
|
+ if (o == null || getClass() != o.getClass()) return false;
|
|
|
|
+
|
|
|
|
+ CacheKey cacheKey = (CacheKey) o;
|
|
|
|
+
|
|
|
|
+ if (Double.compare(cacheKey.posX, posX) != 0) return false;
|
|
|
|
+ if (Double.compare(cacheKey.posY, posY) != 0) return false;
|
|
|
|
+ if (Double.compare(cacheKey.posZ, posZ) != 0) return false;
|
|
|
|
+ if (Double.compare(cacheKey.minX, minX) != 0) return false;
|
|
|
|
+ if (Double.compare(cacheKey.minY, minY) != 0) return false;
|
|
|
|
+ if (Double.compare(cacheKey.minZ, minZ) != 0) return false;
|
|
|
|
+ if (Double.compare(cacheKey.maxX, maxX) != 0) return false;
|
|
|
|
+ if (Double.compare(cacheKey.maxY, maxY) != 0) return false;
|
|
|
|
+ if (Double.compare(cacheKey.maxZ, maxZ) != 0) return false;
|
|
|
|
+ return world.equals(cacheKey.world);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int hashCode() {
|
|
|
|
+ int result;
|
|
|
|
+ long temp;
|
|
|
|
+ result = world.hashCode();
|
|
|
|
+ temp = Double.doubleToLongBits(posX);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ temp = Double.doubleToLongBits(posY);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ temp = Double.doubleToLongBits(posZ);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ temp = Double.doubleToLongBits(minX);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ temp = Double.doubleToLongBits(minY);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ temp = Double.doubleToLongBits(minZ);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ temp = Double.doubleToLongBits(maxX);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ temp = Double.doubleToLongBits(maxY);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ temp = Double.doubleToLongBits(maxZ);
|
|
|
|
+ result = 31 * result + (int) (temp ^ (temp >>> 32));
|
|
|
|
+ return result;
|
|
|
|
+ }
|
|
|
|
+ }
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper end
|
2015-06-16 14:55:15 +02:00
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2019-08-05 18:35:40 +02:00
|
|
|
index 6594138f35..55d10058f5 100644
|
2015-06-16 14:55:15 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2019-08-05 18:35:40 +02:00
|
|
|
@@ -1145,6 +1145,7 @@ public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTas
|
2019-04-24 04:34:11 +02:00
|
|
|
|
2018-12-17 06:18:06 +01:00
|
|
|
this.methodProfiler.exit();
|
|
|
|
this.methodProfiler.exit();
|
2016-03-01 00:09:49 +01:00
|
|
|
+ worldserver.explosionDensityCache.clear(); // Paper - Optimize explosions
|
2018-07-15 03:53:17 +02:00
|
|
|
}
|
2018-08-26 20:11:49 +02:00
|
|
|
}
|
2015-06-16 14:55:15 +02:00
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index 5fea828de0..ee869a769f 100644
|
2015-06-16 14:55:15 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-04-24 04:34:11 +02:00
|
|
|
@@ -19,6 +19,7 @@ import org.apache.logging.log4j.util.Supplier;
|
2016-03-25 07:38:38 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
import com.google.common.collect.Maps;
|
2019-01-01 04:15:55 +01:00
|
|
|
import java.util.ArrayList;
|
2016-03-25 07:38:38 +01:00
|
|
|
+import java.util.HashMap; // Paper
|
|
|
|
import java.util.Map;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.block.BlockState;
|
2019-04-24 04:34:11 +02:00
|
|
|
@@ -94,6 +95,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
2016-03-25 07:38:38 +01:00
|
|
|
private org.spigotmc.TickLimiter entityLimiter;
|
2015-09-13 06:29:23 +02:00
|
|
|
private org.spigotmc.TickLimiter tileLimiter;
|
2015-06-16 14:55:15 +02:00
|
|
|
private int tileTickPosition;
|
2016-03-25 07:38:38 +01:00
|
|
|
+ public final Map<Explosion.CacheKey, Float> explosionDensityCache = new HashMap<>(); // Paper - Optimize explosions
|
2015-06-16 14:55:15 +02:00
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
public CraftWorld getWorld() {
|
|
|
|
return this.world;
|
2015-06-16 14:55:15 +02:00
|
|
|
--
|
2019-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2015-06-16 14:55:15 +02:00
|
|
|
|