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

237 lines
8.5 KiB
Java
Raw Normal View History

/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityMiner.java") is part of the Actually Additions mod for Minecraft.
* 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
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
import cofh.api.energy.EnergyStorage;
import de.ellpeck.actuallyadditions.mod.config.values.ConfigStringListValues;
import de.ellpeck.actuallyadditions.mod.items.ItemDrill;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.network.gui.IButtonReactor;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
import net.minecraft.block.Block;
2015-12-11 16:55:50 +01:00
import net.minecraft.block.BlockLiquid;
2016-05-19 20:05:12 +02:00
import net.minecraft.block.state.IBlockState;
2015-12-09 20:24:45 +01:00
import net.minecraft.entity.player.EntityPlayer;
2015-12-09 16:54:25 +01: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;
import net.minecraftforge.event.ForgeEventFactory;
2015-12-11 16:56:32 +01:00
import net.minecraftforge.fluids.IFluidBlock;
import net.minecraftforge.oredict.OreDictionary;
import java.util.List;
2015-12-09 16:54:25 +01:00
public class TileEntityMiner extends TileEntityInventoryBase implements ICustomEnergyReceiver, IButtonReactor, IEnergyDisplay{
public static final int ENERGY_USE_PER_BLOCK = 1500;
2015-12-27 15:57:14 +01:00
public static final int DEFAULT_RANGE = 2;
2016-11-21 13:45:23 +01:00
public final EnergyStorage storage = new EnergyStorage(200000, 2000);
2015-12-09 20:24:45 +01:00
public int layerAt = -1;
public boolean onlyMineOres;
private int oldLayerAt;
private int oldEnergy;
2015-12-09 20:24:45 +01:00
public TileEntityMiner(){
super(9, "miner");
}
@Override
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
super.writeSyncableNBT(compound, type);
this.storage.writeToNBT(compound);
if(type != NBTType.SAVE_BLOCK){
compound.setInteger("Layer", this.layerAt);
}
if(type != NBTType.SAVE_BLOCK || this.onlyMineOres){
compound.setBoolean("OnlyOres", this.onlyMineOres);
}
}
@Override
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
super.readSyncableNBT(compound, type);
this.storage.readFromNBT(compound);
if(type != NBTType.SAVE_BLOCK){
this.layerAt = compound.getInteger("Layer");
}
this.onlyMineOres = compound.getBoolean("OnlyOres");
}
@Override
public void updateEntity(){
super.updateEntity();
if(!this.worldObj.isRemote){
if(this.layerAt == -1){
this.layerAt = this.getPos().getY()-1;
}
2015-12-09 20:24:45 +01:00
if(!this.isRedstonePowered && this.ticksElapsed%5 == 0){
2015-12-09 16:54:25 +01:00
2015-12-09 20:24:45 +01:00
if(this.layerAt > 0){
2016-05-02 17:46:53 +02:00
if(this.mine(TileEntityPhantomface.upgradeRange(DEFAULT_RANGE, this.worldObj, this.pos))){
2015-12-09 20:24:45 +01:00
this.layerAt--;
}
2015-12-09 16:54:25 +01:00
}
}
if((this.oldEnergy != this.storage.getEnergyStored() || this.oldLayerAt != this.layerAt) && this.sendUpdateWithInterval()){
this.oldEnergy = this.storage.getEnergyStored();
this.oldLayerAt = this.layerAt;
}
}
}
2015-12-09 16:54:25 +01:00
private boolean mine(int range){
for(int anX = -range; anX <= range; anX++){
for(int aZ = -range; aZ <= range; aZ++){
int actualUse = ENERGY_USE_PER_BLOCK*(this.onlyMineOres ? 5 : 1);
2015-12-09 20:24:45 +01:00
if(this.storage.getEnergyStored() >= actualUse){
2016-01-08 13:31:58 +01:00
BlockPos pos = new BlockPos(this.pos.getX()+anX, this.layerAt, this.pos.getZ()+aZ);
2016-05-19 20:05:12 +02:00
IBlockState state = this.worldObj.getBlockState(pos);
Block block = state.getBlock();
2016-07-04 20:15:41 +02:00
int meta = block.getMetaFromState(state);
2016-05-19 20:05:12 +02:00
if(!block.isAir(this.worldObj.getBlockState(pos), this.worldObj, pos)){
if(block.getHarvestLevel(this.worldObj.getBlockState(pos)) <= ItemDrill.HARVEST_LEVEL && state.getBlockHardness(this.worldObj, pos) >= 0F && !(block instanceof BlockLiquid) && !(block instanceof IFluidBlock) && this.isMinable(block, meta)){
List<ItemStack> drops = block.getDrops(this.worldObj, pos, this.worldObj.getBlockState(pos), 0);
float chance = ForgeEventFactory.fireBlockHarvesting(drops, this.worldObj, pos, this.worldObj.getBlockState(pos), 0, 1, false, null);
2015-12-09 16:54:25 +01:00
2016-11-02 19:36:32 +01:00
if(this.worldObj.rand.nextFloat() <= chance){
if(WorldUtil.addToInventory(this, drops, false, true)){
this.worldObj.playEvent(2001, pos, Block.getStateId(this.worldObj.getBlockState(pos)));
this.worldObj.setBlockToAir(pos);
2015-12-09 16:54:25 +01:00
WorldUtil.addToInventory(this, drops, true, true);
this.markDirty();
this.storage.extractEnergy(actualUse, false);
this.shootParticles(pos.getX(), pos.getY(), pos.getZ());
}
2015-12-09 16:54:25 +01:00
}
2015-12-09 20:24:45 +01:00
return false;
}
}
}
2015-12-09 20:24:45 +01:00
else{
return false;
}
}
}
2015-12-09 20:24:45 +01:00
return true;
}
private boolean isMinable(Block block, int meta){
2016-02-18 18:43:35 +01:00
if(block != null){
if(!this.isBlacklisted(block)){
if(!this.onlyMineOres){
return true;
2015-12-27 16:09:17 +01:00
}
2016-02-18 18:43:35 +01:00
else{
ItemStack stack = new ItemStack(block, 1, meta);
2016-06-08 23:04:06 +02:00
if(stack.getItem() != null){
int[] ids = OreDictionary.getOreIDs(stack);
for(int id : ids){
String name = OreDictionary.getOreName(id);
if(name.startsWith("ore") || name.startsWith("denseore")){
return true;
}
2015-12-27 16:09:17 +01:00
}
2016-02-18 18:43:35 +01:00
String reg = block.getRegistryName().toString();
if(!reg.isEmpty()){
for(String string : ConfigStringListValues.MINER_EXTRA_WHITELIST.getValue()){
if(reg.equals(string)){
return true;
}
2016-02-18 18:43:35 +01:00
}
}
}
2015-12-27 16:09:17 +01:00
}
}
}
2016-02-18 18:43:35 +01:00
2015-12-27 16:09:17 +01:00
return false;
}
2016-02-01 17:49:55 +01:00
private void shootParticles(int endX, int endY, int endZ){
AssetUtil.shootParticles(this.worldObj, this.getPos().getX(), this.getPos().getY(), this.getPos().getZ(), endX, endY, endZ, new float[]{62F/255F, 163F/255F, 74F/255F}, 5, 1.0F, 1F);
2016-02-01 17:49:55 +01:00
}
2015-12-27 16:09:17 +01:00
private boolean isBlacklisted(Block block){
2016-04-20 21:39:03 +02:00
String reg = block.getRegistryName().toString();
2016-05-19 20:05:12 +02:00
if(!reg.isEmpty()){
for(String string : ConfigStringListValues.MINER_BLACKLIST.getValue()){
2015-12-27 16:09:17 +01:00
if(reg.equals(string)){
return true;
}
}
}
2015-12-27 16:09:17 +01:00
return false;
}
2016-02-01 17:49:55 +01:00
@Override
public boolean isItemValidForSlot(int slot, ItemStack stack){
2016-02-01 17:49:55 +01:00
return false;
}
@Override
public int receiveEnergy(EnumFacing from, int maxReceive, boolean simulate){
return this.storage.receiveEnergy(maxReceive, simulate);
}
@Override
public int getEnergyStored(EnumFacing from){
return this.storage.getEnergyStored();
}
@Override
public int getMaxEnergyStored(EnumFacing from){
return this.storage.getMaxEnergyStored();
}
@Override
public boolean canConnectEnergy(EnumFacing from){
return true;
}
2015-12-09 20:24:45 +01:00
@Override
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
2015-12-09 20:24:45 +01:00
return this.isItemValidForSlot(slot, stack);
}
@Override
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
2015-12-09 20:24:45 +01:00
return true;
}
@Override
public void onButtonPressed(int buttonID, EntityPlayer player){
if(buttonID == 0){
this.onlyMineOres = !this.onlyMineOres;
this.sendUpdate();
}
else if(buttonID == 1){
this.layerAt = -1;
}
}
@Override
public EnergyStorage getEnergyStorage(){
return this.storage;
}
@Override
public boolean needsHoldShift(){
return false;
}
}