2016-03-31 02:50:23 +02:00
|
|
|
From 123f7daf33fadf6f80077c2be0974454fde2f7b1 Mon Sep 17 00:00:00 2001
|
2015-07-01 05:22:24 +02:00
|
|
|
From: Byteflux <byte@byteflux.net>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Wed, 2 Mar 2016 12:20:52 -0600
|
2015-07-01 05:22:24 +02:00
|
|
|
Subject: [PATCH] Fast draining
|
|
|
|
|
|
|
|
|
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
|
2016-03-29 03:01:42 +02:00
|
|
|
index 09b9867..658e430 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
|
2016-03-19 03:10:20 +01:00
|
|
|
@@ -207,4 +207,11 @@ public class PaperWorldConfig {
|
2016-03-01 00:09:49 +01:00
|
|
|
optimizeExplosions = getBoolean("optimize-explosions", false);
|
|
|
|
log("Optimize explosions: " + optimizeExplosions);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean fastDrainLava;
|
|
|
|
+ public boolean fastDrainWater;
|
|
|
|
+ private void fastDrain() {
|
|
|
|
+ fastDrainLava = getBoolean("fast-drain.lava", false);
|
|
|
|
+ fastDrainWater = getBoolean("fast-drain.water", false);
|
|
|
|
+ }
|
|
|
|
}
|
2015-07-01 05:22:24 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockFlowing.java b/src/main/java/net/minecraft/server/BlockFlowing.java
|
2016-03-01 00:09:49 +01:00
|
|
|
index 1f07f82..517c1e8 100644
|
2015-07-01 05:22:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockFlowing.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockFlowing.java
|
|
|
|
@@ -74,7 +74,7 @@ public class BlockFlowing extends BlockFluids {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.material == Material.LAVA && i < 8 && i1 < 8 && i1 > i && random.nextInt(4) != 0) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (!world.paperConfig.fastDrainLava && this.material == Material.LAVA && i < 8 && i1 < 8 && i1 > i && random.nextInt(4) != 0) { // Paper
|
2015-07-01 05:22:24 +02:00
|
|
|
j *= 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
@@ -82,7 +82,7 @@ public class BlockFlowing extends BlockFluids {
|
|
|
|
this.f(world, blockposition, iblockdata);
|
|
|
|
} else {
|
|
|
|
i = i1;
|
|
|
|
- if (i1 < 0) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (i1 < 0 || canFastDrain(world, blockposition)) { // Paper - Fast draining
|
2015-07-01 05:22:24 +02:00
|
|
|
world.setAir(blockposition);
|
|
|
|
} else {
|
|
|
|
iblockdata = iblockdata.set(BlockFlowing.LEVEL, Integer.valueOf(i1));
|
2016-03-01 00:09:49 +01:00
|
|
|
@@ -288,4 +288,52 @@ public class BlockFlowing extends BlockFluids {
|
2015-07-01 05:22:24 +02:00
|
|
|
}
|
|
|
|
return super.a(world);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
2016-03-01 00:09:49 +01:00
|
|
|
+ * Paper - Data check method for fast draining
|
2015-07-01 05:22:24 +02:00
|
|
|
+ */
|
|
|
|
+ public int getData(World world, BlockPosition position) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ int data = this.c((IBlockAccess) world, position);
|
2015-07-01 05:22:24 +02:00
|
|
|
+ return data < 8 ? data : 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
2016-03-01 00:09:49 +01:00
|
|
|
+ * Paper - Checks surrounding blocks to determine if block can be fast drained
|
2015-07-01 05:22:24 +02:00
|
|
|
+ */
|
|
|
|
+ public boolean canFastDrain(World world, BlockPosition position) {
|
|
|
|
+ boolean result = false;
|
2015-07-03 21:38:43 +02:00
|
|
|
+ int data = getData(world, position);
|
2015-07-01 05:22:24 +02:00
|
|
|
+ if (this.material == Material.WATER) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (world.paperConfig.fastDrainWater) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = true;
|
|
|
|
+ if (getData(world, position.down()) < 0) {
|
|
|
|
+ result = false;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ } else if (world.getType(position.north()).getBlock().getBlockData().getMaterial() == Material.WATER && getData(world, position.north()) < data) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ } else if (world.getType(position.south()).getBlock().getBlockData().getMaterial() == Material.WATER && getData(world, position.south()) < data) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ } else if (world.getType(position.west()).getBlock().getBlockData().getMaterial() == Material.WATER && getData(world, position.west()) < data) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ } else if (world.getType(position.east()).getBlock().getBlockData().getMaterial() == Material.WATER && getData(world, position.east()) < data) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } else if (this.material == Material.LAVA) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (world.paperConfig.fastDrainLava) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = true;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (getData(world, position.down()) < 0 || world.getType(position.up()).getBlock().getBlockData().getMaterial() != Material.AIR) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ } else if (world.getType(position.north()).getBlock().getBlockData().getMaterial() == Material.LAVA && getData(world, position.north()) < data) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ } else if (world.getType(position.south()).getBlock().getBlockData().getMaterial() == Material.LAVA && getData(world, position.south()) < data) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ } else if (world.getType(position.west()).getBlock().getBlockData().getMaterial() == Material.LAVA && getData(world, position.west()) < data) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ } else if (world.getType(position.east()).getBlock().getBlockData().getMaterial() == Material.LAVA && getData(world, position.east()) < data) {
|
2015-07-01 05:22:24 +02:00
|
|
|
+ result = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return result;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2016-03-31 02:50:23 +02:00
|
|
|
2.8.0
|
2015-07-01 05:22:24 +02:00
|
|
|
|