Paper/src/main/java/net/minecraft/server/BlockRedstoneTorch.java

166 Zeilen
5.6 KiB
Java

2011-01-12 18:40:42 +01:00
package net.minecraft.server;
2011-01-29 22:50:29 +01:00
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
// CraftBukkit start
import org.bukkit.craftbukkit.block.CraftBlock;
2011-01-12 18:40:42 +01:00
import org.bukkit.event.block.BlockRedstoneEvent;
2011-03-16 21:02:02 +01:00
import org.bukkit.plugin.PluginManager;
2011-01-29 22:50:29 +01:00
// CraftBukkit end
2011-01-12 18:40:42 +01:00
public class BlockRedstoneTorch extends BlockTorch {
private boolean isOn = false;
2011-01-12 18:40:42 +01:00
private static List b = new ArrayList();
2011-02-23 03:37:56 +01:00
public int a(int i, int j) {
return i == 1 ? Block.REDSTONE_WIRE.a(i, j) : super.a(i, j);
}
2011-01-12 18:40:42 +01:00
private boolean a(World world, int i, int j, int k, boolean flag) {
if (flag) {
b.add(new RedstoneUpdateInfo(i, j, k, world.getTime()));
2011-01-12 18:40:42 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-12 18:40:42 +01:00
int l = 0;
2011-01-29 22:50:29 +01:00
for (int i1 = 0; i1 < b.size(); ++i1) {
2011-01-12 18:40:42 +01:00
RedstoneUpdateInfo redstoneupdateinfo = (RedstoneUpdateInfo) b.get(i1);
2011-01-29 22:50:29 +01:00
if (redstoneupdateinfo.a == i && redstoneupdateinfo.b == j && redstoneupdateinfo.c == k) {
++l;
if (l >= 8) {
return true;
}
2011-01-12 18:40:42 +01:00
}
}
return false;
}
protected BlockRedstoneTorch(int i, int j, boolean flag) {
super(i, j);
this.isOn = flag;
2011-01-29 22:50:29 +01:00
this.a(true);
2011-01-12 18:40:42 +01:00
}
2011-05-26 14:48:22 +02:00
public int c() {
2011-01-12 18:40:42 +01:00
return 2;
}
public void e(World world, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
if (world.getData(i, j, k) == 0) {
2011-01-12 18:40:42 +01:00
super.e(world, i, j, k);
}
2011-01-29 22:50:29 +01:00
if (this.isOn) {
world.applyPhysics(i, j - 1, k, this.id);
world.applyPhysics(i, j + 1, k, this.id);
world.applyPhysics(i - 1, j, k, this.id);
world.applyPhysics(i + 1, j, k, this.id);
world.applyPhysics(i, j, k - 1, this.id);
world.applyPhysics(i, j, k + 1, this.id);
2011-01-12 18:40:42 +01:00
}
}
public void remove(World world, int i, int j, int k) {
if (this.isOn) {
world.applyPhysics(i, j - 1, k, this.id);
world.applyPhysics(i, j + 1, k, this.id);
world.applyPhysics(i - 1, j, k, this.id);
world.applyPhysics(i + 1, j, k, this.id);
world.applyPhysics(i, j, k - 1, this.id);
world.applyPhysics(i, j, k + 1, this.id);
2011-01-12 18:40:42 +01:00
}
}
2011-05-26 14:48:22 +02:00
public boolean a(IBlockAccess iblockaccess, int i, int j, int k, int l) {
if (!this.isOn) {
2011-01-12 18:40:42 +01:00
return false;
2011-01-29 22:50:29 +01:00
} else {
int i1 = iblockaccess.getData(i, j, k);
2011-01-12 18:40:42 +01:00
2011-01-29 22:50:29 +01:00
return i1 == 5 && l == 1 ? false : (i1 == 3 && l == 3 ? false : (i1 == 4 && l == 2 ? false : (i1 == 1 && l == 5 ? false : i1 != 2 || l != 4)));
2011-01-12 18:40:42 +01:00
}
}
private boolean g(World world, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
int l = world.getData(i, j, k);
2011-01-12 18:40:42 +01:00
return l == 5 && world.isBlockFaceIndirectlyPowered(i, j - 1, k, 0) ? true : (l == 3 && world.isBlockFaceIndirectlyPowered(i, j, k - 1, 2) ? true : (l == 4 && world.isBlockFaceIndirectlyPowered(i, j, k + 1, 3) ? true : (l == 1 && world.isBlockFaceIndirectlyPowered(i - 1, j, k, 4) ? true : l == 2 && world.isBlockFaceIndirectlyPowered(i + 1, j, k, 5))));
2011-01-12 18:40:42 +01:00
}
public void a(World world, int i, int j, int k, Random random) {
2011-01-29 22:50:29 +01:00
boolean flag = this.g(world, i, j, k);
2011-01-12 18:40:42 +01:00
while (b.size() > 0 && world.getTime() - ((RedstoneUpdateInfo) b.get(0)).d > 100L) {
2011-01-29 22:50:29 +01:00
b.remove(0);
2011-01-12 18:40:42 +01:00
}
2011-01-29 22:50:29 +01:00
2011-02-23 13:56:36 +01:00
// CraftBukkit start
2011-01-12 18:40:42 +01:00
CraftBlock block = (CraftBlock) ((WorldServer) world).getWorld().getBlockAt(i, j, k);
2011-03-16 21:02:02 +01:00
PluginManager man = ((WorldServer) world).getServer().getPluginManager();
int oldCurrent = this.isOn ? 15 : 0;
2011-03-16 21:02:02 +01:00
BlockRedstoneEvent event = new BlockRedstoneEvent(block, oldCurrent, oldCurrent);
2011-02-23 13:56:36 +01:00
// CraftBukkit end
2011-01-14 14:31:10 +01:00
if (this.isOn) {
2011-01-12 18:40:42 +01:00
if (flag) {
2011-03-16 21:02:02 +01:00
// CraftBukkit start
if (oldCurrent != 0) {
event.setNewCurrent(0);
man.callEvent(event);
if (event.getNewCurrent() != 0) {
return;
}
}
// CraftBukkit end
2011-05-14 16:29:42 +02:00
world.setTypeIdAndData(i, j, k, Block.REDSTONE_TORCH_OFF.id, world.getData(i, j, k));
2011-01-29 22:50:29 +01:00
if (this.a(world, i, j, k, true)) {
world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), "random.fizz", 0.5F, 2.6F + (world.random.nextFloat() - world.random.nextFloat()) * 0.8F);
2011-01-29 22:50:29 +01:00
for (int l = 0; l < 5; ++l) {
double d0 = (double) i + random.nextDouble() * 0.6D + 0.2D;
double d1 = (double) j + random.nextDouble() * 0.6D + 0.2D;
double d2 = (double) k + random.nextDouble() * 0.6D + 0.2D;
world.a("smoke", d0, d1, d2, 0.0D, 0.0D, 0.0D);
2011-01-12 18:40:42 +01:00
}
}
}
2011-01-29 22:50:29 +01:00
} else if (!flag && !this.a(world, i, j, k, false)) {
2011-03-16 21:02:02 +01:00
// CraftBukkit start
if (oldCurrent != 15) {
event.setNewCurrent(15);
man.callEvent(event);
if (event.getNewCurrent() != 15) {
return;
}
}
// CraftBukkit end
2011-05-14 16:29:42 +02:00
world.setTypeIdAndData(i, j, k, Block.REDSTONE_TORCH_ON.id, world.getData(i, j, k));
2011-01-12 18:40:42 +01:00
}
}
public void doPhysics(World world, int i, int j, int k, int l) {
super.doPhysics(world, i, j, k, l);
2011-05-26 14:48:22 +02:00
world.c(i, j, k, this.id, this.c());
2011-01-12 18:40:42 +01:00
}
2011-02-23 03:37:56 +01:00
public boolean c(World world, int i, int j, int k, int l) {
2011-05-26 14:48:22 +02:00
return l == 0 ? this.a(world, i, j, k, l) : false;
2011-01-12 18:40:42 +01:00
}
public int a(int i, Random random) {
2011-01-29 22:50:29 +01:00
return Block.REDSTONE_TORCH_ON.id;
2011-01-12 18:40:42 +01:00
}
public boolean isPowerSource() {
2011-01-12 18:40:42 +01:00
return true;
}
}