2012-10-25 05:53:23 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class ItemSkull extends Item {
|
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
private static final String[] b = new String[] { "skeleton", "wither", "zombie", "char", "creeper"};
|
|
|
|
public static final String[] a = new String[] { "skull_skeleton", "skull_wither", "skull_zombie", "skull_char", "skull_creeper"};
|
2012-10-25 05:53:23 +02:00
|
|
|
|
|
|
|
public ItemSkull(int i) {
|
|
|
|
super(i);
|
|
|
|
this.a(CreativeModeTab.c);
|
|
|
|
this.setMaxDurability(0);
|
|
|
|
this.a(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2012-10-25 05:53:23 +02:00
|
|
|
if (l == 0) {
|
|
|
|
return false;
|
|
|
|
} else if (!world.getMaterial(i, j, k).isBuildable()) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
if (l == 1) {
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 2) {
|
|
|
|
--k;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 3) {
|
|
|
|
++k;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 4) {
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 5) {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!entityhuman.a(i, j, k, l, itemstack)) {
|
|
|
|
return false;
|
|
|
|
} else if (!Block.SKULL.canPlace(world, i, j, k)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
2013-01-20 07:34:55 +01:00
|
|
|
// CraftBukkit start - handle in ItemBlock
|
2013-03-13 23:33:27 +01:00
|
|
|
// world.setTypeIdAndData(i, j, k, Block.SKULL.id, l, 2);
|
2013-01-27 17:44:32 +01:00
|
|
|
if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j, k, Block.SKULL.id, l, clickedX, clickedY, clickedZ)) {
|
2013-01-20 07:34:55 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
l = world.getData(i, j, k);
|
|
|
|
// CraftBukkit end
|
2012-10-25 05:53:23 +02:00
|
|
|
int i1 = 0;
|
|
|
|
|
|
|
|
if (l == 1) {
|
|
|
|
i1 = MathHelper.floor((double) (entityhuman.yaw * 16.0F / 360.0F) + 0.5D) & 15;
|
|
|
|
}
|
|
|
|
|
|
|
|
TileEntity tileentity = world.getTileEntity(i, j, k);
|
|
|
|
|
|
|
|
if (tileentity != null && tileentity instanceof TileEntitySkull) {
|
|
|
|
String s = "";
|
|
|
|
|
|
|
|
if (itemstack.hasTag() && itemstack.getTag().hasKey("SkullOwner")) {
|
|
|
|
s = itemstack.getTag().getString("SkullOwner");
|
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
((TileEntitySkull) tileentity).setSkullType(itemstack.getData(), s);
|
|
|
|
((TileEntitySkull) tileentity).setRotation(i1);
|
2012-10-25 05:53:23 +02:00
|
|
|
((BlockSkull) Block.SKULL).a(world, i, j, k, (TileEntitySkull) tileentity);
|
|
|
|
}
|
|
|
|
|
|
|
|
--itemstack.count;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int filterData(int i) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
public String d(ItemStack itemstack) {
|
2012-10-25 05:53:23 +02:00
|
|
|
int i = itemstack.getData();
|
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
if (i < 0 || i >= b.length) {
|
2012-10-25 05:53:23 +02:00
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
return super.getName() + "." + b[i];
|
2012-10-25 05:53:23 +02:00
|
|
|
}
|
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
public String l(ItemStack itemstack) {
|
|
|
|
return itemstack.getData() == 3 && itemstack.hasTag() && itemstack.getTag().hasKey("SkullOwner") ? LocaleI18n.get("item.skull.player.name", new Object[] { itemstack.getTag().getString("SkullOwner")}) : super.l(itemstack);
|
2012-10-25 05:53:23 +02:00
|
|
|
}
|
|
|
|
}
|