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

134 lines
4.6 KiB
Java
Raw Normal View History

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
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;
2016-07-04 20:15:41 +02:00
import net.minecraft.block.state.IBlockState;
2015-10-05 16:53:28 +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;
2016-11-26 08:58:42 +01:00
import net.minecraftforge.energy.IEnergyStorage;
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
import java.util.List;
2016-11-26 20:43:50 +01: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);
2015-10-05 16:53:28 +02:00
private int lastEnergy;
private int currentTime;
public TileEntityDirectionalBreaker(){
super(9, "directionalBreaker");
}
2016-02-01 17:49:55 +01:00
@Override
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
super.writeSyncableNBT(compound, type);
2016-02-01 17:49:55 +01:00
this.storage.writeToNBT(compound);
if(type != NBTType.SAVE_BLOCK){
compound.setInteger("CurrentTime", this.currentTime);
}
2016-02-01 17:49:55 +01:00
}
@Override
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
super.readSyncableNBT(compound, type);
2016-02-01 17:49:55 +01:00
this.storage.readFromNBT(compound);
if(type != NBTType.SAVE_BLOCK){
this.currentTime = compound.getInteger("CurrentTime");
}
2016-02-01 17:49:55 +01:00
}
2015-10-05 16:53:28 +02:00
@Override
public void updateEntity(){
super.updateEntity();
2016-11-26 21:32:27 +01:00
if(!this.world.isRemote){
if(!this.isRedstonePowered && !this.isPulseMode){
if(this.currentTime > 0){
this.currentTime--;
if(this.currentTime <= 0){
this.doWork();
2015-10-05 16:53:28 +02:00
}
}
else{
this.currentTime = 15;
}
2015-10-05 16:53:28 +02:00
}
if(this.storage.getEnergyStored() != this.lastEnergy && this.sendUpdateWithInterval()){
2015-10-05 16:53:28 +02:00
this.lastEnergy = this.storage.getEnergyStored();
}
}
}
private void doWork(){
if(this.storage.getEnergyStored() >= ENERGY_USE*RANGE){
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));
for(int i = 0; i < RANGE; i++){
BlockPos coordsBlock = this.pos.offset(sideToManipulate, i+1);
2016-11-26 21:32:27 +01:00
Block blockToBreak = this.world.getBlockState(coordsBlock).getBlock();
if(blockToBreak != null && !this.world.isAirBlock(coordsBlock) && blockToBreak.getBlockHardness(this.world.getBlockState(coordsBlock), this.world, this.pos) > -1.0F){
List<ItemStack> drops = blockToBreak.getDrops(this.world, coordsBlock, this.world.getBlockState(coordsBlock), 0);
float chance = WorldUtil.fireFakeHarvestEventsForDropChance(drops, this.world, coordsBlock);
2016-05-16 22:52:27 +02:00
if(chance > 0 && this.world.rand.nextFloat() <= chance){
if(WorldUtil.addToInventory(this.slots, drops, false)){
2016-11-26 21:32:27 +01:00
this.world.playEvent(2001, coordsBlock, Block.getStateId(this.world.getBlockState(coordsBlock)));
this.world.setBlockToAir(coordsBlock);
WorldUtil.addToInventory(this.slots, drops, true);
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-10-05 16:53:28 +02:00
@Override
public boolean isItemValidForSlot(int i, 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
public boolean canExtractItem(int slot, ItemStack stack){
2015-10-05 16:53:28 +02:00
return true;
}
@Override
public boolean isRedstoneToggle(){
return true;
}
@Override
public void activateOnPulse(){
this.doWork();
}
2016-11-26 08:58:42 +01:00
@Override
public IEnergyStorage getEnergyStorage(EnumFacing facing){
return this.storage;
}
2015-10-05 16:53:28 +02:00
}