2015-12-06 02:16:52 +01:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityMiner.java") is part of the Actually Additions mod for Minecraft.
|
2015-12-06 02:16:52 +01: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-12-06 02:16:52 +01:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 Ellpeck
|
2015-12-06 02:16:52 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.tile;
|
2015-12-06 02:16:52 +01:00
|
|
|
|
2016-06-05 12:15:02 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.config.values.ConfigStringListValues;
|
2016-07-02 17:15:53 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.ItemDrill;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.network.gui.IButtonReactor;
|
2016-06-15 16:43:59 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
|
2016-12-05 15:27:01 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
|
2015-12-08 18:10:37 +01:00
|
|
|
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;
|
2015-12-06 02:16:52 +01:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 19:47:53 +01:00
|
|
|
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-05-04 13:15:30 +02:00
|
|
|
import net.minecraftforge.event.ForgeEventFactory;
|
2015-12-11 16:56:32 +01:00
|
|
|
import net.minecraftforge.fluids.IFluidBlock;
|
2015-12-09 18:47:42 +01:00
|
|
|
import net.minecraftforge.oredict.OreDictionary;
|
2015-12-06 02:16:52 +01:00
|
|
|
|
2016-05-04 13:15:30 +02:00
|
|
|
import java.util.List;
|
2015-12-09 16:54:25 +01:00
|
|
|
|
2016-11-26 20:43:50 +01:00
|
|
|
public class TileEntityMiner extends TileEntityInventoryBase implements IButtonReactor, IEnergyDisplay{
|
2015-12-06 02:16:52 +01:00
|
|
|
|
2016-11-21 20:25:32 +01:00
|
|
|
public static final int ENERGY_USE_PER_BLOCK = 650;
|
2015-12-27 15:57:14 +01:00
|
|
|
public static final int DEFAULT_RANGE = 2;
|
2016-11-26 20:43:50 +01:00
|
|
|
public final CustomEnergyStorage storage = new CustomEnergyStorage(200000, 2000, 0);
|
2016-12-06 20:06:40 +01:00
|
|
|
|
2016-07-02 15:01:46 +02:00
|
|
|
public boolean onlyMineOres;
|
2015-12-21 22:18:33 +01:00
|
|
|
private int oldEnergy;
|
2015-12-06 02:16:52 +01:00
|
|
|
|
2016-12-06 20:06:40 +01:00
|
|
|
public int checkX;
|
|
|
|
public int checkY = -1;
|
|
|
|
public int checkZ;
|
|
|
|
private int oldCheckX;
|
|
|
|
private int oldCheckY;
|
|
|
|
private int oldCheckZ;
|
|
|
|
|
2015-12-09 20:24:45 +01:00
|
|
|
public TileEntityMiner(){
|
|
|
|
super(9, "miner");
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.writeSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
this.storage.writeToNBT(compound);
|
2016-07-02 15:01:46 +02:00
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
2016-12-06 20:06:40 +01:00
|
|
|
compound.setInteger("CheckX", this.checkX);
|
|
|
|
compound.setInteger("CheckY", this.checkY);
|
|
|
|
compound.setInteger("CheckZ", this.checkZ);
|
2016-07-02 15:01:46 +02:00
|
|
|
}
|
|
|
|
if(type != NBTType.SAVE_BLOCK || this.onlyMineOres){
|
|
|
|
compound.setBoolean("OnlyOres", this.onlyMineOres);
|
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.readSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
this.storage.readFromNBT(compound);
|
2016-07-02 15:01:46 +02:00
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
2016-12-06 20:06:40 +01:00
|
|
|
this.checkX = compound.getInteger("CheckX");
|
|
|
|
this.checkY = compound.getInteger("CheckY");
|
|
|
|
this.checkZ = compound.getInteger("CheckZ");
|
2016-07-02 15:01:46 +02:00
|
|
|
}
|
2016-02-01 20:32:49 +01:00
|
|
|
this.onlyMineOres = compound.getBoolean("OnlyOres");
|
|
|
|
}
|
|
|
|
|
2015-12-06 02:16:52 +01:00
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
|
|
|
super.updateEntity();
|
2016-11-26 21:32:27 +01:00
|
|
|
if(!this.world.isRemote){
|
2015-12-21 22:18:33 +01:00
|
|
|
|
2015-12-09 20:24:45 +01:00
|
|
|
if(!this.isRedstonePowered && this.ticksElapsed%5 == 0){
|
2016-12-06 20:06:40 +01:00
|
|
|
if(this.checkY != 0){
|
|
|
|
int range = TileEntityPhantomface.upgradeRange(DEFAULT_RANGE, this.world, this.pos);
|
|
|
|
if(this.checkY < 0){
|
|
|
|
this.checkY = this.pos.getY()-1;
|
|
|
|
this.checkX = -range;
|
|
|
|
this.checkZ = -range;
|
|
|
|
}
|
2015-12-09 16:54:25 +01:00
|
|
|
|
2016-12-06 20:06:40 +01:00
|
|
|
if(this.checkY > 0){
|
|
|
|
if(this.mine()){
|
|
|
|
this.checkX++;
|
|
|
|
if(this.checkX > range){
|
|
|
|
this.checkX = -range;
|
|
|
|
this.checkZ++;
|
|
|
|
if(this.checkZ > range){
|
|
|
|
this.checkZ = -range;
|
|
|
|
this.checkY--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-09 20:24:45 +01:00
|
|
|
}
|
2015-12-09 16:54:25 +01:00
|
|
|
}
|
|
|
|
}
|
2015-12-21 22:18:33 +01:00
|
|
|
|
2016-12-06 20:06:40 +01:00
|
|
|
if((this.oldEnergy != this.storage.getEnergyStored() || this.oldCheckX != this.checkX || this.oldCheckY != this.checkY || this.oldCheckZ != this.checkZ) && this.sendUpdateWithInterval()){
|
2015-12-21 22:18:33 +01:00
|
|
|
this.oldEnergy = this.storage.getEnergyStored();
|
2016-12-06 20:06:40 +01:00
|
|
|
this.oldCheckX = this.checkX;
|
|
|
|
this.oldCheckY = this.checkY;
|
|
|
|
this.oldCheckZ = this.checkZ;
|
2015-12-21 22:18:33 +01:00
|
|
|
}
|
2015-12-08 18:10:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 20:06:40 +01:00
|
|
|
private boolean mine(){
|
|
|
|
int actualUse = ENERGY_USE_PER_BLOCK*(this.onlyMineOres ? 3 : 1);
|
|
|
|
if(this.storage.getEnergyStored() >= actualUse){
|
|
|
|
BlockPos pos = new BlockPos(this.pos.getX()+this.checkX, this.checkY, this.pos.getZ()+this.checkZ);
|
|
|
|
|
|
|
|
IBlockState state = this.world.getBlockState(pos);
|
|
|
|
Block block = state.getBlock();
|
|
|
|
int meta = block.getMetaFromState(state);
|
|
|
|
if(!block.isAir(this.world.getBlockState(pos), this.world, pos)){
|
|
|
|
if(block.getHarvestLevel(this.world.getBlockState(pos)) <= ItemDrill.HARVEST_LEVEL && state.getBlockHardness(this.world, pos) >= 0F && !(block instanceof BlockLiquid) && !(block instanceof IFluidBlock) && this.isMinable(block, meta)){
|
|
|
|
List<ItemStack> drops = block.getDrops(this.world, pos, this.world.getBlockState(pos), 0);
|
|
|
|
float chance = ForgeEventFactory.fireBlockHarvesting(drops, this.world, pos, this.world.getBlockState(pos), 0, 1, false, null);
|
|
|
|
|
|
|
|
if(this.world.rand.nextFloat() <= chance){
|
|
|
|
if(WorldUtil.addToInventory(this.slots, drops, false)){
|
|
|
|
this.world.playEvent(2001, pos, Block.getStateId(this.world.getBlockState(pos)));
|
|
|
|
this.world.setBlockToAir(pos);
|
|
|
|
|
|
|
|
WorldUtil.addToInventory(this.slots, drops, true);
|
|
|
|
this.markDirty();
|
|
|
|
|
|
|
|
this.storage.extractEnergyInternal(actualUse, false);
|
|
|
|
this.shootParticles(pos.getX(), pos.getY(), pos.getZ());
|
|
|
|
}
|
|
|
|
else{
|
2015-12-09 20:24:45 +01:00
|
|
|
return false;
|
2015-12-08 18:10:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-06 20:06:40 +01:00
|
|
|
return true;
|
2015-12-06 02:16:52 +01:00
|
|
|
}
|
2016-12-06 20:06:40 +01:00
|
|
|
return false;
|
2015-12-09 18:47:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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{
|
2016-06-08 23:03:36 +02:00
|
|
|
ItemStack stack = new ItemStack(block, 1, meta);
|
2016-12-05 15:27:01 +01:00
|
|
|
if(StackUtil.isValid(stack)){
|
2016-06-08 23:03:36 +02:00
|
|
|
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
|
|
|
|
2016-06-08 23:03:36 +02: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
|
|
|
}
|
|
|
|
}
|
2015-12-09 18:47:42 +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){
|
2016-12-09 21:36:43 +01:00
|
|
|
AssetUtil.spawnLaserWithTimeServer(this.world, this.getPos().getX(), this.getPos().getY(), this.getPos().getZ(), endX, endY, endZ, new float[]{65F/255F, 150F/255F, 2F/255F}, 10, 120, 0.1F, 0.8F);
|
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()){
|
2016-06-05 12:15:02 +02:00
|
|
|
for(String string : ConfigStringListValues.MINER_BLACKLIST.getValue()){
|
2015-12-27 16:09:17 +01:00
|
|
|
if(reg.equals(string)){
|
2015-12-09 18:47:42 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-27 16:09:17 +01:00
|
|
|
return false;
|
2015-12-09 18:47:42 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean isItemValidForSlot(int slot, ItemStack stack){
|
2016-02-01 17:49:55 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-09 20:24:45 +01:00
|
|
|
@Override
|
2016-12-04 00:10:52 +01:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack){
|
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){
|
2016-12-06 20:06:40 +01:00
|
|
|
this.checkX = 0;
|
|
|
|
this.checkY = -1;
|
|
|
|
this.checkZ = 0;
|
2015-12-09 20:24:45 +01:00
|
|
|
}
|
|
|
|
}
|
2015-12-13 00:54:25 +01:00
|
|
|
|
|
|
|
@Override
|
2016-11-23 18:10:55 +01:00
|
|
|
public CustomEnergyStorage getEnergyStorage(){
|
2016-07-21 13:22:55 +02:00
|
|
|
return this.storage;
|
2015-12-13 00:54:25 +01:00
|
|
|
}
|
2016-07-02 18:39:47 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean needsHoldShift(){
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-26 08:58:42 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public IEnergyStorage getEnergyStorage(EnumFacing facing){
|
|
|
|
return this.storage;
|
|
|
|
}
|
2015-12-06 02:16:52 +01:00
|
|
|
}
|