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

108 Zeilen
3.5 KiB
Java

2011-03-21 00:25:26 +01:00
package net.minecraft.server;
public class ItemDoor extends Item {
private Material a;
public ItemDoor(int i, Material material) {
super(i);
this.a = material;
this.maxStackSize = 1;
2012-07-29 09:33:13 +02:00
this.a(CreativeModeTab.d);
2011-03-21 00:25:26 +01:00
}
2012-07-29 09:33:13 +02:00
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l, float f, float f1, float f2) {
final int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
2011-03-21 00:25:26 +01:00
if (l != 1) {
return false;
} else {
++j;
Block block;
if (this.a == Material.WOOD) {
block = Block.WOODEN_DOOR;
} else {
block = Block.IRON_DOOR_BLOCK;
}
if (entityhuman.a(i, j, k, l, itemstack) && entityhuman.a(i, j + 1, k, l, itemstack)) {
2011-09-15 02:23:52 +02:00
if (!block.canPlace(world, i, j, k)) {
return false;
} else {
int i1 = MathHelper.floor((double) ((entityhuman.yaw + 180.0F) * 4.0F / 360.0F) - 0.5D) & 3;
// CraftBukkit start
if (!place(world, i, j, k, i1, block, entityhuman, clickedX, clickedY, clickedZ)) {
2012-02-29 22:31:04 +01:00
return false;
2011-09-15 02:23:52 +02:00
}
// CraftBukkit end
2012-02-29 22:31:04 +01:00
--itemstack.count;
return true;
2011-03-21 00:25:26 +01:00
}
2011-09-15 02:23:52 +02:00
} else {
return false;
}
}
}
2011-03-21 00:25:26 +01:00
public static void place(World world, int i, int j, int k, int l, Block block) {
// CraftBukkit start
place(world, i, j, k, l, block, null, i, j, k);
2011-09-15 06:23:17 +02:00
}
public static boolean place(World world, int i, int j, int k, int l, Block block, EntityHuman entityhuman, int clickedX, int clickedY, int clickedZ) {
// CraftBukkit end
2011-09-15 02:23:52 +02:00
byte b0 = 0;
byte b1 = 0;
2011-03-21 00:25:26 +01:00
2011-09-15 02:23:52 +02:00
if (l == 0) {
b1 = 1;
}
2011-03-21 00:25:26 +01:00
2011-09-15 02:23:52 +02:00
if (l == 1) {
b0 = -1;
}
2011-03-21 00:25:26 +01:00
2011-09-15 02:23:52 +02:00
if (l == 2) {
b1 = -1;
}
2011-03-21 00:25:26 +01:00
2011-09-15 02:23:52 +02:00
if (l == 3) {
b0 = 1;
}
2011-03-21 00:25:26 +01:00
2013-03-13 23:33:27 +01:00
int i1 = (world.u(i - b0, j, k - b1) ? 1 : 0) + (world.u(i - b0, j + 1, k - b1) ? 1 : 0);
int j1 = (world.u(i + b0, j, k + b1) ? 1 : 0) + (world.u(i + b0, j + 1, k + b1) ? 1 : 0);
2011-09-15 02:23:52 +02:00
boolean flag = world.getTypeId(i - b0, j, k - b1) == block.id || world.getTypeId(i - b0, j + 1, k - b1) == block.id;
boolean flag1 = world.getTypeId(i + b0, j, k + b1) == block.id || world.getTypeId(i + b0, j + 1, k + b1) == block.id;
boolean flag2 = false;
2011-03-21 00:25:26 +01:00
2011-09-15 02:23:52 +02:00
if (flag && !flag1) {
flag2 = true;
} else if (j1 > i1) {
flag2 = true;
}
2011-03-21 00:25:26 +01:00
// CraftBukkit start
2011-09-15 06:23:17 +02:00
if (entityhuman != null) {
2013-07-01 13:03:00 +02:00
if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j, k, block.id, l, clickedX, clickedY, clickedZ)) {
((EntityPlayer) entityhuman).playerConnection.sendPacket(new Packet53BlockChange(i, j + 1, k, world));
2011-09-15 06:23:17 +02:00
return false;
}
if (world.getTypeId(i, j, k) != block.id) {
((EntityPlayer) entityhuman).playerConnection.sendPacket(new Packet53BlockChange(i, j + 1, k, world));
return true;
}
} else {
2013-03-13 23:33:27 +01:00
world.setTypeIdAndData(i, j, k, block.id, l, 2);
2011-03-21 00:25:26 +01:00
}
2012-01-12 12:02:39 +01:00
// CraftBukkit end
2013-03-13 23:33:27 +01:00
world.setTypeIdAndData(i, j + 1, k, block.id, 8 | (flag2 ? 1 : 0), 2);
world.applyPhysics(i, j, k, block.id);
2011-09-15 02:23:52 +02:00
world.applyPhysics(i, j + 1, k, block.id);
return true; // CraftBukkit
2011-03-21 00:25:26 +01:00
}
}