2016-06-06 21:27:09 +02:00
|
|
|
/*
|
|
|
|
* 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
|
2016-06-06 21:27:09 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.tile;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.api.misc.IDisplayStandItem;
|
2016-11-16 20:31:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.block.Block;
|
2021-02-27 16:33:00 +01:00
|
|
|
import net.minecraft.item.BlockItem;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.item.Item;
|
2018-06-24 02:44:47 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.nbt.CompoundNBT;
|
2021-02-27 13:24:45 +01:00
|
|
|
import net.minecraft.util.Direction;
|
2021-02-27 16:33:00 +01:00
|
|
|
import net.minecraftforge.common.util.LazyOptional;
|
2016-11-26 08:58:42 +01:00
|
|
|
import net.minecraftforge.energy.IEnergyStorage;
|
2016-06-06 21:27:09 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class TileEntityDisplayStand extends TileEntityInventoryBase implements IEnergyDisplay {
|
2016-06-06 21:27:09 +02:00
|
|
|
|
2016-11-26 20:43:50 +01:00
|
|
|
public final CustomEnergyStorage storage = new CustomEnergyStorage(80000, 1000, 0);
|
2021-02-27 16:33:00 +01:00
|
|
|
public final LazyOptional<IEnergyStorage> lazyEnergy = LazyOptional.of(() -> this.storage);
|
2016-06-06 21:27:09 +02:00
|
|
|
private int oldEnergy;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public TileEntityDisplayStand() {
|
2021-02-27 16:33:00 +01:00
|
|
|
super(ActuallyTiles.DISPLAYSTAND_TILE.get(), 1);
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public void updateEntity() {
|
2016-06-06 21:27:09 +02:00
|
|
|
super.updateEntity();
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!this.world.isRemote) {
|
|
|
|
if (StackUtil.isValid(this.inv.getStackInSlot(0)) && !this.isRedstonePowered) {
|
2018-06-23 01:39:30 +02:00
|
|
|
IDisplayStandItem item = this.convertToDisplayStandItem(this.inv.getStackInSlot(0).getItem());
|
2019-05-02 09:10:29 +02:00
|
|
|
if (item != null) {
|
2018-06-23 01:39:30 +02:00
|
|
|
int energy = item.getUsePerTick(this.inv.getStackInSlot(0), this, this.ticksElapsed);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (this.storage.getEnergyStored() >= energy) {
|
|
|
|
if (item.update(this.inv.getStackInSlot(0), this, this.ticksElapsed)) {
|
2016-11-23 18:10:55 +01:00
|
|
|
this.storage.extractEnergyInternal(energy, false);
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (this.oldEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()) {
|
2016-06-06 21:27:09 +02:00
|
|
|
this.oldEnergy = this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean shouldSyncSlots() {
|
2016-06-06 21:27:09 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@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);
|
2016-06-06 21:27:09 +02: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);
|
2016-06-06 21:27:09 +02:00
|
|
|
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) {
|
2016-06-06 21:27:09 +02:00
|
|
|
Block block = Block.getBlockFromItem(item);
|
2021-02-26 22:15:48 +01:00
|
|
|
if (block instanceof IDisplayStandItem) {
|
|
|
|
return (IDisplayStandItem) block;
|
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public CustomEnergyStorage getEnergyStorage() {
|
2016-07-21 13:22:55 +02:00
|
|
|
return this.storage;
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
|
2016-07-02 18:39:47 +02:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean needsHoldShift() {
|
2016-08-31 16:56:32 +02:00
|
|
|
return false;
|
2016-07-02 18:39:47 +02:00
|
|
|
}
|
|
|
|
|
2016-06-06 21:27:09 +02:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public int getMaxStackSize(int slot) {
|
2016-06-06 21:27:09 +02:00
|
|
|
return 1;
|
|
|
|
}
|
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
|
|
|
}
|
2019-02-27 19:53:05 +01:00
|
|
|
|
2018-06-24 02:44:47 +02:00
|
|
|
public ItemStack getStack() {
|
|
|
|
return this.inv.getStackInSlot(0);
|
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|