craftbukkit/src/main/java/net/minecraft/server/ItemSign.java

73 lines
2.2 KiB
Java
Raw Normal View History

package net.minecraft.server;
public class ItemSign extends Item {
2013-11-04 07:07:38 -06:00
public ItemSign() {
2012-07-29 02:33:13 -05:00
this.maxStackSize = 16;
this.a(CreativeModeTab.c);
}
2012-07-29 02:33:13 -05: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
if (l == 0) {
return false;
2013-11-04 07:07:38 -06:00
} else if (!world.getType(i, j, k).getMaterial().isBuildable()) {
return false;
2011-01-29 22:50:29 +01:00
} else {
if (l == 1) {
++j;
}
2011-01-29 22:50:29 +01:00
if (l == 2) {
--k;
}
2011-01-29 22:50:29 +01:00
if (l == 3) {
++k;
}
if (l == 4) {
--i;
}
if (l == 5) {
++i;
}
if (!entityhuman.a(i, j, k, l, itemstack)) {
2011-09-15 01:23:52 +01:00
return false;
2013-11-04 07:07:38 -06:00
} else if (!Blocks.SIGN_POST.canPlace(world, i, j, k)) {
2011-01-29 22:50:29 +01:00
return false;
2013-07-08 19:43:37 -04:00
} else if (world.isStatic) {
return true;
2011-01-29 22:50:29 +01:00
} else {
// CraftBukkit start
final Block block;
2011-01-29 22:50:29 +01:00
if (l == 1) {
2011-09-15 01:23:52 +01:00
int i1 = MathHelper.floor((double) ((entityhuman.yaw + 180.0F) * 16.0F / 360.0F) + 0.5D) & 15;
2013-11-04 07:07:38 -06:00
// world.setTypeAndData(i, j, k, Blocks.SIGN_POST, i1, 3);
block = Blocks.SIGN_POST;
l = i1;
2011-01-29 22:50:29 +01:00
} else {
2013-11-04 07:07:38 -06:00
// world.setTypeAndData(i, j, k, Blocks.WALL_SIGN, l, 3);
block = Blocks.WALL_SIGN;
2011-01-29 22:50:29 +01:00
}
2013-11-04 07:07:38 -06:00
if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j, k, block, l, clickedX, clickedY, clickedZ)) {
2011-03-21 00:25:26 +01:00
return false;
}
// CraftBukkit end
2011-01-29 22:50:29 +01:00
--itemstack.count;
TileEntitySign tileentitysign = (TileEntitySign) world.getTileEntity(i, j, k);
if (tileentitysign != null) {
entityhuman.a((TileEntity) tileentitysign);
2011-01-29 22:50:29 +01:00
}
2011-01-29 22:50:29 +01:00
return true;
}
}
}
}