dc095749b7
Re-added support for MJ Re-added support for pipe Re-added support for BC-Facades.
71 lines
2 KiB
Java
71 lines
2 KiB
Java
package appeng.tile.powersink;
|
|
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
import appeng.api.config.PowerUnits;
|
|
import appeng.core.AppEng;
|
|
import appeng.integration.abstraction.IMJ;
|
|
import appeng.integration.abstraction.helpers.BaseMJperdition;
|
|
import appeng.util.Platform;
|
|
import buildcraft.api.power.IPowerReceptor;
|
|
import buildcraft.api.power.PowerHandler;
|
|
import buildcraft.api.power.PowerHandler.PowerReceiver;
|
|
import cpw.mods.fml.common.Optional.Interface;
|
|
import cpw.mods.fml.common.Optional.Method;
|
|
|
|
@Interface(modid = "BuildCraftAPI|power", iface = "buildcraft.api.power.IPowerReceptor")
|
|
public abstract class BuildCraft extends AERootPoweredTile implements IPowerReceptor
|
|
{
|
|
|
|
BaseMJperdition bcPowerWrapper;
|
|
|
|
public BuildCraft() {
|
|
if ( Platform.isServer() )
|
|
{
|
|
try
|
|
{
|
|
if ( AppEng.instance.isIntegrationEnabled( "MJ" ) )
|
|
{
|
|
IMJ mjIntegration = (IMJ) AppEng.instance.getIntegration( "MJ" );
|
|
if ( mjIntegration != null )
|
|
{
|
|
addNewHandler( bcPowerWrapper = mjIntegration.createPerdition( this ) );
|
|
if ( bcPowerWrapper != null )
|
|
bcPowerWrapper.configure( 1, 380, 1.0f / 5.0f, 1000 );
|
|
}
|
|
}
|
|
}
|
|
catch (Throwable t)
|
|
{
|
|
// ignore.. no bc?
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
@Method(modid = "BuildCraftAPI|power")
|
|
final public PowerReceiver getPowerReceiver(ForgeDirection side)
|
|
{
|
|
if ( internalCanAcceptPower && getPowerSides().contains( side ) && bcPowerWrapper != null )
|
|
return bcPowerWrapper.getPowerReceiver();
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
@Method(modid = "BuildCraftAPI|power")
|
|
final public void doWork(PowerHandler workProvider)
|
|
{
|
|
float requred = (float) getExternalPowerDemand( PowerUnits.MJ );
|
|
double failed = injectExternalPower( PowerUnits.MJ, bcPowerWrapper.useEnergy( 0.0f, requred, true ) );
|
|
if ( failed > 0.01 )
|
|
bcPowerWrapper.addEnergy( (float) failed );
|
|
}
|
|
|
|
@Override
|
|
@Method(modid = "BuildCraftAPI|power")
|
|
final public World getWorld()
|
|
{
|
|
return worldObj;
|
|
}
|
|
|
|
}
|