2011-01-08 12:18:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class ItemSign extends Item {
|
|
|
|
|
|
|
|
public ItemSign(int i) {
|
|
|
|
super(i);
|
2012-07-29 09:33:13 +02:00
|
|
|
this.maxStackSize = 16;
|
|
|
|
this.a(CreativeModeTab.c);
|
2011-01-08 12:18:05 +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) {
|
2013-01-27 17:44:32 +01:00
|
|
|
final int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l == 0) {
|
|
|
|
return false;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else if (!world.getMaterial(i, j, k).isBuildable()) {
|
2011-01-08 12:18:05 +01:00
|
|
|
return false;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
if (l == 1) {
|
|
|
|
++j;
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (l == 2) {
|
|
|
|
--k;
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (l == 3) {
|
|
|
|
++k;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 4) {
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 5) {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (!entityhuman.a(i, j, k, l, itemstack)) {
|
2011-09-15 02:23:52 +02:00
|
|
|
return false;
|
|
|
|
} else if (!Block.SIGN_POST.canPlace(world, i, j, k)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return false;
|
|
|
|
} else {
|
2013-01-27 17:44:32 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
final Block block;
|
2011-01-29 22:50:29 +01:00
|
|
|
if (l == 1) {
|
2011-09-15 02:23:52 +02:00
|
|
|
int i1 = MathHelper.floor((double) ((entityhuman.yaw + 180.0F) * 16.0F / 360.0F) + 0.5D) & 15;
|
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
// world.setTypeIdAndData(i, j, k, Block.SIGN_POST.id, i1, 2);
|
2013-01-27 17:44:32 +01:00
|
|
|
block = Block.SIGN_POST;
|
|
|
|
l = i1;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2013-03-13 23:33:27 +01:00
|
|
|
// world.setTypeIdAndData(i, j, k, Block.WALL_SIGN.id, l, 2);
|
2013-01-27 17:44:32 +01:00
|
|
|
block = Block.WALL_SIGN;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2013-01-27 17:44:32 +01:00
|
|
|
if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j, k, block.id, 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) {
|
2012-10-25 05:53:23 +02:00
|
|
|
entityhuman.a((TileEntity) tileentitysign);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-08 12:18:05 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return true;
|
|
|
|
}
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|