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

133 lines
4.5 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityBreaker.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-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
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
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;
import net.minecraft.util.EnumFacing;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraftforge.event.ForgeEventFactory;
2015-04-19 01:50:02 +02:00
import java.util.List;
2015-04-19 01:50:02 +02:00
public class TileEntityBreaker extends TileEntityInventoryBase{
2015-04-19 01:50:02 +02:00
2015-05-04 17:26:50 +02:00
public boolean isPlacer;
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
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
super.writeSyncableNBT(compound, type);
if(type != NBTType.SAVE_BLOCK){
compound.setInteger("CurrentTime", this.currentTime);
}
}
@Override
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
super.readSyncableNBT(compound, type);
if(type != NBTType.SAVE_BLOCK){
this.currentTime = compound.getInteger("CurrentTime");
}
}
2015-04-19 01:50:02 +02:00
@Override
public void updateEntity(){
super.updateEntity();
2016-05-02 17:46:53 +02:00
if(!this.worldObj.isRemote){
if(!this.isRedstonePowered && !this.isPulseMode){
if(this.currentTime > 0){
this.currentTime--;
if(this.currentTime <= 0){
this.doWork();
2015-04-19 01:50:02 +02:00
}
}
2015-10-02 16:48:01 +02:00
else{
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){
2016-02-01 17:49:55 +01:00
return this.isPlacer;
}
private void doWork(){
2016-07-04 20:15:41 +02:00
IBlockState state = this.worldObj.getBlockState(this.pos);
EnumFacing sideToManipulate = WorldUtil.getDirectionByPistonRotation(state.getBlock().getMetaFromState(state));
2016-07-04 20:15:41 +02:00
BlockPos coordsBlock = this.pos.offset(sideToManipulate, 0);
2016-05-16 22:52:27 +02:00
IBlockState stateToBreak = this.worldObj.getBlockState(coordsBlock);
2016-07-04 20:15:41 +02:00
Block blockToBreak = stateToBreak.getBlock();
2016-05-16 22:52:27 +02:00
if(!this.isPlacer && blockToBreak != null && !(blockToBreak instanceof BlockAir) && blockToBreak.getBlockHardness(stateToBreak, this.worldObj, coordsBlock) > -1.0F){
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);
if(Util.RANDOM.nextFloat() <= chance){
if(WorldUtil.addToInventory(this, drops, false, true)){
if(!ConfigBoolValues.LESS_BLOCK_BREAKING_EFFECTS.isEnabled()){
this.worldObj.playEvent(2001, coordsBlock, Block.getStateId(stateToBreak));
2016-01-23 11:02:35 +01:00
}
2016-07-04 20:15:41 +02:00
this.worldObj.setBlockToAir(coordsBlock);
2016-05-16 22:52:27 +02:00
WorldUtil.addToInventory(this, drops, true, true);
this.markDirty();
}
}
2016-05-16 22:52:27 +02:00
}
else if(this.isPlacer){
int theSlot = WorldUtil.findFirstFilledSlot(this.slots);
this.setInventorySlotContents(theSlot, WorldUtil.useItemAtSide(sideToManipulate, this.worldObj, this.pos, 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
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
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
2015-04-19 01:50:02 +02:00
return true;
}
@Override
public boolean isRedstoneToggle(){
return true;
}
@Override
2015-12-19 10:30:39 +01:00
public void activateOnPulse(){
this.doWork();
}
2015-04-19 01:50:02 +02:00
}