2015-11-14 21:27:36 +01:00
|
|
|
/*
|
|
|
|
* This file ("TileEntityAtomicReconstructor.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 ellpeck.actuallyadditions.recipe.AtomicReconstructorRecipeHandler;
|
|
|
|
import ellpeck.actuallyadditions.util.WorldPos;
|
|
|
|
import ellpeck.actuallyadditions.util.WorldUtil;
|
|
|
|
import net.minecraft.block.Block;
|
2015-11-14 23:05:20 +01:00
|
|
|
import net.minecraft.entity.item.EntityItem;
|
|
|
|
import net.minecraft.item.ItemBlock;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2015-11-14 21:27:36 +01:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-11-14 23:05:20 +01:00
|
|
|
import net.minecraft.util.AxisAlignedBB;
|
2015-11-14 21:27:36 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
|
2015-11-14 23:05:20 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2015-11-14 21:27:36 +01:00
|
|
|
public class TileEntityAtomicReconstructor extends TileEntityBase{
|
|
|
|
|
|
|
|
private int currentTime;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public void updateEntity(){
|
|
|
|
if(!this.worldObj.isRemote){
|
2015-11-14 23:05:20 +01:00
|
|
|
if(!worldObj.isBlockIndirectlyGettingPowered(xCoord, yCoord, zCoord)){
|
|
|
|
if(this.currentTime > 0){
|
|
|
|
this.currentTime--;
|
|
|
|
if(this.currentTime <= 0){
|
|
|
|
ForgeDirection sideToManipulate = ForgeDirection.getOrientation(worldObj.getBlockMetadata(xCoord, yCoord, zCoord));
|
|
|
|
|
|
|
|
for(int i = 0; i < 10; i++){
|
|
|
|
WorldPos coordsBlock = WorldUtil.getCoordsFromSide(sideToManipulate, worldObj, xCoord, yCoord, zCoord, i);
|
|
|
|
if(coordsBlock != null){
|
|
|
|
if(!coordsBlock.getBlock().isAir(coordsBlock.getWorld(), coordsBlock.getX(), coordsBlock.getY(), coordsBlock.getZ())){
|
|
|
|
int range = 2; //TODO Config
|
2015-11-14 21:27:36 +01:00
|
|
|
|
2015-11-14 23:05:20 +01:00
|
|
|
//Converting the Blocks
|
|
|
|
for(int reachX = -range; reachX < range+1; reachX++){
|
|
|
|
for(int reachZ = -range; reachZ < range+1; reachZ++){
|
|
|
|
for(int reachY = -range; reachY < range+1; reachY++){
|
|
|
|
WorldPos pos = new WorldPos(worldObj, coordsBlock.getX()+reachX, coordsBlock.getY()+reachY, coordsBlock.getZ()+reachZ);
|
|
|
|
AtomicReconstructorRecipeHandler.Recipe recipe = AtomicReconstructorRecipeHandler.getRecipe(new ItemStack(pos.getBlock(), pos.getMetadata()));
|
|
|
|
if(recipe != null){
|
|
|
|
ItemStack output = recipe.getFirstOutput();
|
|
|
|
if(output != null){
|
|
|
|
if(output.getItem() instanceof ItemBlock){
|
|
|
|
this.worldObj.playAuxSFX(2001, pos.getX(), pos.getY(), pos.getZ(), Block.getIdFromBlock(pos.getBlock())+(pos.getMetadata() << 12));
|
|
|
|
pos.setBlock(Block.getBlockFromItem(output.getItem()), output.getItemDamage(), 2);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
EntityItem item = new EntityItem(worldObj, pos.getX()+0.5, pos.getY()+0.5, pos.getZ()+0.5, output.copy());
|
|
|
|
worldObj.spawnEntityInWorld(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Converting the Items
|
|
|
|
ArrayList<EntityItem> items = (ArrayList<EntityItem>)worldObj.getEntitiesWithinAABB(EntityItem.class, AxisAlignedBB.getBoundingBox(coordsBlock.getX()-range, coordsBlock.getY()-range, coordsBlock.getZ()-range, coordsBlock.getX()+range, coordsBlock.getY()+range, coordsBlock.getZ()+range));
|
|
|
|
for(EntityItem item : items){
|
|
|
|
ItemStack stack = item.getEntityItem();
|
|
|
|
if(stack != null){
|
|
|
|
AtomicReconstructorRecipeHandler.Recipe recipe = AtomicReconstructorRecipeHandler.getRecipe(stack);
|
2015-11-14 21:27:36 +01:00
|
|
|
if(recipe != null){
|
2015-11-14 23:05:20 +01:00
|
|
|
ItemStack output = recipe.getFirstOutput();
|
|
|
|
if(output != null){
|
|
|
|
ItemStack outputCopy = output.copy();
|
|
|
|
outputCopy.stackSize = stack.stackSize;
|
|
|
|
item.setEntityItemStack(outputCopy);
|
|
|
|
}
|
2015-11-14 21:27:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-14 23:05:20 +01:00
|
|
|
|
|
|
|
break;
|
2015-11-14 21:27:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-14 23:05:20 +01:00
|
|
|
else{
|
|
|
|
this.currentTime = 40; //TODO Config
|
|
|
|
}
|
2015-11-14 21:27:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.writeSyncableNBT(compound, sync);
|
|
|
|
compound.setInteger("CurrentTime", this.currentTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.readSyncableNBT(compound, sync);
|
|
|
|
this.currentTime = compound.getInteger("CurrentTime");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|