2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("TileEntityBreaker.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2015-11-02 20:55:19 +01:00
|
|
|
* © 2015 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
package ellpeck.actuallyadditions.tile;
|
|
|
|
|
2015-12-23 01:43:49 +01:00
|
|
|
import ellpeck.actuallyadditions.util.Position;
|
2015-04-19 01:50:02 +02:00
|
|
|
import ellpeck.actuallyadditions.util.WorldUtil;
|
|
|
|
import net.minecraft.block.Block;
|
2015-10-05 16:53:28 +02:00
|
|
|
import net.minecraft.block.BlockAir;
|
2015-04-19 01:50:02 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-05-04 17:26:50 +02:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2015-04-19 01:50:02 +02:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
public class TileEntityBreaker extends TileEntityInventoryBase implements IRedstoneToggle{
|
2015-04-19 01:50:02 +02:00
|
|
|
|
2015-05-04 17:26:50 +02:00
|
|
|
public boolean isPlacer;
|
2015-04-24 19:22:03 +02:00
|
|
|
private int currentTime;
|
2015-12-19 10:30:39 +01:00
|
|
|
private boolean activateOnceWithSignal;
|
2015-04-24 19:22:03 +02:00
|
|
|
|
2015-05-04 17:26:50 +02:00
|
|
|
public TileEntityBreaker(int slots, String name){
|
|
|
|
super(slots, name);
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
|
2015-05-04 17:26:50 +02:00
|
|
|
public TileEntityBreaker(){
|
|
|
|
super(9, "breaker");
|
|
|
|
this.isPlacer = false;
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2015-04-19 01:50:02 +02:00
|
|
|
if(!worldObj.isRemote){
|
2015-12-17 18:47:46 +01:00
|
|
|
if(!this.isRedstonePowered && !this.activateOnceWithSignal){
|
2015-04-24 19:22:03 +02:00
|
|
|
if(this.currentTime > 0){
|
|
|
|
this.currentTime--;
|
|
|
|
if(this.currentTime <= 0){
|
2015-12-17 18:47:46 +01:00
|
|
|
this.doWork();
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
else{
|
2015-11-28 19:02:01 +01:00
|
|
|
this.currentTime = 15;
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-04-19 01:50:02 +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");
|
|
|
|
}
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
private void doWork(){
|
|
|
|
ForgeDirection sideToManipulate = ForgeDirection.getOrientation(worldObj.getBlockMetadata(xCoord, yCoord, zCoord));
|
|
|
|
|
2015-12-23 01:43:49 +01:00
|
|
|
Position coordsBlock = WorldUtil.getCoordsFromSide(sideToManipulate, xCoord, yCoord, zCoord, 0);
|
2015-12-17 18:47:46 +01:00
|
|
|
if(coordsBlock != null){
|
|
|
|
Block blockToBreak = worldObj.getBlock(coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ());
|
|
|
|
if(!this.isPlacer && blockToBreak != null && !(blockToBreak instanceof BlockAir) && blockToBreak.getBlockHardness(worldObj, coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ()) > -1.0F){
|
|
|
|
ArrayList<ItemStack> drops = new ArrayList<ItemStack>();
|
|
|
|
int meta = worldObj.getBlockMetadata(coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ());
|
|
|
|
drops.addAll(blockToBreak.getDrops(worldObj, coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ(), meta, 0));
|
|
|
|
|
|
|
|
if(WorldUtil.addToInventory(this, drops, false)){
|
|
|
|
worldObj.playAuxSFX(2001, coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ(), Block.getIdFromBlock(blockToBreak)+(meta << 12));
|
|
|
|
WorldUtil.breakBlockAtSide(sideToManipulate, worldObj, xCoord, yCoord, zCoord);
|
|
|
|
WorldUtil.addToInventory(this, drops, true);
|
|
|
|
this.markDirty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(this.isPlacer && worldObj.getBlock(coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ()).isReplaceable(worldObj, coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ())){
|
|
|
|
int theSlot = WorldUtil.findFirstFilledSlot(this.slots);
|
|
|
|
this.setInventorySlotContents(theSlot, WorldUtil.placeBlockAtSide(sideToManipulate, worldObj, xCoord, yCoord, zCoord, this.slots[theSlot]));
|
|
|
|
if(this.slots[theSlot] != null && this.slots[theSlot].stackSize <= 0){
|
|
|
|
this.slots[theSlot] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
@Override
|
2015-12-19 10:30:39 +01:00
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, int side){
|
|
|
|
return this.isItemValidForSlot(slot, stack);
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-12-19 10:30:39 +01:00
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
|
|
|
return this.isPlacer;
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, int side){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
@Override
|
2015-12-21 22:18:33 +01:00
|
|
|
public void toggle(boolean to){
|
|
|
|
this.activateOnceWithSignal = to;
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-12-21 22:18:33 +01:00
|
|
|
public boolean isPulseMode(){
|
2015-12-19 10:30:39 +01:00
|
|
|
return this.activateOnceWithSignal;
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-12-19 10:30:39 +01:00
|
|
|
public void activateOnPulse(){
|
|
|
|
this.doWork();
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
|
2015-10-03 10:16:18 +02:00
|
|
|
public static class TileEntityPlacer extends TileEntityBreaker{
|
|
|
|
|
|
|
|
public TileEntityPlacer(){
|
|
|
|
super(9, "placer");
|
|
|
|
this.isPlacer = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|