13
0
geforkt von Mirrors/Paper
Paper/src/main/java/net/minecraft/server/BlockDoor.java

233 Zeilen
7.0 KiB
Java

2011-01-08 14:33:54 +01:00
package net.minecraft.server;
import java.util.Random;
import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
2011-01-08 14:33:54 +01:00
public class BlockDoor extends Block {
protected BlockDoor(int i, Material material) {
super(i, material);
2011-01-29 22:50:29 +01:00
this.textureId = 97;
if (material == Material.ORE) {
++this.textureId;
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-08 14:33:54 +01:00
float f = 0.5F;
float f1 = 1.0F;
2011-01-29 22:50:29 +01:00
this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f1, 0.5F + f);
2011-01-08 14:33:54 +01:00
}
public boolean a() {
return false;
}
2012-03-01 11:49:23 +01:00
public boolean b(IBlockAccess iblockaccess, int i, int j, int k) {
int l = this.e(iblockaccess, i, j, k);
return (l & 4) != 0;
}
2011-05-26 14:48:22 +02:00
public boolean b() {
return false;
}
2011-11-20 09:01:14 +01:00
public int c() {
return 7;
}
2011-06-30 00:02:25 +02:00
public AxisAlignedBB e(World world, int i, int j, int k) {
this.updateShape(world, i, j, k);
2011-06-30 00:02:25 +02:00
return super.e(world, i, j, k);
2011-01-08 14:33:54 +01:00
}
public void updateShape(IBlockAccess iblockaccess, int i, int j, int k) {
2012-03-01 11:49:23 +01:00
this.d(this.e(iblockaccess, i, j, k));
2011-01-08 14:33:54 +01:00
}
2012-03-01 11:49:23 +01:00
public int c(IBlockAccess iblockaccess, int i, int j, int k) {
return this.e(iblockaccess, i, j, k) & 3;
}
2011-01-29 22:50:29 +01:00
2012-03-01 11:49:23 +01:00
public boolean d(IBlockAccess iblockaccess, int i, int j, int k) {
return (this.e(iblockaccess, i, j, k) & 4) != 0;
}
2011-01-29 22:50:29 +01:00
2012-03-01 11:49:23 +01:00
private void d(int i) {
float f = 0.1875F;
2011-01-29 22:50:29 +01:00
2012-03-01 11:49:23 +01:00
this.a(0.0F, 0.0F, 0.0F, 1.0F, 2.0F, 1.0F);
int j = i & 3;
boolean flag = (i & 4) != 0;
boolean flag1 = (i & 16) != 0;
if (j == 0) {
if (!flag) {
this.a(0.0F, 0.0F, 0.0F, f, 1.0F, 1.0F);
} else if (!flag1) {
this.a(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, f);
} else {
this.a(0.0F, 0.0F, 1.0F - f, 1.0F, 1.0F, 1.0F);
}
} else if (j == 1) {
if (!flag) {
this.a(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, f);
} else if (!flag1) {
this.a(1.0F - f, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
} else {
this.a(0.0F, 0.0F, 0.0F, f, 1.0F, 1.0F);
}
} else if (j == 2) {
if (!flag) {
this.a(1.0F - f, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
} else if (!flag1) {
this.a(0.0F, 0.0F, 1.0F - f, 1.0F, 1.0F, 1.0F);
} else {
this.a(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, f);
}
} else if (j == 3) {
if (!flag) {
this.a(0.0F, 0.0F, 1.0F - f, 1.0F, 1.0F, 1.0F);
} else if (!flag1) {
this.a(0.0F, 0.0F, 0.0F, f, 1.0F, 1.0F);
} else {
this.a(1.0F - f, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
}
2011-01-08 14:33:54 +01:00
}
}
public void attack(World world, int i, int j, int k, EntityHuman entityhuman) {
this.interact(world, i, j, k, entityhuman);
2011-01-08 14:33:54 +01:00
}
public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman) {
2011-01-29 22:50:29 +01:00
if (this.material == Material.ORE) {
2011-01-08 14:33:54 +01:00
return true;
2011-01-29 22:50:29 +01:00
} else {
2012-03-01 11:49:23 +01:00
int l = this.e((IBlockAccess) world, i, j, k);
int i1 = l & 7;
2011-01-08 14:33:54 +01:00
2012-03-01 11:49:23 +01:00
i1 ^= 4;
2011-01-29 22:50:29 +01:00
if ((l & 8) != 0) {
2012-03-01 11:49:23 +01:00
world.setData(i, j - 1, k, i1);
2011-01-29 22:50:29 +01:00
world.b(i, j - 1, k, i, j, k);
2012-03-01 11:49:23 +01:00
} else {
world.setData(i, j, k, i1);
world.b(i, j, k, i, j, k);
2011-01-29 22:50:29 +01:00
}
2012-03-01 11:49:23 +01:00
world.a(entityhuman, 1003, i, j, k, 0);
return true;
2011-01-08 14:33:54 +01:00
}
}
public void setDoor(World world, int i, int j, int k, boolean flag) {
2012-03-01 11:49:23 +01:00
int l = this.e((IBlockAccess) world, i, j, k);
boolean flag1 = (l & 4) != 0;
2011-01-08 14:33:54 +01:00
2012-03-01 11:49:23 +01:00
if (flag1 != flag) {
int i1 = l & 7;
2011-01-29 22:50:29 +01:00
2012-03-01 11:49:23 +01:00
i1 ^= 4;
if ((l & 8) != 0) {
world.setData(i, j - 1, k, i1);
2011-01-29 22:50:29 +01:00
world.b(i, j - 1, k, i, j, k);
2012-03-01 11:49:23 +01:00
} else {
world.setData(i, j, k, i1);
world.b(i, j, k, i, j, k);
2011-01-29 22:50:29 +01:00
}
2012-03-01 11:49:23 +01:00
world.a((EntityHuman) null, 1003, i, j, k, 0);
2011-01-08 14:33:54 +01:00
}
}
public void doPhysics(World world, int i, int j, int k, int l) {
2011-01-29 22:50:29 +01:00
int i1 = world.getData(i, j, k);
2011-01-08 14:33:54 +01:00
if ((i1 & 8) != 0) {
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j - 1, k) != this.id) {
world.setTypeId(i, j, k, 0);
2011-01-08 14:33:54 +01:00
}
else if (l > 0 && l != this.id) { // CraftBukkit
this.doPhysics(world, i, j - 1, k, l);
2011-01-08 14:33:54 +01:00
}
} else {
boolean flag = false;
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j + 1, k) != this.id) {
world.setTypeId(i, j, k, 0);
//flag = true; // CraftBukkit
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (!world.e(i, j - 1, k)) {
world.setTypeId(i, j, k, 0);
2011-01-08 14:33:54 +01:00
flag = true;
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j + 1, k) == this.id) {
world.setTypeId(i, j + 1, k, 0);
2011-01-08 14:33:54 +01:00
}
}
2011-01-29 22:50:29 +01:00
2011-01-08 14:33:54 +01:00
if (flag) {
2011-02-23 03:37:56 +01:00
if (!world.isStatic) {
2011-11-20 09:01:14 +01:00
this.b(world, i, j, k, i1, 0);
2011-02-23 03:37:56 +01:00
}
} else if (l > 0 && Block.byId[l].isPowerSource()) {
org.bukkit.World bworld = world.getWorld();
org.bukkit.block.Block block = bworld.getBlockAt(i, j, k);
org.bukkit.block.Block blockTop = bworld.getBlockAt(i, j + 1, k);
2011-03-07 19:52:25 +01:00
int power = block.getBlockPower();
int powerTop = blockTop.getBlockPower();
if (powerTop > power) power = powerTop;
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.setDoor(world, i, j, k, eventRedstone.getNewCurrent() > 0);
}
2011-05-14 16:29:42 +02:00
// CraftBukkit end
2011-01-08 14:33:54 +01:00
}
}
}
public int getDropType(int i, Random random, int j) {
return /* (i & 8) != 0 ? 0 CraftBukkit : */ (this.material == Material.ORE ? Item.IRON_DOOR.id : Item.WOOD_DOOR.id);
2011-01-08 14:33:54 +01:00
}
public MovingObjectPosition a(World world, int i, int j, int k, Vec3D vec3d, Vec3D vec3d1) {
this.updateShape(world, i, j, k);
2011-01-08 14:33:54 +01:00
return super.a(world, i, j, k, vec3d, vec3d1);
}
public boolean canPlace(World world, int i, int j, int k) {
2012-03-01 11:49:23 +01:00
return j >= 255 ? false : world.e(i, j - 1, k) && super.canPlace(world, i, j, k) && super.canPlace(world, i, j + 1, k);
2011-04-20 22:47:26 +02:00
}
2011-07-08 14:25:53 +02:00
2011-11-20 09:01:14 +01:00
public int g() {
2011-07-08 14:25:53 +02:00
return 1;
}
2012-03-01 11:49:23 +01:00
public int e(IBlockAccess iblockaccess, int i, int j, int k) {
int l = iblockaccess.getData(i, j, k);
boolean flag = (l & 8) != 0;
int i1;
int j1;
if (flag) {
i1 = iblockaccess.getData(i, j - 1, k);
j1 = l;
} else {
i1 = l;
j1 = iblockaccess.getData(i, j + 1, k);
}
boolean flag1 = (j1 & 1) != 0;
int k1 = i1 & 7 | (flag ? 8 : 0) | (flag1 ? 16 : 0);
return k1;
}
2011-01-08 14:33:54 +01:00
}