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
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
|
package ellpeck.actuallyadditions.tile;
|
|
|
|
|
|
2015-04-24 19:22:03 +02:00
|
|
|
|
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
|
2015-07-07 11:51:05 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.WorldPos;
|
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;
|
|
|
|
|
|
|
|
|
|
public class TileEntityBreaker extends TileEntityInventoryBase{
|
|
|
|
|
|
2015-05-04 17:26:50 +02:00
|
|
|
|
public boolean isPlacer;
|
2015-04-24 19:22:03 +02:00
|
|
|
|
private int currentTime;
|
|
|
|
|
|
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(){
|
|
|
|
|
if(!worldObj.isRemote){
|
|
|
|
|
if(!worldObj.isBlockIndirectlyGettingPowered(xCoord, yCoord, zCoord)){
|
2015-04-24 19:22:03 +02:00
|
|
|
|
if(this.currentTime > 0){
|
|
|
|
|
this.currentTime--;
|
|
|
|
|
if(this.currentTime <= 0){
|
2015-05-04 17:26:50 +02:00
|
|
|
|
ForgeDirection sideToManipulate = ForgeDirection.getOrientation(worldObj.getBlockMetadata(xCoord, yCoord, zCoord));
|
|
|
|
|
|
2015-10-05 16:53:28 +02:00
|
|
|
|
WorldPos coordsBlock = WorldUtil.getCoordsFromSide(sideToManipulate, worldObj, xCoord, yCoord, zCoord, 0);
|
2015-05-04 17:26:50 +02:00
|
|
|
|
if(coordsBlock != null){
|
2015-07-07 11:51:05 +02:00
|
|
|
|
Block blockToBreak = worldObj.getBlock(coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ());
|
2015-10-05 16:53:28 +02:00
|
|
|
|
if(!this.isPlacer && blockToBreak != null && !(blockToBreak instanceof BlockAir) && blockToBreak.getBlockHardness(worldObj, coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ()) > -1.0F){
|
2015-04-24 19:22:03 +02:00
|
|
|
|
ArrayList<ItemStack> drops = new ArrayList<ItemStack>();
|
2015-07-07 11:51:05 +02:00
|
|
|
|
int meta = worldObj.getBlockMetadata(coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ());
|
|
|
|
|
drops.addAll(blockToBreak.getDrops(worldObj, coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ(), meta, 0));
|
2015-04-19 01:50:02 +02:00
|
|
|
|
|
2015-07-07 12:32:25 +02:00
|
|
|
|
if(WorldUtil.addToInventory(this.slots, drops, false)){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
worldObj.playAuxSFX(2001, coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ(), Block.getIdFromBlock(blockToBreak)+(meta << 12));
|
2015-05-04 17:26:50 +02:00
|
|
|
|
WorldUtil.breakBlockAtSide(sideToManipulate, worldObj, xCoord, yCoord, zCoord);
|
2015-07-07 12:32:25 +02:00
|
|
|
|
WorldUtil.addToInventory(this.slots, drops, true);
|
2015-04-24 19:22:03 +02:00
|
|
|
|
this.markDirty();
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-07-07 11:51:05 +02:00
|
|
|
|
else if(this.isPlacer && worldObj.getBlock(coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ()).isReplaceable(worldObj, coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ())){
|
2015-07-07 12:34:20 +02:00
|
|
|
|
int theSlot = WorldUtil.findFirstFilledSlot(this.slots);
|
2015-05-30 17:47:57 +02:00
|
|
|
|
this.setInventorySlotContents(theSlot, WorldUtil.placeBlockAtSide(sideToManipulate, worldObj, xCoord, yCoord, zCoord, this.slots[theSlot]));
|
2015-10-02 16:48:01 +02:00
|
|
|
|
if(this.slots[theSlot] != null && this.slots[theSlot].stackSize <= 0){
|
|
|
|
|
this.slots[theSlot] = null;
|
|
|
|
|
}
|
2015-04-24 19:22:03 +02:00
|
|
|
|
}
|
2015-04-19 01:50:02 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
|
else{
|
|
|
|
|
this.currentTime = ConfigIntValues.BREAKER_TIME_NEEDED.getValue();
|
|
|
|
|
}
|
2015-04-19 01:50:02 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-03 22:13:57 +02:00
|
|
|
|
@Override
|
2015-10-18 15:28:06 +02:00
|
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
|
super.writeSyncableNBT(compound, sync);
|
2015-10-03 22:13:57 +02:00
|
|
|
|
compound.setInteger("CurrentTime", this.currentTime);
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-23 16:54:33 +02:00
|
|
|
|
@Override
|
|
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
|
super.readSyncableNBT(compound, sync);
|
|
|
|
|
this.currentTime = compound.getInteger("CurrentTime");
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
|
@Override
|
|
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
|
|
|
|
return this.isPlacer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, int side){
|
|
|
|
|
return this.isItemValidForSlot(slot, stack);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, int side){
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|