2015-12-06 02:16:52 +01: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
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
|
|
|
* © 2015 Ellpeck
|
|
|
|
*/
|
|
|
|
|
|
|
|
package ellpeck.actuallyadditions.tile;
|
|
|
|
|
|
|
|
import cofh.api.energy.EnergyStorage;
|
|
|
|
import cofh.api.energy.IEnergyReceiver;
|
2015-12-09 18:47:42 +01:00
|
|
|
import cpw.mods.fml.common.network.NetworkRegistry;
|
|
|
|
import ellpeck.actuallyadditions.network.PacketHandler;
|
|
|
|
import ellpeck.actuallyadditions.network.PacketParticle;
|
2015-12-09 16:54:25 +01:00
|
|
|
import ellpeck.actuallyadditions.util.WorldUtil;
|
2015-12-08 18:10:37 +01:00
|
|
|
import net.minecraft.block.Block;
|
2015-12-09 16:54:25 +01:00
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2015-12-06 02:16:52 +01:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-12-09 16:54:25 +01:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2015-12-06 02:16:52 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2015-12-09 18:47:42 +01:00
|
|
|
import net.minecraftforge.oredict.OreDictionary;
|
2015-12-06 02:16:52 +01:00
|
|
|
|
2015-12-09 16:54:25 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2015-12-06 02:16:52 +01:00
|
|
|
public class TileEntityMiner extends TileEntityBase implements IEnergyReceiver{
|
|
|
|
|
2015-12-09 16:54:25 +01:00
|
|
|
public EnergyStorage storage = new EnergyStorage(1000000);
|
|
|
|
public static final int ENERGY_USE_PER_BLOCK = 300;
|
|
|
|
|
|
|
|
public int layerAt;
|
2015-12-09 18:47:42 +01:00
|
|
|
public boolean onlyMineOres;
|
2015-12-06 02:16:52 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
|
|
|
super.updateEntity();
|
|
|
|
if(!this.worldObj.isRemote){
|
2015-12-09 16:54:25 +01:00
|
|
|
if(this.ticksElapsed%350 == 0){
|
|
|
|
if(this.layerAt <= 0){
|
|
|
|
this.layerAt = this.yCoord-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(this.mine(3)){
|
|
|
|
this.layerAt--;
|
|
|
|
}
|
|
|
|
}
|
2015-12-08 18:10:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-09 16:54:25 +01:00
|
|
|
private boolean mine(int range){
|
|
|
|
TileEntity tileAbove = worldObj.getTileEntity(xCoord, yCoord+1, zCoord);
|
2015-12-09 18:47:42 +01:00
|
|
|
boolean shouldContinueMining = true;
|
2015-12-09 16:54:25 +01:00
|
|
|
boolean mined = false;
|
2015-12-09 18:47:42 +01:00
|
|
|
|
2015-12-08 18:10:37 +01:00
|
|
|
for(int anX = -range; anX <= range; anX++){
|
|
|
|
for(int aZ = -range; aZ <= range; aZ++){
|
2015-12-09 16:54:25 +01:00
|
|
|
if(this.storage.getEnergyStored() >= ENERGY_USE_PER_BLOCK){
|
2015-12-08 18:10:37 +01:00
|
|
|
int x = this.xCoord+anX;
|
|
|
|
int z = this.zCoord+aZ;
|
2015-12-09 16:54:25 +01:00
|
|
|
int y = this.layerAt;
|
2015-12-08 18:10:37 +01:00
|
|
|
|
|
|
|
Block block = this.worldObj.getBlock(x, y, z);
|
|
|
|
int meta = this.worldObj.getBlockMetadata(x, y, z);
|
|
|
|
if(block != null && !block.isAir(this.worldObj, x, y, z)){
|
2015-12-09 18:47:42 +01:00
|
|
|
if(block.getHarvestLevel(meta) <= 3F && block.getHarvestLevel(meta) >= 0F && this.isMinable(block, meta)){
|
2015-12-09 16:54:25 +01:00
|
|
|
ArrayList<ItemStack> drops = new ArrayList<ItemStack>();
|
|
|
|
drops.addAll(block.getDrops(worldObj, x, y, z, meta, 0));
|
|
|
|
|
2015-12-09 18:47:42 +01:00
|
|
|
if(tileAbove instanceof IInventory && WorldUtil.addToInventory((IInventory)tileAbove, drops, ForgeDirection.DOWN, false)){
|
|
|
|
worldObj.playAuxSFX(2001, x, y, z, Block.getIdFromBlock(block)+(meta << 12));
|
|
|
|
worldObj.setBlockToAir(x, y, z);
|
2015-12-09 16:54:25 +01:00
|
|
|
|
2015-12-09 18:47:42 +01:00
|
|
|
WorldUtil.addToInventory((IInventory)tileAbove, drops, ForgeDirection.DOWN, true);
|
|
|
|
tileAbove.markDirty();
|
2015-12-06 02:16:52 +01:00
|
|
|
|
2015-12-09 18:47:42 +01:00
|
|
|
this.storage.extractEnergy(ENERGY_USE_PER_BLOCK, false);
|
|
|
|
mined = true;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
shouldContinueMining = false;
|
2015-12-09 16:54:25 +01:00
|
|
|
}
|
2015-12-08 18:10:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-06 02:16:52 +01:00
|
|
|
}
|
2015-12-09 18:47:42 +01:00
|
|
|
if(mined){
|
|
|
|
this.shootParticles();
|
|
|
|
}
|
|
|
|
|
|
|
|
return shouldContinueMining;
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isMinable(Block block, int meta){
|
|
|
|
if(!this.onlyMineOres){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
int[] ids = OreDictionary.getOreIDs(new ItemStack(block, 1, meta));
|
|
|
|
for(int id : ids){
|
|
|
|
String name = OreDictionary.getOreName(id);
|
|
|
|
if(name.substring(0, 3).equals("ore")){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void shootParticles(){
|
|
|
|
PacketHandler.theNetwork.sendToAllAround(new PacketParticle(xCoord, yCoord, zCoord, xCoord, this.layerAt, zCoord, new float[]{62F/255F, 163F/255F, 74F/255F}, 5, 2.5F), new NetworkRegistry.TargetPoint(worldObj.provider.dimensionId, xCoord, yCoord, zCoord, 128));
|
2015-12-06 02:16:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.writeSyncableNBT(compound, sync);
|
|
|
|
this.storage.writeToNBT(compound);
|
2015-12-09 16:54:25 +01:00
|
|
|
compound.setInteger("Layer", this.layerAt);
|
2015-12-06 02:16:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.readSyncableNBT(compound, sync);
|
|
|
|
this.storage.readFromNBT(compound);
|
2015-12-09 16:54:25 +01:00
|
|
|
this.layerAt = compound.getInteger("Layer");
|
2015-12-06 02:16:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int receiveEnergy(ForgeDirection from, int maxReceive, boolean simulate){
|
|
|
|
return this.storage.receiveEnergy(maxReceive, simulate);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getEnergyStored(ForgeDirection from){
|
|
|
|
return this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMaxEnergyStored(ForgeDirection from){
|
|
|
|
return this.storage.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canConnectEnergy(ForgeDirection from){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|