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

113 lines
3.2 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("TileEntityDropper.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
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 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
2016-01-08 13:31:58 +01:00
import de.ellpeck.actuallyadditions.mod.util.PosUtil;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
2015-05-04 17:26:50 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumFacing;
2015-05-04 17:26:50 +02:00
public class TileEntityDropper extends TileEntityInventoryBase implements IRedstoneToggle{
2015-05-04 17:26:50 +02:00
private int currentTime;
2015-12-19 10:30:39 +01:00
private boolean activateOnceWithSignal;
2015-05-04 17:26:50 +02:00
public TileEntityDropper(){
super(9, "dropper");
}
@Override
@SuppressWarnings("unchecked")
public void updateEntity(){
super.updateEntity();
2015-05-04 17:26:50 +02:00
if(!worldObj.isRemote){
if(!this.isRedstonePowered && !this.activateOnceWithSignal){
2015-05-04 17:26:50 +02:00
if(this.currentTime > 0){
this.currentTime--;
if(this.currentTime <= 0){
this.doWork();
2015-05-04 17:26:50 +02:00
}
}
2015-10-02 16:48:01 +02:00
else{
this.currentTime = 5;
2015-10-02 16:48:01 +02:00
}
2015-05-04 17:26:50 +02:00
}
}
}
2015-12-19 10:30:39 +01:00
@Override
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
super.writeSyncableNBT(compound, sync);
compound.setInteger("CurrentTime", this.currentTime);
}
@Override
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
super.readSyncableNBT(compound, sync);
this.currentTime = compound.getInteger("CurrentTime");
}
2016-02-01 17:49:55 +01:00
@Override
public boolean isItemValidForSlot(int i, ItemStack stack){
return true;
}
private void doWork(){
if(this.removeFromInventory(false) != null){
ItemStack stack = this.removeFromInventory(true);
stack.stackSize = 1;
2016-01-08 13:31:58 +01:00
WorldUtil.dropItemAtSide(WorldUtil.getDirectionByPistonRotation(PosUtil.getMetadata(this.pos, worldObj)), worldObj, this.pos, stack);
}
}
2015-05-04 17:26:50 +02:00
public ItemStack removeFromInventory(boolean actuallyDo){
for(int i = 0; i < this.slots.length; i++){
if(this.slots[i] != null){
ItemStack slot = this.slots[i].copy();
if(actuallyDo){
this.slots[i].stackSize--;
2015-10-03 10:16:18 +02:00
if(this.slots[i].stackSize <= 0){
this.slots[i] = null;
}
2015-05-04 17:26:50 +02:00
}
return slot;
}
}
return null;
}
@Override
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
2015-12-19 10:30:39 +01:00
return this.isItemValidForSlot(slot, stack);
2015-05-04 17:26:50 +02:00
}
@Override
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
2015-05-04 17:26:50 +02:00
return true;
}
@Override
public void toggle(boolean to){
this.activateOnceWithSignal = to;
}
@Override
public boolean isPulseMode(){
return this.activateOnceWithSignal;
}
@Override
public void activateOnPulse(){
this.doWork();
}
2015-05-04 17:26:50 +02:00
}