equivalent-exchange-3/src/main/java/com/pahimar/ee3/block/BlockAlchemicalChest.java

78 lines
2 KiB
Java
Raw Normal View History

2013-08-23 16:59:50 +02:00
package com.pahimar.ee3.block;
import com.pahimar.ee3.EquivalentExchange3;
import com.pahimar.ee3.lib.GuiIds;
import com.pahimar.ee3.lib.RenderIds;
import com.pahimar.ee3.lib.Strings;
import com.pahimar.ee3.tileentity.TileAlchemicalChest;
import net.minecraft.block.ITileEntityProvider;
2013-08-23 16:59:50 +02:00
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import net.minecraftforge.common.ForgeDirection;
/**
* Equivalent-Exchange-3
* <p/>
2013-08-23 16:59:50 +02:00
* BlockAlchemicalChest
*
2013-08-23 16:59:50 +02:00
* @author pahimar
*/
public class BlockAlchemicalChest extends BlockEE implements ITileEntityProvider
{
public BlockAlchemicalChest(int id)
{
2013-08-23 16:59:50 +02:00
super(id, Material.wood);
this.setHardness(2.5F);
2013-08-23 16:59:50 +02:00
this.setUnlocalizedName(Strings.ALCHEMICAL_CHEST_NAME);
this.setBlockBounds(0.0625F, 0.0F, 0.0625F, 0.9375F, 0.875F, 0.9375F);
}
2013-09-07 04:47:12 +02:00
2013-08-23 16:59:50 +02:00
@Override
public TileEntity createNewTileEntity(World world)
{
2013-08-23 16:59:50 +02:00
return new TileAlchemicalChest();
}
@Override
public boolean renderAsNormalBlock()
{
2013-08-23 16:59:50 +02:00
return false;
}
@Override
public boolean isOpaqueCube()
{
2013-08-23 16:59:50 +02:00
return false;
}
@Override
public int getRenderType()
{
2013-08-23 16:59:50 +02:00
return RenderIds.alchemicalChestRender;
2013-08-23 16:59:50 +02:00
}
@Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int par6, float par7, float par8, float par9)
{
if (player.isSneaking() || world.isBlockSolidOnSide(x, y + 1, z, ForgeDirection.DOWN))
{
2013-08-23 16:59:50 +02:00
return true;
}
else
{
if (!world.isRemote)
{
if (world.getBlockTileEntity(x, y, z) instanceof TileAlchemicalChest)
{
2013-08-23 16:59:50 +02:00
player.openGui(EquivalentExchange3.instance, GuiIds.ALCHEMICAL_CHEST, world, x, y, z);
}
}
return true;
}
}
}