2012-11-05 20:29:04 +01:00
|
|
|
package mekanism.common;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2012-12-20 22:53:39 +01:00
|
|
|
import ic2.api.ElectricItem;
|
|
|
|
import ic2.api.IElectricItem;
|
2013-04-13 16:33:37 +02:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2013-03-11 18:49:01 +01:00
|
|
|
import mekanism.api.EnumColor;
|
2013-04-02 03:06:57 +02:00
|
|
|
import mekanism.api.EnumGas;
|
|
|
|
import mekanism.api.IStorageTank;
|
2013-01-25 00:01:59 +01:00
|
|
|
import mekanism.api.SideData;
|
2012-12-20 22:53:39 +01:00
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2013-04-13 16:33:37 +02:00
|
|
|
import universalelectricity.core.item.ElectricItemHelper;
|
|
|
|
import universalelectricity.core.item.IItemElectric;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
|
|
|
import com.google.common.io.ByteArrayDataInput;
|
|
|
|
|
2012-10-09 22:27:10 +02:00
|
|
|
import dan200.computer.api.IComputerAccess;
|
|
|
|
|
2012-10-02 20:39:40 +02:00
|
|
|
public abstract class TileEntityAdvancedElectricMachine extends TileEntityBasicMachine
|
|
|
|
{
|
|
|
|
/** How much secondary energy (fuel) this machine uses per tick. */
|
|
|
|
public int SECONDARY_ENERGY_PER_TICK;
|
|
|
|
|
|
|
|
/** Maximum amount of secondary energy (fuel) this machine can hold. */
|
|
|
|
public int MAX_SECONDARY_ENERGY;
|
|
|
|
|
|
|
|
/** How much secondary energy (fuel) is stored in this machine. */
|
|
|
|
public int secondaryEnergyStored = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
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
|
|
|
|
* @param path - GUI texture path 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.
|
|
|
|
* @param maxSecondaryEnergy - maximum amount of secondary energy (fuel) this machine can hold.
|
|
|
|
*/
|
2012-10-22 03:29:26 +02:00
|
|
|
public TileEntityAdvancedElectricMachine(String soundPath, String name, String path, int perTick, int secondaryPerTick, int ticksRequired, int maxEnergy, int maxSecondaryEnergy)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2012-10-24 22:13:24 +02:00
|
|
|
super(soundPath, name, path, perTick, ticksRequired, maxEnergy);
|
2013-01-25 00:01:59 +01:00
|
|
|
|
2013-04-03 21:37:26 +02:00
|
|
|
sideOutputs.add(new SideData(EnumColor.GREY, 0, 0, new int[0]));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.DARK_RED, 0, 1, new int[] {0}));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.PURPLE, 1, 1, new int[] {1}));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.DARK_BLUE, 2, 1, new int[] {2}));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.DARK_GREEN, 3, 1, new int[] {3}));
|
|
|
|
sideOutputs.add(new SideData(EnumColor.ORANGE, 4, 1, new int[] {4}));
|
2013-01-25 00:01:59 +01:00
|
|
|
|
|
|
|
sideConfig = new byte[] {2, 1, 0, 4, 5, 3};
|
|
|
|
|
2012-10-24 22:13:24 +02:00
|
|
|
inventory = new ItemStack[5];
|
2012-10-02 20:39:40 +02:00
|
|
|
SECONDARY_ENERGY_PER_TICK = secondaryPerTick;
|
|
|
|
MAX_SECONDARY_ENERGY = maxSecondaryEnergy;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the amount of ticks the declared itemstack can fuel this machine.
|
|
|
|
* @param itemstack - itemstack to check with
|
|
|
|
* @return fuel ticks
|
|
|
|
*/
|
|
|
|
public abstract int getFuelTicks(ItemStack itemstack);
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-02 20:39:40 +02:00
|
|
|
public void onUpdate()
|
|
|
|
{
|
2012-10-30 05:14:25 +01:00
|
|
|
super.onUpdate();
|
2012-12-19 21:23:55 +01:00
|
|
|
|
2013-04-22 05:43:04 +02:00
|
|
|
if(!worldObj.isRemote)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
if(inventory[3] != null)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
if(electricityStored < MekanismUtils.getEnergy(energyMultiplier, MAX_ELECTRICITY))
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
setJoules(getJoules() + ElectricItemHelper.dechargeItem(inventory[3], getMaxJoules() - getJoules(), getVoltage()));
|
|
|
|
|
|
|
|
if(Mekanism.hooks.IC2Loaded && inventory[3].getItem() instanceof IElectricItem)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
IElectricItem item = (IElectricItem)inventory[3].getItem();
|
|
|
|
if(item.canProvideEnergy(inventory[3]))
|
|
|
|
{
|
|
|
|
double gain = ElectricItem.discharge(inventory[3], (int)((MekanismUtils.getEnergy(energyMultiplier, MAX_ELECTRICITY) - electricityStored)*Mekanism.TO_IC2), 3, false, false)*Mekanism.FROM_IC2;
|
|
|
|
setJoules(electricityStored + gain);
|
|
|
|
}
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
}
|
2013-04-22 05:43:04 +02:00
|
|
|
if(inventory[3].itemID == Item.redstone.itemID && electricityStored+1000 <= MekanismUtils.getEnergy(energyMultiplier, MAX_ELECTRICITY))
|
2013-02-14 19:26:13 +01:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
setJoules(electricityStored + 1000);
|
|
|
|
inventory[3].stackSize--;
|
2013-02-14 19:26:13 +01:00
|
|
|
|
2013-04-22 05:43:04 +02:00
|
|
|
if(inventory[3].stackSize <= 0)
|
|
|
|
{
|
|
|
|
inventory[3] = null;
|
|
|
|
}
|
2013-02-14 19:26:13 +01:00
|
|
|
}
|
2012-10-22 03:29:26 +02:00
|
|
|
}
|
2013-04-22 05:43:04 +02:00
|
|
|
|
|
|
|
if(inventory[4] != null)
|
2012-10-22 03:29:26 +02:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
if(inventory[4].isItemEqual(new ItemStack(Mekanism.EnergyUpgrade)) && energyMultiplier < 8)
|
2013-02-14 19:26:13 +01:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
if(upgradeTicks < UPGRADE_TICKS_REQUIRED)
|
|
|
|
{
|
|
|
|
upgradeTicks++;
|
|
|
|
}
|
|
|
|
else if(upgradeTicks == UPGRADE_TICKS_REQUIRED)
|
|
|
|
{
|
|
|
|
upgradeTicks = 0;
|
|
|
|
energyMultiplier++;
|
|
|
|
|
|
|
|
inventory[4].stackSize--;
|
|
|
|
|
|
|
|
if(inventory[4].stackSize == 0)
|
|
|
|
{
|
|
|
|
inventory[4] = null;
|
|
|
|
}
|
|
|
|
}
|
2013-02-14 19:26:13 +01:00
|
|
|
}
|
2013-04-22 05:43:04 +02:00
|
|
|
else if(inventory[4].isItemEqual(new ItemStack(Mekanism.SpeedUpgrade)) && speedMultiplier < 8)
|
2013-02-14 19:26:13 +01:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
if(upgradeTicks < UPGRADE_TICKS_REQUIRED)
|
2013-02-14 19:26:13 +01:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
upgradeTicks++;
|
2013-02-14 19:26:13 +01:00
|
|
|
}
|
2013-04-22 05:43:04 +02:00
|
|
|
else if(upgradeTicks == UPGRADE_TICKS_REQUIRED)
|
|
|
|
{
|
|
|
|
upgradeTicks = 0;
|
|
|
|
speedMultiplier++;
|
|
|
|
|
|
|
|
inventory[4].stackSize--;
|
|
|
|
|
|
|
|
if(inventory[4].stackSize == 0)
|
|
|
|
{
|
|
|
|
inventory[4] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
upgradeTicks = 0;
|
2013-02-14 19:26:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
upgradeTicks = 0;
|
2012-10-22 03:29:26 +02:00
|
|
|
}
|
2013-04-22 05:43:04 +02:00
|
|
|
|
|
|
|
handleSecondaryFuel();
|
|
|
|
|
|
|
|
if(electricityStored >= ENERGY_PER_TICK && secondaryEnergyStored >= SECONDARY_ENERGY_PER_TICK)
|
2013-01-23 21:42:45 +01:00
|
|
|
{
|
2013-04-22 05:43:04 +02:00
|
|
|
if(canOperate() && (operatingTicks+1) < MekanismUtils.getTicks(speedMultiplier, TICKS_REQUIRED) && secondaryEnergyStored >= SECONDARY_ENERGY_PER_TICK)
|
|
|
|
{
|
|
|
|
operatingTicks++;
|
|
|
|
secondaryEnergyStored -= SECONDARY_ENERGY_PER_TICK;
|
|
|
|
electricityStored -= ENERGY_PER_TICK;
|
|
|
|
}
|
|
|
|
else if((operatingTicks+1) >= MekanismUtils.getTicks(speedMultiplier, TICKS_REQUIRED))
|
2013-01-23 21:42:45 +01:00
|
|
|
{
|
|
|
|
operate();
|
2013-04-22 05:43:04 +02:00
|
|
|
|
|
|
|
operatingTicks = 0;
|
|
|
|
secondaryEnergyStored -= SECONDARY_ENERGY_PER_TICK;
|
|
|
|
electricityStored -= ENERGY_PER_TICK;
|
2013-01-23 21:42:45 +01:00
|
|
|
}
|
2013-04-22 05:43:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!canOperate())
|
|
|
|
{
|
2013-01-23 21:42:45 +01:00
|
|
|
operatingTicks = 0;
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
2013-04-22 05:43:04 +02:00
|
|
|
|
2013-01-23 21:42:45 +01:00
|
|
|
if(canOperate() && electricityStored >= ENERGY_PER_TICK && secondaryEnergyStored >= SECONDARY_ENERGY_PER_TICK)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-01-23 21:42:45 +01:00
|
|
|
setActive(true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
setActive(false);
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-01-30 13:53:36 +01:00
|
|
|
|
|
|
|
public void handleSecondaryFuel()
|
|
|
|
{
|
|
|
|
if(inventory[1] != null)
|
|
|
|
{
|
|
|
|
int fuelTicks = getFuelTicks(inventory[1]);
|
|
|
|
int energyNeeded = MAX_SECONDARY_ENERGY - secondaryEnergyStored;
|
|
|
|
if(fuelTicks > 0 && fuelTicks <= energyNeeded)
|
|
|
|
{
|
|
|
|
if(fuelTicks <= energyNeeded)
|
|
|
|
{
|
|
|
|
setSecondaryEnergy(secondaryEnergyStored + fuelTicks);
|
|
|
|
}
|
|
|
|
else if(fuelTicks > energyNeeded)
|
|
|
|
{
|
|
|
|
setSecondaryEnergy(secondaryEnergyStored + energyNeeded);
|
|
|
|
}
|
2013-04-02 03:06:57 +02:00
|
|
|
inventory[1].stackSize--;
|
2013-01-30 13:53:36 +01:00
|
|
|
|
|
|
|
if(inventory[1].stackSize == 0)
|
|
|
|
{
|
|
|
|
inventory[1] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-02 03:06:57 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isStackValidForSlot(int slotID, ItemStack itemstack)
|
|
|
|
{
|
|
|
|
if(slotID == 2)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if(slotID == 4)
|
|
|
|
{
|
|
|
|
return itemstack.itemID == Mekanism.SpeedUpgrade.itemID || itemstack.itemID == Mekanism.EnergyUpgrade.itemID;
|
|
|
|
}
|
|
|
|
else if(slotID == 0)
|
|
|
|
{
|
2013-04-03 21:37:26 +02:00
|
|
|
return RecipeHandler.getOutput(itemstack, false, getRecipes()) != null;
|
2013-04-02 03:06:57 +02:00
|
|
|
}
|
|
|
|
else if(slotID == 3)
|
|
|
|
{
|
|
|
|
return (itemstack.getItem() instanceof IElectricItem && ((IElectricItem)itemstack.getItem()).canProvideEnergy(itemstack)) ||
|
|
|
|
(itemstack.getItem() instanceof IItemElectric && ((IItemElectric)itemstack.getItem()).getProvideRequest(itemstack).amperes != 0) ||
|
|
|
|
itemstack.itemID == Item.redstone.itemID;
|
|
|
|
}
|
|
|
|
else if(slotID == 1)
|
|
|
|
{
|
|
|
|
return getFuelTicks(itemstack) > 0 ||
|
|
|
|
(this instanceof TileEntityPurificationChamber && itemstack.getItem() instanceof IStorageTank &&
|
|
|
|
((IStorageTank)itemstack.getItem()).getGasType(itemstack) == EnumGas.OXYGEN);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-02 20:39:40 +02:00
|
|
|
public void operate()
|
|
|
|
{
|
2012-12-19 21:23:55 +01:00
|
|
|
ItemStack itemstack = RecipeHandler.getOutput(inventory[0], true, getRecipes());
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2013-04-01 01:12:10 +02:00
|
|
|
if(inventory[0].stackSize <= 0)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
|
|
|
inventory[0] = null;
|
|
|
|
}
|
|
|
|
|
2013-04-01 01:12:10 +02:00
|
|
|
if(inventory[2] == null)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
|
|
|
inventory[2] = itemstack;
|
|
|
|
}
|
2013-04-01 01:12:10 +02:00
|
|
|
else {
|
2012-10-02 20:39:40 +02:00
|
|
|
inventory[2].stackSize += itemstack.stackSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-02 20:39:40 +02:00
|
|
|
public boolean canOperate()
|
|
|
|
{
|
2013-04-01 01:12:10 +02:00
|
|
|
if(inventory[0] == null)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ItemStack itemstack = RecipeHandler.getOutput(inventory[0], false, getRecipes());
|
|
|
|
|
2013-04-01 01:12:10 +02:00
|
|
|
if(itemstack == null)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-01 01:12:10 +02:00
|
|
|
if(inventory[2] == null)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-04-01 01:12:10 +02:00
|
|
|
if(!inventory[2].isItemEqual(itemstack))
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-01 01:12:10 +02:00
|
|
|
else {
|
2012-10-02 20:39:40 +02:00
|
|
|
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);
|
|
|
|
secondaryEnergyStored = dataStream.readInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ArrayList getNetworkedData(ArrayList data)
|
|
|
|
{
|
|
|
|
super.getNetworkedData(data);
|
|
|
|
data.add(secondaryEnergyStored);
|
|
|
|
return data;
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-17 20:46:27 +02:00
|
|
|
public void readFromNBT(NBTTagCompound nbtTags)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2012-11-02 02:30:40 +01:00
|
|
|
super.readFromNBT(nbtTags);
|
|
|
|
|
2012-10-17 20:46:27 +02:00
|
|
|
secondaryEnergyStored = nbtTags.getInteger("secondaryEnergyStored");
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-17 20:46:27 +02:00
|
|
|
public void writeToNBT(NBTTagCompound nbtTags)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2012-10-17 20:46:27 +02:00
|
|
|
super.writeToNBT(nbtTags);
|
2012-10-24 22:13:24 +02:00
|
|
|
|
2012-10-17 20:46:27 +02:00
|
|
|
nbtTags.setInteger("secondaryEnergyStored", secondaryEnergyStored);
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the secondary energy to a new amount
|
|
|
|
* @param energy - amount to store
|
|
|
|
*/
|
|
|
|
public void setSecondaryEnergy(int energy)
|
|
|
|
{
|
2013-01-23 21:42:45 +01:00
|
|
|
secondaryEnergyStored = Math.max(Math.min(energy, MAX_SECONDARY_ENERGY), 0);
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
2012-10-23 15:23:23 +02:00
|
|
|
|
2012-10-28 23:18:23 +01:00
|
|
|
/**
|
|
|
|
* Gets the scaled secondary energy level for the GUI.
|
|
|
|
* @param i - multiplier
|
|
|
|
* @return scaled secondary energy
|
|
|
|
*/
|
2012-10-23 15:23:23 +02:00
|
|
|
public int getScaledSecondaryEnergyLevel(int i)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
|
|
|
return secondaryEnergyStored*i / MAX_SECONDARY_ENERGY;
|
|
|
|
}
|
2013-04-03 21:37:26 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean func_102008_b(int slotID, ItemStack itemstack, int side)
|
|
|
|
{
|
|
|
|
if(slotID == 3)
|
|
|
|
{
|
|
|
|
return (itemstack.getItem() instanceof IItemElectric && ((IItemElectric)itemstack.getItem()).getProvideRequest(itemstack).getWatts() == 0) ||
|
|
|
|
(itemstack.getItem() instanceof IElectricItem && ((IElectricItem)itemstack.getItem()).canProvideEnergy(itemstack) &&
|
|
|
|
(!(itemstack.getItem() instanceof IItemElectric) ||
|
|
|
|
((IItemElectric)itemstack.getItem()).getProvideRequest(itemstack).getWatts() == 0));
|
|
|
|
}
|
|
|
|
else if(slotID == 2)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-09 22:27:10 +02:00
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-09 22:27:10 +02:00
|
|
|
public String[] getMethodNames()
|
|
|
|
{
|
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
|
2012-10-09 22:27:10 +02:00
|
|
|
public Object[] callMethod(IComputerAccess computer, int method, Object[] arguments) throws Exception
|
|
|
|
{
|
|
|
|
switch(method)
|
|
|
|
{
|
|
|
|
case 0:
|
2012-11-25 16:45:00 +01:00
|
|
|
return new Object[] {electricityStored};
|
2012-10-09 22:27:10 +02:00
|
|
|
case 1:
|
|
|
|
return new Object[] {secondaryEnergyStored};
|
|
|
|
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-02-14 19:26:13 +01:00
|
|
|
return new Object[] {MekanismUtils.getEnergy(energyMultiplier, MAX_ELECTRICITY)};
|
2012-10-25 23:55:32 +02:00
|
|
|
case 7:
|
2013-02-14 19:26:13 +01:00
|
|
|
return new Object[] {(MekanismUtils.getEnergy(energyMultiplier, MAX_ELECTRICITY)-electricityStored)};
|
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
|
|
|
}
|