2011-01-01 08:05:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-01-15 22:36:57 +01:00
|
|
|
import org.bukkit.block.BlockFace;
|
2011-01-15 22:40:18 +01:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlock;
|
2011-01-01 08:05:05 +01:00
|
|
|
import org.bukkit.event.Event.Type;
|
|
|
|
import org.bukkit.event.block.BlockFromToEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-01 08:05:05 +01:00
|
|
|
|
2011-01-02 00:14:26 +01:00
|
|
|
public class BlockFlowing extends BlockFluids {
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
int a = 0;
|
|
|
|
boolean[] b = new boolean[4];
|
|
|
|
int[] c = new int[4];
|
|
|
|
|
|
|
|
protected BlockFlowing(int i, Material material) {
|
|
|
|
super(i, material);
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
private void i(World world, int i, int j, int k) {
|
|
|
|
int l = world.getData(i, j, k);
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
world.setTypeIdAndData(i, j, k, this.id + 1, l);
|
|
|
|
world.b(i, j, k, i, j, k);
|
|
|
|
world.g(i, j, k);
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public void a(World world, int i, int j, int k, Random random) {
|
2011-01-16 06:11:26 +01:00
|
|
|
// CraftBukkit start
|
2011-01-29 22:50:29 +01:00
|
|
|
CraftBlock source = (CraftBlock) ((WorldServer) world).getWorld().getBlockAt(i, j, k);
|
2011-01-16 06:11:26 +01:00
|
|
|
// CraftBukkit end
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
int l = this.g(world, i, j, k);
|
|
|
|
byte b0 = 1;
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
if (this.material == Material.LAVA && !world.m.d) {
|
2011-01-29 22:50:29 +01:00
|
|
|
b0 = 2;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-01 08:05:05 +01:00
|
|
|
boolean flag = true;
|
2011-01-29 22:50:29 +01:00
|
|
|
int i1;
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (l > 0) {
|
|
|
|
byte b1 = -100;
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a = 0;
|
2011-02-23 03:37:56 +01:00
|
|
|
int j1 = this.f(world, i - 1, j, k, b1);
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
j1 = this.f(world, i + 1, j, k, j1);
|
|
|
|
j1 = this.f(world, i, j, k - 1, j1);
|
|
|
|
j1 = this.f(world, i, j, k + 1, j1);
|
2011-01-29 22:50:29 +01:00
|
|
|
i1 = j1 + b0;
|
|
|
|
if (i1 >= 8 || j1 < 0) {
|
|
|
|
i1 = -1;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.g(world, i, j + 1, k) >= 0) {
|
|
|
|
int k1 = this.g(world, i, j + 1, k);
|
|
|
|
|
|
|
|
if (k1 >= 8) {
|
|
|
|
i1 = k1;
|
2011-01-02 00:14:26 +01:00
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
i1 = k1 + 8;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (this.a >= 2 && this.material == Material.WATER) {
|
|
|
|
if (world.d(i, j - 1, k)) {
|
|
|
|
i1 = 0;
|
|
|
|
} else if (world.getMaterial(i, j - 1, k) == this.material && world.getData(i, j, k) == 0) {
|
|
|
|
i1 = 0;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (this.material == Material.LAVA && l < 8 && i1 < 8 && i1 > l && random.nextInt(4) != 0) {
|
|
|
|
i1 = l;
|
2011-01-01 08:05:05 +01:00
|
|
|
flag = false;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (i1 != l) {
|
|
|
|
l = i1;
|
|
|
|
if (i1 < 0) {
|
|
|
|
world.e(i, j, k, 0);
|
2011-01-02 00:14:26 +01:00
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
world.c(i, j, k, i1);
|
2011-02-23 03:37:56 +01:00
|
|
|
world.c(i, j, k, this.id, this.b());
|
2011-01-29 22:50:29 +01:00
|
|
|
world.h(i, j, k, this.id);
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
2011-01-02 00:14:26 +01:00
|
|
|
} else if (flag) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.i(world, i, j, k);
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.i(world, i, j, k);
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (this.l(world, i, j - 1, k)) {
|
2011-01-16 06:11:26 +01:00
|
|
|
// CraftBukkit start
|
2011-01-01 14:06:04 +01:00
|
|
|
// Craftbucket send "down" to the server
|
2011-01-29 22:50:29 +01:00
|
|
|
BlockFromToEvent event = new BlockFromToEvent(Type.BLOCK_FLOW, source, BlockFace.DOWN);
|
|
|
|
((WorldServer) world).getServer().getPluginManager().callEvent(event);
|
2011-01-01 14:06:04 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!event.isCancelled()) {
|
|
|
|
if (l >= 8) {
|
|
|
|
world.b(i, j - 1, k, this.id, l);
|
2011-01-02 00:14:26 +01:00
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
world.b(i, j - 1, k, this.id, l + 8);
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 14:06:04 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
// CraftBukkit end
|
|
|
|
} else if (l >= 0 && (l == 0 || this.k(world, i, j - 1, k))) {
|
|
|
|
boolean[] aboolean = this.j(world, i, j, k);
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
i1 = l + b0;
|
|
|
|
if (l >= 8) {
|
|
|
|
i1 = 1;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (i1 >= 8) {
|
2011-01-02 00:14:26 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start - all four cardinal directions. Do not change the order!
|
2011-01-15 21:16:30 +01:00
|
|
|
BlockFace[] faces = new BlockFace[]{ BlockFace.NORTH, BlockFace.SOUTH, BlockFace.EAST, BlockFace.WEST };
|
2011-01-05 14:16:44 +01:00
|
|
|
int index = 0;
|
2011-01-11 09:25:13 +01:00
|
|
|
for (BlockFace currentFace: faces) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (aboolean[index]) {
|
2011-01-02 00:14:26 +01:00
|
|
|
BlockFromToEvent event = new BlockFromToEvent(Type.BLOCK_FLOW, source, currentFace);
|
|
|
|
((WorldServer) world).getServer().getPluginManager().callEvent(event);
|
2011-01-05 14:16:44 +01:00
|
|
|
if (!event.isCancelled()) {
|
2011-02-23 03:37:56 +01:00
|
|
|
this.g(world, i + currentFace.getModX(), j, k + currentFace.getModZ(), i1);
|
2011-01-05 14:16:44 +01:00
|
|
|
}
|
2011-01-01 14:06:04 +01:00
|
|
|
}
|
2011-01-02 00:14:26 +01:00
|
|
|
index++;
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
private void g(World world, int i, int j, int k, int l) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.l(world, i, j, k)) {
|
|
|
|
int i1 = world.getTypeId(i, j, k);
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (i1 > 0) {
|
|
|
|
if (this.material == Material.LAVA) {
|
|
|
|
this.h(world, i, j, k);
|
2011-01-02 00:14:26 +01:00
|
|
|
} else {
|
2011-02-23 03:37:56 +01:00
|
|
|
Block.byId[i1].b_(world, i, j, k, world.getData(i, j, k));
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
world.b(i, j, k, this.id, l);
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
private int b(World world, int i, int j, int k, int l, int i1) {
|
|
|
|
int j1 = 1000;
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
for (int k1 = 0; k1 < 4; ++k1) {
|
|
|
|
if ((k1 != 0 || i1 != 1) && (k1 != 1 || i1 != 0) && (k1 != 2 || i1 != 3) && (k1 != 3 || i1 != 2)) {
|
|
|
|
int l1 = i;
|
|
|
|
int i2 = k;
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (k1 == 0) {
|
|
|
|
l1 = i - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (k1 == 1) {
|
|
|
|
++l1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (k1 == 2) {
|
|
|
|
i2 = k - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (k1 == 3) {
|
|
|
|
++i2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.k(world, l1, j, i2) && (world.getMaterial(l1, j, i2) != this.material || world.getData(l1, j, i2) != 0)) {
|
|
|
|
if (!this.k(world, l1, j - 1, i2)) {
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l < 4) {
|
|
|
|
int j2 = this.b(world, l1, j, i2, l + 1, k1);
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (j2 < j1) {
|
|
|
|
j1 = j2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return j1;
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
private boolean[] j(World world, int i, int j, int k) {
|
|
|
|
int l;
|
|
|
|
int i1;
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
for (l = 0; l < 4; ++l) {
|
|
|
|
this.c[l] = 1000;
|
|
|
|
i1 = i;
|
|
|
|
int j1 = k;
|
|
|
|
|
|
|
|
if (l == 0) {
|
|
|
|
i1 = i - 1;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (l == 1) {
|
|
|
|
++i1;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (l == 2) {
|
|
|
|
j1 = k - 1;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (l == 3) {
|
|
|
|
++j1;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (!this.k(world, i1, j, j1) && (world.getMaterial(i1, j, j1) != this.material || world.getData(i1, j, j1) != 0)) {
|
|
|
|
if (!this.k(world, i1, j - 1, j1)) {
|
|
|
|
this.c[l] = 0;
|
|
|
|
} else {
|
|
|
|
this.c[l] = this.b(world, i1, j, j1, 1, l);
|
|
|
|
}
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
l = this.c[0];
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
for (i1 = 1; i1 < 4; ++i1) {
|
|
|
|
if (this.c[i1] < l) {
|
|
|
|
l = this.c[i1];
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
for (i1 = 0; i1 < 4; ++i1) {
|
|
|
|
this.b[i1] = this.c[i1] == l;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return this.b;
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
private boolean k(World world, int i, int j, int k) {
|
|
|
|
int l = world.getTypeId(i, j, k);
|
|
|
|
|
|
|
|
if (l != Block.WOODEN_DOOR.id && l != Block.IRON_DOOR_BLOCK.id && l != Block.SIGN_POST.id && l != Block.LADDER.id && l != Block.SUGAR_CANE_BLOCK.id) {
|
|
|
|
if (l == 0) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
Material material = Block.byId[l].material;
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return material.isBuildable();
|
|
|
|
}
|
|
|
|
} else {
|
2011-01-01 08:05:05 +01:00
|
|
|
return true;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
protected int f(World world, int i, int j, int k, int l) {
|
2011-01-29 22:50:29 +01:00
|
|
|
int i1 = this.g(world, i, j, k);
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (i1 < 0) {
|
|
|
|
return l;
|
|
|
|
} else {
|
|
|
|
if (i1 == 0) {
|
|
|
|
++this.a;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i1 >= 8) {
|
|
|
|
i1 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return l >= 0 && i1 >= l ? l : i1;
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
private boolean l(World world, int i, int j, int k) {
|
|
|
|
Material material = world.getMaterial(i, j, k);
|
2011-01-02 00:14:26 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return material == this.material ? false : (material == Material.LAVA ? false : !this.k(world, i, j, k));
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public void e(World world, int i, int j, int k) {
|
|
|
|
super.e(world, i, j, k);
|
|
|
|
if (world.getTypeId(i, j, k) == this.id) {
|
2011-02-23 03:37:56 +01:00
|
|
|
world.c(i, j, k, this.id, this.b());
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|
2011-01-01 08:05:05 +01:00
|
|
|
}
|
2011-01-02 00:14:26 +01:00
|
|
|
}
|