Applied-Energistics-2-tiler.../parts/p2p/PartP2PIC2Power.java
AlgorithmX2 9a64980443 Build Script Update.
FMP Fixes
Optional Interfaces for BC
Optional Interfaces for IC2
Removed UE Api on Items
Proxied Effect for C-CQuartz
2014-01-28 11:29:17 -06:00

161 lines
3.2 KiB
Java

package appeng.parts.p2p;
import java.util.LinkedList;
import net.minecraft.block.Block;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Icon;
import net.minecraftforge.common.ForgeDirection;
import appeng.api.config.TunnelType;
import appeng.me.GridAccessException;
import appeng.me.cache.helpers.TunnelCollection;
import appeng.util.Platform;
import cpw.mods.fml.common.Optional.Interface;
import cpw.mods.fml.common.Optional.InterfaceList;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
@InterfaceList(value = { @Interface(iface = "ic2.api.energy.tile.IEnergySink", modid = "IC2"), @Interface(iface = "ic2.api.energy.tile.IEnergySource", modid = "IC2") })
public class PartP2PIC2Power extends PartP2PTunnel<PartP2PIC2Power> implements ic2.api.energy.tile.IEnergySink, ic2.api.energy.tile.IEnergySource
{
public TunnelType getTunnelType()
{
return TunnelType.IC2_POWER;
}
public PartP2PIC2Power(ItemStack is) {
super( is );
}
double OutputPacket;
@Override
public void writeToNBT(NBTTagCompound tag)
{
super.writeToNBT( tag );
tag.setDouble( "OutputPacket", OutputPacket );
}
@Override
public void readFromNBT(NBTTagCompound tag)
{
super.readFromNBT( tag );
OutputPacket = tag.getDouble( "OutputPacket" );
}
@SideOnly(Side.CLIENT)
public Icon getTypeTexture()
{
return Block.blockDiamond.getBlockTextureFromSide( 0 );
}
@Override
public boolean acceptsEnergyFrom(TileEntity emitter, ForgeDirection direction)
{
if ( !output )
return direction.equals( side );
return false;
}
@Override
public boolean emitsEnergyTo(TileEntity receiver, ForgeDirection direction)
{
if ( output )
return direction.equals( side );
return false;
}
@Override
public double demandedEnergyUnits()
{
if ( output )
return 0;
try
{
for (PartP2PIC2Power t : getOutputs())
{
if ( t.OutputPacket <= 0.0001 )
{
return 2048;
}
}
}
catch (GridAccessException e)
{
return 0;
}
return 0;
}
@Override
public void onChange()
{
getHost().PartChanged();
}
public float getPowerDrainPerTick()
{
return 0.5f;
};
@Override
public double injectEnergyUnits(ForgeDirection directionFrom, double amount)
{
TunnelCollection<PartP2PIC2Power> outs;
try
{
outs = getOutputs();
}
catch (GridAccessException e)
{
return amount;
}
if ( outs.isEmpty() )
return amount;
LinkedList<PartP2PIC2Power> Options = new LinkedList();
for (PartP2PIC2Power o : outs)
{
if ( o.OutputPacket <= 0.01 )
Options.add( o );
}
PartP2PIC2Power x = (PartP2PIC2Power) Platform.pickRandom( Options );
if ( x != null && x.OutputPacket <= 0.001 )
{
x.OutputPacket = amount;
return 0;
}
return amount;
}
@Override
public int getMaxSafeInput()
{
return Integer.MAX_VALUE;
}
@Override
public double getOfferedEnergy()
{
if ( output )
return OutputPacket;
return 0;
}
@Override
public void drawEnergy(double amount)
{
OutputPacket -= amount;
}
}