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

115 lines
3.9 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
*
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
2018-08-10 05:04:07 +02:00
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IAcceptor;
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;
import net.minecraft.block.BlockLiquid;
2016-03-18 23:47:22 +01:00
import net.minecraft.block.state.IBlockState;
2018-03-19 17:05:28 +01:00
import net.minecraft.init.Blocks;
2015-04-19 01:50:02 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.NonNullList;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraftforge.fluids.IFluidBlock;
2015-04-19 01:50:02 +02:00
2018-03-19 17:05:28 +01:00
public class TileEntityBreaker extends TileEntityInventoryBase {
2018-08-10 05:04:07 +02:00
public boolean isPlacer;
private int currentTime;
public TileEntityBreaker(int slots, String name) {
super(slots, name);
}
public TileEntityBreaker() {
super(9, "breaker");
this.isPlacer = false;
}
@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");
}
}
@Override
public void updateEntity() {
super.updateEntity();
if (!this.world.isRemote) {
if (!this.isRedstonePowered && !this.isPulseMode) {
if (this.currentTime > 0) {
this.currentTime--;
if (this.currentTime <= 0) {
this.doWork();
}
} else {
this.currentTime = 15;
}
}
}
}
@Override
public IAcceptor getAcceptor() {
return (slot, stack, automation) -> !automation;
}
private void doWork() {
2019-02-27 19:53:05 +01:00
EnumFacing side = WorldUtil.getDirectionByPistonRotation(this.world.getBlockState(this.pos));
BlockPos breakCoords = this.pos.offset(side);
IBlockState stateToBreak = this.world.getBlockState(breakCoords);
2018-08-10 05:04:07 +02:00
Block blockToBreak = stateToBreak.getBlock();
if (!this.isPlacer && blockToBreak != Blocks.AIR && !(blockToBreak instanceof BlockLiquid) && !(blockToBreak instanceof IFluidBlock) && stateToBreak.getBlockHardness(this.world, breakCoords) >= 0.0F) {
NonNullList<ItemStack> drops = NonNullList.create();
2019-02-27 19:53:05 +01:00
blockToBreak.getDrops(drops, this.world, breakCoords, stateToBreak, 0);
2019-05-02 09:32:05 +02:00
float chance = WorldUtil.fireFakeHarvestEventsForDropChance(this, drops, this.world, breakCoords);
2018-08-10 05:04:07 +02:00
2019-02-27 19:53:05 +01:00
if (chance > 0 && this.world.rand.nextFloat() <= chance) {
if (StackUtil.canAddAll(this.inv, drops, false)) {
this.world.destroyBlock(breakCoords, false);
StackUtil.addAll(this.inv, drops, false);
2018-08-10 05:04:07 +02:00
this.markDirty();
}
}
} else if (this.isPlacer) {
2019-02-27 19:53:05 +01:00
int slot = StackUtil.findFirstFilled(this.inv);
2018-08-10 05:04:07 +02:00
if (slot == -1) return;
2019-02-27 19:53:05 +01:00
this.inv.setStackInSlot(slot, WorldUtil.useItemAtSide(side, this.world, this.pos, this.inv.getStackInSlot(slot)));
2018-08-10 05:04:07 +02:00
}
}
@Override
public boolean isRedstoneToggle() {
return true;
}
@Override
public void activateOnPulse() {
this.doWork();
}
2015-04-19 01:50:02 +02:00
}