/* * This file ("TileEntityShockSuppressor.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 cofh.api.energy.EnergyStorage; import cofh.api.energy.IEnergyReceiver; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.EnumFacing; import java.util.ArrayList; import java.util.List; public class TileEntityShockSuppressor extends TileEntityBase implements IEnergyReceiver, IEnergyDisplay{ public static final List SUPPRESSORS = new ArrayList(); public static final int USE_PER = 300; public static final int RANGE = 5; public EnergyStorage storage = new EnergyStorage(300000); private int oldEnergy; public TileEntityShockSuppressor(){ super("shockSuppressor"); } @Override public void onChunkUnload(){ super.onChunkUnload(); if(!this.worldObj.isRemote){ SUPPRESSORS.remove(this); } } @Override public void invalidate(){ super.invalidate(); if(!this.worldObj.isRemote){ SUPPRESSORS.remove(this); } } @Override public void updateEntity(){ super.updateEntity(); if(!this.worldObj.isRemote){ if(!this.isInvalid() && !SUPPRESSORS.contains(this)){ SUPPRESSORS.add(this); } if(this.oldEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()){ this.oldEnergy = this.storage.getEnergyStored(); } } } @Override public void writeSyncableNBT(NBTTagCompound compound, NBTType type){ super.writeSyncableNBT(compound, type); this.storage.writeToNBT(compound); } @Override public void readSyncableNBT(NBTTagCompound compound, NBTType type){ super.readSyncableNBT(compound, type); this.storage.readFromNBT(compound); } @Override public int receiveEnergy(EnumFacing from, int maxReceive, boolean simulate){ return this.storage.receiveEnergy(maxReceive, simulate); } @Override public int getEnergyStored(EnumFacing from){ return this.storage.getEnergyStored(); } @Override public int getMaxEnergyStored(EnumFacing from){ return this.storage.getMaxEnergyStored(); } @Override public boolean canConnectEnergy(EnumFacing from){ return true; } @Override public EnergyStorage getEnergyStorage(){ return this.storage; } @Override public boolean needsHoldShift(){ return false; } }