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
|
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-04-19 01:50:02 +02:00
|
|
|
|
2016-01-08 13:31:58 +01:00
|
|
|
|
2016-01-23 11:02:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.config.ConfigValues;
|
2016-01-08 13:31:58 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.PosUtil;
|
2016-05-04 13:15:30 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.Util;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
|
2015-04-19 01:50:02 +02:00
|
|
|
import net.minecraft.block.Block;
|
2015-10-05 16:53:28 +02:00
|
|
|
import net.minecraft.block.BlockAir;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2015-04-19 01:50:02 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2016-05-04 13:15:30 +02:00
|
|
|
import net.minecraftforge.event.ForgeEventFactory;
|
2015-04-19 01:50:02 +02:00
|
|
|
|
2016-05-04 13:15:30 +02:00
|
|
|
import java.util.List;
|
2015-04-19 01:50:02 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +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-04-19 01:50:02 +02:00
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2016-05-02 17:46:53 +02:00
|
|
|
if(!this.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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
|
|
|
return this.isPlacer;
|
|
|
|
}
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
private void doWork(){
|
2016-05-02 17:46:53 +02:00
|
|
|
EnumFacing sideToManipulate = WorldUtil.getDirectionByPistonRotation(PosUtil.getMetadata(this.pos, this.worldObj));
|
2015-12-17 18:47:46 +01:00
|
|
|
|
2016-01-08 13:31:58 +01:00
|
|
|
BlockPos coordsBlock = WorldUtil.getCoordsFromSide(sideToManipulate, this.pos, 0);
|
2015-12-17 18:47:46 +01:00
|
|
|
if(coordsBlock != null){
|
2016-05-02 17:46:53 +02:00
|
|
|
Block blockToBreak = PosUtil.getBlock(coordsBlock, this.worldObj);
|
|
|
|
IBlockState stateToBreak = this.worldObj.getBlockState(coordsBlock);
|
|
|
|
if(!this.isPlacer && blockToBreak != null && !(blockToBreak instanceof BlockAir) && blockToBreak.getBlockHardness(stateToBreak, this.worldObj, coordsBlock) > -1.0F){
|
2016-05-04 13:15:30 +02:00
|
|
|
List<ItemStack> drops = blockToBreak.getDrops(this.worldObj, coordsBlock, stateToBreak, 0);
|
|
|
|
float chance = ForgeEventFactory.fireBlockHarvesting(drops, this.worldObj, coordsBlock, this.worldObj.getBlockState(coordsBlock), 0, 1, false, null);
|
2015-12-17 18:47:46 +01:00
|
|
|
|
2016-05-04 13:15:30 +02:00
|
|
|
if(Util.RANDOM.nextFloat() <= chance){
|
|
|
|
if(WorldUtil.addToInventory(this, drops, false, true)){
|
|
|
|
if(!ConfigValues.lessBlockBreakingEffects){
|
|
|
|
this.worldObj.playAuxSFX(2001, coordsBlock, Block.getStateId(stateToBreak));
|
|
|
|
}
|
|
|
|
WorldUtil.breakBlockAtSide(sideToManipulate, this.worldObj, this.pos);
|
|
|
|
WorldUtil.addToInventory(this, drops, true, true);
|
|
|
|
this.markDirty();
|
2016-01-23 11:02:35 +01:00
|
|
|
}
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-31 03:31:39 +01:00
|
|
|
else if(this.isPlacer){
|
2015-12-17 18:47:46 +01:00
|
|
|
int theSlot = WorldUtil.findFirstFilledSlot(this.slots);
|
2016-05-02 17:46:53 +02:00
|
|
|
this.setInventorySlotContents(theSlot, WorldUtil.useItemAtSide(sideToManipulate, this.worldObj, this.pos, this.slots[theSlot]));
|
2015-12-17 18:47:46 +01:00
|
|
|
if(this.slots[theSlot] != null && this.slots[theSlot].stackSize <= 0){
|
|
|
|
this.slots[theSlot] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
|
2015-12-19 10:30:39 +01:00
|
|
|
return this.isItemValidForSlot(slot, stack);
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
|
2015-04-19 01:50:02 +02:00
|
|
|
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-04-19 01:50:02 +02:00
|
|
|
}
|