2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityDropper.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-04 17:26:50 +02:00
|
|
|
|
2021-02-28 15:47:54 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.inventory.ContainerDropper;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
|
2021-02-27 13:24:45 +01:00
|
|
|
import net.minecraft.block.BlockState;
|
2021-02-28 15:47:54 +01:00
|
|
|
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-04 17:26:50 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.nbt.CompoundNBT;
|
2021-02-28 15:47:54 +01:00
|
|
|
import net.minecraft.util.text.ITextComponent;
|
|
|
|
import net.minecraft.util.text.StringTextComponent;
|
2015-05-04 17:26:50 +02:00
|
|
|
|
2021-02-28 15:47:54 +01:00
|
|
|
import javax.annotation.Nullable;
|
|
|
|
|
|
|
|
public class TileEntityDropper extends TileEntityInventoryBase implements INamedContainerProvider {
|
2015-05-04 17:26:50 +02:00
|
|
|
|
|
|
|
private int currentTime;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public TileEntityDropper() {
|
2021-02-27 16:33:00 +01:00
|
|
|
super(ActuallyTiles.DROPPER_TILE.get(), 9);
|
2015-05-04 17:26:50 +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);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (type != NBTType.SAVE_BLOCK) {
|
2021-02-27 16:33:00 +01:00
|
|
|
compound.putInt("CurrentTime", this.currentTime);
|
2016-07-02 15:01:46 +02:00
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@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);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (type != NBTType.SAVE_BLOCK) {
|
2021-02-27 16:33:00 +01:00
|
|
|
this.currentTime = compound.getInt("CurrentTime");
|
2016-07-02 15:01:46 +02:00
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
2015-05-04 17:26:50 +02:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public void updateEntity() {
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!this.world.isRemote) {
|
|
|
|
if (!this.isRedstonePowered && !this.isPulseMode) {
|
|
|
|
if (this.currentTime > 0) {
|
2015-05-04 17:26:50 +02:00
|
|
|
this.currentTime--;
|
2019-05-02 09:10:29 +02:00
|
|
|
if (this.currentTime <= 0) {
|
2015-12-17 18:47:46 +01:00
|
|
|
this.doWork();
|
2015-05-04 17:26:50 +02:00
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2015-11-28 19:02:01 +01:00
|
|
|
this.currentTime = 5;
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-05-04 17:26:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
private void doWork() {
|
2016-12-08 14:25:16 +01:00
|
|
|
ItemStack theoreticalRemove = this.removeFromInventory(false);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (StackUtil.isValid(theoreticalRemove)) {
|
2021-02-26 22:15:48 +01:00
|
|
|
BlockState state = this.world.getBlockState(this.pos);
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack drop = theoreticalRemove.copy();
|
|
|
|
drop.setCount(1);
|
|
|
|
WorldUtil.dropItemAtSide(WorldUtil.getDirectionByPistonRotation(state), this.world, this.pos, drop);
|
2019-02-27 19:53:05 +01:00
|
|
|
this.removeFromInventory(true);
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemStack removeFromInventory(boolean actuallyDo) {
|
|
|
|
for (int i = 0; i < this.inv.getSlots(); i++) {
|
|
|
|
if (StackUtil.isValid(this.inv.getStackInSlot(i))) {
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack slot = this.inv.getStackInSlot(i).copy();
|
2019-05-02 09:10:29 +02:00
|
|
|
if (actuallyDo) {
|
2018-06-23 01:39:30 +02:00
|
|
|
this.inv.setStackInSlot(i, StackUtil.shrink(this.inv.getStackInSlot(i), 1));
|
2016-11-07 20:10:04 +01:00
|
|
|
this.markDirty();
|
2015-05-04 17:26:50 +02:00
|
|
|
}
|
|
|
|
return slot;
|
|
|
|
}
|
|
|
|
}
|
2017-11-02 22:49:53 +01:00
|
|
|
return StackUtil.getEmpty();
|
2015-05-04 17:26:50 +02:00
|
|
|
}
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean isRedstoneToggle() {
|
2016-07-02 15:01:46 +02:00
|
|
|
return true;
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public void activateOnPulse() {
|
2015-12-17 18:47:46 +01:00
|
|
|
this.doWork();
|
|
|
|
}
|
2021-02-28 15:47:54 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public ITextComponent getDisplayName() {
|
|
|
|
return StringTextComponent.EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public Container createMenu(int windowId, PlayerInventory playerInventory, PlayerEntity player) {
|
|
|
|
return new ContainerDropper(windowId, playerInventory, this);
|
|
|
|
}
|
2015-05-04 17:26:50 +02:00
|
|
|
}
|