TechReborn/src/main/java/techreborn/tiles/TileAlloyFurnace.java

372 lines
10 KiB
Java
Raw Normal View History

2015-05-10 20:00:58 +02:00
package techreborn.tiles;
2015-08-10 20:28:52 +02:00
import cpw.mods.fml.common.registry.GameRegistry;
2015-05-10 20:00:58 +02:00
import ic2.api.tile.IWrenchable;
2015-08-10 20:28:52 +02:00
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
2015-05-10 20:00:58 +02:00
import net.minecraft.entity.player.EntityPlayer;
2015-08-10 20:28:52 +02:00
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
2015-06-07 10:38:12 +02:00
import net.minecraft.inventory.IInventory;
2015-08-10 20:28:52 +02:00
import net.minecraft.item.*;
import net.minecraft.item.crafting.FurnaceRecipes;
2015-05-10 20:00:58 +02:00
import net.minecraft.nbt.NBTTagCompound;
2015-08-10 20:28:52 +02:00
import techreborn.api.recipe.IBaseRecipeType;
import techreborn.api.recipe.RecipeHandler;
2015-05-10 20:00:58 +02:00
import techreborn.init.ModBlocks;
2015-08-10 20:28:52 +02:00
import techreborn.lib.Reference;
2015-05-10 20:00:58 +02:00
import techreborn.util.Inventory;
2015-08-10 20:28:52 +02:00
import techreborn.util.ItemUtils;
2015-05-10 20:00:58 +02:00
public class TileAlloyFurnace extends TileMachineBase implements IWrenchable, IInventory {
public int tickTime;
public Inventory inventory = new Inventory(4, "TileAlloyFurnace", 64);
2015-08-10 20:28:52 +02:00
int input1 = 0;
int input2 = 1;
int output = 2;
int fuel = 3;
public int burnTime;
public int currentItemBurnTime;
public int cookTime;
public TileAlloyFurnace() {
}
@Override
public void updateEntity() {
super.updateEntity();
2015-08-10 20:28:52 +02:00
boolean flag = this.burnTime > 0;
boolean flag1 = false;
if (this.burnTime > 0)
{
--this.burnTime;
}
if (!this.worldObj.isRemote)
{
if (this.burnTime != 0 || getStackInSlot(input1) != null && getStackInSlot(fuel) != null)
{
if (this.burnTime == 0 && this.canSmelt())
{
this.currentItemBurnTime = this.burnTime = getItemBurnTime(getStackInSlot(fuel));
if (this.burnTime > 0)
{
flag1 = true;
if (this.getStackInSlot(fuel) != null)
{
decrStackSize(fuel, 1);
}
}
}
if (this.isBurning() && this.canSmelt())
{
++this.cookTime;
if (this.cookTime == 200)
{
this.cookTime = 0;
this.smeltItem();
flag1 = true;
}
}
else
{
this.cookTime = 0;
}
}
if (flag != this.burnTime > 0)
{
flag1 = true;
//TODO sync on/off
}
}
if (flag1)
{
this.markDirty();
}
}
2015-08-13 13:47:55 +02:00
public boolean hasAllInputs(IBaseRecipeType recipeType) {
if (recipeType == null) {
return false;
}
for (ItemStack input : recipeType.getInputs()) {
Boolean hasItem = false;
for (int inputslot = 0; inputslot < 2; inputslot++) {
if (ItemUtils.isItemEqual(input, inventory.getStackInSlot(inputslot), true, true, recipeType.useOreDic()) && inventory.getStackInSlot(inputslot).stackSize >= input.stackSize) {
hasItem = true;
}
}
if (!hasItem)
return false;
}
return true;
}
2015-08-10 20:28:52 +02:00
private boolean canSmelt()
{
if (this.getStackInSlot(input1) == null || this.getStackInSlot(input2) == null)
{
return false;
}
else
{
ItemStack itemstack = null;
for(IBaseRecipeType recipeType : RecipeHandler.getRecipeClassFromName(Reference.alloySmelteRecipe)){
2015-08-13 13:47:55 +02:00
if(hasAllInputs(recipeType)){
itemstack = recipeType.getOutput(0);
2015-08-10 20:28:52 +02:00
break;
}
}
if (itemstack == null) return false;
if (this.getStackInSlot(output) == null) return true;
if (!this.getStackInSlot(output).isItemEqual(itemstack)) return false;
int result = getStackInSlot(output).stackSize + itemstack.stackSize;
return result <= getInventoryStackLimit() && result <= this.getStackInSlot(output).getMaxStackSize(); //Forge BugFix: Make it respect stack sizes properly.
}
}
/**
* Turn one item from the furnace source stack into the appropriate smelted item in the furnace result stack
*/
public void smeltItem()
{
if (this.canSmelt())
{
ItemStack itemstack = null;
for(IBaseRecipeType recipeType : RecipeHandler.getRecipeClassFromName(Reference.alloySmelteRecipe)){
for(ItemStack input : recipeType.getInputs()){
if(ItemUtils.isItemEqual(input, getStackInSlot(input1), true, true, true) || ItemUtils.isItemEqual(input, getStackInSlot(input2), true, true, true)){
itemstack = recipeType.getOutput(0);
break;
}
}
if(itemstack != null){
break;
}
}
if (this.getStackInSlot(output) == null)
{
setInventorySlotContents(output, itemstack.copy());
}
else if (this.getStackInSlot(output).getItem() == itemstack.getItem())
{
decrStackSize(output, -itemstack.stackSize);
}
2015-08-13 13:47:55 +02:00
for(IBaseRecipeType recipeType : RecipeHandler.getRecipeClassFromName(Reference.alloySmelteRecipe)){
for(ItemStack input : recipeType.getInputs()){
if(ItemUtils.isItemEqual(input, getStackInSlot(input1), true, true, true)){
this.decrStackSize(input1, input.stackSize);
} else if(ItemUtils.isItemEqual(input, getStackInSlot(input2), true, true, true)){
this.decrStackSize(input2, input.stackSize);
}
}
}
2015-08-10 20:28:52 +02:00
this.decrStackSize(input1, 1);
2015-08-13 13:47:55 +02:00
2015-08-10 20:28:52 +02:00
}
}
/**
* Furnace isBurning
*/
public boolean isBurning()
{
return this.burnTime > 0;
}
public int getBurnTimeRemainingScaled(int scale)
{
if (this.currentItemBurnTime == 0)
{
this.currentItemBurnTime = 200;
}
return this.burnTime * scale / this.currentItemBurnTime;
}
public int getCookProgressScaled(int scale)
{
return this.cookTime * scale / 200;
}
/**
* Returns the number of ticks that the supplied fuel item will keep the furnace burning, or 0 if the item isn't
* fuel
*/
public static int getItemBurnTime(ItemStack stack)
{
if (stack == null)
{
return 0;
}
else
{
Item item = stack.getItem();
if (item instanceof ItemBlock && Block.getBlockFromItem(item) != Blocks.air)
{
Block block = Block.getBlockFromItem(item);
if (block == Blocks.wooden_slab)
{
return 150;
}
if (block.getMaterial() == Material.wood)
{
return 300;
}
if (block == Blocks.coal_block)
{
return 16000;
}
}
if (item instanceof ItemTool && ((ItemTool)item).getToolMaterialName().equals("WOOD")) return 200;
if (item instanceof ItemSword && ((ItemSword)item).getToolMaterialName().equals("WOOD")) return 200;
if (item instanceof ItemHoe && ((ItemHoe)item).getToolMaterialName().equals("WOOD")) return 200;
if (item == Items.stick) return 100;
if (item == Items.coal) return 1600;
if (item == Items.lava_bucket) return 20000;
if (item == Item.getItemFromBlock(Blocks.sapling)) return 100;
if (item == Items.blaze_rod) return 2400;
return GameRegistry.getFuelValue(stack);
}
}
@Override
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side) {
return false;
}
@Override
public short getFacing() {
return 0;
}
@Override
public void setFacing(short facing) {
}
@Override
public boolean wrenchCanRemove(EntityPlayer entityPlayer) {
if (entityPlayer.isSneaking()) {
return true;
}
return false;
}
@Override
public float getWrenchDropRate() {
return 1.0F;
}
@Override
public ItemStack getWrenchDrop(EntityPlayer entityPlayer) {
return new ItemStack(ModBlocks.AlloyFurnace, 1);
}
public boolean isComplete() {
return false;
}
@Override
public void readFromNBT(NBTTagCompound tagCompound) {
2015-05-10 20:00:58 +02:00
super.readFromNBT(tagCompound);
inventory.readFromNBT(tagCompound);
}
@Override
public void writeToNBT(NBTTagCompound tagCompound) {
2015-05-10 20:00:58 +02:00
super.writeToNBT(tagCompound);
inventory.writeToNBT(tagCompound);
}
2015-06-07 10:38:12 +02:00
@Override
public int getSizeInventory() {
return inventory.getSizeInventory();
}
@Override
public ItemStack getStackInSlot(int slot) {
return inventory.getStackInSlot(slot);
}
@Override
public ItemStack decrStackSize(int slot, int amount) {
return inventory.decrStackSize(slot, amount);
}
@Override
public ItemStack getStackInSlotOnClosing(int slot) {
return inventory.getStackInSlotOnClosing(slot);
}
@Override
public void setInventorySlotContents(int slot, ItemStack stack) {
inventory.setInventorySlotContents(slot, stack);
}
@Override
public String getInventoryName() {
return inventory.getInventoryName();
}
@Override
public boolean hasCustomInventoryName() {
return inventory.hasCustomInventoryName();
}
@Override
public int getInventoryStackLimit() {
return inventory.getInventoryStackLimit();
}
@Override
public boolean isUseableByPlayer(EntityPlayer player) {
return inventory.isUseableByPlayer(player);
}
@Override
public void openInventory() {
inventory.openInventory();
}
@Override
public void closeInventory() {
inventory.closeInventory();
}
@Override
public boolean isItemValidForSlot(int slot, ItemStack stack) {
return inventory.isItemValidForSlot(slot, stack);
}
2015-05-10 20:00:58 +02:00
}