package extracells.blocks;
import java.util.Random;
import net.minecraft.block.material.Material;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
import net.minecraftforge.common.ForgeDirection;
import appeng.api.me.items.IAEWrench;
import cpw.mods.fml.common.FMLCommonHandler;
import extracells.Extracells;
import extracells.ItemEnum;
import extracells.gui.GuiSolderingStation;
import extracells.tileentity.TileEntitySolderingStation;
public class BlockSolderingStation extends RotatableColorBlock
{
public BlockSolderingStation(int id)
{
super(id, Material.rock);
setCreativeTab(Extracells.ModTab);
setUnlocalizedName("block.solderingstation");
setHardness(2.0F);
setResistance(6000F);
setLightValue(0.02f);
setBlockBounds(0F, 0F, 0F, 1.0F, 1.0F, 1.0F);
}
@Override
public int quantityDropped(Random par1Random)
{
return 1;
}
@Override
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack itemstack)
{
int l = MathHelper.floor_double(player.rotationYaw * 4.0F / 360.0F + 0.5D) & 3;
if (l == 0)
{
world.setBlockMetadataWithNotify(x, y, z, 2, 2);
}
if (l == 1)
{
world.setBlockMetadataWithNotify(x, y, z, 5, 2);
}
if (l == 2)
{
world.setBlockMetadataWithNotify(x, y, z, 3, 2);
}
if (l == 3)
{
world.setBlockMetadataWithNotify(x, y, z, 4, 2);
}
}
@Override
public boolean isOpaqueCube()
{
return false;
}
@Override
public boolean renderAsNormalBlock()
{
return false;
}
@Override
public int getRenderType()
{
return -1;
}
@Override
public ForgeDirection[] getValidRotations(World worldObj, int x, int y, int z)
{
return new ForgeDirection[]
{ ForgeDirection.WEST, ForgeDirection.EAST, ForgeDirection.NORTH, ForgeDirection.SOUTH };
}
@Override
public TileEntity createNewTileEntity(World world)
{
return new TileEntitySolderingStation();
}
@Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int i, float a, float b, float c)
{
if (player.inventory.getCurrentItem() != null && player.inventory.getCurrentItem().getItem() instanceof IAEWrench)
{
return false;
}
if (world.isRemote)
{
FMLCommonHandler.instance().showGuiScreen(new GuiSolderingStation(player, x, y, z, (player.getHeldItem() != null && player.getHeldItem().getItem() == ItemEnum.STORAGEPHYSICAL.getItemInstance() && player.getHeldItem().getItemDamage() == 5)));
return true;
} else
{
return true;
}
}
public int onBlockPlaced(World world, int x, int y, int z, int side, float hitX, float hitY, float hiZ, int meta)
{
return meta;
}
}