2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityFurnaceDouble.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.tile;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
import cofh.api.energy.EnergyStorage;
|
|
|
|
import cofh.api.energy.IEnergyReceiver;
|
2016-01-08 13:31:58 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.PosUtil;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.item.crafting.FurnaceRecipes;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 19:47:53 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2015-12-13 00:54:25 +01:00
|
|
|
public class TileEntityFurnaceDouble extends TileEntityInventoryBase implements IEnergyReceiver, IEnergySaver{
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
public static final int SLOT_INPUT_1 = 0;
|
|
|
|
public static final int SLOT_OUTPUT_1 = 1;
|
|
|
|
public static final int SLOT_INPUT_2 = 2;
|
|
|
|
public static final int SLOT_OUTPUT_2 = 3;
|
2015-12-01 19:48:09 +01:00
|
|
|
public static final int ENERGY_USE = 25;
|
|
|
|
private static final int SMELT_TIME = 80;
|
2015-06-12 19:12:06 +02:00
|
|
|
public EnergyStorage storage = new EnergyStorage(30000);
|
2015-03-07 02:23:31 +01:00
|
|
|
public int firstSmeltTime;
|
|
|
|
public int secondSmeltTime;
|
2015-10-03 10:16:18 +02:00
|
|
|
private int lastEnergy;
|
|
|
|
private int lastFirstSmelt;
|
2015-07-02 04:21:21 +02:00
|
|
|
private int lastSecondSmelt;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
public TileEntityFurnaceDouble(){
|
2015-05-20 22:39:43 +02:00
|
|
|
super(4, "furnaceDouble");
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.writeSyncableNBT(compound, sync);
|
|
|
|
compound.setInteger("FirstSmeltTime", this.firstSmeltTime);
|
|
|
|
compound.setInteger("SecondSmeltTime", this.secondSmeltTime);
|
|
|
|
this.storage.writeToNBT(compound);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.readSyncableNBT(compound, sync);
|
|
|
|
this.firstSmeltTime = compound.getInteger("FirstSmeltTime");
|
|
|
|
this.secondSmeltTime = compound.getInteger("SecondSmeltTime");
|
|
|
|
this.storage.readFromNBT(compound);
|
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2016-05-02 17:46:53 +02:00
|
|
|
if(!this.worldObj.isRemote){
|
2015-06-21 02:28:49 +02:00
|
|
|
boolean flag = this.firstSmeltTime > 0 || this.secondSmeltTime > 0;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
boolean canSmeltOnFirst = this.canSmeltOn(SLOT_INPUT_1, SLOT_OUTPUT_1);
|
|
|
|
boolean canSmeltOnSecond = this.canSmeltOn(SLOT_INPUT_2, SLOT_OUTPUT_2);
|
|
|
|
|
2015-06-13 12:52:22 +02:00
|
|
|
if(canSmeltOnFirst){
|
2015-11-28 19:02:01 +01:00
|
|
|
if(this.storage.getEnergyStored() >= ENERGY_USE){
|
2015-03-07 02:23:31 +01:00
|
|
|
this.firstSmeltTime++;
|
2015-11-28 19:02:01 +01:00
|
|
|
if(this.firstSmeltTime >= SMELT_TIME){
|
2015-03-07 02:23:31 +01:00
|
|
|
this.finishBurning(SLOT_INPUT_1, SLOT_OUTPUT_1);
|
|
|
|
this.firstSmeltTime = 0;
|
|
|
|
}
|
2016-05-04 22:40:58 +02:00
|
|
|
this.storage.extractEnergy(ENERGY_USE, false);
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
2015-06-13 12:52:22 +02:00
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
else{
|
|
|
|
this.firstSmeltTime = 0;
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2015-06-13 12:52:22 +02:00
|
|
|
if(canSmeltOnSecond){
|
2015-11-28 19:02:01 +01:00
|
|
|
if(this.storage.getEnergyStored() >= ENERGY_USE){
|
2015-03-07 02:23:31 +01:00
|
|
|
this.secondSmeltTime++;
|
2015-11-28 19:02:01 +01:00
|
|
|
if(this.secondSmeltTime >= SMELT_TIME){
|
2015-03-07 02:23:31 +01:00
|
|
|
this.finishBurning(SLOT_INPUT_2, SLOT_OUTPUT_2);
|
|
|
|
this.secondSmeltTime = 0;
|
|
|
|
}
|
2016-05-04 22:40:58 +02:00
|
|
|
this.storage.extractEnergy(ENERGY_USE, false);
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
else{
|
|
|
|
this.secondSmeltTime = 0;
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
if(flag != (this.firstSmeltTime > 0 || this.secondSmeltTime > 0)){
|
2015-07-02 00:35:38 +02:00
|
|
|
this.markDirty();
|
2016-05-02 17:46:53 +02:00
|
|
|
int meta = PosUtil.getMetadata(this.pos, this.worldObj);
|
2015-06-21 02:28:49 +02:00
|
|
|
if(meta > 3){
|
2015-10-02 16:48:01 +02:00
|
|
|
if(!this.canSmeltOn(SLOT_INPUT_1, SLOT_OUTPUT_1) && !this.canSmeltOn(SLOT_INPUT_2, SLOT_OUTPUT_2)){
|
2016-05-02 17:46:53 +02:00
|
|
|
PosUtil.setMetadata(this.pos, this.worldObj, meta-4, 2);
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2016-05-02 17:46:53 +02:00
|
|
|
PosUtil.setMetadata(this.pos, this.worldObj, meta+4, 2);
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2016-05-02 17:46:53 +02:00
|
|
|
if((this.lastEnergy != this.storage.getEnergyStored() || this.lastFirstSmelt != this.firstSmeltTime || this.lastSecondSmelt != this.secondSmeltTime) && this.sendUpdateWithInterval()){
|
2015-07-02 04:21:21 +02:00
|
|
|
this.lastEnergy = this.storage.getEnergyStored();
|
|
|
|
this.lastFirstSmelt = this.firstSmeltTime;
|
|
|
|
this.lastSecondSmelt = this.secondSmeltTime;
|
|
|
|
}
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
|
|
|
return (i == SLOT_INPUT_1 || i == SLOT_INPUT_2) && FurnaceRecipes.instance().getSmeltingResult(stack) != null;
|
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
public boolean canSmeltOn(int theInput, int theOutput){
|
|
|
|
if(this.slots[theInput] != null){
|
2016-01-07 19:47:53 +01:00
|
|
|
ItemStack output = FurnaceRecipes.instance().getSmeltingResult(this.slots[theInput]);
|
2015-03-07 02:23:31 +01:00
|
|
|
if(this.slots[theInput] != null){
|
|
|
|
if(output != null){
|
|
|
|
if(this.slots[theOutput] == null || (this.slots[theOutput].isItemEqual(output) && this.slots[theOutput].stackSize <= this.slots[theOutput].getMaxStackSize()-output.stackSize)){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void finishBurning(int theInput, int theOutput){
|
2016-01-07 19:47:53 +01:00
|
|
|
ItemStack output = FurnaceRecipes.instance().getSmeltingResult(this.slots[theInput]);
|
2015-10-02 16:48:01 +02:00
|
|
|
if(this.slots[theOutput] == null){
|
|
|
|
this.slots[theOutput] = output.copy();
|
|
|
|
}
|
|
|
|
else if(this.slots[theOutput].getItem() == output.getItem()){
|
|
|
|
this.slots[theOutput].stackSize += output.stackSize;
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
this.slots[theInput].stackSize--;
|
2015-10-03 10:16:18 +02:00
|
|
|
if(this.slots[theInput].stackSize <= 0){
|
|
|
|
this.slots[theInput] = null;
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
2015-05-20 22:39:43 +02:00
|
|
|
public int getEnergyScaled(int i){
|
2015-10-02 16:48:01 +02:00
|
|
|
return this.storage.getEnergyStored()*i/this.storage.getMaxEnergyStored();
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getFirstTimeToScale(int i){
|
2015-11-28 19:02:01 +01:00
|
|
|
return this.firstSmeltTime*i/SMELT_TIME;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getSecondTimeToScale(int i){
|
2015-11-28 19:02:01 +01:00
|
|
|
return this.secondSmeltTime*i/SMELT_TIME;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:47:53 +01:00
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
|
2015-03-07 02:23:31 +01:00
|
|
|
return this.isItemValidForSlot(slot, stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:47:53 +01:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
|
2015-05-20 22:39:43 +02:00
|
|
|
return slot == SLOT_OUTPUT_1 || slot == SLOT_OUTPUT_2;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
2015-04-02 12:06:42 +02:00
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:47:53 +01:00
|
|
|
public int receiveEnergy(EnumFacing from, int maxReceive, boolean simulate){
|
2015-05-20 22:39:43 +02:00
|
|
|
return this.storage.receiveEnergy(maxReceive, simulate);
|
2015-04-02 12:06:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:47:53 +01:00
|
|
|
public int getEnergyStored(EnumFacing from){
|
2015-05-20 22:39:43 +02:00
|
|
|
return this.storage.getEnergyStored();
|
2015-04-02 12:06:42 +02:00
|
|
|
}
|
2015-04-24 19:22:03 +02:00
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:47:53 +01:00
|
|
|
public int getMaxEnergyStored(EnumFacing from){
|
2015-05-20 22:39:43 +02:00
|
|
|
return this.storage.getMaxEnergyStored();
|
2015-04-24 19:22:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:47:53 +01:00
|
|
|
public boolean canConnectEnergy(EnumFacing from){
|
2015-05-20 22:39:43 +02:00
|
|
|
return true;
|
2015-04-24 19:22:03 +02:00
|
|
|
}
|
2015-12-13 00:54:25 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getEnergy(){
|
|
|
|
return this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setEnergy(int energy){
|
|
|
|
this.storage.setEnergyStored(energy);
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|