/*******************************************************************************
* Copyright (c) 2011-2014 SirSengir.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v3
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl-3.0.txt
*
* Various Contributors including, but not limited to:
* SirSengir (original work), CovertJaguar, Player, Binnie, MysteriousAges
******************************************************************************/
package forestry.arboriculture.items;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import forestry.arboriculture.WoodType;
import forestry.arboriculture.gadgets.TileStairs;
import forestry.core.config.Defaults;
import forestry.core.config.ForestryBlock;
import forestry.core.items.ItemForestryBlock;
public class ItemStairs extends ItemForestryBlock {
public ItemStairs(Block block) {
super(block);
}
@Override
public boolean placeBlockAt(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ,
int metadata) {
WoodType type = WoodType.getFromCompound(stack.getTagCompound());
return placeStairs(world, player, stack, type, x, y, z, metadata);
}
private boolean placeStairs(World world, EntityPlayer player, ItemStack stack, WoodType type, int x, int y, int z, int metadata) {
boolean placed = ForestryBlock.stairs.setBlock(world, x, y, z, metadata, Defaults.FLAG_BLOCK_SYNCH);
if (!placed)
return false;
Block block = world.getBlock(x, y, z);
if (!ForestryBlock.stairs.isBlockEqual(block))
return false;
block.onBlockPlacedBy(world, x, y, z, player, stack);
block.onPostBlockPlaced(world, x, y, z, metadata);
TileEntity tile = world.getTileEntity(x, y, z);
if (!(tile instanceof TileStairs)) {
world.setBlockToAir(x, y, z);
return false;
}
((TileStairs) tile).setType(type);
return true;
}
@Override
public String getUnlocalizedName(ItemStack stack) {
WoodType type = WoodType.getFromCompound(stack.getTagCompound());
return getBlock().getUnlocalizedName() + "." + type.ordinal(); //To change body of generated methods, choose Tools | Templates.
}
}