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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 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
|
|
|
|
2017-02-22 12:37:29 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.BlockFurnaceDouble;
|
2016-08-12 18:14:41 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.network.gui.IButtonReactor;
|
2018-06-23 01:39:30 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA;
|
2018-08-10 05:04:07 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IAcceptor;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IRemover;
|
2016-08-12 18:14:41 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.block.state.BlockState;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.item.crafting.FurnaceRecipes;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.nbt.CompoundNBT;
|
2016-01-07 19:47:53 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-11-26 08:58:42 +01:00
|
|
|
import net.minecraftforge.energy.IEnergyStorage;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public class TileEntityFurnaceDouble extends TileEntityInventoryBase implements IButtonReactor {
|
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;
|
2016-12-01 18:42:24 +01:00
|
|
|
public final CustomEnergyStorage storage = new CustomEnergyStorage(30000, 150, 0);
|
2015-03-07 02:23:31 +01:00
|
|
|
public int firstSmeltTime;
|
|
|
|
public int secondSmeltTime;
|
2016-09-12 20:45:29 +02:00
|
|
|
public boolean isAutoSplit;
|
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;
|
2016-08-12 18:14:41 +02:00
|
|
|
private boolean lastAutoSplit;
|
2017-02-22 12:37:29 +01:00
|
|
|
private boolean lastSmelted;
|
2016-08-12 18:14:41 +02:00
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public TileEntityFurnaceDouble() {
|
2015-05-20 22:39:43 +02:00
|
|
|
super(4, "furnaceDouble");
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public static void autoSplit(ItemStackHandlerAA inv, int slot1, int slot2) {
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack first = inv.getStackInSlot(slot1);
|
|
|
|
ItemStack second = inv.getStackInSlot(slot2);
|
2016-09-12 20:45:29 +02:00
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
if (StackUtil.isValid(first) || StackUtil.isValid(second)) {
|
2017-11-02 22:49:53 +01:00
|
|
|
ItemStack toSplit = StackUtil.getEmpty();
|
2018-08-10 05:04:07 +02:00
|
|
|
if (!StackUtil.isValid(first) && StackUtil.isValid(second) && second.getCount() > 1) {
|
2016-09-12 20:45:29 +02:00
|
|
|
toSplit = second;
|
2018-08-10 05:04:07 +02:00
|
|
|
} else if (!StackUtil.isValid(second) && StackUtil.isValid(first) && first.getCount() > 1) {
|
2016-09-12 20:45:29 +02:00
|
|
|
toSplit = first;
|
2018-08-10 05:04:07 +02:00
|
|
|
} else if (ItemUtil.canBeStacked(first, second)) {
|
|
|
|
if (first.getCount() < first.getMaxStackSize() || second.getCount() < second.getMaxStackSize()) {
|
2019-02-27 19:53:05 +01:00
|
|
|
if (!(first.getCount() <= second.getCount() + 1 && first.getCount() >= second.getCount() - 1 || second.getCount() <= first.getCount() + 1 && second.getCount() >= first.getCount() - 1)) {
|
2016-09-12 20:45:29 +02:00
|
|
|
toSplit = first;
|
2018-06-23 01:39:30 +02:00
|
|
|
toSplit.grow(second.getCount());
|
2016-09-12 20:45:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
if (StackUtil.isValid(toSplit)) {
|
2016-09-12 20:45:29 +02:00
|
|
|
ItemStack splitFirst = toSplit.copy();
|
2018-08-10 05:04:07 +02:00
|
|
|
ItemStack secondSplit = splitFirst.splitStack(splitFirst.getCount() / 2);
|
2018-06-23 01:39:30 +02:00
|
|
|
inv.setStackInSlot(slot1, splitFirst);
|
|
|
|
inv.setStackInSlot(slot2, secondSplit);
|
2016-09-12 20:45:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public void writeSyncableNBT(CompoundNBT compound, NBTType type) {
|
2016-07-02 15:01:46 +02:00
|
|
|
super.writeSyncableNBT(compound, type);
|
2018-08-10 05:04:07 +02:00
|
|
|
if (type != NBTType.SAVE_BLOCK) {
|
2016-07-02 15:01:46 +02:00
|
|
|
compound.setInteger("FirstSmeltTime", this.firstSmeltTime);
|
|
|
|
compound.setInteger("SecondSmeltTime", this.secondSmeltTime);
|
2016-08-12 18:14:41 +02:00
|
|
|
compound.setBoolean("IsAutoSplit", this.isAutoSplit);
|
2016-07-02 15:01:46 +02:00
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
this.storage.writeToNBT(compound);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public void readSyncableNBT(CompoundNBT compound, NBTType type) {
|
2016-07-02 15:01:46 +02:00
|
|
|
super.readSyncableNBT(compound, type);
|
2018-08-10 05:04:07 +02:00
|
|
|
if (type != NBTType.SAVE_BLOCK) {
|
2016-07-02 15:01:46 +02:00
|
|
|
this.firstSmeltTime = compound.getInteger("FirstSmeltTime");
|
|
|
|
this.secondSmeltTime = compound.getInteger("SecondSmeltTime");
|
2016-08-12 18:14:41 +02:00
|
|
|
this.isAutoSplit = compound.getBoolean("IsAutoSplit");
|
2016-07-02 15:01:46 +02:00
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
this.storage.readFromNBT(compound);
|
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public void updateEntity() {
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2018-08-10 05:04:07 +02:00
|
|
|
if (!this.world.isRemote) {
|
|
|
|
if (this.isAutoSplit) {
|
2018-06-23 01:39:30 +02:00
|
|
|
autoSplit(this.inv, SLOT_INPUT_1, SLOT_INPUT_2);
|
2016-08-12 18:14:41 +02:00
|
|
|
}
|
|
|
|
|
2017-02-22 12:37:29 +01:00
|
|
|
boolean smelted = false;
|
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);
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
if (canSmeltOnFirst) {
|
|
|
|
if (this.storage.getEnergyStored() >= ENERGY_USE) {
|
2015-03-07 02:23:31 +01:00
|
|
|
this.firstSmeltTime++;
|
2018-08-10 05:04:07 +02: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-11-23 18:10:55 +01:00
|
|
|
this.storage.extractEnergyInternal(ENERGY_USE, false);
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
2017-02-22 12:37:29 +01:00
|
|
|
smelted = true;
|
2018-08-10 05:04:07 +02:00
|
|
|
} else {
|
2015-10-02 16:48:01 +02:00
|
|
|
this.firstSmeltTime = 0;
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
if (canSmeltOnSecond) {
|
|
|
|
if (this.storage.getEnergyStored() >= ENERGY_USE) {
|
2015-03-07 02:23:31 +01:00
|
|
|
this.secondSmeltTime++;
|
2018-08-10 05:04:07 +02: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-11-23 18:10:55 +01:00
|
|
|
this.storage.extractEnergyInternal(ENERGY_USE, false);
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
2017-02-22 12:37:29 +01:00
|
|
|
smelted = true;
|
2018-08-10 05:04:07 +02:00
|
|
|
} else {
|
2015-10-02 16:48:01 +02:00
|
|
|
this.secondSmeltTime = 0;
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
BlockState currState = this.world.getBlockState(this.pos);
|
2019-03-03 23:09:59 +01:00
|
|
|
boolean current = currState.getValue(BlockFurnaceDouble.IS_ON);
|
|
|
|
boolean changeTo = current;
|
2021-02-26 22:15:48 +01:00
|
|
|
if (this.lastSmelted != smelted) {
|
|
|
|
changeTo = smelted;
|
|
|
|
}
|
|
|
|
if (this.isRedstonePowered) {
|
|
|
|
changeTo = true;
|
|
|
|
}
|
|
|
|
if (!smelted && !this.isRedstonePowered) {
|
|
|
|
changeTo = false;
|
|
|
|
}
|
2019-03-03 23:09:59 +01:00
|
|
|
|
|
|
|
if (changeTo != current) {
|
2021-02-26 22:15:48 +01:00
|
|
|
this.world.setBlockState(this.pos, currState.withProperty(BlockFurnaceDouble.IS_ON, changeTo));
|
2017-02-22 12:37:29 +01:00
|
|
|
}
|
|
|
|
|
2019-03-03 23:09:59 +01:00
|
|
|
this.lastSmelted = smelted;
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
if ((this.lastEnergy != this.storage.getEnergyStored() || this.lastFirstSmelt != this.firstSmeltTime || this.lastSecondSmelt != this.secondSmeltTime || this.isAutoSplit != this.lastAutoSplit) && this.sendUpdateWithInterval()) {
|
2015-07-02 04:21:21 +02:00
|
|
|
this.lastEnergy = this.storage.getEnergyStored();
|
|
|
|
this.lastFirstSmelt = this.firstSmeltTime;
|
2016-08-12 18:14:41 +02:00
|
|
|
this.lastAutoSplit = this.isAutoSplit;
|
2015-07-02 04:21:21 +02:00
|
|
|
this.lastSecondSmelt = this.secondSmeltTime;
|
|
|
|
}
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public IAcceptor getAcceptor() {
|
2019-02-27 19:53:05 +01:00
|
|
|
return (slot, stack, automation) -> !automation || (slot == SLOT_INPUT_1 || slot == SLOT_INPUT_2) && StackUtil.isValid(FurnaceRecipes.instance().getSmeltingResult(stack));
|
2018-08-10 05:04:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IRemover getRemover() {
|
2019-02-27 19:53:05 +01:00
|
|
|
return (slot, automation) -> !automation || slot == SLOT_OUTPUT_1 || slot == SLOT_OUTPUT_2;
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public boolean canSmeltOn(int theInput, int theOutput) {
|
|
|
|
if (StackUtil.isValid(this.inv.getStackInSlot(theInput))) {
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack output = FurnaceRecipes.instance().getSmeltingResult(this.inv.getStackInSlot(theInput));
|
2018-08-10 05:04:07 +02:00
|
|
|
if (StackUtil.isValid(output)) {
|
2021-02-26 22:15:48 +01:00
|
|
|
if (!StackUtil.isValid(this.inv.getStackInSlot(theOutput)) || this.inv.getStackInSlot(theOutput).isItemEqual(output) && this.inv.getStackInSlot(theOutput).getCount() <= this.inv.getStackInSlot(theOutput).getMaxStackSize() - output.getCount()) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
2016-11-16 16:59:00 +01:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public void finishBurning(int theInput, int theOutput) {
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack output = FurnaceRecipes.instance().getSmeltingResult(this.inv.getStackInSlot(theInput));
|
2018-08-10 05:04:07 +02:00
|
|
|
if (!StackUtil.isValid(this.inv.getStackInSlot(theOutput))) {
|
2018-06-23 01:39:30 +02:00
|
|
|
this.inv.setStackInSlot(theOutput, output.copy());
|
2018-08-10 05:04:07 +02:00
|
|
|
} else if (this.inv.getStackInSlot(theOutput).getItem() == output.getItem()) {
|
2018-06-23 01:39:30 +02:00
|
|
|
this.inv.getStackInSlot(theOutput).grow(output.getCount());
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2018-06-23 01:39:30 +02:00
|
|
|
this.inv.getStackInSlot(theInput).shrink(1);
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public int getFirstTimeToScale(int i) {
|
|
|
|
return this.firstSmeltTime * i / SMELT_TIME;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public int getSecondTimeToScale(int i) {
|
|
|
|
return this.secondSmeltTime * i / SMELT_TIME;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
2015-04-02 12:06:42 +02:00
|
|
|
|
2016-08-12 18:14:41 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public void onButtonPressed(int buttonID, PlayerEntity player) {
|
2018-08-10 05:04:07 +02:00
|
|
|
if (buttonID == 0) {
|
2016-08-12 18:14:41 +02:00
|
|
|
this.isAutoSplit = !this.isAutoSplit;
|
|
|
|
this.markDirty();
|
|
|
|
}
|
|
|
|
}
|
2016-11-26 08:58:42 +01:00
|
|
|
|
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public IEnergyStorage getEnergyStorage(EnumFacing facing) {
|
2016-11-26 08:58:42 +01:00
|
|
|
return this.storage;
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|