/* * This file ("TileEntityFluidCollector.java") is part of the Actually Additions mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://ellpeck.de/actaddlicense * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2015-2016 Ellpeck */ package de.ellpeck.actuallyadditions.mod.tile; import de.ellpeck.actuallyadditions.mod.util.Util; import de.ellpeck.actuallyadditions.mod.util.WorldUtil; import net.minecraft.block.Block; import net.minecraft.block.BlockLiquid; import net.minecraft.block.state.IBlockState; import net.minecraft.init.Blocks; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.EnumFacing; import net.minecraft.util.math.BlockPos; import net.minecraftforge.fluids.*; import net.minecraftforge.fluids.capability.IFluidHandler; import net.minecraftforge.fluids.capability.IFluidTankProperties; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; public class TileEntityFluidCollector extends TileEntityBase implements net.minecraftforge.fluids.IFluidHandler{ public boolean isPlacer; public final FluidTank tank = new FluidTank(8*Util.BUCKET){ @Override public boolean canFill(){ return TileEntityFluidCollector.this.isPlacer; } @Override public boolean canDrain(){ return !TileEntityFluidCollector.this.isPlacer; } }; private int lastTankAmount; private int currentTime; public TileEntityFluidCollector(String name){ super(name); } public TileEntityFluidCollector(){ this("fluidCollector"); this.isPlacer = false; } @Override public boolean isRedstoneToggle(){ return true; } @Override public void activateOnPulse(){ this.doWork(); } private void doWork(){ IBlockState state = this.worldObj.getBlockState(this.pos); Block block = state.getBlock(); EnumFacing sideToManipulate = WorldUtil.getDirectionByPistonRotation(block.getMetaFromState(state)); BlockPos coordsBlock = this.pos.offset(sideToManipulate); IBlockState stateToBreak = this.worldObj.getBlockState(coordsBlock); Block blockToBreak = stateToBreak.getBlock(); if(!this.isPlacer && blockToBreak != null && blockToBreak.getMetaFromState(stateToBreak) == 0 && Util.BUCKET <= this.tank.getCapacity()-this.tank.getFluidAmount()){ if(blockToBreak instanceof IFluidBlock && ((IFluidBlock)blockToBreak).getFluid() != null){ if(this.tank.fillInternal(new FluidStack(((IFluidBlock)blockToBreak).getFluid(), Util.BUCKET), false) >= Util.BUCKET){ this.tank.fillInternal(new FluidStack(((IFluidBlock)blockToBreak).getFluid(), Util.BUCKET), true); this.worldObj.setBlockToAir(coordsBlock); } } else if(blockToBreak == Blocks.LAVA || blockToBreak == Blocks.FLOWING_LAVA){ if(this.tank.fillInternal(new FluidStack(FluidRegistry.LAVA, Util.BUCKET), false) >= Util.BUCKET){ this.tank.fillInternal(new FluidStack(FluidRegistry.LAVA, Util.BUCKET), true); this.worldObj.setBlockToAir(coordsBlock); } } else if(blockToBreak == Blocks.WATER || blockToBreak == Blocks.FLOWING_WATER){ if(this.tank.fillInternal(new FluidStack(FluidRegistry.WATER, Util.BUCKET), false) >= Util.BUCKET){ this.tank.fillInternal(new FluidStack(FluidRegistry.WATER, Util.BUCKET), true); this.worldObj.setBlockToAir(coordsBlock); } } } else if(this.isPlacer && blockToBreak.isReplaceable(this.worldObj, coordsBlock)){ if(this.tank.getFluidAmount() >= Util.BUCKET){ Block fluid = this.tank.getFluid().getFluid().getBlock(); if(fluid != null){ BlockPos offsetPos = this.pos.offset(sideToManipulate); boolean placeable = !(blockToBreak instanceof BlockLiquid) && !(blockToBreak instanceof IFluidBlock) && blockToBreak.isReplaceable(this.worldObj, offsetPos); if(placeable){ this.worldObj.setBlockState(offsetPos, fluid.getDefaultState(), 3); this.tank.drainInternal(Util.BUCKET, true); } } } } } @Override public IFluidHandler getFluidHandler(EnumFacing facing){ return this.tank; } @Override public void writeSyncableNBT(NBTTagCompound compound, NBTType type){ super.writeSyncableNBT(compound, type); if(type != NBTType.SAVE_BLOCK){ compound.setInteger("CurrentTime", this.currentTime); } this.tank.writeToNBT(compound); } @Override public void readSyncableNBT(NBTTagCompound compound, NBTType type){ super.readSyncableNBT(compound, type); if(type != NBTType.SAVE_BLOCK){ this.currentTime = compound.getInteger("CurrentTime"); } this.tank.readFromNBT(compound); } @Override public void updateEntity(){ super.updateEntity(); if(!this.worldObj.isRemote){ if(!this.isRedstonePowered && !this.isPulseMode){ if(this.currentTime > 0){ this.currentTime--; if(this.currentTime <= 0){ this.doWork(); } } else{ this.currentTime = 15; } } if(this.lastTankAmount != this.tank.getFluidAmount() && this.sendUpdateWithInterval()){ this.lastTankAmount = this.tank.getFluidAmount(); } } } @SideOnly(Side.CLIENT) public int getTankScaled(int i){ return this.tank.getFluidAmount()*i/this.tank.getCapacity(); } @Override public int fill(EnumFacing from, FluidStack resource, boolean doFill){ IFluidHandler handler = this.getFluidHandler(from); return handler == null ? 0 : handler.fill(resource, doFill); } @Override public FluidStack drain(EnumFacing from, FluidStack resource, boolean doDrain){ IFluidHandler handler = this.getFluidHandler(from); return handler == null ? null : handler.drain(resource, doDrain); } @Override public FluidStack drain(EnumFacing from, int maxDrain, boolean doDrain){ IFluidHandler handler = this.getFluidHandler(from); return handler == null ? null : handler.drain(maxDrain, doDrain); } @Override public boolean canFill(EnumFacing from, Fluid fluid){ IFluidHandler handler = this.getFluidHandler(from); if(handler != null){ for(IFluidTankProperties prop : handler.getTankProperties()){ if(prop != null && prop.canFillFluidType(new FluidStack(fluid, Integer.MAX_VALUE))){ return true; } } } return false; } @Override public boolean canDrain(EnumFacing from, Fluid fluid){ IFluidHandler handler = this.getFluidHandler(from); if(handler != null){ for(IFluidTankProperties prop : handler.getTankProperties()){ if(prop != null && prop.canDrainFluidType(new FluidStack(fluid, Integer.MAX_VALUE))){ return true; } } } return false; } @Override public FluidTankInfo[] getTankInfo(EnumFacing from){ IFluidHandler handler = this.getFluidHandler(from); if(handler instanceof IFluidTank){ return new FluidTankInfo[]{((IFluidTank)handler).getInfo()}; } else{ return null; } } }