ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/tile/TileEntityBreaker.java

145 lines
5.8 KiB
Java
Raw Normal View History

2015-04-19 01:50:02 +02:00
package ellpeck.actuallyadditions.tile;
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
2015-04-19 01:50:02 +02:00
import ellpeck.actuallyadditions.util.WorldUtil;
import net.minecraft.block.Block;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.ChunkCoordinates;
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 static class TileEntityPlacer extends TileEntityBreaker{
public TileEntityPlacer(){
super(9, "placer");
this.isPlacer = true;
}
}
public boolean isPlacer;
2015-04-19 01:50:02 +02:00
private final int timeNeeded = ConfigIntValues.BREAKER_TIME_NEEDED.getValue();
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){
2015-05-07 16:36:29 +02:00
//TODO Remove after some Updating
if(this.isPlacer && this.getClass() != TileEntityPlacer.class){
ItemStack[] theSlots = this.slots.clone();
worldObj.removeTileEntity(xCoord, yCoord, zCoord);
worldObj.setTileEntity(xCoord, yCoord, zCoord, new TileEntityPlacer());
((TileEntityPlacer)worldObj.getTileEntity(xCoord, yCoord, zCoord)).slots = theSlots.clone();
}
2015-04-19 01:50:02 +02:00
if(!worldObj.isBlockIndirectlyGettingPowered(xCoord, yCoord, zCoord)){
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));
ChunkCoordinates coordsBlock = WorldUtil.getCoordsFromSide(sideToManipulate, xCoord, yCoord, zCoord);
if(coordsBlock != null){
Block blockToBreak = worldObj.getBlock(coordsBlock.posX, coordsBlock.posY, coordsBlock.posZ);
if(!this.isPlacer && blockToBreak != null && blockToBreak.getBlockHardness(worldObj, coordsBlock.posX, coordsBlock.posY, coordsBlock.posZ) > -1.0F){
ArrayList<ItemStack> drops = new ArrayList<ItemStack>();
2015-05-04 17:26:50 +02:00
int meta = worldObj.getBlockMetadata(coordsBlock.posX, coordsBlock.posY, coordsBlock.posZ);
drops.addAll(blockToBreak.getDrops(worldObj, coordsBlock.posX, coordsBlock.posY, coordsBlock.posZ, meta, 0));
2015-04-19 01:50:02 +02:00
2015-05-25 17:00:54 +02:00
if(addToInventory(this.slots, drops, false)){
2015-05-04 17:26:50 +02:00
worldObj.playAuxSFX(2001, coordsBlock.posX, coordsBlock.posY, coordsBlock.posZ, Block.getIdFromBlock(blockToBreak) + (meta << 12));
WorldUtil.breakBlockAtSide(sideToManipulate, worldObj, xCoord, yCoord, zCoord);
2015-05-25 17:00:54 +02:00
addToInventory(this.slots, drops, true);
this.markDirty();
}
}
2015-05-22 17:48:50 +02:00
else if(this.isPlacer && worldObj.getBlock(coordsBlock.posX, coordsBlock.posY, coordsBlock.posZ).isReplaceable(worldObj, coordsBlock.posX, coordsBlock.posY, coordsBlock.posZ)){
2015-05-25 17:00:54 +02:00
ItemStack removeFalse = removeFromInventory(this.slots, false);
2015-05-22 17:48:50 +02:00
if(removeFalse != null && WorldUtil.placeBlockAtSide(sideToManipulate, worldObj, xCoord, yCoord, zCoord, removeFalse)){
2015-05-25 17:00:54 +02:00
removeFromInventory(this.slots, true);
}
}
2015-04-19 01:50:02 +02:00
}
}
}
else this.currentTime = this.timeNeeded;
2015-04-19 01:50:02 +02:00
}
}
}
@Override
public void writeToNBT(NBTTagCompound compound){
super.writeToNBT(compound);
compound.setInteger("CurrentTime", this.currentTime);
2015-04-19 01:50:02 +02:00
}
@Override
public void readFromNBT(NBTTagCompound compound){
super.readFromNBT(compound);
this.currentTime = compound.getInteger("CurrentTime");
2015-04-19 01:50:02 +02:00
}
2015-05-25 17:00:54 +02:00
public static boolean addToInventory(ItemStack[] slots, ArrayList<ItemStack> stacks, boolean actuallyDo){
2015-04-19 01:50:02 +02:00
int working = 0;
for(ItemStack stack : stacks){
2015-05-25 17:00:54 +02:00
for(int i = 0; i < slots.length; i++){
if(slots[i] == null || (slots[i].isItemEqual(stack) && slots[i].stackSize <= stack.getMaxStackSize()-stack.stackSize)){
2015-04-19 01:50:02 +02:00
working++;
if(actuallyDo){
2015-05-25 17:00:54 +02:00
if(slots[i] == null) slots[i] = stack.copy();
else slots[i].stackSize += stack.stackSize;
2015-04-19 01:50:02 +02:00
}
break;
}
}
}
return working >= stacks.size();
}
2015-05-25 17:00:54 +02:00
public static ItemStack removeFromInventory(ItemStack[] slots, boolean actuallyDo){
for(int i = 0; i < slots.length; i++){
if(slots[i] != null){
ItemStack slot = slots[i].copy();
2015-04-19 01:50:02 +02:00
if(actuallyDo){
2015-05-25 17:00:54 +02:00
slots[i].stackSize--;
2015-05-27 21:57:53 +02:00
if(slots[i].stackSize <= 0) slots[i] = slots[i].getItem().getContainerItem(slots[i]);
2015-04-19 01:50:02 +02:00
}
return slot;
}
}
return null;
}
@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;
}
}