ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityCanolaPress.java

187 lines
7.1 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityCanolaPress.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-05-20 22:39:43 +02:00
2022-01-07 00:16:37 +01:00
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
2021-08-31 00:44:39 +02:00
import de.ellpeck.actuallyadditions.mod.blocks.ActuallyBlocks;
2022-01-07 00:16:37 +01:00
import de.ellpeck.actuallyadditions.mod.crafting.PressingRecipe;
import de.ellpeck.actuallyadditions.mod.crafting.SingleItem;
2016-01-29 17:38:31 +01:00
import de.ellpeck.actuallyadditions.mod.fluids.InitFluids;
2022-01-07 00:16:37 +01:00
import de.ellpeck.actuallyadditions.mod.fluids.OutputOnlyFluidTank;
import de.ellpeck.actuallyadditions.mod.inventory.ContainerCanolaPress;
2018-08-10 05:04:07 +02:00
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IAcceptor;
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IRemover;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
import de.ellpeck.actuallyadditions.mod.util.Util;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.player.PlayerInventory;
import net.minecraft.inventory.container.Container;
import net.minecraft.inventory.container.INamedContainerProvider;
2015-05-20 22:39:43 +02:00
import net.minecraft.item.ItemStack;
2021-02-26 22:15:48 +01:00
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.Direction;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.StringTextComponent;
2022-01-07 00:16:37 +01:00
import net.minecraft.util.text.TranslationTextComponent;
2021-02-27 16:33:00 +01:00
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.common.util.LazyOptional;
2016-11-26 08:58:42 +01:00
import net.minecraftforge.energy.IEnergyStorage;
2022-01-07 00:16:37 +01:00
import net.minecraftforge.fluids.FluidAttributes;
2016-11-26 21:32:27 +01:00
import net.minecraftforge.fluids.FluidStack;
2022-01-07 00:16:37 +01:00
import net.minecraftforge.fluids.IFluidTank;
2021-02-27 16:33:00 +01:00
import net.minecraftforge.fluids.capability.IFluidHandler;
import net.minecraftforge.fluids.capability.templates.FluidTank;
2016-05-19 20:05:12 +02:00
import javax.annotation.Nullable;
2022-01-07 00:16:37 +01:00
import java.util.Optional;
public class TileEntityCanolaPress extends TileEntityInventoryBase implements INamedContainerProvider, ISharingFluidHandler {
2015-05-20 22:39:43 +02:00
2015-12-01 19:48:09 +01:00
public static final int ENERGY_USE = 35;
private static final int TIME = 30;
2016-11-26 20:43:50 +01:00
public final CustomEnergyStorage storage = new CustomEnergyStorage(40000, 100, 0);
2021-02-27 16:33:00 +01:00
public final LazyOptional<IEnergyStorage> lazyEnergy = LazyOptional.of(() -> this.storage);
2022-01-07 00:16:37 +01:00
public final OutputOnlyFluidTank tank = new OutputOnlyFluidTank(2 * FluidAttributes.BUCKET_VOLUME);
2021-02-27 16:33:00 +01:00
public final LazyOptional<IFluidHandler> lazyFluid = LazyOptional.of(() -> this.tank);
2015-05-20 22:39:43 +02:00
public int currentProcessTime;
2015-10-03 10:16:18 +02:00
private int lastEnergyStored;
private int lastTankAmount;
private int lastProcessTime;
2015-05-20 22:39:43 +02:00
2018-08-10 05:04:07 +02:00
public TileEntityCanolaPress() {
2021-11-21 21:34:08 +01:00
super(ActuallyBlocks.CANOLA_PRESS.getTileEntityType(), 1);
}
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2018-08-10 05:04:07 +02:00
public int getTankScaled(int i) {
return this.tank.getFluidAmount() * i / this.tank.getCapacity();
2015-12-01 19:48:09 +01:00
}
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2018-08-10 05:04:07 +02:00
public int getProcessScaled(int i) {
return this.currentProcessTime * i / TIME;
2015-12-01 19:48:09 +01:00
}
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2018-08-10 05:04:07 +02:00
public int getEnergyScaled(int i) {
return this.storage.getEnergyStored() * i / this.storage.getMaxEnergyStored();
2015-12-01 19:48:09 +01:00
}
@Override
2021-02-26 22:15:48 +01:00
public void writeSyncableNBT(CompoundNBT compound, NBTType type) {
2018-08-10 05:04:07 +02:00
if (type != NBTType.SAVE_BLOCK) {
2021-02-27 16:33:00 +01:00
compound.putInt("ProcessTime", this.currentProcessTime);
}
this.storage.writeToNBT(compound);
this.tank.writeToNBT(compound);
super.writeSyncableNBT(compound, type);
}
@Override
2021-02-26 22:15:48 +01:00
public void readSyncableNBT(CompoundNBT compound, NBTType type) {
2018-08-10 05:04:07 +02:00
if (type != NBTType.SAVE_BLOCK) {
2021-02-27 16:33:00 +01:00
this.currentProcessTime = compound.getInt("ProcessTime");
}
this.storage.readFromNBT(compound);
this.tank.readFromNBT(compound);
super.readSyncableNBT(compound, type);
}
2015-05-20 22:39:43 +02:00
@Override
2018-08-10 05:04:07 +02:00
public void updateEntity() {
super.updateEntity();
if (!this.level.isClientSide) {
2022-01-07 00:16:37 +01:00
Optional<PressingRecipe> recipe = getRecipeForInput(this.inv.getStackInSlot(0));
recipe.ifPresent(r -> {
if ((r.getOutput().isFluidEqual(this.tank.getFluid()) || this.tank.isEmpty()) && r.getOutput().getAmount() <= this.tank.getCapacity() - this.tank.getFluidAmount()) {
if (this.storage.getEnergyStored() >= ENERGY_USE) {
this.currentProcessTime++;
this.storage.extractEnergyInternal(ENERGY_USE, false);
if (this.currentProcessTime >= TIME) {
this.currentProcessTime = 0;
this.inv.setStackInSlot(0, StackUtil.shrink(this.inv.getStackInSlot(0), 1));
FluidStack produced = r.getOutput().copy();
this.tank.fillInternal(produced, IFluidHandler.FluidAction.EXECUTE);
this.setChanged();
}
}
2015-05-20 22:39:43 +02:00
}
2022-01-07 00:16:37 +01:00
});
if (!recipe.isPresent())
2015-10-02 16:48:01 +02:00
this.currentProcessTime = 0;
2018-08-10 05:04:07 +02:00
if ((this.storage.getEnergyStored() != this.lastEnergyStored || this.tank.getFluidAmount() != this.lastTankAmount | this.currentProcessTime != this.lastProcessTime) && this.sendUpdateWithInterval()) {
this.lastEnergyStored = this.storage.getEnergyStored();
this.lastProcessTime = this.currentProcessTime;
this.lastTankAmount = this.tank.getFluidAmount();
}
2015-05-20 22:39:43 +02:00
}
}
2022-01-07 00:16:37 +01:00
public boolean validInput(ItemStack stack) {
return getRecipeForInput(stack).isPresent();
}
public static Optional<PressingRecipe> getRecipeForInput(ItemStack stack) {
2022-01-07 00:16:37 +01:00
return ActuallyAdditionsAPI.PRESSING_RECIPES.stream().filter(recipe -> recipe.matches(new SingleItem(stack), null)).findFirst();
}
2016-02-01 17:49:55 +01:00
@Override
2018-08-10 05:04:07 +02:00
public IAcceptor getAcceptor() {
2022-01-07 00:16:37 +01:00
return (slot, stack, automation) -> slot == 0 && validInput(stack);
2016-02-01 17:49:55 +01:00
}
2015-05-20 22:39:43 +02:00
@Override
2018-08-10 05:04:07 +02:00
public IRemover getRemover() {
return (slot, automation) -> !automation;
2015-05-20 22:39:43 +02:00
}
2016-06-05 02:16:52 +02:00
@Override
2021-02-27 16:33:00 +01:00
public LazyOptional<IFluidHandler> getFluidHandler(Direction facing) {
return this.lazyFluid;
2016-06-05 02:16:52 +02:00
}
@Override
2018-08-10 05:04:07 +02:00
public int getMaxFluidAmountToSplitShare() {
return this.tank.getFluidAmount();
}
@Override
2018-08-10 05:04:07 +02:00
public boolean doesShareFluid() {
return true;
}
@Override
public Direction[] getFluidShareSides() {
return Direction.values();
}
2016-11-26 08:58:42 +01:00
@Override
2021-02-27 16:33:00 +01:00
public LazyOptional<IEnergyStorage> getEnergyStorage(Direction facing) {
return this.lazyEnergy;
2016-11-26 08:58:42 +01:00
}
@Override
public ITextComponent getDisplayName() {
2022-01-07 00:16:37 +01:00
return new TranslationTextComponent("container.actuallyadditions.canola_press");
}
@Nullable
@Override
public Container createMenu(int windowId, PlayerInventory playerInventory, PlayerEntity playerEntity) {
return new ContainerCanolaPress(windowId, playerInventory, this);
}
2015-05-20 22:39:43 +02:00
}