2013-07-03 07:51:39 +00:00
|
|
|
package biomesoplenty.itemblocks;
|
2013-05-22 20:29:39 +00:00
|
|
|
|
2013-05-23 09:06:58 +00:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2013-05-22 20:29:39 +00:00
|
|
|
import net.minecraft.item.ItemBlock;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2013-05-23 09:06:58 +00:00
|
|
|
import net.minecraft.world.World;
|
2013-05-22 20:29:39 +00:00
|
|
|
|
2013-07-03 07:51:39 +00:00
|
|
|
public class ItemBlockBones extends ItemBlock
|
2013-05-22 20:29:39 +00:00
|
|
|
{
|
2013-05-31 10:34:02 +00:00
|
|
|
private static final String[] types = new String[] {"bones_small", "bones_medium", "bones_large", "bones_small_side_1", "bones_small_side_2", "bones_medium_side_1", "bones_medium_side_2"};
|
|
|
|
|
2013-07-03 07:51:39 +00:00
|
|
|
public ItemBlockBones(int par1)
|
2013-05-31 10:34:02 +00:00
|
|
|
{
|
|
|
|
super(par1);
|
|
|
|
setMaxDamage(0);
|
|
|
|
setHasSubtypes(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMetadata(int meta)
|
|
|
|
{
|
|
|
|
return meta & 15;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getUnlocalizedName(ItemStack itemstack) {
|
|
|
|
int meta = itemstack.getItemDamage();
|
|
|
|
if (meta < 0 || meta >= types.length) {
|
|
|
|
meta = 0;
|
|
|
|
}
|
|
|
|
|
2013-06-09 00:39:12 +00:00
|
|
|
return super.getUnlocalizedName() + "." + types[meta];
|
2013-05-31 10:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onItemUse(ItemStack itemstack, EntityPlayer player, World world, int x, int y, int z, int side, float par8, float par9, float par10)
|
|
|
|
{
|
|
|
|
int id = world.getBlockId(x, y, z);
|
|
|
|
|
|
|
|
if (id == Block.snow.blockID && (world.getBlockMetadata(x, y, z) & 7) < 1)
|
|
|
|
{
|
|
|
|
side = 1;
|
|
|
|
}
|
|
|
|
else if (id != Block.vine.blockID && id != Block.tallGrass.blockID && id != Block.deadBush.blockID
|
|
|
|
&& (Block.blocksList[id] == null || !Block.blocksList[id].isBlockReplaceable(world, x, y, z)))
|
|
|
|
{
|
|
|
|
if (side == 0)
|
|
|
|
{
|
|
|
|
--y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (side == 1)
|
|
|
|
{
|
|
|
|
++y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (side == 2)
|
|
|
|
{
|
|
|
|
--z;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (side == 3)
|
|
|
|
{
|
|
|
|
++z;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (side == 4)
|
|
|
|
{
|
|
|
|
--x;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (side == 5)
|
|
|
|
{
|
|
|
|
++x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (itemstack.stackSize == 0)
|
|
|
|
return false;
|
|
|
|
else if (!player.canPlayerEdit(x, y, z, side, itemstack))
|
|
|
|
return false;
|
|
|
|
else if (y == 255 && Block.blocksList[itemID].blockMaterial.isSolid())
|
|
|
|
return false;
|
|
|
|
else if (world.canPlaceEntityOnSide(itemID, x, y, z, false, side, player, itemstack))
|
|
|
|
{
|
|
|
|
Block block = Block.blocksList[itemID];
|
|
|
|
int j1 = this.getMetadata(itemstack.getItemDamage());
|
|
|
|
|
|
|
|
if (side == 2 || side == 3)
|
|
|
|
{
|
|
|
|
if (itemstack.getItemDamage() == 0) {
|
|
|
|
j1 = 3;
|
|
|
|
} else if (itemstack.getItemDamage() == 1) {
|
|
|
|
j1 = 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (side == 4 || side == 5)
|
|
|
|
{
|
|
|
|
if (itemstack.getItemDamage() == 0) {
|
|
|
|
j1 = 4;
|
|
|
|
} else if (itemstack.getItemDamage() == 1) {
|
|
|
|
j1 = 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int k1 = Block.blocksList[itemID].onBlockPlaced(world, x, y, z, side, par8, par9, par10, j1);
|
|
|
|
|
|
|
|
if (placeBlockAt(itemstack, player, world, x, y, z, side, par8, par9, par10, k1))
|
|
|
|
{
|
|
|
|
world.playSoundEffect(x + 0.5F, y + 0.5F, z + 0.5F, block.stepSound.getPlaceSound(), (block.stepSound.getVolume() + 1.0F) / 2.0F, block.stepSound.getPitch() * 0.8F);
|
|
|
|
--itemstack.stackSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else
|
|
|
|
return false;
|
|
|
|
}
|
2013-05-22 20:29:39 +00:00
|
|
|
}
|