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

118 lines
3.9 KiB
Java
Raw Normal View History

/*
* This file ("TileEntityDisplayStand.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.tile;
import de.ellpeck.actuallyadditions.api.misc.IDisplayStandItem;
2021-08-31 00:44:39 +02:00
import de.ellpeck.actuallyadditions.mod.blocks.ActuallyBlocks;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
2024-03-02 21:23:08 +01:00
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.world.item.BlockItem;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.level.block.state.BlockState;
2024-03-04 20:21:48 +01:00
import net.neoforged.neoforge.energy.IEnergyStorage;
2019-05-02 09:10:29 +02:00
public class TileEntityDisplayStand extends TileEntityInventoryBase implements IEnergyDisplay {
2016-11-26 20:43:50 +01:00
public final CustomEnergyStorage storage = new CustomEnergyStorage(80000, 1000, 0);
private int oldEnergy;
2024-03-02 21:23:08 +01:00
public TileEntityDisplayStand(BlockPos pos, BlockState state) {
super(ActuallyBlocks.DISPLAY_STAND.getTileEntityType(), pos, state, 1);
}
2024-03-02 21:23:08 +01:00
public static <T extends BlockEntity> void clientTick(Level level, BlockPos pos, BlockState state, T t) {
if (t instanceof TileEntityDisplayStand tile) {
tile.clientTick();
}
}
public static <T extends BlockEntity> void serverTick(Level level, BlockPos pos, BlockState state, T t) {
if (t instanceof TileEntityDisplayStand tile) {
tile.serverTick();
2024-03-02 21:23:08 +01:00
if (StackUtil.isValid(tile.inv.getStackInSlot(0)) && !tile.isRedstonePowered) {
IDisplayStandItem item = tile.convertToDisplayStandItem(tile.inv.getStackInSlot(0).getItem());
2019-05-02 09:10:29 +02:00
if (item != null) {
2024-03-02 21:23:08 +01:00
int energy = item.getUsePerTick(tile.inv.getStackInSlot(0), tile, tile.ticksElapsed);
if (tile.storage.getEnergyStored() >= energy) {
if (item.update(tile.inv.getStackInSlot(0), tile, tile.ticksElapsed)) {
tile.storage.extractEnergyInternal(energy, false);
}
}
}
}
2024-03-02 21:23:08 +01:00
if (tile.oldEnergy != tile.storage.getEnergyStored() && tile.sendUpdateWithInterval()) {
tile.oldEnergy = tile.storage.getEnergyStored();
}
}
}
@Override
2019-05-02 09:10:29 +02:00
public boolean shouldSyncSlots() {
return true;
}
@Override
2024-03-02 21:23:08 +01:00
public void writeSyncableNBT(CompoundTag compound, NBTType type) {
super.writeSyncableNBT(compound, type);
this.storage.writeToNBT(compound);
}
@Override
2024-03-02 21:23:08 +01:00
public void readSyncableNBT(CompoundTag compound, NBTType type) {
super.readSyncableNBT(compound, type);
this.storage.readFromNBT(compound);
}
2019-05-02 09:10:29 +02:00
private IDisplayStandItem convertToDisplayStandItem(Item item) {
if (item instanceof IDisplayStandItem) {
return (IDisplayStandItem) item;
2021-02-27 16:33:00 +01:00
} else if (item instanceof BlockItem) {
Block block = Block.byItem(item);
2021-02-26 22:15:48 +01:00
if (block instanceof IDisplayStandItem) {
return (IDisplayStandItem) block;
}
}
return null;
}
@Override
2019-05-02 09:10:29 +02:00
public CustomEnergyStorage getEnergyStorage() {
return this.storage;
}
@Override
2019-05-02 09:10:29 +02:00
public boolean needsHoldShift() {
return false;
}
@Override
2019-05-02 09:10:29 +02:00
public int getMaxStackSize(int slot) {
return 1;
}
2016-11-26 08:58:42 +01:00
@Override
2024-03-04 20:21:48 +01:00
public IEnergyStorage getEnergyStorage(Direction facing) {
return this.storage;
2016-11-26 08:58:42 +01:00
}
2019-02-27 19:53:05 +01:00
public ItemStack getStack() {
return this.inv.getStackInSlot(0);
}
}