2015-10-05 16:53:28 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityDirectionalBreaker.java") is part of the Actually Additions mod for Minecraft.
|
2015-10-05 16:53:28 +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-10-05 16:53:28 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-10-05 16:53:28 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.tile;
|
2015-10-05 16:53:28 +02:00
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IAcceptor;
|
2018-06-23 01:39:30 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
|
2015-10-05 16:53:28 +02:00
|
|
|
import net.minecraft.block.Block;
|
2021-02-27 13:24:45 +01:00
|
|
|
import net.minecraft.block.BlockState;
|
2021-02-27 16:33:00 +01:00
|
|
|
import net.minecraft.block.Blocks;
|
2015-10-05 16:53:28 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.nbt.CompoundNBT;
|
2021-02-27 13:24:45 +01:00
|
|
|
import net.minecraft.util.Direction;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2021-02-27 16:33:00 +01:00
|
|
|
import net.minecraft.world.server.ServerWorld;
|
|
|
|
import net.minecraftforge.common.util.LazyOptional;
|
2016-11-26 08:58:42 +01:00
|
|
|
import net.minecraftforge.energy.IEnergyStorage;
|
2015-10-05 16:53:28 +02:00
|
|
|
|
2021-02-27 16:33:00 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public class TileEntityDirectionalBreaker extends TileEntityInventoryBase {
|
2015-10-05 16:53:28 +02:00
|
|
|
|
2015-12-01 19:48:09 +01:00
|
|
|
public static final int RANGE = 8;
|
|
|
|
public static final int ENERGY_USE = 5;
|
2016-11-26 20:43:50 +01:00
|
|
|
public final CustomEnergyStorage storage = new CustomEnergyStorage(10000, 20, 0);
|
2021-02-27 16:33:00 +01:00
|
|
|
public final LazyOptional<IEnergyStorage> lazyEnergy = LazyOptional.of(() -> this.storage);
|
2015-10-05 16:53:28 +02:00
|
|
|
private int lastEnergy;
|
|
|
|
private int currentTime;
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public TileEntityDirectionalBreaker() {
|
2021-02-27 16:33:00 +01:00
|
|
|
super(ActuallyTiles.DIRECTIONALBREAKER_TILE.get(), 9);
|
2015-10-05 16:53:28 +02:00
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public void writeSyncableNBT(CompoundNBT compound, NBTType type) {
|
2016-07-02 15:01:46 +02:00
|
|
|
super.writeSyncableNBT(compound, type);
|
2016-02-01 17:49:55 +01:00
|
|
|
this.storage.writeToNBT(compound);
|
2018-08-10 05:04:07 +02:00
|
|
|
if (type != NBTType.SAVE_BLOCK) {
|
2021-02-27 16:33:00 +01:00
|
|
|
compound.putInt("CurrentTime", this.currentTime);
|
2016-07-02 15:01:46 +02:00
|
|
|
}
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public void readSyncableNBT(CompoundNBT compound, NBTType type) {
|
2016-07-02 15:01:46 +02:00
|
|
|
super.readSyncableNBT(compound, type);
|
2016-02-01 17:49:55 +01:00
|
|
|
this.storage.readFromNBT(compound);
|
2018-08-10 05:04:07 +02:00
|
|
|
if (type != NBTType.SAVE_BLOCK) {
|
2021-02-27 16:33:00 +01:00
|
|
|
this.currentTime = compound.getInt("CurrentTime");
|
2016-07-02 15:01:46 +02:00
|
|
|
}
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
|
2015-10-05 16:53:28 +02:00
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public void updateEntity() {
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2018-08-10 05:04:07 +02:00
|
|
|
if (!this.world.isRemote) {
|
|
|
|
if (!this.isRedstonePowered && !this.isPulseMode) {
|
|
|
|
if (this.currentTime > 0) {
|
2016-05-05 13:22:58 +02:00
|
|
|
this.currentTime--;
|
2018-08-10 05:04:07 +02:00
|
|
|
if (this.currentTime <= 0) {
|
2016-05-05 13:22:58 +02:00
|
|
|
this.doWork();
|
2015-10-05 16:53:28 +02:00
|
|
|
}
|
2018-08-10 05:04:07 +02:00
|
|
|
} else {
|
2016-05-05 13:22:58 +02:00
|
|
|
this.currentTime = 15;
|
|
|
|
}
|
2015-10-05 16:53:28 +02:00
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
if (this.storage.getEnergyStored() != this.lastEnergy && this.sendUpdateWithInterval()) {
|
2015-10-05 16:53:28 +02:00
|
|
|
this.lastEnergy = this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
private void doWork() {
|
|
|
|
if (this.storage.getEnergyStored() >= ENERGY_USE * RANGE) {
|
2021-02-26 22:15:48 +01:00
|
|
|
BlockState state = this.world.getBlockState(this.pos);
|
2021-02-27 13:24:45 +01:00
|
|
|
Direction sideToManipulate = WorldUtil.getDirectionByPistonRotation(state);
|
2016-05-05 13:22:58 +02:00
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
for (int i = 0; i < RANGE; i++) {
|
|
|
|
BlockPos coordsBlock = this.pos.offset(sideToManipulate, i + 1);
|
2021-02-26 22:15:48 +01:00
|
|
|
BlockState breakState = this.world.getBlockState(coordsBlock);
|
2017-09-25 21:54:53 +02:00
|
|
|
Block blockToBreak = breakState.getBlock();
|
2018-08-10 05:04:07 +02:00
|
|
|
if (blockToBreak != null && !this.world.isAirBlock(coordsBlock) && this.world.getBlockState(coordsBlock).getBlockHardness(this.world, coordsBlock) > -1.0F) {
|
2021-02-27 16:33:00 +01:00
|
|
|
List<ItemStack> drops = Block.getDrops(breakState, (ServerWorld) this.world, coordsBlock, this.world.getTileEntity(coordsBlock));
|
2019-05-02 09:32:05 +02:00
|
|
|
float chance = WorldUtil.fireFakeHarvestEventsForDropChance(this, drops, this.world, coordsBlock);
|
2016-05-16 22:52:27 +02:00
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
if (chance > 0 && this.world.rand.nextFloat() <= chance) {
|
|
|
|
if (StackUtil.canAddAll(this.inv, drops, false)) {
|
2016-11-26 21:32:27 +01:00
|
|
|
this.world.playEvent(2001, coordsBlock, Block.getStateId(this.world.getBlockState(coordsBlock)));
|
2021-02-27 16:33:00 +01:00
|
|
|
this.world.setBlockState(coordsBlock, Blocks.AIR.getDefaultState());
|
2018-06-23 01:39:30 +02:00
|
|
|
StackUtil.addAll(this.inv, drops, false);
|
2016-11-23 18:10:55 +01:00
|
|
|
this.storage.extractEnergyInternal(ENERGY_USE, false);
|
2016-05-16 22:52:27 +02:00
|
|
|
this.markDirty();
|
2016-01-23 11:02:35 +01:00
|
|
|
}
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-05 16:53:28 +02:00
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public IAcceptor getAcceptor() {
|
|
|
|
return (slot, stack, automation) -> !automation;
|
2015-12-01 19:48:09 +01:00
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public int getEnergyScaled(int i) {
|
|
|
|
return this.storage.getEnergyStored() * i / this.storage.getMaxEnergyStored();
|
2015-10-05 16:53:28 +02:00
|
|
|
}
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public boolean isRedstoneToggle() {
|
2016-07-02 15:01:46 +02:00
|
|
|
return true;
|
2015-12-17 18:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public void activateOnPulse() {
|
2015-12-17 18:47:46 +01:00
|
|
|
this.doWork();
|
|
|
|
}
|
2016-11-26 08:58:42 +01:00
|
|
|
|
|
|
|
@Override
|
2021-02-27 16:33:00 +01:00
|
|
|
public LazyOptional<IEnergyStorage> getEnergyStorage(Direction facing) {
|
|
|
|
return this.lazyEnergy;
|
2016-11-26 08:58:42 +01:00
|
|
|
}
|
2015-10-05 16:53:28 +02:00
|
|
|
}
|