Jump to content

Help! With TileEntity Error


gamer1097

Recommended Posts

Hello I am trying to implement a few furnaces into the game. And I am having two big errors. The first error is this, when I made my first furnace brick furnace everything is fine. But when I added the stone furnace to the game and try to click on either furnace I get this error.

 

(Error)

 

Caused by: java.lang.ClassCastException: mods.gamersmods.fuelresourceful.tileentity.TileEntityStoneFurnace cannot be cast to mods.gamersmods.fuelresourceful.tileentity.TileEntityBrickFurnace

at mods.gamersmods.fuelresourceful.common.CommonProxy.getServerGuiElement(CommonProxy.java:25)

 

Now I believe this has something to do with my proxys because if I remove the code the gui wont open but it dose not crash

 

The second error is not such a big deal but it still needs to be fixed. The error is basically the item render of it in you inventory. It is basically looking backwards like a normal brick and you don't see the furnace front.

 

(Pictures)

3DVpgBc.png

5nyJhcS.png

 

 

(All The Code)

 

 

(Main File)

 

 

package mods.gamersmods.fuelresourceful;

 

import mods.gamersmods.fuelresourceful.block.BlockManager;

import mods.gamersmods.fuelresourceful.common.CommonProxy;

import mods.gamersmods.fuelresourceful.common.ModConfig;

import net.minecraftforge.common.Configuration;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.Init;

import cpw.mods.fml.common.Mod.Instance;

import cpw.mods.fml.common.Mod.PreInit;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.event.FMLPreInitializationEvent;

import cpw.mods.fml.common.network.NetworkMod;

import cpw.mods.fml.common.network.NetworkRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

@Mod(modid = "fuelresourceful", name = "FuelResourceful", version = "1.0")

@NetworkMod(clientSideRequired = true, serverSideRequired = false)

public class FuelResourceful

{

@Instance("fuelresourceful")

public static FuelResourceful instance;

 

@SidedProxy(clientSide = "mods.gamersmods.fuelresourceful.client.ClientProxy", serverSide = "mods.gamersmods.fuelresourceful.common.CommonProxy")

public static CommonProxy proxy;

 

@PreInit

public void preInit(FMLPreInitializationEvent event)

{

Configuration configFile = new Configuration(event.getSuggestedConfigurationFile());

configFile.load();

 

ModConfig.BlockIDs.StoneFurnaceIdle = configFile.getBlock("StoneFurnaceIdle", ModConfig.BlockIDs.StoneFurnaceIdle).getInt();

ModConfig.BlockIDs.StoneFurnaceIdle = configFile.getBlock("StoneFurnaceIdle", ModConfig.BlockIDs.StoneFurnaceBurning).getInt();

 

ModConfig.BlockIDs.BrickFurnaceIdle = configFile.getBlock("BrickFurnaceIdle", ModConfig.BlockIDs.BrickFurnaceIdle).getInt();

ModConfig.BlockIDs.BrickFurnaceIdle = configFile.getBlock("BrickFurnaceIdle", ModConfig.BlockIDs.BrickFurnaceBurning).getInt();

 

if(configFile.hasChanged())

configFile.save();

}

 

@Init

public void init(FMLInitializationEvent event)

{

BlockManager.registerBlocks();

BlockManager.registerCraftingRecipes();

 

proxy.registerTileEntities();

 

LanguageRegistry.instance().addStringLocalization("brickfurnace.container.brickfurnace", "Brick-Furnace");

LanguageRegistry.instance().addStringLocalization("stonefurnace.container.stonefurnace", "Stone-Furnace");

 

NetworkRegistry.instance().registerGuiHandler(this, proxy);

}

}

 

 

 

 

(ModConfig)

 

 

package mods.gamersmods.fuelresourceful.common;

 

public class ModConfig

{

public static class BlockIDs

{

public static int StoneFurnaceBurning = 1000;

public static int StoneFurnaceIdle = 1001;

 

public static int StoneBrickFurnaceBurning = 1002;

public static int StoneBrickFurnaceIdle = 1003;

 

public static int BrickFurnaceBurning = 1004;

public static int BrickFurnaceIdle = 1005;

}

 

public static class GUIIDs

{

public static int BrickFurnace = 0;

public static int StoneFurnace = 1;

public static int StoneBrickFurnace = 2;

}

}

 

 

 

 

(BlockManager)

 

 

package mods.gamersmods.fuelresourceful.block;

 

import mods.gamersmods.fuelresourceful.common.ModConfig;

import net.minecraft.block.Block;

import net.minecraft.item.ItemStack;

import net.minecraft.item.crafting.CraftingManager;

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

public class BlockManager

{

public static Block stoneFurnaceIdle = null;

public static Block stoneFurnaceBurning = null;

 

public static Block brickFurnaceIdle = null;

public static Block brickFurnaceBurning = null;

 

public static void registerBlocks()

{

stoneFurnaceIdle = new BlockStoneFurnace(ModConfig.BlockIDs.StoneFurnaceIdle, false).setUnlocalizedName("stonefurnace");

stoneFurnaceBurning = new BlockStoneFurnace(ModConfig.BlockIDs.StoneFurnaceBurning, true).setUnlocalizedName("stonefurnace").setLightValue(0.875F);

 

brickFurnaceIdle = new BlockBrickFurnace(ModConfig.BlockIDs.BrickFurnaceIdle, false).setUnlocalizedName("brickfurnace");

brickFurnaceBurning = new BlockBrickFurnace(ModConfig.BlockIDs.BrickFurnaceBurning, true).setUnlocalizedName("brickfurnace").setLightValue(0.875F);

 

GameRegistry.registerBlock(stoneFurnaceIdle, "BlockManager.stoneFurnaceIdle");

GameRegistry.registerBlock(stoneFurnaceBurning, "StoneFurnaceBurning");

LanguageRegistry.addName(stoneFurnaceIdle, "Stone Furnace");

LanguageRegistry.addName(stoneFurnaceBurning, "Stone Furnace");

 

GameRegistry.registerBlock(brickFurnaceIdle, "BlockManager.brickFurnaceIdle");

GameRegistry.registerBlock(brickFurnaceBurning, "BrickFurnaceBurning");

LanguageRegistry.addName(brickFurnaceIdle, "Brick Furnace");

LanguageRegistry.addName(brickFurnaceBurning, "Brick Furnace");

}

 

public static void registerCraftingRecipes()

{

CraftingManager.getInstance().addRecipe(new ItemStack(brickFurnaceIdle, 1),

"XXX",

"XYX",

"XXX", 'X', Block.brick, 'Y', Block.furnaceIdle);

CraftingManager.getInstance().addRecipe(new ItemStack(stoneFurnaceIdle, 1),

"XXX",

"XYX",

"XXX", 'X', Block.stone, 'Y', Block.furnaceIdle);

}

}

 

 

 

 

(BlockBrickFurnace)

 

 

package mods.gamersmods.fuelresourceful.block;

 

import java.util.Random;

 

import mods.gamersmods.fuelresourceful.FuelResourceful;

import mods.gamersmods.fuelresourceful.common.ModConfig;

import mods.gamersmods.fuelresourceful.tileentity.TileEntityBrickFurnace;

import net.minecraft.block.Block;

import net.minecraft.block.BlockContainer;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.EntityLiving;

import net.minecraft.entity.item.EntityItem;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.inventory.Container;

import net.minecraft.inventory.IInventory;

import net.minecraft.item.ItemStack;

import net.minecraft.nbt.NBTTagCompound;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.util.Icon;

import net.minecraft.util.MathHelper;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public class BlockBrickFurnace extends BlockContainer

{

    /**

    * Is the random generator used by furnace to drop the inventory contents in random directions.

    */

    private final Random furnaceRand = new Random();

 

    /** True if this is an active furnace, false if idle */

    private final boolean isActive;

 

    /**

    * This flag is used to prevent the furnace inventory to be dropped upon block removal, is used internally when the

    * furnace block changes from idle to active and vice-versa.

    */

    private static boolean keepFurnaceInventory = false;

    @SideOnly(Side.CLIENT)

    private Icon furnaceIconTop;

    @SideOnly(Side.CLIENT)

    private Icon furnaceIconFront;

 

    protected BlockBrickFurnace(int par1, boolean par2)

    {

        super(par1, Material.rock);

        this.isActive = par2;

        this.setCreativeTab(CreativeTabs.tabDecorations);

    }

 

    /**

    * Returns the ID of the items to drop on destruction.

    */

    public int idDropped(int par1, Random par2Random, int par3)

    {

        return BlockManager.brickFurnaceIdle.blockID;

    }

 

    /**

    * Called whenever the block is added into the world. Args: world, x, y, z

    */

    public void onBlockAdded(World par1World, int par2, int par3, int par4)

    {

        super.onBlockAdded(par1World, par2, par3, par4);

        this.setDefaultDirection(par1World, par2, par3, par4);

    }

 

    /**

    * set a blocks direction

    */

    private void setDefaultDirection(World par1World, int par2, int par3, int par4)

    {

        if (!par1World.isRemote)

        {

            int l = par1World.getBlockId(par2, par3, par4 - 1);

            int i1 = par1World.getBlockId(par2, par3, par4 + 1);

            int j1 = par1World.getBlockId(par2 - 1, par3, par4);

            int k1 = par1World.getBlockId(par2 + 1, par3, par4);

            byte b0 = 3;

 

            if (Block.opaqueCubeLookup[l] && !Block.opaqueCubeLookup[i1])

            {

                b0 = 3;

            }

 

            if (Block.opaqueCubeLookup[i1] && !Block.opaqueCubeLookup[l])

            {

                b0 = 2;

            }

 

            if (Block.opaqueCubeLookup[j1] && !Block.opaqueCubeLookup[k1])

            {

                b0 = 5;

            }

 

            if (Block.opaqueCubeLookup[k1] && !Block.opaqueCubeLookup[j1])

            {

                b0 = 4;

            }

 

            par1World.setBlockMetadataWithNotify(par2, par3, par4, b0, 2);

        }

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * From the specified side and block metadata retrieves the blocks texture. Args: side, metadata

    */

    public Icon getIcon(int par1, int par2)

    {

        return par1 == 1 ? this.furnaceIconTop : (par1 == 0 ? this.furnaceIconTop : (par1 != par2 ? this.blockIcon : this.furnaceIconFront));

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * When this method is called, your block should register all the icons it needs with the given IconRegister. This

    * is the only chance you get to register icons.

    */

    public void registerIcons(IconRegister iconRegister)

    {

        this.blockIcon = iconRegister.registerIcon("gamersmods/fuelresourceful:BrickFurnaceSide");

        this.furnaceIconFront = iconRegister.registerIcon(this.isActive ? "gamersmods/fuelresourceful:BrickFurnace_Front_Lit" : "gamersmods/fuelresourceful:BrickFurnace_Front_Unlit");

        this.furnaceIconTop = iconRegister.registerIcon("gamersmods/fuelresourceful:BrickFurnaceTop");

    }

 

    /**

    * Called upon block activation (right click on the block.)

    */

    public boolean onBlockActivated(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9)

    {

        if (par1World.isRemote)

        {

            return true;

        }

        else

        {

            TileEntityBrickFurnace TileEntityBrickFurnace = (TileEntityBrickFurnace)par1World.getBlockTileEntity(par2, par3, par4);

 

            if (TileEntityBrickFurnace != null)

            {

            par5EntityPlayer.openGui(FuelResourceful.instance, ModConfig.GUIIDs.BrickFurnace, par1World, par2, par3, par4);

            }

 

            return true;

        }

    }

 

    /**

    * Update which block ID the furnace is using depending on whether or not it is burning

    */

    public static void updateFurnaceBlockState(boolean par0, World par1World, int par2, int par3, int par4)

    {

        int l = par1World.getBlockMetadata(par2, par3, par4);

        TileEntity tileentity = par1World.getBlockTileEntity(par2, par3, par4);

        keepFurnaceInventory = true;

 

        if (par0)

        {

            par1World.setBlock(par2, par3, par4, BlockManager.brickFurnaceBurning.blockID);

        }

        else

        {

            par1World.setBlock(par2, par3, par4, BlockManager.brickFurnaceIdle.blockID);

        }

 

        keepFurnaceInventory = false;

        par1World.setBlockMetadataWithNotify(par2, par3, par4, l, 2);

 

        if (tileentity != null)

        {

            tileentity.validate();

            par1World.setBlockTileEntity(par2, par3, par4, tileentity);

        }

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * A randomly called display update to be able to add particles or other items for display

    */

    public void randomDisplayTick(World par1World, int par2, int par3, int par4, Random par5Random)

    {

        if (this.isActive)

        {

            int l = par1World.getBlockMetadata(par2, par3, par4);

            float f = (float)par2 + 0.5F;

            float f1 = (float)par3 + 0.0F + par5Random.nextFloat() * 6.0F / 16.0F;

            float f2 = (float)par4 + 0.5F;

            float f3 = 0.52F;

            float f4 = par5Random.nextFloat() * 0.6F - 0.3F;

 

            if (l == 4)

            {

                par1World.spawnParticle("smoke", (double)(f - f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);

                par1World.spawnParticle("flame", (double)(f - f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);

            }

            else if (l == 5)

            {

                par1World.spawnParticle("smoke", (double)(f + f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);

                par1World.spawnParticle("flame", (double)(f + f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);

            }

            else if (l == 2)

            {

                par1World.spawnParticle("smoke", (double)(f + f4), (double)f1, (double)(f2 - f3), 0.0D, 0.0D, 0.0D);

                par1World.spawnParticle("flame", (double)(f + f4), (double)f1, (double)(f2 - f3), 0.0D, 0.0D, 0.0D);

            }

            else if (l == 3)

            {

                par1World.spawnParticle("smoke", (double)(f + f4), (double)f1, (double)(f2 + f3), 0.0D, 0.0D, 0.0D);

                par1World.spawnParticle("flame", (double)(f + f4), (double)f1, (double)(f2 + f3), 0.0D, 0.0D, 0.0D);

            }

        }

    }

 

    /**

    * Returns a new instance of a block's tile entity class. Called on placing the block.

    */

    public TileEntity createNewTileEntity(World par1World)

    {

        return new TileEntityBrickFurnace();

    }

 

    /**

    * Called when the block is placed in the world.

    */

    public void onBlockPlacedBy(World par1World, int par2, int par3, int par4, EntityLiving par5EntityLiving, ItemStack par6ItemStack)

    {

        int l = MathHelper.floor_double((double)(par5EntityLiving.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3;

 

        if (l == 0)

        {

            par1World.setBlockMetadataWithNotify(par2, par3, par4, 2, 2);

        }

 

        if (l == 1)

        {

            par1World.setBlockMetadataWithNotify(par2, par3, par4, 5, 2);

        }

 

        if (l == 2)

        {

            par1World.setBlockMetadataWithNotify(par2, par3, par4, 3, 2);

        }

 

        if (l == 3)

        {

            par1World.setBlockMetadataWithNotify(par2, par3, par4, 4, 2);

        }

 

        if (par6ItemStack.hasDisplayName())

        {

            ((TileEntityBrickFurnace)par1World.getBlockTileEntity(par2, par3, par4)).func_94129_a(par6ItemStack.getDisplayName());

        }

    }

 

    /**

    * ejects contained items into the world, and notifies neighbours of an update, as appropriate

    */

    public void breakBlock(World par1World, int par2, int par3, int par4, int par5, int par6)

    {

        if (!keepFurnaceInventory)

        {

            TileEntityBrickFurnace TileEntityBrickFurnace = (mods.gamersmods.fuelresourceful.tileentity.TileEntityBrickFurnace)par1World.getBlockTileEntity(par2, par3, par4);

 

            if (TileEntityBrickFurnace != null)

            {

                for (int j1 = 0; j1 < TileEntityBrickFurnace.getSizeInventory(); ++j1)

                {

                    ItemStack itemstack = TileEntityBrickFurnace.getStackInSlot(j1);

 

                    if (itemstack != null)

                    {

                        float f = this.furnaceRand.nextFloat() * 0.8F + 0.1F;

                        float f1 = this.furnaceRand.nextFloat() * 0.8F + 0.1F;

                        float f2 = this.furnaceRand.nextFloat() * 0.8F + 0.1F;

 

                        while (itemstack.stackSize > 0)

                        {

                            int k1 = this.furnaceRand.nextInt(21) + 10;

 

                            if (k1 > itemstack.stackSize)

                            {

                                k1 = itemstack.stackSize;

                            }

 

                            itemstack.stackSize -= k1;

                            EntityItem entityitem = new EntityItem(par1World, (double)((float)par2 + f), (double)((float)par3 + f1), (double)((float)par4 + f2), new ItemStack(itemstack.itemID, k1, itemstack.getItemDamage()));

 

                            if (itemstack.hasTagCompound())

                            {

                                entityitem.getEntityItem().setTagCompound((NBTTagCompound)itemstack.getTagCompound().copy());

                            }

 

                            float f3 = 0.05F;

                            entityitem.motionX = (double)((float)this.furnaceRand.nextGaussian() * f3);

                            entityitem.motionY = (double)((float)this.furnaceRand.nextGaussian() * f3 + 0.2F);

                            entityitem.motionZ = (double)((float)this.furnaceRand.nextGaussian() * f3);

                            par1World.spawnEntityInWorld(entityitem);

                        }

                    }

                }

 

                par1World.func_96440_m(par2, par3, par4, par5);

            }

        }

 

        super.breakBlock(par1World, par2, par3, par4, par5, par6);

    }

 

    /**

    * If this returns true, then comparators facing away from this block will use the value from

    * getComparatorInputOverride instead of the actual redstone signal strength.

    */

    public boolean hasComparatorInputOverride()

    {

        return true;

    }

 

    /**

    * If hasComparatorInputOverride returns true, the return value from this is used instead of the redstone signal

    * strength when this block inputs to a comparator.

    */

    public int getComparatorInputOverride(World par1World, int par2, int par3, int par4, int par5)

    {

        return Container.calcRedstoneFromInventory((IInventory)par1World.getBlockTileEntity(par2, par3, par4));

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * only called by clickMiddleMouseButton , and passed to inventory.setCurrentItem (along with isCreative)

    */

    public int idPicked(World par1World, int par2, int par3, int par4)

    {

        return BlockManager.brickFurnaceIdle.blockID;

    }

}

 

 

 

 

(BlockStoneFurnace)

 

 

package mods.gamersmods.fuelresourceful.block;

 

import java.util.Random;

 

import mods.gamersmods.fuelresourceful.FuelResourceful;

import mods.gamersmods.fuelresourceful.common.ModConfig;

import mods.gamersmods.fuelresourceful.tileentity.TileEntityStoneFurnace;

import net.minecraft.block.Block;

import net.minecraft.block.BlockContainer;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.EntityLiving;

import net.minecraft.entity.item.EntityItem;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.inventory.Container;

import net.minecraft.inventory.IInventory;

import net.minecraft.item.ItemStack;

import net.minecraft.nbt.NBTTagCompound;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.util.Icon;

import net.minecraft.util.MathHelper;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public class BlockStoneFurnace extends BlockContainer

{

    /**

    * Is the random generator used by furnace to drop the inventory contents in random directions.

    */

    private final Random furnaceRand = new Random();

 

    /** True if this is an active furnace, false if idle */

    private final boolean isActive;

 

    /**

    * This flag is used to prevent the furnace inventory to be dropped upon block removal, is used internally when the

    * furnace block changes from idle to active and vice-versa.

    */

    private static boolean keepFurnaceInventory = false;

    @SideOnly(Side.CLIENT)

    private Icon furnaceIconTop;

    @SideOnly(Side.CLIENT)

    private Icon furnaceIconFront;

 

    protected BlockStoneFurnace(int par1, boolean par2)

    {

        super(par1, Material.rock);

        this.isActive = par2;

        this.setCreativeTab(CreativeTabs.tabDecorations);

    }

 

    /**

    * Returns the ID of the items to drop on destruction.

    */

    public int idDropped(int par1, Random par2Random, int par3)

    {

        return BlockManager.stoneFurnaceIdle.blockID;

    }

 

    /**

    * Called whenever the block is added into the world. Args: world, x, y, z

    */

    public void onBlockAdded(World par1World, int par2, int par3, int par4)

    {

        super.onBlockAdded(par1World, par2, par3, par4);

        this.setDefaultDirection(par1World, par2, par3, par4);

    }

 

    /**

    * set a blocks direction

    */

    private void setDefaultDirection(World par1World, int par2, int par3, int par4)

    {

        if (!par1World.isRemote)

        {

            int l = par1World.getBlockId(par2, par3, par4 - 1);

            int i1 = par1World.getBlockId(par2, par3, par4 + 1);

            int j1 = par1World.getBlockId(par2 - 1, par3, par4);

            int k1 = par1World.getBlockId(par2 + 1, par3, par4);

            byte b0 = 3;

 

            if (Block.opaqueCubeLookup[l] && !Block.opaqueCubeLookup[i1])

            {

                b0 = 3;

            }

 

            if (Block.opaqueCubeLookup[i1] && !Block.opaqueCubeLookup[l])

            {

                b0 = 2;

            }

 

            if (Block.opaqueCubeLookup[j1] && !Block.opaqueCubeLookup[k1])

            {

                b0 = 5;

            }

 

            if (Block.opaqueCubeLookup[k1] && !Block.opaqueCubeLookup[j1])

            {

                b0 = 4;

            }

 

            par1World.setBlockMetadataWithNotify(par2, par3, par4, b0, 2);

        }

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * From the specified side and block metadata retrieves the blocks texture. Args: side, metadata

    */

    public Icon getIcon(int par1, int par2)

    {

        return par1 == 1 ? this.furnaceIconTop : (par1 == 0 ? this.furnaceIconTop : (par1 != par2 ? this.blockIcon : this.furnaceIconFront));

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * When this method is called, your block should register all the icons it needs with the given IconRegister. This

    * is the only chance you get to register icons.

    */

    public void registerIcons(IconRegister iconRegister)

    {

        this.blockIcon = iconRegister.registerIcon("gamersmods/fuelresourceful:StoneFurnaceSide");

        this.furnaceIconFront = iconRegister.registerIcon(this.isActive ? "gamersmods/fuelresourceful:StoneFurnace_Front_Lit" : "gamersmods/fuelresourceful:StoneFurnace_Front_Unlit");

        this.furnaceIconTop = iconRegister.registerIcon("gamersmods/fuelresourceful:StoneFurnaceTop");

    }

 

    /**

    * Called upon block activation (right click on the block.)

    */

    public boolean onBlockActivated(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9)

    {

        if (par1World.isRemote)

        {

            return true;

        }

        else

        {

            TileEntityStoneFurnace TileEntityStoneFurnace = (TileEntityStoneFurnace)par1World.getBlockTileEntity(par2, par3, par4);

 

            if (TileEntityStoneFurnace != null)

            {

            par5EntityPlayer.openGui(FuelResourceful.instance, ModConfig.GUIIDs.StoneFurnace, par1World, par2, par3, par4);

            }

 

            return true;

        }

    }

 

    /**

    * Update which block ID the furnace is using depending on whether or not it is burning

    */

    public static void updateFurnaceBlockState(boolean par0, World par1World, int par2, int par3, int par4)

    {

        int l = par1World.getBlockMetadata(par2, par3, par4);

        TileEntity tileentity = par1World.getBlockTileEntity(par2, par3, par4);

        keepFurnaceInventory = true;

 

        if (par0)

        {

            par1World.setBlock(par2, par3, par4, BlockManager.stoneFurnaceBurning.blockID);

        }

        else

        {

            par1World.setBlock(par2, par3, par4, BlockManager.stoneFurnaceIdle.blockID);

        }

 

        keepFurnaceInventory = false;

        par1World.setBlockMetadataWithNotify(par2, par3, par4, l, 2);

 

        if (tileentity != null)

        {

            tileentity.validate();

            par1World.setBlockTileEntity(par2, par3, par4, tileentity);

        }

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * A randomly called display update to be able to add particles or other items for display

    */

    public void randomDisplayTick(World par1World, int par2, int par3, int par4, Random par5Random)

    {

        if (this.isActive)

        {

            int l = par1World.getBlockMetadata(par2, par3, par4);

            float f = (float)par2 + 0.5F;

            float f1 = (float)par3 + 0.0F + par5Random.nextFloat() * 6.0F / 16.0F;

            float f2 = (float)par4 + 0.5F;

            float f3 = 0.52F;

            float f4 = par5Random.nextFloat() * 0.6F - 0.3F;

 

            if (l == 4)

            {

                par1World.spawnParticle("smoke", (double)(f - f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);

                par1World.spawnParticle("flame", (double)(f - f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);

            }

            else if (l == 5)

            {

                par1World.spawnParticle("smoke", (double)(f + f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);

                par1World.spawnParticle("flame", (double)(f + f3), (double)f1, (double)(f2 + f4), 0.0D, 0.0D, 0.0D);

            }

            else if (l == 2)

            {

                par1World.spawnParticle("smoke", (double)(f + f4), (double)f1, (double)(f2 - f3), 0.0D, 0.0D, 0.0D);

                par1World.spawnParticle("flame", (double)(f + f4), (double)f1, (double)(f2 - f3), 0.0D, 0.0D, 0.0D);

            }

            else if (l == 3)

            {

                par1World.spawnParticle("smoke", (double)(f + f4), (double)f1, (double)(f2 + f3), 0.0D, 0.0D, 0.0D);

                par1World.spawnParticle("flame", (double)(f + f4), (double)f1, (double)(f2 + f3), 0.0D, 0.0D, 0.0D);

            }

        }

    }

 

    /**

    * Returns a new instance of a block's tile entity class. Called on placing the block.

    */

    public TileEntity createNewTileEntity(World par1World)

    {

        return new TileEntityStoneFurnace();

    }

 

    /**

    * Called when the block is placed in the world.

    */

    public void onBlockPlacedBy(World par1World, int par2, int par3, int par4, EntityLiving par5EntityLiving, ItemStack par6ItemStack)

    {

        int l = MathHelper.floor_double((double)(par5EntityLiving.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3;

 

        if (l == 0)

        {

            par1World.setBlockMetadataWithNotify(par2, par3, par4, 2, 2);

        }

 

        if (l == 1)

        {

            par1World.setBlockMetadataWithNotify(par2, par3, par4, 5, 2);

        }

 

        if (l == 2)

        {

            par1World.setBlockMetadataWithNotify(par2, par3, par4, 3, 2);

        }

 

        if (l == 3)

        {

            par1World.setBlockMetadataWithNotify(par2, par3, par4, 4, 2);

        }

 

        if (par6ItemStack.hasDisplayName())

        {

            ((TileEntityStoneFurnace)par1World.getBlockTileEntity(par2, par3, par4)).func_94129_a(par6ItemStack.getDisplayName());

        }

    }

 

    /**

    * ejects contained items into the world, and notifies neighbours of an update, as appropriate

    */

    public void breakBlock(World par1World, int par2, int par3, int par4, int par5, int par6)

    {

        if (!keepFurnaceInventory)

        {

            TileEntityStoneFurnace TileEntityStoneFurnace = (mods.gamersmods.fuelresourceful.tileentity.TileEntityStoneFurnace)par1World.getBlockTileEntity(par2, par3, par4);

 

            if (TileEntityStoneFurnace != null)

            {

                for (int j1 = 0; j1 < TileEntityStoneFurnace.getSizeInventory(); ++j1)

                {

                    ItemStack itemstack = TileEntityStoneFurnace.getStackInSlot(j1);

 

                    if (itemstack != null)

                    {

                        float f = this.furnaceRand.nextFloat() * 0.8F + 0.1F;

                        float f1 = this.furnaceRand.nextFloat() * 0.8F + 0.1F;

                        float f2 = this.furnaceRand.nextFloat() * 0.8F + 0.1F;

 

                        while (itemstack.stackSize > 0)

                        {

                            int k1 = this.furnaceRand.nextInt(21) + 10;

 

                            if (k1 > itemstack.stackSize)

                            {

                                k1 = itemstack.stackSize;

                            }

 

                            itemstack.stackSize -= k1;

                            EntityItem entityitem = new EntityItem(par1World, (double)((float)par2 + f), (double)((float)par3 + f1), (double)((float)par4 + f2), new ItemStack(itemstack.itemID, k1, itemstack.getItemDamage()));

 

                            if (itemstack.hasTagCompound())

                            {

                                entityitem.getEntityItem().setTagCompound((NBTTagCompound)itemstack.getTagCompound().copy());

                            }

 

                            float f3 = 0.05F;

                            entityitem.motionX = (double)((float)this.furnaceRand.nextGaussian() * f3);

                            entityitem.motionY = (double)((float)this.furnaceRand.nextGaussian() * f3 + 0.2F);

                            entityitem.motionZ = (double)((float)this.furnaceRand.nextGaussian() * f3);

                            par1World.spawnEntityInWorld(entityitem);

                        }

                    }

                }

 

                par1World.func_96440_m(par2, par3, par4, par5);

            }

        }

 

        super.breakBlock(par1World, par2, par3, par4, par5, par6);

    }

 

    /**

    * If this returns true, then comparators facing away from this block will use the value from

    * getComparatorInputOverride instead of the actual redstone signal strength.

    */

    public boolean hasComparatorInputOverride()

    {

        return true;

    }

 

    /**

    * If hasComparatorInputOverride returns true, the return value from this is used instead of the redstone signal

    * strength when this block inputs to a comparator.

    */

    public int getComparatorInputOverride(World par1World, int par2, int par3, int par4, int par5)

    {

        return Container.calcRedstoneFromInventory((IInventory)par1World.getBlockTileEntity(par2, par3, par4));

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * only called by clickMiddleMouseButton , and passed to inventory.setCurrentItem (along with isCreative)

    */

    public int idPicked(World par1World, int par2, int par3, int par4)

    {

        return BlockManager.stoneFurnaceIdle.blockID;

    }

}

 

 

 

 

(TileEntityBrickFurnace)

 

 

package mods.gamersmods.fuelresourceful.tileentity;

 

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import mods.gamersmods.fuelresourceful.block.BlockBrickFurnace;

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.inventory.ISidedInventory;

import net.minecraft.item.Item;

import net.minecraft.item.ItemBlock;

import net.minecraft.item.ItemHoe;

import net.minecraft.item.ItemStack;

import net.minecraft.item.ItemSword;

import net.minecraft.item.ItemTool;

import net.minecraft.item.crafting.FurnaceRecipes;

import net.minecraft.nbt.NBTTagCompound;

import net.minecraft.nbt.NBTTagList;

import net.minecraft.tileentity.TileEntity;

import net.minecraftforge.common.ForgeDirection;

import net.minecraftforge.common.ForgeDummyContainer;

 

public class TileEntityBrickFurnace extends TileEntity implements ISidedInventory, net.minecraftforge.common.ISidedInventory

{

    private static final int[] field_102010_d = new int[] {0};

    private static final int[] field_102011_e = new int[] {2, 1};

    private static final int[] field_102009_f = new int[] {1};

 

    /**

    * The ItemStacks that hold the items currently being used in the furnace

    */

    private ItemStack[] furnaceItemStacks = new ItemStack[3];

 

    /** The number of ticks that the furnace will keep burning */

    public int furnaceBurnTime = 0;

 

    /**

    * The number of ticks that a fresh copy of the currently-burning item would keep the furnace burning for

    */

    public int currentItemBurnTime = 0;

 

    /** The number of ticks that the current item has been cooking for */

    public int furnaceCookTime = 0;

    private String field_94130_e;

 

    /**

    * Returns the number of slots in the inventory.

    */

    public int getSizeInventory()

    {

        return this.furnaceItemStacks.length;

    }

 

    /**

    * Returns the stack in slot i

    */

    public ItemStack getStackInSlot(int par1)

    {

        return this.furnaceItemStacks[par1];

    }

 

    /**

    * Removes from an inventory slot (first arg) up to a specified number (second arg) of items and returns them in a

    * new stack.

    */

    public ItemStack decrStackSize(int par1, int par2)

    {

        if (this.furnaceItemStacks[par1] != null)

        {

            ItemStack itemstack;

 

            if (this.furnaceItemStacks[par1].stackSize <= par2)

            {

                itemstack = this.furnaceItemStacks[par1];

                this.furnaceItemStacks[par1] = null;

                return itemstack;

            }

            else

            {

                itemstack = this.furnaceItemStacks[par1].splitStack(par2);

 

                if (this.furnaceItemStacks[par1].stackSize == 0)

                {

                    this.furnaceItemStacks[par1] = null;

                }

 

                return itemstack;

            }

        }

        else

        {

            return null;

        }

    }

 

    /**

    * When some containers are closed they call this on each slot, then drop whatever it returns as an EntityItem -

    * like when you close a workbench GUI.

    */

    public ItemStack getStackInSlotOnClosing(int par1)

    {

        if (this.furnaceItemStacks[par1] != null)

        {

            ItemStack itemstack = this.furnaceItemStacks[par1];

            this.furnaceItemStacks[par1] = null;

            return itemstack;

        }

        else

        {

            return null;

        }

    }

 

    /**

    * Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections).

    */

    public void setInventorySlotContents(int par1, ItemStack par2ItemStack)

    {

        this.furnaceItemStacks[par1] = par2ItemStack;

 

        if (par2ItemStack != null && par2ItemStack.stackSize > this.getInventoryStackLimit())

        {

            par2ItemStack.stackSize = this.getInventoryStackLimit();

        }

    }

 

    /**

    * Returns the name of the inventory.

    */

    public String getInvName()

    {

        return this.isInvNameLocalized() ? this.field_94130_e : "brickfurnace.container.brickfurnace";

    }

 

    /**

    * If this returns false, the inventory name will be used as an unlocalized name, and translated into the player's

    * language. Otherwise it will be used directly.

    */

    public boolean isInvNameLocalized()

    {

        return this.field_94130_e != null && this.field_94130_e.length() > 0;

    }

 

    public void func_94129_a(String par1Str)

    {

        this.field_94130_e = par1Str;

    }

 

    /**

    * Reads a tile entity from NBT.

    */

    public void readFromNBT(NBTTagCompound par1NBTTagCompound)

    {

        super.readFromNBT(par1NBTTagCompound);

        NBTTagList nbttaglist = par1NBTTagCompound.getTagList("Items");

        this.furnaceItemStacks = new ItemStack[this.getSizeInventory()];

 

        for (int i = 0; i < nbttaglist.tagCount(); ++i)

        {

            NBTTagCompound nbttagcompound1 = (NBTTagCompound)nbttaglist.tagAt(i);

            byte b0 = nbttagcompound1.getByte("Slot");

 

            if (b0 >= 0 && b0 < this.furnaceItemStacks.length)

            {

                this.furnaceItemStacks[b0] = ItemStack.loadItemStackFromNBT(nbttagcompound1);

            }

        }

 

        this.furnaceBurnTime = par1NBTTagCompound.getShort("BurnTime");

        this.furnaceCookTime = par1NBTTagCompound.getShort("CookTime");

        this.currentItemBurnTime = getItemBurnTime(this.furnaceItemStacks[1]);

 

        if (par1NBTTagCompound.hasKey("BrickFurnace"))

        {

            this.field_94130_e = par1NBTTagCompound.getString("BrickFurnace");

        }

    }

 

    /**

    * Writes a tile entity to NBT.

    */

    public void writeToNBT(NBTTagCompound par1NBTTagCompound)

    {

        super.writeToNBT(par1NBTTagCompound);

        par1NBTTagCompound.setShort("BurnTime", (short)this.furnaceBurnTime);

        par1NBTTagCompound.setShort("CookTime", (short)this.furnaceCookTime);

        NBTTagList nbttaglist = new NBTTagList();

 

        for (int i = 0; i < this.furnaceItemStacks.length; ++i)

        {

            if (this.furnaceItemStacks != null)

            {

                NBTTagCompound nbttagcompound1 = new NBTTagCompound();

                nbttagcompound1.setByte("Slot", (byte)i);

                this.furnaceItemStacks.writeToNBT(nbttagcompound1);

                nbttaglist.appendTag(nbttagcompound1);

            }

        }

 

        par1NBTTagCompound.setTag("Items", nbttaglist);

 

        if (this.isInvNameLocalized())

        {

            par1NBTTagCompound.setString("BrickFurnace", this.field_94130_e);

        }

    }

 

    /**

    * Returns the maximum stack size for a inventory slot. Seems to always be 64, possibly will be extended. *Isn't

    * this more of a set than a get?*

    */

    public int getInventoryStackLimit()

    {

        return 64;

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * Returns an integer between 0 and the passed value representing how close the current item is to being completely

    * cooked

    */

    public int getCookProgressScaled(int par1)

    {

        return this.furnaceCookTime * par1 / 200;

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * Returns an integer between 0 and the passed value representing how much burn time is left on the current fuel

    * item, where 0 means that the item is exhausted and the passed value means that the item is fresh

    */

    public int getBurnTimeRemainingScaled(int par1)

    {

        if (this.currentItemBurnTime == 0)

        {

            this.currentItemBurnTime = 200;

        }

 

        return this.furnaceBurnTime * par1 / this.currentItemBurnTime;

    }

 

    /**

    * Returns true if the furnace is currently burning

    */

    public boolean isBurning()

    {

        return this.furnaceBurnTime > 0;

    }

 

    /**

    * Allows the entity to update its state. Overridden in most subclasses, e.g. the mob spawner uses this to count

    * ticks and creates a new spawn inside its implementation.

    */

    public void updateEntity()

    {

        boolean flag = this.furnaceBurnTime > 0;

        boolean flag1 = false;

 

        if (this.furnaceBurnTime > 0)

        {

            --this.furnaceBurnTime;

        }

 

        if (!this.worldObj.isRemote)

        {

            if (this.furnaceBurnTime == 0 && this.canSmelt())

            {

                this.currentItemBurnTime = this.furnaceBurnTime = getItemBurnTime(this.furnaceItemStacks[1]);

 

                if (this.furnaceBurnTime > 0)

                {

                    flag1 = true;

 

                    if (this.furnaceItemStacks[1] != null)

                    {

                        --this.furnaceItemStacks[1].stackSize;

 

                        if (this.furnaceItemStacks[1].stackSize == 0)

                        {

                            this.furnaceItemStacks[1] = this.furnaceItemStacks[1].getItem().getContainerItemStack(furnaceItemStacks[1]);

                        }

                    }

                }

            }

 

            if (this.isBurning() && this.canSmelt())

            {

                ++this.furnaceCookTime;

 

                if (this.furnaceCookTime == 200)

                {

                    this.furnaceCookTime = 0;

                    this.smeltItem();

                    flag1 = true;

                }

            }

            else

            {

                this.furnaceCookTime = 0;

            }

 

            if (flag != this.furnaceBurnTime > 0)

            {

                flag1 = true;

                BlockBrickFurnace.updateFurnaceBlockState(this.furnaceBurnTime > 0, this.worldObj, this.xCoord, this.yCoord, this.zCoord);

            }

        }

 

        if (flag1)

        {

            this.onInventoryChanged();

        }

    }

 

    /**

    * Returns true if the furnace can smelt an item, i.e. has a source item, destination stack isn't full, etc.

    */

    private boolean canSmelt()

    {

        if (this.furnaceItemStacks[0] == null)

        {

            return false;

        }

        else

        {

            ItemStack itemstack = FurnaceRecipes.smelting().getSmeltingResult(this.furnaceItemStacks[0]);

            if (itemstack == null) return false;

            if (this.furnaceItemStacks[2] == null) return true;

            if (!this.furnaceItemStacks[2].isItemEqual(itemstack)) return false;

            int result = furnaceItemStacks[2].stackSize + itemstack.stackSize;

            return (result <= getInventoryStackLimit() && result <= itemstack.getMaxStackSize());

        }

    }

 

    /**

    * 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 = FurnaceRecipes.smelting().getSmeltingResult(this.furnaceItemStacks[0]);

 

            if (this.furnaceItemStacks[2] == null)

            {

                this.furnaceItemStacks[2] = itemstack.copy();

            }

            else if (this.furnaceItemStacks[2].isItemEqual(itemstack))

            {

                furnaceItemStacks[2].stackSize += itemstack.stackSize;

            }

 

            --this.furnaceItemStacks[0].stackSize;

 

            if (this.furnaceItemStacks[0].stackSize <= 0)

            {

                this.furnaceItemStacks[0] = null;

            }

        }

    }

 

    /**

    * 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 par0ItemStack)

    {

        if (par0ItemStack == null)

        {

            return 0;

        }

        else

        {

            int i = par0ItemStack.getItem().itemID;

            Item item = par0ItemStack.getItem();

 

            if (par0ItemStack.getItem() instanceof ItemBlock && Block.blocksList != null)

            {

                Block block = Block.blocksList;

 

                if (block == Block.woodSingleSlab)

                {

                    return 150;

                }

 

                if (block.blockMaterial == Material.wood)

                {

                    return 300;

                }

            }

 

            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).getMaterialName().equals("WOOD")) return 200;

            if (i == Item.stick.itemID) return 100;

            if (i == Item.coal.itemID) return 1600;

            if (i == Item.bucketLava.itemID) return 20000;

            if (i == Block.sapling.blockID) return 100;

            if (i == Item.blazeRod.itemID) return 2400;

            return GameRegistry.getFuelValue(par0ItemStack);

        }

    }

 

    /**

    * Return true if item is a fuel source (getItemBurnTime() > 0).

    */

    public static boolean isItemFuel(ItemStack par0ItemStack)

    {

        return getItemBurnTime(par0ItemStack) > 0;

    }

 

    /**

    * Do not make give this method the name canInteractWith because it clashes with Container

    */

    public boolean isUseableByPlayer(EntityPlayer par1EntityPlayer)

    {

        return this.worldObj.getBlockTileEntity(this.xCoord, this.yCoord, this.zCoord) != this ? false : par1EntityPlayer.getDistanceSq((double)this.xCoord + 0.5D, (double)this.yCoord + 0.5D, (double)this.zCoord + 0.5D) <= 64.0D;

    }

 

    public void openChest() {}

 

    public void closeChest() {}

 

    /**

    * Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot.

    */

    public boolean isStackValidForSlot(int par1, ItemStack par2ItemStack)

    {

        return par1 == 2 ? false : (par1 == 1 ? isItemFuel(par2ItemStack) : true);

    }

 

    /**

    * Returns an array containing the indices of the slots that can be accessed by automation on the given side of this

    * block.

    */

    public int[] getAccessibleSlotsFromSide(int par1)

    {

        return par1 == 0 ? field_102011_e : (par1 == 1 ? field_102010_d : field_102009_f);

    }

 

    /**

    * Returns true if automation can insert the given item in the given slot from the given side. Args: Slot, item,

    * side

    */

    public boolean canInsertItem(int par1, ItemStack par2ItemStack, int par3)

    {

        return this.isStackValidForSlot(par1, par2ItemStack);

    }

 

    /**

    * Returns true if automation can extract the given item in the given slot from the given side. Args: Slot, item,

    * side

    */

    public boolean canExtractItem(int par1, ItemStack par2ItemStack, int par3)

    {

        return par3 != 0 || par1 != 1 || par2ItemStack.itemID == Item.bucketEmpty.itemID;

    }

 

    /***********************************************************************************

    * This function is here for compatibilities sake, Modders should Check for

    * Sided before ContainerWorldly, Vanilla Minecraft does not follow the sided standard

    * that Modding has for a while.

    *

    * In vanilla:

    *

    *  Top: Ores

    *  Sides: Fuel

    *  Bottom: Output

    *

    * Standard Modding:

    *  Top: Ores

    *  Sides: Output

    *  Bottom: Fuel

    *

    * The Modding one is designed after the GUI, the vanilla one is designed because its

    * intended use is for the hopper, which logically would take things in from the top.

    *

    * This will possibly be removed in future updates, and make vanilla the definitive

    * standard.

    */

 

    @Override

    public int getStartInventorySide(ForgeDirection side)

    {

        if (ForgeDummyContainer.legacyFurnaceSides)

        {

            if (side == ForgeDirection.DOWN) return 1;

            if (side == ForgeDirection.UP) return 0;

            return 2;

        }

        else

        {

            if (side == ForgeDirection.DOWN) return 2;

            if (side == ForgeDirection.UP) return 0;

            return 1;

        }

    }

 

    @Override

    public int getSizeInventorySide(ForgeDirection side)

    {

        return 1;

    }

 

@Override

public void onInventoryChanged() {

// TODO Auto-generated method stub

 

}

}

 

 

 

 

(TileEntityStoneFurnace)

 

 

package mods.gamersmods.fuelresourceful.tileentity;

 

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import mods.gamersmods.fuelresourceful.block.BlockStoneFurnace;

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.inventory.ISidedInventory;

import net.minecraft.item.Item;

import net.minecraft.item.ItemBlock;

import net.minecraft.item.ItemHoe;

import net.minecraft.item.ItemStack;

import net.minecraft.item.ItemSword;

import net.minecraft.item.ItemTool;

import net.minecraft.item.crafting.FurnaceRecipes;

import net.minecraft.nbt.NBTTagCompound;

import net.minecraft.nbt.NBTTagList;

import net.minecraft.tileentity.TileEntity;

import net.minecraftforge.common.ForgeDirection;

import net.minecraftforge.common.ForgeDummyContainer;

 

public class TileEntityStoneFurnace extends TileEntity implements ISidedInventory, net.minecraftforge.common.ISidedInventory

{

    private static final int[] field_102010_d = new int[] {0};

    private static final int[] field_102011_e = new int[] {2, 1};

    private static final int[] field_102009_f = new int[] {1};

 

    /**

    * The ItemStacks that hold the items currently being used in the furnace

    */

    private ItemStack[] furnaceItemStacks = new ItemStack[3];

 

    /** The number of ticks that the furnace will keep burning */

    public int furnaceBurnTime = 0;

 

    /**

    * The number of ticks that a fresh copy of the currently-burning item would keep the furnace burning for

    */

    public int currentItemBurnTime = 0;

 

    /** The number of ticks that the current item has been cooking for */

    public int furnaceCookTime = 0;

    private String field_94130_e;

 

    /**

    * Returns the number of slots in the inventory.

    */

    public int getSizeInventory()

    {

        return this.furnaceItemStacks.length;

    }

 

    /**

    * Returns the stack in slot i

    */

    public ItemStack getStackInSlot(int par1)

    {

        return this.furnaceItemStacks[par1];

    }

 

    /**

    * Removes from an inventory slot (first arg) up to a specified number (second arg) of items and returns them in a

    * new stack.

    */

    public ItemStack decrStackSize(int par1, int par2)

    {

        if (this.furnaceItemStacks[par1] != null)

        {

            ItemStack itemstack;

 

            if (this.furnaceItemStacks[par1].stackSize <= par2)

            {

                itemstack = this.furnaceItemStacks[par1];

                this.furnaceItemStacks[par1] = null;

                return itemstack;

            }

            else

            {

                itemstack = this.furnaceItemStacks[par1].splitStack(par2);

 

                if (this.furnaceItemStacks[par1].stackSize == 0)

                {

                    this.furnaceItemStacks[par1] = null;

                }

 

                return itemstack;

            }

        }

        else

        {

            return null;

        }

    }

 

    /**

    * When some containers are closed they call this on each slot, then drop whatever it returns as an EntityItem -

    * like when you close a workbench GUI.

    */

    public ItemStack getStackInSlotOnClosing(int par1)

    {

        if (this.furnaceItemStacks[par1] != null)

        {

            ItemStack itemstack = this.furnaceItemStacks[par1];

            this.furnaceItemStacks[par1] = null;

            return itemstack;

        }

        else

        {

            return null;

        }

    }

 

    /**

    * Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections).

    */

    public void setInventorySlotContents(int par1, ItemStack par2ItemStack)

    {

        this.furnaceItemStacks[par1] = par2ItemStack;

 

        if (par2ItemStack != null && par2ItemStack.stackSize > this.getInventoryStackLimit())

        {

            par2ItemStack.stackSize = this.getInventoryStackLimit();

        }

    }

 

    /**

    * Returns the name of the inventory.

    */

    public String getInvName()

    {

        return this.isInvNameLocalized() ? this.field_94130_e : "stonefurnace.container.stonefurnace";

    }

 

    /**

    * If this returns false, the inventory name will be used as an unlocalized name, and translated into the player's

    * language. Otherwise it will be used directly.

    */

    public boolean isInvNameLocalized()

    {

        return this.field_94130_e != null && this.field_94130_e.length() > 0;

    }

 

    public void func_94129_a(String par1Str)

    {

        this.field_94130_e = par1Str;

    }

 

    /**

    * Reads a tile entity from NBT.

    */

    public void readFromNBT(NBTTagCompound par1NBTTagCompound)

    {

        super.readFromNBT(par1NBTTagCompound);

        NBTTagList nbttaglist = par1NBTTagCompound.getTagList("Items");

        this.furnaceItemStacks = new ItemStack[this.getSizeInventory()];

 

        for (int i = 0; i < nbttaglist.tagCount(); ++i)

        {

            NBTTagCompound nbttagcompound1 = (NBTTagCompound)nbttaglist.tagAt(i);

            byte b0 = nbttagcompound1.getByte("Slot");

 

            if (b0 >= 0 && b0 < this.furnaceItemStacks.length)

            {

                this.furnaceItemStacks[b0] = ItemStack.loadItemStackFromNBT(nbttagcompound1);

            }

        }

 

        this.furnaceBurnTime = par1NBTTagCompound.getShort("BurnTime");

        this.furnaceCookTime = par1NBTTagCompound.getShort("CookTime");

        this.currentItemBurnTime = getItemBurnTime(this.furnaceItemStacks[1]);

 

        if (par1NBTTagCompound.hasKey("StoneFurnace"))

        {

            this.field_94130_e = par1NBTTagCompound.getString("Sto" +

            "neFurnace");

        }

    }

 

    /**

    * Writes a tile entity to NBT.

    */

    public void writeToNBT(NBTTagCompound par1NBTTagCompound)

    {

        super.writeToNBT(par1NBTTagCompound);

        par1NBTTagCompound.setShort("BurnTime", (short)this.furnaceBurnTime);

        par1NBTTagCompound.setShort("CookTime", (short)this.furnaceCookTime);

        NBTTagList nbttaglist = new NBTTagList();

 

        for (int i = 0; i < this.furnaceItemStacks.length; ++i)

        {

            if (this.furnaceItemStacks != null)

            {

                NBTTagCompound nbttagcompound1 = new NBTTagCompound();

                nbttagcompound1.setByte("Slot", (byte)i);

                this.furnaceItemStacks.writeToNBT(nbttagcompound1);

                nbttaglist.appendTag(nbttagcompound1);

            }

        }

 

        par1NBTTagCompound.setTag("Items", nbttaglist);

 

        if (this.isInvNameLocalized())

        {

            par1NBTTagCompound.setString("StoneFurnace", this.field_94130_e);

        }

    }

 

    /**

    * Returns the maximum stack size for a inventory slot. Seems to always be 64, possibly will be extended. *Isn't

    * this more of a set than a get?*

    */

    public int getInventoryStackLimit()

    {

        return 64;

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * Returns an integer between 0 and the passed value representing how close the current item is to being completely

    * cooked

    */

    public int getCookProgressScaled(int par1)

    {

        return this.furnaceCookTime * par1 / 200;

    }

 

    @SideOnly(Side.CLIENT)

 

    /**

    * Returns an integer between 0 and the passed value representing how much burn time is left on the current fuel

    * item, where 0 means that the item is exhausted and the passed value means that the item is fresh

    */

    public int getBurnTimeRemainingScaled(int par1)

    {

        if (this.currentItemBurnTime == 0)

        {

            this.currentItemBurnTime = 200;

        }

 

        return this.furnaceBurnTime * par1 / this.currentItemBurnTime;

    }

 

    /**

    * Returns true if the furnace is currently burning

    */

    public boolean isBurning()

    {

        return this.furnaceBurnTime > 0;

    }

 

    /**

    * Allows the entity to update its state. Overridden in most subclasses, e.g. the mob spawner uses this to count

    * ticks and creates a new spawn inside its implementation.

    */

    public void updateEntity()

    {

        boolean flag = this.furnaceBurnTime > 0;

        boolean flag1 = false;

 

        if (this.furnaceBurnTime > 0)

        {

            --this.furnaceBurnTime;

        }

 

        if (!this.worldObj.isRemote)

        {

            if (this.furnaceBurnTime == 0 && this.canSmelt())

            {

                this.currentItemBurnTime = this.furnaceBurnTime = getItemBurnTime(this.furnaceItemStacks[1]);

 

                if (this.furnaceBurnTime > 0)

                {

                    flag1 = true;

 

                    if (this.furnaceItemStacks[1] != null)

                    {

                        --this.furnaceItemStacks[1].stackSize;

 

                        if (this.furnaceItemStacks[1].stackSize == 0)

                        {

                            this.furnaceItemStacks[1] = this.furnaceItemStacks[1].getItem().getContainerItemStack(furnaceItemStacks[1]);

                        }

                    }

                }

            }

 

            if (this.isBurning() && this.canSmelt())

            {

                ++this.furnaceCookTime;

 

                if (this.furnaceCookTime == 200)

                {

                    this.furnaceCookTime = 0;

                    this.smeltItem();

                    flag1 = true;

                }

            }

            else

            {

                this.furnaceCookTime = 0;

            }

 

            if (flag != this.furnaceBurnTime > 0)

            {

                flag1 = true;

                BlockStoneFurnace.updateFurnaceBlockState(this.furnaceBurnTime > 0, this.worldObj, this.xCoord, this.yCoord, this.zCoord);

            }

        }

 

        if (flag1)

        {

            this.onInventoryChanged();

        }

    }

 

    /**

    * Returns true if the furnace can smelt an item, i.e. has a source item, destination stack isn't full, etc.

    */

    private boolean canSmelt()

    {

        if (this.furnaceItemStacks[0] == null)

        {

            return false;

        }

        else

        {

            ItemStack itemstack = FurnaceRecipes.smelting().getSmeltingResult(this.furnaceItemStacks[0]);

            if (itemstack == null) return false;

            if (this.furnaceItemStacks[2] == null) return true;

            if (!this.furnaceItemStacks[2].isItemEqual(itemstack)) return false;

            int result = furnaceItemStacks[2].stackSize + itemstack.stackSize;

            return (result <= getInventoryStackLimit() && result <= itemstack.getMaxStackSize());

        }

    }

 

    /**

    * 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 = FurnaceRecipes.smelting().getSmeltingResult(this.furnaceItemStacks[0]);

 

            if (this.furnaceItemStacks[2] == null)

            {

                this.furnaceItemStacks[2] = itemstack.copy();

            }

            else if (this.furnaceItemStacks[2].isItemEqual(itemstack))

            {

                furnaceItemStacks[2].stackSize += itemstack.stackSize;

            }

 

            --this.furnaceItemStacks[0].stackSize;

 

            if (this.furnaceItemStacks[0].stackSize <= 0)

            {

                this.furnaceItemStacks[0] = null;

            }

        }

    }

 

    /**

    * 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 par0ItemStack)

    {

        if (par0ItemStack == null)

        {

            return 0;

        }

        else

        {

            int i = par0ItemStack.getItem().itemID;

            Item item = par0ItemStack.getItem();

 

            if (par0ItemStack.getItem() instanceof ItemBlock && Block.blocksList != null)

            {

                Block block = Block.blocksList;

 

                if (block == Block.woodSingleSlab)

                {

                    return 150;

                }

 

                if (block.blockMaterial == Material.wood)

                {

                    return 300;

                }

            }

 

            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).getMaterialName().equals("WOOD")) return 200;

            if (i == Item.stick.itemID) return 100;

            if (i == Item.coal.itemID) return 1600;

            if (i == Item.bucketLava.itemID) return 20000;

            if (i == Block.sapling.blockID) return 100;

            if (i == Item.blazeRod.itemID) return 2400;

            return GameRegistry.getFuelValue(par0ItemStack);

        }

    }

 

    /**

    * Return true if item is a fuel source (getItemBurnTime() > 0).

    */

    public static boolean isItemFuel(ItemStack par0ItemStack)

    {

        return getItemBurnTime(par0ItemStack) > 0;

    }

 

    /**

    * Do not make give this method the name canInteractWith because it clashes with Container

    */

    public boolean isUseableByPlayer(EntityPlayer par1EntityPlayer)

    {

        return this.worldObj.getBlockTileEntity(this.xCoord, this.yCoord, this.zCoord) != this ? false : par1EntityPlayer.getDistanceSq((double)this.xCoord + 0.5D, (double)this.yCoord + 0.5D, (double)this.zCoord + 0.5D) <= 64.0D;

    }

 

    public void openChest() {}

 

    public void closeChest() {}

 

    /**

    * Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot.

    */

    public boolean isStackValidForSlot(int par1, ItemStack par2ItemStack)

    {

        return par1 == 2 ? false : (par1 == 1 ? isItemFuel(par2ItemStack) : true);

    }

 

    /**

    * Returns an array containing the indices of the slots that can be accessed by automation on the given side of this

    * block.

    */

    public int[] getAccessibleSlotsFromSide(int par1)

    {

        return par1 == 0 ? field_102011_e : (par1 == 1 ? field_102010_d : field_102009_f);

    }

 

    /**

    * Returns true if automation can insert the given item in the given slot from the given side. Args: Slot, item,

    * side

    */

    public boolean canInsertItem(int par1, ItemStack par2ItemStack, int par3)

    {

        return this.isStackValidForSlot(par1, par2ItemStack);

    }

 

    /**

    * Returns true if automation can extract the given item in the given slot from the given side. Args: Slot, item,

    * side

    */

    public boolean canExtractItem(int par1, ItemStack par2ItemStack, int par3)

    {

        return par3 != 0 || par1 != 1 || par2ItemStack.itemID == Item.bucketEmpty.itemID;

    }

 

    /***********************************************************************************

    * This function is here for compatibilities sake, Modders should Check for

    * Sided before ContainerWorldly, Vanilla Minecraft does not follow the sided standard

    * that Modding has for a while.

    *

    * In vanilla:

    *

    *  Top: Ores

    *  Sides: Fuel

    *  Bottom: Output

    *

    * Standard Modding:

    *  Top: Ores

    *  Sides: Output

    *  Bottom: Fuel

    *

    * The Modding one is designed after the GUI, the vanilla one is designed because its

    * intended use is for the hopper, which logically would take things in from the top.

    *

    * This will possibly be removed in future updates, and make vanilla the definitive

    * standard.

    */

 

    @Override

    public int getStartInventorySide(ForgeDirection side)

    {

        if (ForgeDummyContainer.legacyFurnaceSides)

        {

            if (side == ForgeDirection.DOWN) return 1;

            if (side == ForgeDirection.UP) return 0;

            return 2;

        }

        else

        {

            if (side == ForgeDirection.DOWN) return 2;

            if (side == ForgeDirection.UP) return 0;

            return 1;

        }

    }

 

    @Override

    public int getSizeInventorySide(ForgeDirection side)

    {

        return 1;

    }

 

@Override

public void onInventoryChanged() {

// TODO Auto-generated method stub

 

}

}

 

 

 

 

(ContainerBrickFurnace)

 

 

package mods.gamersmods.fuelresourceful.tileentity;

 

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.entity.player.InventoryPlayer;

import net.minecraft.inventory.Container;

import net.minecraft.inventory.ICrafting;

import net.minecraft.inventory.Slot;

import net.minecraft.inventory.SlotFurnace;

import net.minecraft.item.ItemStack;

 

public class ContainerBrickFurnace extends Container

{

private TileEntityBrickFurnace tileEntity;

private int lastCookTime = 0;

private int lastBurnTime = 0;

private int lastItemBurnTime = 0;

 

public ContainerBrickFurnace(InventoryPlayer playerInventory, TileEntityBrickFurnace tileEntity)

{

this.tileEntity = tileEntity;

 

// Input

addSlotToContainer(new Slot(tileEntity, 0, 56, 17));

 

// Fuel

addSlotToContainer(new Slot(tileEntity, 1, 56, 53));

 

// Output

addSlotToContainer(new SlotFurnace(playerInventory.player, tileEntity, 2, 116, 35));

 

bindPlayerInventory(playerInventory);

}

 

@Override

public void addCraftingToCrafters(ICrafting par1ICrafting)

{

super.addCraftingToCrafters(par1ICrafting);

        par1ICrafting.sendProgressBarUpdate(this, 0, this.tileEntity.furnaceCookTime);

        par1ICrafting.sendProgressBarUpdate(this, 1, this.tileEntity.furnaceBurnTime);

        par1ICrafting.sendProgressBarUpdate(this, 2, this.tileEntity.currentItemBurnTime);

}

 

@Override

public void detectAndSendChanges()

    {

        super.detectAndSendChanges();

 

        for (int i = 0; i < this.crafters.size(); ++i)

        {

            ICrafting icrafting = (ICrafting)this.crafters.get(i);

 

            if (this.lastCookTime != this.tileEntity.furnaceCookTime)

                icrafting.sendProgressBarUpdate(this, 0, this.tileEntity.furnaceCookTime);

 

            if (this.lastBurnTime != this.tileEntity.furnaceBurnTime)

                icrafting.sendProgressBarUpdate(this, 1, this.tileEntity.furnaceBurnTime);

 

            if (this.lastItemBurnTime != this.tileEntity.currentItemBurnTime)

                icrafting.sendProgressBarUpdate(this, 2, this.tileEntity.currentItemBurnTime);

        }

 

        this.lastCookTime = this.tileEntity.furnaceCookTime;

        this.lastBurnTime = this.tileEntity.furnaceBurnTime;

        this.lastItemBurnTime = this.tileEntity.currentItemBurnTime;

    }

 

@Override

public void updateProgressBar(int par1, int par2)

{

if (par1 == 0)

        {

            this.tileEntity.furnaceCookTime = par2;

        }

 

        if (par1 == 1)

        {

            this.tileEntity.furnaceBurnTime = par2;

        }

 

        if (par1 == 2)

        {

            this.tileEntity.currentItemBurnTime = par2;

        }

}

 

@Override

public boolean canInteractWith(EntityPlayer entityPlayer)

{

return tileEntity.isUseableByPlayer(entityPlayer);

}

 

private void bindPlayerInventory(InventoryPlayer playerInventory)

{

// Inventory

for(int y = 0; y < 3; y++)

for(int x = 0; x < 9; x++)

addSlotToContainer(new Slot(playerInventory, x + y * 9 + 9, 8 + x * 18, 84 + y * 18));

 

// Action Bar

for(int x = 0; x < 9; x++)

addSlotToContainer(new Slot(playerInventory, x, 8 + x * 18, 142));

}

 

@Override

public ItemStack transferStackInSlot(EntityPlayer player, int slot)

{

ItemStack stack = null;

Slot slotObject = (Slot)inventorySlots.get(slot);

 

if(slotObject != null && slotObject.getHasStack())

{

ItemStack stackInSlot = slotObject.getStack();

stack = stackInSlot.copy();

 

// Merges the item into the player inventory

if(slot < 3)

{

if(!this.mergeItemStack(stackInSlot, 3, 39, true))

return null;

}

else if(!this.mergeItemStack(stackInSlot, 0, 3, false))

return null;

 

if(stackInSlot.stackSize == 0)

slotObject.putStack(null);

else

slotObject.onSlotChanged();

 

if(stackInSlot.stackSize == stack.stackSize)

return null;

 

slotObject.onPickupFromSlot(player, stackInSlot);

}

 

return stack;

}

}

 

 

 

 

(ContainerStoneFurnace)

 

 

package mods.gamersmods.fuelresourceful.tileentity;

 

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.entity.player.InventoryPlayer;

import net.minecraft.inventory.Container;

import net.minecraft.inventory.ICrafting;

import net.minecraft.inventory.Slot;

import net.minecraft.inventory.SlotFurnace;

import net.minecraft.item.ItemStack;

 

public class ContainerStoneFurnace extends Container

{

private TileEntityStoneFurnace tileEntity;

private int lastCookTime = 0;

private int lastBurnTime = 0;

private int lastItemBurnTime = 0;

 

public ContainerStoneFurnace(InventoryPlayer playerInventory, TileEntityStoneFurnace tileEntity)

{

this.tileEntity = tileEntity;

 

// Input

addSlotToContainer(new Slot(tileEntity, 0, 56, 17));

 

// Fuel

addSlotToContainer(new Slot(tileEntity, 1, 56, 53));

 

// Output

addSlotToContainer(new SlotFurnace(playerInventory.player, tileEntity, 2, 116, 35));

 

bindPlayerInventory(playerInventory);

}

 

@Override

public void addCraftingToCrafters(ICrafting par1ICrafting)

{

super.addCraftingToCrafters(par1ICrafting);

        par1ICrafting.sendProgressBarUpdate(this, 0, this.tileEntity.furnaceCookTime);

        par1ICrafting.sendProgressBarUpdate(this, 1, this.tileEntity.furnaceBurnTime);

        par1ICrafting.sendProgressBarUpdate(this, 2, this.tileEntity.currentItemBurnTime);

}

 

@Override

public void detectAndSendChanges()

    {

        super.detectAndSendChanges();

 

        for (int i = 0; i < this.crafters.size(); ++i)

        {

            ICrafting icrafting = (ICrafting)this.crafters.get(i);

 

            if (this.lastCookTime != this.tileEntity.furnaceCookTime)

                icrafting.sendProgressBarUpdate(this, 0, this.tileEntity.furnaceCookTime);

 

            if (this.lastBurnTime != this.tileEntity.furnaceBurnTime)

                icrafting.sendProgressBarUpdate(this, 1, this.tileEntity.furnaceBurnTime);

 

            if (this.lastItemBurnTime != this.tileEntity.currentItemBurnTime)

                icrafting.sendProgressBarUpdate(this, 2, this.tileEntity.currentItemBurnTime);

        }

 

        this.lastCookTime = this.tileEntity.furnaceCookTime;

        this.lastBurnTime = this.tileEntity.furnaceBurnTime;

        this.lastItemBurnTime = this.tileEntity.currentItemBurnTime;

    }

 

@Override

public void updateProgressBar(int par1, int par2)

{

if (par1 == 0)

        {

            this.tileEntity.furnaceCookTime = par2;

        }

 

        if (par1 == 1)

        {

            this.tileEntity.furnaceBurnTime = par2;

        }

 

        if (par1 == 2)

        {

            this.tileEntity.currentItemBurnTime = par2;

        }

}

 

@Override

public boolean canInteractWith(EntityPlayer entityPlayer)

{

return tileEntity.isUseableByPlayer(entityPlayer);

}

 

private void bindPlayerInventory(InventoryPlayer playerInventory)

{

// Inventory

for(int y = 0; y < 3; y++)

for(int x = 0; x < 9; x++)

addSlotToContainer(new Slot(playerInventory, x + y * 9 + 9, 8 + x * 18, 84 + y * 18));

 

// Action Bar

for(int x = 0; x < 9; x++)

addSlotToContainer(new Slot(playerInventory, x, 8 + x * 18, 142));

}

 

@Override

public ItemStack transferStackInSlot(EntityPlayer player, int slot)

{

ItemStack stack = null;

Slot slotObject = (Slot)inventorySlots.get(slot);

 

if(slotObject != null && slotObject.getHasStack())

{

ItemStack stackInSlot = slotObject.getStack();

stack = stackInSlot.copy();

 

// Merges the item into the player inventory

if(slot < 3)

{

if(!this.mergeItemStack(stackInSlot, 3, 39, true))

return null;

}

else if(!this.mergeItemStack(stackInSlot, 0, 3, false))

return null;

 

if(stackInSlot.stackSize == 0)

slotObject.putStack(null);

else

slotObject.onSlotChanged();

 

if(stackInSlot.stackSize == stack.stackSize)

return null;

 

slotObject.onPickupFromSlot(player, stackInSlot);

}

 

return stack;

}

}

 

 

 

 

(GuiBrickFurnace)

 

 

package mods.gamersmods.fuelresourceful.client.gui;

 

import mods.gamersmods.fuelresourceful.tileentity.ContainerBrickFurnace;

import mods.gamersmods.fuelresourceful.tileentity.TileEntityBrickFurnace;

import net.minecraft.client.gui.inventory.GuiContainer;

import net.minecraft.entity.player.InventoryPlayer;

import net.minecraft.util.StatCollector;

 

import org.lwjgl.opengl.GL11;

 

public class GuiBrickFurnace extends GuiContainer

{

private TileEntityBrickFurnace tileEntity;

 

public GuiBrickFurnace(InventoryPlayer playerInventory, TileEntityBrickFurnace tileEntity)

{

super(new ContainerBrickFurnace(playerInventory, tileEntity));

 

this.tileEntity = tileEntity;

}

 

@Override

protected void drawGuiContainerForegroundLayer(int par1, int par2)

{

final String invTitle = "\u00A71Brick Furnace";

fontRenderer.drawString(invTitle, xSize / 2 - fontRenderer.getStringWidth(invTitle) / 2, 6, 4210752);

fontRenderer.drawString(StatCollector.translateToLocal("container.inventory"), 8, ySize - 96 + 2, 4210752);

}

 

@Override

protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)

{

GL11.glColor4f(1f, 1f, 1f, 1f);

 

mc.renderEngine.bindTexture("/mods/gamersmods/fuelresourceful/textures/gui/BrickFurnaceGui.png");

 

int x = (width - xSize) / 2;

int y = (height - ySize) / 2;

drawTexturedModalRect(x, y, 0, 0, xSize, ySize);

int i1;

 

if(tileEntity.isBurning())

{

i1 = tileEntity.getBurnTimeRemainingScaled(12);

drawTexturedModalRect(x + 56, y + 36 + 12 - i1, 176, 12 - i1, 14, i1 + 2);

}

 

i1 = tileEntity.getCookProgressScaled(24);

drawTexturedModalRect(x + 79, y + 34, 176, 14, i1 + 1, 16);

}

}

 

 

 

 

(GuiStoneFurnace)

 

 

package mods.gamersmods.fuelresourceful.client.gui;

 

import mods.gamersmods.fuelresourceful.tileentity.ContainerStoneFurnace;

import mods.gamersmods.fuelresourceful.tileentity.TileEntityStoneFurnace;

import net.minecraft.client.gui.inventory.GuiContainer;

import net.minecraft.entity.player.InventoryPlayer;

import net.minecraft.util.StatCollector;

 

import org.lwjgl.opengl.GL11;

 

public class GuiStoneFurnace extends GuiContainer

{

private TileEntityStoneFurnace tileEntity;

 

public GuiStoneFurnace(InventoryPlayer playerInventory, TileEntityStoneFurnace tileEntity)

{

super(new ContainerStoneFurnace(playerInventory, tileEntity));

 

this.tileEntity = tileEntity;

}

 

@Override

protected void drawGuiContainerForegroundLayer(int par1, int par2)

{

final String invTitle = "\u00A71Stone Furnace";

fontRenderer.drawString(invTitle, xSize / 2 - fontRenderer.getStringWidth(invTitle) / 2, 6, 4210752);

fontRenderer.drawString(StatCollector.translateToLocal("container.inventory"), 8, ySize - 96 + 2, 4210752);

}

 

@Override

protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)

{

GL11.glColor4f(1f, 1f, 1f, 1f);

 

mc.renderEngine.bindTexture("/mods/gamersmods/fuelresourceful/textures/gui/StoneFurnaceGui.png");

 

int x = (width - xSize) / 2;

int y = (height - ySize) / 2;

drawTexturedModalRect(x, y, 0, 0, xSize, ySize);

int i1;

 

if(tileEntity.isBurning())

{

i1 = tileEntity.getBurnTimeRemainingScaled(12);

drawTexturedModalRect(x + 56, y + 36 + 12 - i1, 176, 12 - i1, 14, i1 + 2);

}

 

i1 = tileEntity.getCookProgressScaled(24);

drawTexturedModalRect(x + 79, y + 34, 176, 14, i1 + 1, 16);

}

}

 

 

 

 

(Client Proxy)

 

 

package mods.gamersmods.fuelresourceful.client;

 

import mods.gamersmods.fuelresourceful.client.gui.GuiBrickFurnace;

import mods.gamersmods.fuelresourceful.client.gui.GuiStoneFurnace;

import mods.gamersmods.fuelresourceful.common.CommonProxy;

import mods.gamersmods.fuelresourceful.tileentity.TileEntityBrickFurnace;

import mods.gamersmods.fuelresourceful.tileentity.TileEntityStoneFurnace;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.world.World;

 

public class ClientProxy extends CommonProxy

{

@Override

public Object getClientGuiElement(int id, EntityPlayer player, World world, int x, int y, int z)

{

TileEntityBrickFurnace tileEntity = (TileEntityBrickFurnace)world.getBlockTileEntity(x, y, z);

TileEntityStoneFurnace tileEntity1 = (TileEntityStoneFurnace)world.getBlockTileEntity(x, y, z);

 

if(tileEntity != null)

{

return new GuiBrickFurnace(player.inventory, tileEntity);

}

else

{

if(tileEntity1 != null)

{

return new GuiStoneFurnace(player.inventory, tileEntity1);

}

}

 

return null;

}

}

 

 

 

 

(Common Proxy)

 

 

package mods.gamersmods.fuelresourceful.common;

 

import mods.gamersmods.fuelresourceful.client.gui.GuiBrickFurnace;

import mods.gamersmods.fuelresourceful.client.gui.GuiStoneFurnace;

import mods.gamersmods.fuelresourceful.tileentity.ContainerBrickFurnace;

import mods.gamersmods.fuelresourceful.tileentity.ContainerStoneFurnace;

import mods.gamersmods.fuelresourceful.tileentity.TileEntityBrickFurnace;

import mods.gamersmods.fuelresourceful.tileentity.TileEntityStoneFurnace;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.world.World;

import cpw.mods.fml.common.network.IGuiHandler;

import cpw.mods.fml.common.registry.GameRegistry;

 

public class CommonProxy implements IGuiHandler

{

public void registerTileEntities()

{

GameRegistry.registerTileEntity(TileEntityBrickFurnace.class, "tileEntityBrickFurnace");

GameRegistry.registerTileEntity(TileEntityStoneFurnace.class, "tileEntityStoneFurnace");

}

 

@Override

public Object getServerGuiElement(int guiID, EntityPlayer player, World world, int x, int y, int z)

{

TileEntityBrickFurnace tileEntity = (TileEntityBrickFurnace)world.getBlockTileEntity(x, y, z);

TileEntityStoneFurnace tileEntity1 = (TileEntityStoneFurnace)world.getBlockTileEntity(x, y, z);

 

if(tileEntity != null)

{

return new GuiBrickFurnace(player.inventory, tileEntity);

}

else

{

if(tileEntity1 != null)

{

return new GuiStoneFurnace(player.inventory, tileEntity1);

}

}

 

return null;

}

 

@Override

public Object getClientGuiElement(int guiID, EntityPlayer player, World world, int x, int y, int z)

{

return null;

}

}

 

 

 

Link to comment
Share on other sites

Not sure about your icon problem but your error comes from the CommonProxy.getServerGuiElement()

TileEntityBrickFurnace tileEntity = (TileEntityBrickFurnace)world.getBlockTileEntity(x, y, z);
TileEntityStoneFurnace tileEntity1 = (TileEntityStoneFurnace)world.getBlockTileEntity(x, y, z);

if(tileEntity != null) {
...
}

 

This is not a valid way to check an object type. Use instanceof instead.

 

TileEntity tileEntity = world.getBlockTileEntity(x, y, z);
if (tileEntity instanceof TileEntityBrickFurnace) {

    ((TileEntityBrickFurnace) tileEntity).doSomething();
    ...
}
else if (tileEntity instanceof TileEntityStoneFurnace) {
    ...
}

Link to comment
Share on other sites

I did what you said and changed the code in the commonproxy and client proxy to this

 

 

 

TileEntity tileEntity = world.getBlockTileEntity(x, y, z);

if (tileEntity instanceof TileEntityBrickFurnace) {

TileEntityBrickFurnace furnace = (TileEntityBrickFurnace)tileEntity;

return new GuiBrickFurnace(player.inventory, furnace);

}

else if (tileEntity instanceof TileEntityStoneFurnace) {

TileEntityStoneFurnace furnace = (TileEntityStoneFurnace)tileEntity;

return new GuiStoneFurnace(player.inventory, furnace);

}

 

 

 

 

And now i'm getting this error

 

 

 

Caused by: java.lang.ClassCastException: mods.gamersmods.fuelresourceful.client.gui.GuiStoneFurnace cannot be cast to net.minecraft.inventory.Container

 

 

Link to comment
Share on other sites

What I need to so is make it look at the front of the block in the players inventory not the back of it.

 

3DVpgBc.png

 

these block look like normal stone and bricks because its showing the back of the block instead of the front of the furnace

Link to comment
Share on other sites

Hey dude sorry for the trouble but when I added the third furnace I got this error and forgot how to fix it.

 

 

java.lang.IllegalArgumentException: Slot 1002 is already occupied by mods.gamersmods.fuelresourceful.block.BlockStoneBrickFurnace@77fe2c5b when adding mods.gamersmods.fuelresourceful.block.BlockBrickFurnace@501247e8

 

 

I know what the error is like I said, but forget how to fix it.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.