package com.lordmau5.ffs.blocks; import com.lordmau5.ffs.FancyFluidStorage; import com.lordmau5.ffs.tile.TileEntityTankFrame; import com.lordmau5.ffs.tile.TileEntityValve; import com.lordmau5.ffs.util.FFSStateProps; import com.lordmau5.ffs.util.GenericUtil; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.block.properties.IProperty; import net.minecraft.block.state.BlockState; import net.minecraft.block.state.IBlockState; import net.minecraft.client.particle.EffectRenderer; import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockPos; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumWorldBlockLayer; import net.minecraft.util.MovingObjectPosition; import net.minecraft.world.Explosion; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import net.minecraftforge.common.property.ExtendedBlockState; import net.minecraftforge.common.property.IExtendedBlockState; import net.minecraftforge.common.property.IUnlistedProperty; import net.minecraftforge.event.ForgeEventFactory; import net.minecraftforge.fml.common.Optional; import java.util.ArrayList; import java.util.Random; /** * Created by Dustin on 02.07.2015. */ @Optional.Interface(iface = "com.cricketcraft.chisel.api.IFacade", modid = "chisel") public class BlockTankFrame extends Block //implements IFacade { public BlockTankFrame() { super(Material.rock); setUnlocalizedName("blockFrame"); setRegistryName("blockFrame"); setDefaultState(((IExtendedBlockState) blockState.getBaseState()) .withProperty(FFSStateProps.FRAME_STATE, null)); } @Override public BlockState createBlockState() { return new ExtendedBlockState(this, new IProperty[] {}, new IUnlistedProperty[] { FFSStateProps.FRAME_STATE }); } @Override public boolean hasTileEntity(IBlockState state) { return true; } @Override public TileEntity createTileEntity(World world, IBlockState state) { return new TileEntityTankFrame(); } @Override public void onBlockExploded(World world, BlockPos pos, Explosion explosion) { TileEntity tile = world.getTileEntity(pos); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) world.getTileEntity(pos); frame.setBlockState(null); frame.breakFrame(); frame.onBreak(); } super.onBlockDestroyedByExplosion(world, pos, explosion); } @Override public boolean removedByPlayer(World world, BlockPos pos, EntityPlayer player, boolean willHarvest) { TileEntity tile = world.getTileEntity(pos); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) world.getTileEntity(pos); if(!player.capabilities.isCreativeMode) { ArrayList items = new ArrayList<>(); IBlockState state = frame.getBlockState(); Block block = state.getBlock(); if(block.canSilkHarvest(world, pos, state, player) && EnchantmentHelper.getSilkTouchModifier(player)) { ForgeEventFactory.fireBlockHarvesting(items, world, pos, state, 0, 1.0f, true, player); ItemStack itemstack = new ItemStack(Item.getItemFromBlock(block), 1, block.getMetaFromState(state)); items.add(itemstack); for (ItemStack is : items) { spawnAsEntity(world, pos, is); } } else { ForgeEventFactory.fireBlockHarvesting(items, world, pos, state, 0, 1.0f, false, player); items.addAll(block.getDrops(world, pos, state, 0)); for (ItemStack is : items) { spawnAsEntity(world, pos, is); } } } frame.onBreak(); } return super.removedByPlayer(world, pos, player, willHarvest); } @Override public Item getItemDropped(IBlockState block, Random rand, int fortune) { return null; } @Override public float getPlayerRelativeBlockHardness(EntityPlayer player, World world, BlockPos pos) { TileEntity tile = world.getTileEntity(pos); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) world.getTileEntity(pos); return frame.getBlockState().getBlock().getPlayerRelativeBlockHardness(player, world, pos); } return super.getPlayerRelativeBlockHardness(player, world, pos); } @Override public boolean addDestroyEffects(World world, BlockPos pos, EffectRenderer effectRenderer) { return true; } @Override public boolean canRenderInLayer(EnumWorldBlockLayer layer) { return true; } @Override public IBlockState getActualState(IBlockState state, IBlockAccess world, BlockPos pos) { if (world.getTileEntity(pos) instanceof TileEntityTankFrame) { TileEntityTankFrame tile = ((TileEntityTankFrame) world.getTileEntity(pos)); return ((IExtendedBlockState) state).withProperty(FFSStateProps.FRAME_STATE, tile.getBlockState()); } else { return state; } } @Override public IBlockState getExtendedState(IBlockState state, IBlockAccess world, BlockPos pos) { if (world.getTileEntity(pos) instanceof TileEntityTankFrame) { TileEntityTankFrame tile = ((TileEntityTankFrame) world.getTileEntity(pos)); return ((IExtendedBlockState) state).withProperty(FFSStateProps.FRAME_STATE, tile.getBlockState()); } else { return ((IExtendedBlockState) state); } } @Override public boolean isOpaqueCube() { return false; } @Override public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumFacing side, float hitX, float hitY, float hitZ) { if (super.onBlockActivated(world, pos, state, player, side, hitX, hitY, hitZ)) { return true; } if (player.isSneaking()) return false; TileEntityTankFrame frame = (TileEntityTankFrame) world.getTileEntity(pos); if(frame != null && frame.getValve() != null) { TileEntityValve valve = frame.getValve(); if (valve.isValid()) { if(GenericUtil.isFluidContainer(player.getHeldItem())) return GenericUtil.fluidContainerHandler(world, pos, valve, player, side); player.openGui(FancyFluidStorage.instance, 0, world, pos.getX(), pos.getY(), pos.getZ()); return true; } } return false; } @Override public boolean isNormalCube(IBlockAccess world, BlockPos pos) { return true; } @Override public ItemStack getPickBlock(MovingObjectPosition target, World world, BlockPos pos, EntityPlayer player) { TileEntity tile = world.getTileEntity(pos); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) tile; return frame.getBlockState() == null ? null : frame.getBlockState().getBlock().getPickBlock(target, world, pos, player); } return null; } public int getFlammability(IBlockAccess world, BlockPos pos, EnumFacing face) { TileEntity tile = world.getTileEntity(pos); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) tile; if(frame.getBlockState() != null) { return frame.getBlockState().getBlock().getFlammability(world, pos, face); } } return 0; } @Override public float getExplosionResistance(World world, BlockPos pos, Entity exploder, Explosion explosion) { TileEntity tile = world.getTileEntity(pos); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) tile; if(frame.getBlockState() != null) { return frame.getBlockState().getBlock().getExplosionResistance(world, pos, exploder, explosion); } } return super.getExplosionResistance(exploder); } @Override public void breakBlock(World world, BlockPos pos, IBlockState state) { TileEntity tile = world.getTileEntity(pos); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) tile; frame.onBreak(); } super.breakBlock(world, pos, state); } @Override public boolean canCreatureSpawn(IBlockAccess world, BlockPos pos, EntityLiving.SpawnPlacementType type) { return false; } /* @Override @Optional.Method(modid = "chisel") public Block getFacade(IBlockAccess world, int x, int y, int z, int side) { TileEntity tile = world.getTileEntity(x, y, z); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) tile; if(frame.getValve() == null) return null; ExtendedBlock block = frame.getBlock(); if(block != null) return block.getBlock(); } return null; } @Override @Optional.Method(modid = "chisel") public int getFacadeMetadata(IBlockAccess world, int x, int y, int z, int side) { TileEntity tile = world.getTileEntity(x, y, z); if(tile != null && tile instanceof TileEntityTankFrame) { TileEntityTankFrame frame = (TileEntityTankFrame) tile; if(frame.getValve() == null) return 0; ExtendedBlock block = frame.getBlock(); if(block != null) return block.getMetadata(); } return 0; } */ }