| package li.cil.oc.driver.thermalexpansion; |
| |
| import cofh.api.energy.IEnergyHandler; |
| import li.cil.oc.api.network.Arguments; |
| import li.cil.oc.api.network.Callback; |
| import li.cil.oc.api.network.Context; |
| import li.cil.oc.api.network.ManagedEnvironment; |
| import li.cil.oc.api.prefab.DriverTileEntity; |
| import li.cil.oc.driver.ManagedTileEntityEnvironment; |
| import net.minecraft.world.World; |
| import net.minecraftforge.common.ForgeDirection; |
| |
| public final class DriverEnergyHandler extends DriverTileEntity { |
| @Override |
| public Class<?> getTileEntityClass() { |
| return IEnergyHandler.class; |
| } |
| |
| @Override |
| public ManagedEnvironment createEnvironment(final World world, final int x, final int y, final int z) { |
| return new Environment((IEnergyHandler) world.getBlockTileEntity(x, y, z)); |
| } |
| |
| public static final class Environment extends ManagedTileEntityEnvironment<IEnergyHandler> { |
| public Environment(final IEnergyHandler tileEntity) { |
| super(tileEntity, "energy_handler"); |
| } |
| |
| @Callback |
| public Object[] getEnergyStored(final Context context, final Arguments args) { |
| final ForgeDirection side = args.count() > 0 ? ForgeDirection.getOrientation(args.checkInteger(0)) : ForgeDirection.UNKNOWN; |
| return new Object[]{tileEntity.getEnergyStored(side)}; |
| } |
| |
| @Callback |
| public Object[] getMaxEnergyStored(final Context context, final Arguments args) { |
| final ForgeDirection side = args.count() > 0 ? ForgeDirection.getOrientation(args.checkInteger(0)) : ForgeDirection.UNKNOWN; |
| return new Object[]{tileEntity.getMaxEnergyStored(side)}; |
| } |
| } |
| } |