2014-01-08 02:55:50 +01:00
|
|
|
package mekanism.common.tile;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2013-04-13 16:33:37 +02:00
|
|
|
import java.util.ArrayList;
|
2014-02-04 03:28:48 +01:00
|
|
|
import java.util.Map;
|
2013-04-13 16:33:37 +02:00
|
|
|
|
2014-01-18 03:29:39 +01:00
|
|
|
import mekanism.api.AdvancedInput;
|
2013-12-01 06:03:40 +01:00
|
|
|
import mekanism.api.EnumColor;
|
2014-01-17 02:35:05 +01:00
|
|
|
import mekanism.api.gas.Gas;
|
2014-01-17 01:00:53 +01:00
|
|
|
import mekanism.api.gas.GasStack;
|
|
|
|
import mekanism.api.gas.GasTank;
|
2014-01-17 02:35:05 +01:00
|
|
|
import mekanism.api.gas.IGasHandler;
|
|
|
|
import mekanism.api.gas.ITubeConnection;
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.common.Mekanism;
|
2013-11-30 06:28:02 +01:00
|
|
|
import mekanism.common.SideData;
|
2014-01-08 02:55:50 +01:00
|
|
|
import mekanism.common.recipe.RecipeHandler;
|
|
|
|
import mekanism.common.tile.component.TileComponentEjector;
|
|
|
|
import mekanism.common.tile.component.TileComponentUpgrade;
|
2013-08-27 00:57:08 +02:00
|
|
|
import mekanism.common.util.ChargeUtils;
|
2013-12-16 05:01:36 +01:00
|
|
|
import mekanism.common.util.InventoryUtils;
|
2013-08-27 00:57:08 +02:00
|
|
|
import mekanism.common.util.MekanismUtils;
|
2014-04-18 03:34:19 +02:00
|
|
|
import mekanism.common.util.MekanismUtils.ResourceType;
|
2014-02-04 03:28:48 +01:00
|
|
|
import mekanism.common.util.StackUtils;
|
2012-12-20 22:53:39 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2013-07-20 18:10:14 +02:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2014-04-20 04:44:06 +02:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2013-08-25 03:22:45 +02:00
|
|
|
|
2012-10-02 20:39:40 +02:00
|
|
|
import com.google.common.io.ByteArrayDataInput;
|
|
|
|
|
2014-04-12 19:49:25 +02:00
|
|
|
import dan200.computercraft.api.peripheral.IComputerAccess;
|
|
|
|
import dan200.computercraft.api.lua.ILuaContext;
|
2012-10-09 22:27:10 +02:00
|
|
|
|
2014-01-17 02:35:05 +01:00
|
|
|
public abstract class TileEntityAdvancedElectricMachine extends TileEntityBasicMachine implements IGasHandler, ITubeConnection
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
|
|
|
/** How much secondary energy (fuel) this machine uses per tick. */
|
|
|
|
public int SECONDARY_ENERGY_PER_TICK;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 02:50:59 +01:00
|
|
|
public static int MAX_GAS = 200;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 01:00:53 +01:00
|
|
|
public GasTank gasTank;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2012-10-02 20:39:40 +02:00
|
|
|
/**
|
2014-03-08 02:00:25 +01:00
|
|
|
* Advanced Electric Machine -- a machine like this has a total of 4 slots. Input slot (0), fuel slot (1), output slot (2),
|
2012-10-22 03:29:26 +02:00
|
|
|
* energy slot (3), and the upgrade slot (4). The machine will not run if it does not have enough electricity, or if it doesn't have enough
|
2012-10-02 20:39:40 +02:00
|
|
|
* fuel ticks.
|
2014-03-08 02:00:25 +01:00
|
|
|
*
|
2012-10-22 03:29:26 +02:00
|
|
|
* @param soundPath - location of the sound effect
|
2012-10-17 20:46:27 +02:00
|
|
|
* @param name - full name of this machine
|
2012-10-02 20:39:40 +02:00
|
|
|
* @param perTick - how much energy this machine uses per tick.
|
|
|
|
* @param secondaryPerTick - how much secondary energy (fuel) this machine uses per tick.
|
|
|
|
* @param ticksRequired - how many ticks it takes to smelt an item.
|
|
|
|
* @param maxEnergy - maximum amount of energy this machine can hold.
|
|
|
|
*/
|
2014-04-18 03:34:19 +02:00
|
|
|
public TileEntityAdvancedElectricMachine(String soundPath, String name, double perTick, int secondaryPerTick, int ticksRequired, double maxEnergy)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2014-04-18 03:34:19 +02:00
|
|
|
super(soundPath, name, MekanismUtils.getResource(ResourceType.GUI, "GuiAdvancedMachine.png"), perTick, ticksRequired, maxEnergy);
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-12-16 05:01:36 +01:00
|
|
|
sideOutputs.add(new SideData(EnumColor.GREY, InventoryUtils.EMPTY));
|
2013-07-20 18:10:14 +02:00
|
|
|
sideOutputs.add(new SideData(EnumColor.DARK_RED, new int[] {0}));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.PURPLE, new int[] {1}));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.DARK_BLUE, new int[] {2}));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.DARK_GREEN, new int[] {3}));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.ORANGE, new int[] {4}));
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-01-25 00:01:59 +01:00
|
|
|
sideConfig = new byte[] {2, 1, 0, 4, 5, 3};
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 02:50:59 +01:00
|
|
|
gasTank = new GasTank(MAX_GAS);
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2012-10-24 22:13:24 +02:00
|
|
|
inventory = new ItemStack[5];
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2012-10-02 20:39:40 +02:00
|
|
|
SECONDARY_ENERGY_PER_TICK = secondaryPerTick;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-08-27 00:49:32 +02:00
|
|
|
upgradeComponent = new TileComponentUpgrade(this, 4);
|
2013-10-30 03:15:39 +01:00
|
|
|
ejectorComponent = new TileComponentEjector(this, sideOutputs.get(3));
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the amount of ticks the declared itemstack can fuel this machine.
|
|
|
|
* @param itemstack - itemstack to check with
|
|
|
|
* @return fuel ticks
|
|
|
|
*/
|
|
|
|
public abstract GasStack getItemGas(ItemStack itemstack);
|
|
|
|
|
|
|
|
public abstract boolean isValidGas(Gas gas);
|
|
|
|
|
|
|
|
@Override
|
2012-10-02 20:39:40 +02:00
|
|
|
public void onUpdate()
|
|
|
|
{
|
2012-10-30 05:14:25 +01:00
|
|
|
super.onUpdate();
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-04-22 05:43:04 +02:00
|
|
|
if(!worldObj.isRemote)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-04-23 21:36:43 +02:00
|
|
|
ChargeUtils.discharge(3, this);
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-04-22 05:43:04 +02:00
|
|
|
handleSecondaryFuel();
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-02-04 03:28:48 +01:00
|
|
|
boolean changed = false;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 02:35:05 +01:00
|
|
|
if(canOperate() && MekanismUtils.canFunction(this) && getEnergy() >= MekanismUtils.getEnergyPerTick(getSpeedMultiplier(), getEnergyMultiplier(), ENERGY_PER_TICK) && gasTank.getStored() >= SECONDARY_ENERGY_PER_TICK)
|
2013-01-23 21:42:45 +01:00
|
|
|
{
|
2014-03-08 02:00:25 +01:00
|
|
|
setActive(true);
|
|
|
|
|
2013-07-24 22:03:35 +02:00
|
|
|
operatingTicks++;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 01:00:53 +01:00
|
|
|
if(operatingTicks >= MekanismUtils.getTicks(getSpeedMultiplier(), TICKS_REQUIRED))
|
2013-01-23 21:42:45 +01:00
|
|
|
{
|
|
|
|
operate();
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-04-22 05:43:04 +02:00
|
|
|
operatingTicks = 0;
|
2013-01-23 21:42:45 +01:00
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-18 08:31:36 +01:00
|
|
|
gasTank.draw(SECONDARY_ENERGY_PER_TICK, true);
|
|
|
|
electricityStored -= MekanismUtils.getEnergyPerTick(getSpeedMultiplier(), getEnergyMultiplier(), ENERGY_PER_TICK);
|
2013-04-22 05:43:04 +02:00
|
|
|
}
|
2013-07-24 22:03:35 +02:00
|
|
|
else {
|
2013-11-03 00:06:56 +01:00
|
|
|
if(prevEnergy >= getEnergy())
|
|
|
|
{
|
2014-02-04 03:28:48 +01:00
|
|
|
changed = true;
|
2013-11-03 00:06:56 +01:00
|
|
|
setActive(false);
|
|
|
|
}
|
2013-07-24 22:03:35 +02:00
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-02-04 03:28:48 +01:00
|
|
|
if(changed && !canOperate() && !hasRecipe(inventory[0]))
|
2013-04-22 05:43:04 +02:00
|
|
|
{
|
2013-01-23 21:42:45 +01:00
|
|
|
operatingTicks = 0;
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-11-03 00:06:56 +01:00
|
|
|
prevEnergy = getEnergy();
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
|
|
|
private boolean hasRecipe(ItemStack itemStack)
|
|
|
|
{
|
|
|
|
if(itemStack == null)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(Object obj : getRecipes().entrySet())
|
|
|
|
{
|
|
|
|
if(((Map.Entry)obj).getKey() instanceof AdvancedInput)
|
2014-02-04 03:28:48 +01:00
|
|
|
{
|
2014-03-08 02:00:25 +01:00
|
|
|
Map.Entry entry = (Map.Entry)obj;
|
|
|
|
|
2014-02-04 03:28:48 +01:00
|
|
|
ItemStack stack = ((AdvancedInput)entry.getKey()).itemStack;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-02-04 03:28:48 +01:00
|
|
|
if(StackUtils.equalsWildcard(stack, itemStack))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void handleSecondaryFuel()
|
|
|
|
{
|
2013-01-30 13:53:36 +01:00
|
|
|
if(inventory[1] != null)
|
|
|
|
{
|
2014-01-17 02:35:05 +01:00
|
|
|
GasStack stack = getItemGas(inventory[1]);
|
|
|
|
int gasNeeded = gasTank.getNeeded();
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 02:35:05 +01:00
|
|
|
if(stack != null && stack.amount <= gasNeeded)
|
2013-01-30 13:53:36 +01:00
|
|
|
{
|
2014-01-17 02:35:05 +01:00
|
|
|
gasTank.receive(stack, true);
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-04-02 03:06:57 +02:00
|
|
|
inventory[1].stackSize--;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-01-30 13:53:36 +01:00
|
|
|
if(inventory[1].stackSize == 0)
|
|
|
|
{
|
|
|
|
inventory[1] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
}
|
|
|
|
|
2013-04-02 03:06:57 +02:00
|
|
|
@Override
|
2013-07-20 18:10:14 +02:00
|
|
|
public boolean isItemValidForSlot(int slotID, ItemStack itemstack)
|
2013-04-02 03:06:57 +02:00
|
|
|
{
|
2014-03-08 18:01:45 +01:00
|
|
|
if(slotID == 2)
|
2013-04-02 03:06:57 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if(slotID == 4)
|
|
|
|
{
|
|
|
|
return itemstack.itemID == Mekanism.SpeedUpgrade.itemID || itemstack.itemID == Mekanism.EnergyUpgrade.itemID;
|
|
|
|
}
|
|
|
|
else if(slotID == 0)
|
|
|
|
{
|
2014-03-08 18:01:45 +01:00
|
|
|
return hasRecipe(itemstack);
|
2013-04-02 03:06:57 +02:00
|
|
|
}
|
|
|
|
else if(slotID == 3)
|
|
|
|
{
|
2013-08-01 03:20:12 +02:00
|
|
|
return ChargeUtils.canBeDischarged(itemstack);
|
2013-04-02 03:06:57 +02:00
|
|
|
}
|
|
|
|
else if(slotID == 1)
|
|
|
|
{
|
2014-01-17 02:35:05 +01:00
|
|
|
return getItemGas(itemstack) != null;
|
2013-04-02 03:06:57 +02:00
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-12-12 01:53:12 +01:00
|
|
|
return false;
|
2013-04-02 03:06:57 +02:00
|
|
|
}
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2014-03-08 02:00:25 +01:00
|
|
|
@Override
|
|
|
|
public void operate()
|
|
|
|
{
|
|
|
|
ItemStack itemstack = RecipeHandler.getOutput(new AdvancedInput(inventory[0], gasTank.getGas().getGas()), true, getRecipes());
|
|
|
|
|
|
|
|
if(inventory[0].stackSize <= 0)
|
|
|
|
{
|
|
|
|
inventory[0] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(inventory[2] == null)
|
|
|
|
{
|
|
|
|
inventory[2] = itemstack;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
inventory[2].stackSize += itemstack.stackSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
onInventoryChanged();
|
|
|
|
ejectorComponent.onOutput();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canOperate()
|
|
|
|
{
|
|
|
|
if(inventory[0] == null || gasTank.getGas() == null)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ItemStack itemstack = RecipeHandler.getOutput(new AdvancedInput(inventory[0], gasTank.getGas().getGas()), false, getRecipes());
|
|
|
|
|
|
|
|
if(itemstack == null)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(inventory[2] == null)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!inventory[2].isItemEqual(itemstack))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return inventory[2].stackSize + itemstack.stackSize <= inventory[2].getMaxStackSize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-15 21:04:12 +01:00
|
|
|
@Override
|
2013-02-27 02:21:30 +01:00
|
|
|
public void handlePacketData(ByteArrayDataInput dataStream)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-02-27 02:21:30 +01:00
|
|
|
super.handlePacketData(dataStream);
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 01:00:53 +01:00
|
|
|
if(dataStream.readBoolean())
|
|
|
|
{
|
|
|
|
gasTank.setGas(new GasStack(dataStream.readInt(), dataStream.readInt()));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gasTank.setGas(null);
|
|
|
|
}
|
2013-02-27 02:21:30 +01:00
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-02-27 02:21:30 +01:00
|
|
|
@Override
|
|
|
|
public ArrayList getNetworkedData(ArrayList data)
|
|
|
|
{
|
|
|
|
super.getNetworkedData(data);
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 01:00:53 +01:00
|
|
|
if(gasTank.getGas() != null)
|
|
|
|
{
|
|
|
|
data.add(true);
|
|
|
|
data.add(gasTank.getGas().getGas().getID());
|
|
|
|
data.add(gasTank.getStored());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
data.add(false);
|
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-02-27 02:21:30 +01:00
|
|
|
return data;
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readFromNBT(NBTTagCompound nbtTags)
|
|
|
|
{
|
|
|
|
super.readFromNBT(nbtTags);
|
|
|
|
|
|
|
|
gasTank.read(nbtTags.getCompoundTag("gasTank"));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeToNBT(NBTTagCompound nbtTags)
|
|
|
|
{
|
|
|
|
super.writeToNBT(nbtTags);
|
|
|
|
|
|
|
|
nbtTags.setCompoundTag("gasTank", gasTank.write(new NBTTagCompound()));
|
|
|
|
}
|
|
|
|
|
2012-10-28 23:18:23 +01:00
|
|
|
/**
|
|
|
|
* Gets the scaled secondary energy level for the GUI.
|
|
|
|
* @param i - multiplier
|
|
|
|
* @return scaled secondary energy
|
|
|
|
*/
|
2014-01-17 02:35:05 +01:00
|
|
|
public int getScaledGasLevel(int i)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2014-01-17 02:35:05 +01:00
|
|
|
return gasTank.getStored()*i / gasTank.getMaxGas();
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-04-03 21:37:26 +02:00
|
|
|
@Override
|
2013-05-07 21:57:55 +02:00
|
|
|
public boolean canExtractItem(int slotID, ItemStack itemstack, int side)
|
2013-04-03 21:37:26 +02:00
|
|
|
{
|
|
|
|
if(slotID == 3)
|
|
|
|
{
|
2013-08-01 03:20:12 +02:00
|
|
|
return ChargeUtils.canBeOutputted(itemstack, false);
|
2013-04-03 21:37:26 +02:00
|
|
|
}
|
|
|
|
else if(slotID == 2)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-04-03 21:37:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2014-01-17 02:35:05 +01:00
|
|
|
@Override
|
|
|
|
public boolean canTubeConnect(ForgeDirection side)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int receiveGas(ForgeDirection side, GasStack stack)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public GasStack drawGas(ForgeDirection side, int amount)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canReceiveGas(ForgeDirection side, Gas type)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canDrawGas(ForgeDirection side, Gas type)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-09 22:27:10 +02:00
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2014-03-08 02:00:25 +01:00
|
|
|
public String[] getMethodNames()
|
2012-10-09 22:27:10 +02:00
|
|
|
{
|
2012-10-25 23:55:32 +02:00
|
|
|
return new String[] {"getStored", "getSecondaryStored", "getProgress", "isActive", "facing", "canOperate", "getMaxEnergy", "getEnergyNeeded"};
|
2012-10-09 22:27:10 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2014-03-08 02:00:25 +01:00
|
|
|
public Object[] callMethod(IComputerAccess computer, ILuaContext context, int method, Object[] arguments) throws Exception
|
2012-10-09 22:27:10 +02:00
|
|
|
{
|
|
|
|
switch(method)
|
|
|
|
{
|
|
|
|
case 0:
|
2013-08-25 03:22:45 +02:00
|
|
|
return new Object[] {getEnergy()};
|
2012-10-09 22:27:10 +02:00
|
|
|
case 1:
|
2014-01-17 02:35:05 +01:00
|
|
|
return new Object[] {gasTank.getStored()};
|
2012-10-09 22:27:10 +02:00
|
|
|
case 2:
|
|
|
|
return new Object[] {operatingTicks};
|
|
|
|
case 3:
|
|
|
|
return new Object[] {isActive};
|
|
|
|
case 4:
|
|
|
|
return new Object[] {facing};
|
|
|
|
case 5:
|
|
|
|
return new Object[] {canOperate()};
|
2012-10-25 23:55:32 +02:00
|
|
|
case 6:
|
2013-12-18 18:39:37 +01:00
|
|
|
return new Object[] {MekanismUtils.getMaxEnergy(getEnergyMultiplier(), getMaxEnergy())};
|
2012-10-25 23:55:32 +02:00
|
|
|
case 7:
|
2013-12-18 18:39:37 +01:00
|
|
|
return new Object[] {(MekanismUtils.getMaxEnergy(getEnergyMultiplier(), getMaxEnergy())-getEnergy())};
|
2012-10-09 22:27:10 +02:00
|
|
|
default:
|
2012-11-05 20:29:04 +01:00
|
|
|
System.err.println("[Mekanism] Attempted to call unknown method with computer ID " + computer.getID());
|
2012-10-25 23:55:32 +02:00
|
|
|
return new Object[] {"Unknown command."};
|
2012-10-09 22:27:10 +02:00
|
|
|
}
|
|
|
|
}
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|