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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 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-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
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;
|
2016-08-29 02:09:34 +02:00
|
|
|
import net.minecraft.block.BlockLiquid;
|
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-08-29 02:09:34 +02:00
|
|
|
import net.minecraftforge.fluids.IFluidBlock;
|
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
|
|
|
|
2016-07-02 15:01:46 +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;
|
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
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.writeSyncableNBT(compound, type);
|
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
|
|
|
compound.setInteger("CurrentTime", this.currentTime);
|
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.readSyncableNBT(compound, type);
|
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
|
|
|
this.currentTime = compound.getInteger("CurrentTime");
|
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2016-11-26 21:32:27 +01:00
|
|
|
if(!this.world.isRemote){
|
2016-07-02 15:01:46 +02:00
|
|
|
if(!this.isRedstonePowered && !this.isPulseMode){
|
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
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
2016-02-01 17:49:55 +01:00
|
|
|
return this.isPlacer;
|
|
|
|
}
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
private void doWork(){
|
2016-11-26 21:32:27 +01:00
|
|
|
IBlockState state = this.world.getBlockState(this.pos);
|
2016-07-04 20:15:41 +02:00
|
|
|
EnumFacing sideToManipulate = WorldUtil.getDirectionByPistonRotation(state.getBlock().getMetaFromState(state));
|
2015-12-17 18:47:46 +01:00
|
|
|
|
2016-07-06 21:56:15 +02:00
|
|
|
BlockPos coordsBlock = this.pos.offset(sideToManipulate);
|
2016-11-26 21:32:27 +01:00
|
|
|
IBlockState stateToBreak = this.world.getBlockState(coordsBlock);
|
2016-07-04 20:15:41 +02:00
|
|
|
Block blockToBreak = stateToBreak.getBlock();
|
2017-07-28 03:17:50 +02:00
|
|
|
if(!this.isPlacer && blockToBreak != null && !this.world.isAirBlock(coordsBlock) && !(blockToBreak instanceof BlockLiquid) && !(blockToBreak instanceof IFluidBlock) && stateToBreak.getBlockHardness(this.world, coordsBlock) >= 0.0F){
|
2016-11-26 21:32:27 +01:00
|
|
|
List<ItemStack> drops = blockToBreak.getDrops(this.world, coordsBlock, stateToBreak, 0);
|
2017-02-04 16:07:58 +01:00
|
|
|
float chance = WorldUtil.fireFakeHarvestEventsForDropChance(drops, this.world, coordsBlock);
|
2016-05-16 22:52:27 +02:00
|
|
|
|
2017-02-04 16:07:58 +01:00
|
|
|
if(chance > 0 && this.world.rand.nextFloat() <= chance){
|
2016-12-04 00:10:52 +01:00
|
|
|
if(WorldUtil.addToInventory(this.slots, drops, false)){
|
2016-11-26 21:32:27 +01:00
|
|
|
this.world.playEvent(2001, coordsBlock, Block.getStateId(stateToBreak));
|
|
|
|
this.world.setBlockToAir(coordsBlock);
|
2016-12-04 00:10:52 +01:00
|
|
|
WorldUtil.addToInventory(this.slots, drops, true);
|
2016-05-16 22:52:27 +02:00
|
|
|
this.markDirty();
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 22:52:27 +02:00
|
|
|
}
|
|
|
|
else if(this.isPlacer){
|
|
|
|
int theSlot = WorldUtil.findFirstFilledSlot(this.slots);
|
2016-12-04 00:10:52 +01:00
|
|
|
this.slots.setStackInSlot(theSlot, WorldUtil.useItemAtSide(sideToManipulate, this.world, this.pos, this.slots.getStackInSlot(theSlot)));
|
|
|
|
if(!StackUtil.isValid(this.slots.getStackInSlot(theSlot))){
|
|
|
|
this.slots.setStackInSlot(theSlot, StackUtil.getNull());
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
@Override
|
2016-12-04 00:10:52 +01:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack){
|
2015-04-19 01:50:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public boolean isRedstoneToggle(){
|
|
|
|
return true;
|
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
|
|
|
}
|