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
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 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
|
|
|
|
|
|
|
import cofh.api.energy.EnergyStorage;
|
|
|
|
import cofh.api.energy.IEnergyReceiver;
|
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-10-05 16:53:28 +02:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockAir;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 19:04:29 +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;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-10-05 16:53:28 +02:00
|
|
|
|
2016-05-19 20:05:12 +02:00
|
|
|
import javax.annotation.Nonnull;
|
2016-05-04 13:15:30 +02:00
|
|
|
import java.util.List;
|
2015-10-05 16:53:28 +02:00
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
public class TileEntityDirectionalBreaker extends TileEntityInventoryBase implements IEnergyReceiver, IEnergySaver, IRedstoneToggle{
|
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-05-19 20:05:12 +02:00
|
|
|
public final EnergyStorage storage = new EnergyStorage(10000);
|
2015-10-05 16:53:28 +02:00
|
|
|
private int lastEnergy;
|
|
|
|
private int currentTime;
|
2015-12-19 10:30:39 +01:00
|
|
|
private boolean activateOnceWithSignal;
|
2015-10-05 16:53:28 +02:00
|
|
|
|
|
|
|
public TileEntityDirectionalBreaker(){
|
|
|
|
super(9, "directionalBreaker");
|
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.writeSyncableNBT(compound, sync);
|
|
|
|
this.storage.writeToNBT(compound);
|
|
|
|
compound.setInteger("CurrentTime", this.currentTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.readSyncableNBT(compound, sync);
|
|
|
|
this.storage.readFromNBT(compound);
|
|
|
|
this.currentTime = compound.getInteger("CurrentTime");
|
|
|
|
}
|
|
|
|
|
2015-10-05 16:53:28 +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){
|
2016-05-05 13:22:58 +02:00
|
|
|
if(this.currentTime > 0){
|
|
|
|
this.currentTime--;
|
|
|
|
if(this.currentTime <= 0){
|
|
|
|
this.doWork();
|
2015-10-05 16:53:28 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-05 13:22:58 +02:00
|
|
|
else{
|
|
|
|
this.currentTime = 15;
|
|
|
|
}
|
2015-10-05 16:53:28 +02:00
|
|
|
}
|
|
|
|
|
2015-12-01 17:28:50 +01:00
|
|
|
if(this.storage.getEnergyStored() != this.lastEnergy && this.sendUpdateWithInterval()){
|
2015-10-05 16:53:28 +02:00
|
|
|
this.lastEnergy = this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-17 18:47:46 +01:00
|
|
|
private void doWork(){
|
2016-05-05 13:22:58 +02:00
|
|
|
if(this.storage.getEnergyStored() >= ENERGY_USE*RANGE){
|
|
|
|
EnumFacing sideToManipulate = WorldUtil.getDirectionByPistonRotation(PosUtil.getMetadata(this.pos, this.worldObj));
|
|
|
|
|
|
|
|
for(int i = 0; i < RANGE; i++){
|
|
|
|
BlockPos coordsBlock = WorldUtil.getCoordsFromSide(sideToManipulate, this.pos, i);
|
2016-05-16 22:52:27 +02:00
|
|
|
Block blockToBreak = PosUtil.getBlock(coordsBlock, this.worldObj);
|
|
|
|
if(blockToBreak != null && !(blockToBreak instanceof BlockAir) && blockToBreak.getBlockHardness(this.worldObj.getBlockState(coordsBlock), this.worldObj, this.pos) > -1.0F){
|
|
|
|
List<ItemStack> drops = blockToBreak.getDrops(this.worldObj, coordsBlock, this.worldObj.getBlockState(coordsBlock), 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(!ConfigValues.lessBlockBreakingEffects){
|
2016-05-19 20:05:12 +02:00
|
|
|
this.worldObj.playBroadcastSound(2001, coordsBlock, Block.getStateId(this.worldObj.getBlockState(coordsBlock)));
|
2016-05-04 13:15:30 +02:00
|
|
|
}
|
2016-05-16 22:52:27 +02:00
|
|
|
WorldUtil.breakBlockAtSide(sideToManipulate, this.worldObj, this.getPos(), i);
|
|
|
|
WorldUtil.addToInventory(this, drops, true, true);
|
|
|
|
this.storage.extractEnergy(ENERGY_USE, false);
|
|
|
|
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
|
2016-05-19 20:05:12 +02:00
|
|
|
public boolean isItemValidForSlot(int i, @Nonnull ItemStack stack){
|
2016-02-01 17:49:55 +01:00
|
|
|
return false;
|
2015-10-18 15:31:01 +02:00
|
|
|
}
|
|
|
|
|
2015-12-01 19:48:09 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getEnergyScaled(int i){
|
|
|
|
return this.storage.getEnergyStored()*i/this.storage.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
|
2015-10-05 16:53:28 +02:00
|
|
|
@Override
|
2016-05-19 20:05:12 +02:00
|
|
|
public boolean canInsertItem(int slot, @Nonnull ItemStack stack, @Nonnull EnumFacing side){
|
2015-10-05 16:53:28 +02:00
|
|
|
return this.isItemValidForSlot(slot, stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-05-19 20:05:12 +02:00
|
|
|
public boolean canExtractItem(int slot, @Nonnull ItemStack stack, @Nonnull EnumFacing side){
|
2015-10-05 16:53:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:04:29 +01:00
|
|
|
public int receiveEnergy(EnumFacing from, int maxReceive, boolean simulate){
|
2015-10-05 16:53:28 +02:00
|
|
|
return this.storage.receiveEnergy(maxReceive, simulate);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:04:29 +01:00
|
|
|
public int getEnergyStored(EnumFacing from){
|
2015-10-05 16:53:28 +02:00
|
|
|
return this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:04:29 +01:00
|
|
|
public int getMaxEnergyStored(EnumFacing from){
|
2015-10-05 16:53:28 +02:00
|
|
|
return this.storage.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 19:04:29 +01:00
|
|
|
public boolean canConnectEnergy(EnumFacing from){
|
2015-10-05 16:53:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-12-13 00:54:25 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getEnergy(){
|
|
|
|
return this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setEnergy(int energy){
|
|
|
|
this.storage.setEnergyStored(energy);
|
|
|
|
}
|
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-17 18:47:46 +01:00
|
|
|
return this.activateOnceWithSignal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void activateOnPulse(){
|
|
|
|
this.doWork();
|
|
|
|
}
|
2015-10-05 16:53:28 +02:00
|
|
|
}
|