| package fr.havzen.irizium.tileentity; |
| |
| |
| import fr.havzen.irizium.IriMod; |
| import fr.havzen.irizium.Reference; |
| import net.minecraft.block.Block; |
| import net.minecraft.block.material.Material; |
| import net.minecraft.entity.EntityLivingBase; |
| import net.minecraft.entity.item.EntityItem; |
| import net.minecraft.entity.player.EntityPlayer; |
| import net.minecraft.inventory.IInventory; |
| import net.minecraft.item.ItemStack; |
| import net.minecraft.nbt.NBTTagCompound; |
| import net.minecraft.tileentity.TileEntity; |
| import net.minecraft.tileentity.TileEntityChest; |
| import net.minecraft.util.ChatComponentText; |
| import net.minecraft.util.ChatComponentTranslation; |
| import net.minecraft.util.MathHelper; |
| import net.minecraft.world.World; |
| |
| public class BlockEntity1 extends Block |
| { |
| |
| public BlockEntity1(Material p_i45394_1_) |
| { |
| super(p_i45394_1_); |
| |
| } |
| |
| @Override |
| public boolean hasTileEntity(int metadata) { |
| |
| return true; |
| } |
| |
| @Override |
| public TileEntity createTileEntity(World world, int metadata) { |
| |
| return new TileEntityIrizium(); |
| } |
| public boolean onBlockActivated1(World world, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ) |
| { |
| if (world.isRemote) |
| { |
| return true; |
| } |
| else |
| { |
| { |
| player.openGui(IriMod.modinstance, 0, world, x, y, z);; |
| } |
| |
| return true; |
| } |
| } |
| |
| public void breakBlock(World world, int x, int y, int z, Block block, int metadata) |
| { |
| TileEntity tileentity = world.getTileEntity(x, y, z); |
| |
| IInventory inv = (IInventory)tileentity; |
| if (tileentity instanceof IInventory) |
| { |
| for (int i1 = 0; i1 < inv.getSizeInventory(); ++i1) |
| { |
| ItemStack itemstack = inv.getStackInSlot(i1); |
| |
| if (itemstack != null) |
| { |
| float f = world.rand.nextFloat() * 0.8F + 0.1F; |
| float f1 = world.rand.nextFloat() * 0.8F + 0.1F; |
| EntityItem entityitem; |
| |
| for (float f2 = world.rand.nextFloat() * 0.8F + 0.1F; itemstack.stackSize > 0; world.spawnEntityInWorld(entityitem)) |
| { |
| int j1 = world.rand.nextInt(21) + 10; |
| |
| if (j1 > itemstack.stackSize) |
| { |
| j1 = itemstack.stackSize; |
| } |
| |
| itemstack.stackSize -= j1; |
| entityitem = new EntityItem(world, (double)((float)x + f), (double)((float)y + f1), (double)((float)z + f2), new ItemStack(itemstack.getItem(), j1, itemstack.getItemDamage())); |
| float f3 = 0.05F; |
| entityitem.motionX = (double)((float)world.rand.nextGaussian() * f3); |
| entityitem.motionY = (double)((float)world.rand.nextGaussian() * f3 + 0.2F); |
| entityitem.motionZ = (double)((float)world.rand.nextGaussian() * f3); |
| |
| if (itemstack.hasTagCompound()) |
| { |
| entityitem.getEntityItem().setTagCompound((NBTTagCompound)itemstack.getTagCompound().copy()); |
| } |
| } |
| } |
| } |
| |
| world.func_147453_f(x, y, z, block); |
| } |
| |
| super.breakBlock(world, x, y, z, block, metadata); |
| } |
| public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase living, ItemStack stack) |
| { |
| if(stack.getItemDamage() == 0) |
| { |
| TileEntity tile = world.getTileEntity(x, y, z); |
| if(tile instanceof TileEntityIrizium) |
| { |
| int direction = MathHelper.floor_double((double)(living.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3; |
| ((TileEntityIrizium)tile).setDirection((byte)direction); |
| if(stack.hasDisplayName()) |
| { |
| ((TileEntityIrizium)tile).setCustomName(stack.getDisplayName()); |
| } |
| } |
| } |
| } |
| |
| public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ) |
| |
| { |
| TileEntity tile = world.getTileEntity(x, y, z); |
| if(tile instanceof TileEntityIrizium) |
| { |
| TileEntityIrizium BlockEntityTest = (TileEntityIrizium)tile; |
| } |
| return false; |
| } |
| } |