package com.mrcrayfish.furniture.blocks; import java.util.Random; import com.mrcrayfish.furniture.MrCrayfishFurnitureMod; import com.mrcrayfish.furniture.init.FurnitureItems; import com.mrcrayfish.furniture.init.FurnitureSounds; import com.mrcrayfish.furniture.tileentity.TileEntityCrate; import net.minecraft.block.Block; import net.minecraft.block.ITileEntityProvider; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.block.state.IBlockState; import net.minecraft.client.audio.SoundList; import net.minecraft.client.audio.SoundRegistry; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.SoundEvents; import net.minecraft.inventory.InventoryHelper; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumHand; import net.minecraft.util.SoundCategory; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; public class BlockCrate extends Block implements ITileEntityProvider { public BlockCrate(Material materialIn) { super(materialIn); this.setHardness(1.0F); this.setSoundType(SoundType.WOOD); this.setCreativeTab(MrCrayfishFurnitureMod.tabFurniture); } @Override public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) { if(stack.hasTagCompound()) { TileEntity crate = new TileEntityCrate(); NBTTagCompound compound = stack.copy().getTagCompound(); if(compound.getBoolean("Sealed")) { compound.setInteger("x", pos.getX()); compound.setInteger("y", pos.getY()); compound.setInteger("z", pos.getZ()); compound.setString("id", "cfmCrate"); crate.readFromNBT(compound); crate.validate(); worldIn.setTileEntity(pos, crate); } } } @Override public Item getItemDropped(IBlockState state, Random rand, int fortune) { return null; } @Override public boolean removedByPlayer(IBlockState state, World worldIn, BlockPos pos, EntityPlayer playerIn, boolean willHarvest) { if(!worldIn.isRemote) { TileEntity tileEntity = worldIn.getTileEntity(pos); if(tileEntity instanceof TileEntityCrate) { TileEntityCrate crate = (TileEntityCrate) tileEntity; if(crate.sealed) { ItemStack drop = new ItemStack(this); NBTTagCompound compound = new NBTTagCompound(); crate.writeToNBT(compound); compound.removeTag("x"); compound.removeTag("y"); compound.removeTag("z"); compound.removeTag("id"); drop.setTagCompound(compound); worldIn.spawnEntityInWorld(new EntityItem(worldIn, pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, drop)); } } } return super.removedByPlayer(state, worldIn, pos, playerIn, willHarvest); } @Override public void breakBlock(World worldIn, BlockPos pos, IBlockState state) { super.breakBlock(worldIn, pos, state); } @Override public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) { if (!worldIn.isRemote) { TileEntity tileEntity = worldIn.getTileEntity(pos); if (tileEntity instanceof TileEntityCrate) { TileEntityCrate crate = (TileEntityCrate) tileEntity; if(!crate.sealed) { playerIn.openGui(MrCrayfishFurnitureMod.instance, 0, worldIn, pos.getX(), pos.getY(), pos.getZ()); } else { if(heldItem != null && heldItem.getItem() == FurnitureItems.itemCrowBar) { worldIn.playSound(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, SoundEvents.ENTITY_ZOMBIE_BREAK_DOOR_WOOD, SoundCategory.BLOCKS, 1.0F, 1.0F, false); InventoryHelper.dropInventoryItems(worldIn, pos, crate); worldIn.destroyBlock(pos, false); } } } } return true; } @Override public TileEntity createNewTileEntity(World worldIn, int meta) { return new TileEntityCrate(); } }