/******************************************************************************* * AbyssalCraft * Copyright (c) 2012 - 2017 Shinoow. * 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 * * Contributors: * Shinoow - implementation ******************************************************************************/ package com.shinoow.abyssalcraft.common.blocks; import java.util.List; import java.util.Random; import net.minecraft.block.BlockContainer; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyEnum; import net.minecraft.block.state.BlockStateContainer; import net.minecraft.block.state.IBlockState; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; import net.minecraft.util.EnumBlockRenderType; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumHand; import net.minecraft.util.IStringSerializable; import net.minecraft.util.NonNullList; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import com.shinoow.abyssalcraft.common.blocks.tile.TileEntityTieredEnergyPedestal; import com.shinoow.abyssalcraft.lib.ACTabs; import com.shinoow.abyssalcraft.lib.util.blocks.SingletonInventoryUtil; public class BlockTieredEnergyPedestal extends BlockContainer { public static final PropertyEnum DIMENSION = PropertyEnum.create("dimension", EnumDimType.class); public BlockTieredEnergyPedestal() { super(Material.ROCK); setUnlocalizedName("tieredenergypedestal"); setHardness(6.0F); setResistance(12.0F); setSoundType(SoundType.STONE); setCreativeTab(ACTabs.tabDecoration); setDefaultState(blockState.getBaseState().withProperty(DIMENSION, EnumDimType.OVERWORLD)); setHarvestLevel("pickaxe", 0); } @Override public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { return new AxisAlignedBB(0.25F, 0.0F, 0.25F, 0.75F, 1.0F, 0.75F); } @SuppressWarnings({ "unchecked", "rawtypes" }) @Override public void getSubBlocks(Item par1, CreativeTabs par2CreativeTabs, NonNullList<ItemStack> par3List) { par3List.add(new ItemStack(par1, 1, 0)); par3List.add(new ItemStack(par1, 1, 1)); par3List.add(new ItemStack(par1, 1, 2)); par3List.add(new ItemStack(par1, 1, 3)); } @Override public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) { return new TileEntityTieredEnergyPedestal(); } @Override public boolean isOpaqueCube(IBlockState state){ return false; } @Override public boolean isFullCube(IBlockState state) { return false; } @Override public int damageDropped (IBlockState state) { return ((EnumDimType)state.getValue(DIMENSION)).getMeta(); } @Override public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { return SingletonInventoryUtil.handleBlockActivation(world, pos, player, player.getHeldItem(hand)); } @Override public EnumBlockRenderType getRenderType(IBlockState state) { return EnumBlockRenderType.MODEL; } @Override public void breakBlock(World world, BlockPos pos, IBlockState state) { Random rand = new Random(); TileEntityTieredEnergyPedestal pedestal = (TileEntityTieredEnergyPedestal) world.getTileEntity(pos); if(pedestal != null){ if(!pedestal.getItem().isEmpty()){ float f = rand.nextFloat() * 0.8F + 0.1F; float f1 = rand.nextFloat() * 0.8F + 0.1F; float f2 = rand.nextFloat() * 0.8F + 0.1F; EntityItem item = new EntityItem(world, pos.getX() + f, pos.getY() + f1, pos.getZ() + f2, pedestal.getItem()); float f3 = 0.05F; item.motionX = (float)rand.nextGaussian() * f3; item.motionY = (float)rand.nextGaussian() * f3 + 0.2F; item.motionZ = (float)rand.nextGaussian() * f3; world.spawnEntity(item); } ItemStack stack = new ItemStack(getItemDropped(state, rand, 1), 1, damageDropped(state)); if(!stack.hasTagCompound()) stack.setTagCompound(new NBTTagCompound()); stack.getTagCompound().setFloat("PotEnergy", pedestal.getContainedEnergy()); float f = rand.nextFloat() * 0.8F + 0.1F; float f1 = rand.nextFloat() * 0.8F + 0.1F; float f2 = rand.nextFloat() * 0.8F + 0.1F; EntityItem item = new EntityItem(world, pos.getX() + f, pos.getY() + f1, pos.getZ() + f2, stack); float f3 = 0.05F; item.motionX = (float)rand.nextGaussian() * f3; item.motionY = (float)rand.nextGaussian() * f3 + 0.2F; item.motionZ = (float)rand.nextGaussian() * f3; world.spawnEntity(item); } super.breakBlock(world, pos, state); } @Override public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) { if(stack.hasTagCompound() && stack.getTagCompound().hasKey("PotEnergy")){ TileEntity tile = worldIn.getTileEntity(pos); if(tile != null && tile instanceof TileEntityTieredEnergyPedestal){ NBTTagCompound data = new NBTTagCompound(); tile.writeToNBT(data); data.setFloat("PotEnergy", stack.getTagCompound().getFloat("PotEnergy")); tile.readFromNBT(data); } } } @Override public List<ItemStack> getDrops(IBlockAccess world, BlockPos pos, IBlockState state, int fortune) { return new java.util.ArrayList<ItemStack>(); } @Override @SideOnly(Side.CLIENT) public BlockRenderLayer getBlockLayer() { return BlockRenderLayer.CUTOUT; } @Override public IBlockState getStateFromMeta(int meta) { return getDefaultState().withProperty(DIMENSION, EnumDimType.byMetadata(meta)); } @Override public int getMetaFromState(IBlockState state) { return ((EnumDimType)state.getValue(DIMENSION)).getMeta(); } @Override protected BlockStateContainer createBlockState() { return new BlockStateContainer.Builder(this).add(DIMENSION).build(); } public enum EnumDimType implements IStringSerializable { OVERWORLD(0, "overworld"), ABYSSAL_WASTELAND(1, "abyssal_wasteland"), DREADLANDS(2, "dreadlands"), OMOTHOL(3, "omothol"); private static final EnumDimType[] META_LOOKUP = new EnumDimType[values().length]; private int meta; private String name; private EnumDimType(int meta, String name) { this.meta = meta; this.name = name; } public static EnumDimType byMetadata(int meta) { if (meta < 0 || meta >= META_LOOKUP.length) meta = 0; return META_LOOKUP[meta]; } @Override public String getName() { return name; } public int getMeta() { return meta; } @Override public String toString() { return getName(); } static { for(EnumDimType type : values()) META_LOOKUP[type.getMeta()] = type; } } }