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

123 Zeilen
3.7 KiB
Java

2011-03-21 00:25:26 +01:00
package net.minecraft.server;
// CraftBukkit start
import org.bukkit.craftbukkit.block.CraftBlockState;
import org.bukkit.craftbukkit.event.CraftEventFactory;
import org.bukkit.event.block.BlockPlaceEvent;
// CraftBukkit end
public class ItemDoor extends Item {
private Material a;
public ItemDoor(int i, Material material) {
super(i);
this.a = material;
this.maxStackSize = 1;
}
public boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
if (l != 1) {
return false;
} else {
++j;
Block block;
if (this.a == Material.WOOD) {
block = Block.WOODEN_DOOR;
} else {
block = Block.IRON_DOOR_BLOCK;
}
2011-11-20 09:01:14 +01:00
if (entityhuman.d(i, j, k) && entityhuman.d(i, j + 1, k)) {
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 (a(world, i, j, k, i1, block, entityhuman)) {
--itemstack.count;
return true;
}
2011-11-20 09:01:14 +01:00
return false;
2011-09-15 02:23:52 +02:00
// CraftBukkit end
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
2011-09-15 06:23:17 +02:00
public static void a(World world, int i, int j, int k, int l, Block block) {
// CraftBukkit Start
a(world, i, j, k, l, block, null);
}
2011-09-15 02:23:52 +02:00
public static boolean a(World world, int i, int j, int k, int l, Block block, EntityHuman entityhuman) {
int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
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
2011-09-15 02:23:52 +02:00
int i1 = (world.e(i - b0, j, k - b1) ? 1 : 0) + (world.e(i - b0, j + 1, k - b1) ? 1 : 0);
int j1 = (world.e(i + b0, j, k + b1) ? 1 : 0) + (world.e(i + b0, j + 1, k + b1) ? 1 : 0);
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
2011-09-15 02:23:52 +02:00
if (flag2) {
l = l - 1 & 3;
l += 4;
}
2011-03-21 00:25:26 +01:00
2011-09-15 02:23:52 +02:00
CraftBlockState blockState = CraftBlockState.getBlockState(world, i, j, k); // CraftBukkit
2011-03-21 00:25:26 +01:00
2011-09-15 02:23:52 +02:00
world.suppressPhysics = true;
world.setTypeIdAndData(i, j, k, block.id, l);
world.suppressPhysics = false;
2011-09-15 06:23:17 +02:00
world.applyPhysics(i, j, k, block.id);
2011-03-21 00:25:26 +01:00
2011-09-15 06:23:17 +02:00
if (entityhuman != null) {
BlockPlaceEvent event = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, clickedX, clickedY, clickedZ, block);
if (event.isCancelled() || !event.canBuild()) {
event.getBlockPlaced().setTypeIdAndData(blockState.getTypeId(), blockState.getRawData(), false);
return false;
}
2011-03-21 00:25:26 +01:00
}
2011-09-15 02:23:52 +02:00
world.suppressPhysics = true;
world.setTypeIdAndData(i, j + 1, k, block.id, l + 8);
world.suppressPhysics = false;
2011-09-15 06:23:17 +02:00
2011-09-15 02:23:52 +02:00
// world.applyPhysics(i, j, k, block.id); // CraftBukkit - moved up
world.applyPhysics(i, j + 1, k, block.id);
2011-09-15 06:23:17 +02:00
return true;
// CraftBukkit end
2011-03-21 00:25:26 +01:00
}
}