Made trapdoors fire BlockRedstone events.

This commit is contained in:
EvilSeph 2011-06-30 13:51:42 -04:00
parent 1e209e8e11
commit b530299759

View File

@ -0,0 +1,188 @@
package net.minecraft.server;
import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
public class BlockTrapdoor extends Block {
protected BlockTrapdoor(int i, Material material) {
super(i, material);
this.textureId = 84;
if (material == Material.ORE) {
++this.textureId;
}
float f = 0.5F;
float f1 = 1.0F;
this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f1, 0.5F + f);
}
public boolean a() {
return false;
}
public boolean b() {
return false;
}
public AxisAlignedBB e(World world, int i, int j, int k) {
this.a(world, i, j, k);
return super.e(world, i, j, k);
}
public void a(IBlockAccess iblockaccess, int i, int j, int k) {
this.c(iblockaccess.getData(i, j, k));
}
public void c(int i) {
float f = 0.1875F;
this.a(0.0F, 0.0F, 0.0F, 1.0F, f, 1.0F);
if (d(i)) {
if ((i & 3) == 0) {
this.a(0.0F, 0.0F, 1.0F - f, 1.0F, 1.0F, 1.0F);
}
if ((i & 3) == 1) {
this.a(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, f);
}
if ((i & 3) == 2) {
this.a(1.0F - f, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
}
if ((i & 3) == 3) {
this.a(0.0F, 0.0F, 0.0F, f, 1.0F, 1.0F);
}
}
}
public void b(World world, int i, int j, int k, EntityHuman entityhuman) {
this.interact(world, i, j, k, entityhuman);
}
public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman) {
if (this.material == Material.ORE) {
return true;
} else {
int l = world.getData(i, j, k);
world.setData(i, j, k, l ^ 4);
world.a(entityhuman, 1003, i, j, k, 0);
return true;
}
}
public void a(World world, int i, int j, int k, boolean flag) {
int l = world.getData(i, j, k);
boolean flag1 = (l & 4) > 0;
if (flag1 != flag) {
world.setData(i, j, k, l ^ 4);
world.a((EntityHuman) null, 1003, i, j, k, 0);
}
}
public void doPhysics(World world, int i, int j, int k, int l) {
if (!world.isStatic) {
int i1 = world.getData(i, j, k);
int j1 = i;
int k1 = k;
if ((i1 & 3) == 0) {
k1 = k + 1;
}
if ((i1 & 3) == 1) {
--k1;
}
if ((i1 & 3) == 2) {
j1 = i + 1;
}
if ((i1 & 3) == 3) {
--j1;
}
if (!world.e(j1, j, k1)) {
world.setTypeId(i, j, k, 0);
this.g(world, i, j, k, i1);
}
// CraftBukkit start
if (l > 0 && Block.byId[l] != null && Block.byId[l].isPowerSource()) {
org.bukkit.World bworld = world.getWorld();
org.bukkit.block.Block block = bworld.getBlockAt(i, j, k);
int power = block.getBlockPower();
int oldPower = (world.getData(i, j, k) & 4) > 0 ? 15 : 0;
if (oldPower == 0 ^ power == 0) {
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, oldPower, power);
world.getServer().getPluginManager().callEvent(eventRedstone);
this.a(world, i, j, k, eventRedstone.getNewCurrent() > 0);
}
// CraftBukkit end
}
}
}
public MovingObjectPosition a(World world, int i, int j, int k, Vec3D vec3d, Vec3D vec3d1) {
this.a(world, i, j, k);
return super.a(world, i, j, k, vec3d, vec3d1);
}
public void postPlace(World world, int i, int j, int k, int l) {
byte b0 = 0;
if (l == 2) {
b0 = 0;
}
if (l == 3) {
b0 = 1;
}
if (l == 4) {
b0 = 2;
}
if (l == 5) {
b0 = 3;
}
world.setData(i, j, k, b0);
}
public boolean canPlace(World world, int i, int j, int k, int l) {
if (l == 0) {
return false;
} else if (l == 1) {
return false;
} else {
if (l == 2) {
++k;
}
if (l == 3) {
--k;
}
if (l == 4) {
++i;
}
if (l == 5) {
--i;
}
return world.e(i, j, k);
}
}
public static boolean d(int i) {
return (i & 4) != 0;
}
}