Package net.minecraft.tileentity
Class TileEntityFurnace
- java.lang.Object
-
- net.minecraft.tileentity.TileEntity
-
- net.minecraft.tileentity.TileEntityLockable
-
- net.minecraft.tileentity.TileEntityFurnace
-
- All Implemented Interfaces:
IInventory,ISidedInventory,ITickable,IInteractionObject,ILockableContainer,IWorldNameable
public class TileEntityFurnace extends TileEntityLockable implements ITickable, ISidedInventory
+ This portion of EaglercraftX contains deobfuscated Minecraft 1.8 source code. Minecraft 1.8.8 bytecode is (c) 2015 Mojang AB. "Do not distribute!" Mod Coder Pack v9.18 deobfuscation configs are (c) Copyright by the MCP Team EaglercraftX 1.8 patch files are (c) 2022-2023 LAX1DUDE. All Rights Reserved. WITH THE EXCEPTION OF PATCH FILES, MINIFIED JAVASCRIPT, AND ALL FILES NORMALLY FOUND IN AN UNMODIFIED MINECRAFT RESOURCE PACK, YOU ARE NOT ALLOWED TO SHARE, DISTRIBUTE, OR REPURPOSE ANY FILE USED BY OR PRODUCED BY THE SOFTWARE IN THIS REPOSITORY WITHOUT PRIOR PERMISSION FROM THE PROJECT AUTHOR. NOT FOR COMMERCIAL OR MALICIOUS USE (please read the 'LICENSE' file this repo's root directory for more info)
-
-
Field Summary
-
Fields inherited from class net.minecraft.tileentity.TileEntity
blockType, pos, tileEntityInvalid, worldObj
-
-
Constructor Summary
Constructors Constructor Description TileEntityFurnace()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanExtractItem(int i, ItemStack itemstack, EnumFacing enumfacing)+ Returns true if automation can extract the given item in the given slot from the given side.booleancanInsertItem(int i, ItemStack itemstack, EnumFacing var3)+ Returns true if automation can insert the given item in the given slot from the given side.voidclear()voidcloseInventory(EntityPlayer var1)ContainercreateContainer(InventoryPlayer inventoryplayer, EntityPlayer var2)ItemStackdecrStackSize(int i, int j)+ Removes up to a specified number of items from an inventory slot and returns them in a new stack.intgetCookTime(ItemStack stack)intgetField(int i)intgetFieldCount()java.lang.StringgetGuiID()intgetInventoryStackLimit()+ Returns the maximum stack size for a inventory slot.static intgetItemBurnTime(ItemStack parItemStack)+ Returns the number of ticks that the supplied fuel item will keep the furnace burning, or 0 if the item isn't fueljava.lang.StringgetName()+ Gets the name of this command sender (usually username, but possibly "Rcon")intgetSizeInventory()+ Returns the number of slots in the inventory.int[]getSlotsForFace(EnumFacing enumfacing)ItemStackgetStackInSlot(int i)+ Returns the stack in the given slot.booleanhasCustomName()+ Returns true if this thing is namedbooleanisBurning()+ Furnace isBurningstatic booleanisBurning(IInventory parIInventory)+ Furnace isBurningstatic booleanisItemFuel(ItemStack parItemStack)booleanisItemValidForSlot(int i, ItemStack itemstack)+ Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot.booleanisUseableByPlayer(EntityPlayer entityplayer)+ Do not make give this method the name canInteractWith because it clashes with ContainervoidopenInventory(EntityPlayer var1)voidreadFromNBT(NBTTagCompound nbttagcompound)ItemStackremoveStackFromSlot(int i)+ Removes a stack from the given slot and returns it.voidsetCustomInventoryName(java.lang.String parString1)voidsetField(int i, int j)voidsetInventorySlotContents(int i, ItemStack itemstack)+ Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections).voidsmeltItem()+ Turn one item from the furnace source stack into the appropriate smelted item in the furnace result stackvoidupdate()+ Like the old updateEntity(), except more generic.voidwriteToNBT(NBTTagCompound nbttagcompound)-
Methods inherited from class net.minecraft.tileentity.TileEntityLockable
getDisplayName, getLockCode, isLocked, setLockCode
-
Methods inherited from class net.minecraft.tileentity.TileEntity
addInfoToCrashReport, createAndLoadEntity, func_183000_F, getBlockMetadata, getBlockType, getDescriptionPacket, getDistanceSq, getMaxRenderDistanceSquared, getPos, getWorld, hasWorldObj, invalidate, isInvalid, markDirty, receiveClientEvent, setPos, setWorldObj, updateContainingBlockInfo, validate
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.minecraft.inventory.IInventory
markDirty
-
Methods inherited from interface net.minecraft.world.IWorldNameable
getDisplayName
-
-
-
-
Method Detail
-
getSizeInventory
public int getSizeInventory()
+ Returns the number of slots in the inventory.- Specified by:
getSizeInventoryin interfaceIInventory
-
getStackInSlot
public ItemStack getStackInSlot(int i)
+ Returns the stack in the given slot.- Specified by:
getStackInSlotin interfaceIInventory
-
decrStackSize
public ItemStack decrStackSize(int i, int j)
+ Removes up to a specified number of items from an inventory slot and returns them in a new stack.- Specified by:
decrStackSizein interfaceIInventory
-
removeStackFromSlot
public ItemStack removeStackFromSlot(int i)
+ Removes a stack from the given slot and returns it.- Specified by:
removeStackFromSlotin interfaceIInventory
-
setInventorySlotContents
public void setInventorySlotContents(int i, ItemStack itemstack)+ Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections).- Specified by:
setInventorySlotContentsin interfaceIInventory
-
getName
public java.lang.String getName()
+ Gets the name of this command sender (usually username, but possibly "Rcon")- Specified by:
getNamein interfaceIWorldNameable
-
hasCustomName
public boolean hasCustomName()
+ Returns true if this thing is named- Specified by:
hasCustomNamein interfaceIWorldNameable
-
setCustomInventoryName
public void setCustomInventoryName(java.lang.String parString1)
-
readFromNBT
public void readFromNBT(NBTTagCompound nbttagcompound)
- Overrides:
readFromNBTin classTileEntityLockable
-
writeToNBT
public void writeToNBT(NBTTagCompound nbttagcompound)
- Overrides:
writeToNBTin classTileEntityLockable
-
getInventoryStackLimit
public int getInventoryStackLimit()
+ Returns the maximum stack size for a inventory slot. Seems to always be 64, possibly will be extended.- Specified by:
getInventoryStackLimitin interfaceIInventory
-
isBurning
public boolean isBurning()
+ Furnace isBurning
-
isBurning
public static boolean isBurning(IInventory parIInventory)
+ Furnace isBurning
-
update
public void update()
+ Like the old updateEntity(), except more generic.
-
getCookTime
public int getCookTime(ItemStack stack)
-
smeltItem
public void smeltItem()
+ Turn one item from the furnace source stack into the appropriate smelted item in the furnace result stack
-
getItemBurnTime
public static int getItemBurnTime(ItemStack parItemStack)
+ Returns the number of ticks that the supplied fuel item will keep the furnace burning, or 0 if the item isn't fuel
-
isItemFuel
public static boolean isItemFuel(ItemStack parItemStack)
-
isUseableByPlayer
public boolean isUseableByPlayer(EntityPlayer entityplayer)
+ Do not make give this method the name canInteractWith because it clashes with Container- Specified by:
isUseableByPlayerin interfaceIInventory
-
openInventory
public void openInventory(EntityPlayer var1)
- Specified by:
openInventoryin interfaceIInventory
-
closeInventory
public void closeInventory(EntityPlayer var1)
- Specified by:
closeInventoryin interfaceIInventory
-
isItemValidForSlot
public boolean isItemValidForSlot(int i, ItemStack itemstack)+ Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot.- Specified by:
isItemValidForSlotin interfaceIInventory
-
getSlotsForFace
public int[] getSlotsForFace(EnumFacing enumfacing)
- Specified by:
getSlotsForFacein interfaceISidedInventory
-
canInsertItem
public boolean canInsertItem(int i, ItemStack itemstack, EnumFacing var3)+ Returns true if automation can insert the given item in the given slot from the given side. Args: slot, item, side- Specified by:
canInsertItemin interfaceISidedInventory
-
canExtractItem
public boolean canExtractItem(int i, ItemStack itemstack, EnumFacing enumfacing)+ Returns true if automation can extract the given item in the given slot from the given side. Args: slot, item, side- Specified by:
canExtractItemin interfaceISidedInventory
-
getGuiID
public java.lang.String getGuiID()
- Specified by:
getGuiIDin interfaceIInteractionObject
-
createContainer
public Container createContainer(InventoryPlayer inventoryplayer, EntityPlayer var2)
- Specified by:
createContainerin interfaceIInteractionObject
-
getField
public int getField(int i)
- Specified by:
getFieldin interfaceIInventory
-
setField
public void setField(int i, int j)- Specified by:
setFieldin interfaceIInventory
-
getFieldCount
public int getFieldCount()
- Specified by:
getFieldCountin interfaceIInventory
-
clear
public void clear()
- Specified by:
clearin interfaceIInventory
-
-