Package net.minecraft.inventory
Class InventoryLargeChest
- java.lang.Object
-
- net.minecraft.inventory.InventoryLargeChest
-
- All Implemented Interfaces:
IInventory
,IInteractionObject
,ILockableContainer
,IWorldNameable
public class InventoryLargeChest extends java.lang.Object implements ILockableContainer
+ 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)
-
-
Constructor Summary
Constructors Constructor Description InventoryLargeChest(java.lang.String nameIn, ILockableContainer upperChestIn, ILockableContainer lowerChestIn)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
void
closeInventory(EntityPlayer entityplayer)
Container
createContainer(InventoryPlayer inventoryplayer, EntityPlayer entityplayer)
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.IChatComponent
getDisplayName()
+ Get the formatted ChatComponent that will be used for the sender's username in chatint
getField(int var1)
int
getFieldCount()
java.lang.String
getGuiID()
int
getInventoryStackLimit()
+ Returns the maximum stack size for a inventory slot.LockCode
getLockCode()
java.lang.String
getName()
+ Gets the name of this command sender (usually username, but possibly "Rcon")int
getSizeInventory()
+ Returns the number of slots in the inventory.ItemStack
getStackInSlot(int i)
+ Returns the stack in the given slot.boolean
hasCustomName()
+ Returns true if this thing is namedboolean
isItemValidForSlot(int var1, ItemStack var2)
+ Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot.boolean
isLocked()
boolean
isPartOfLargeChest(IInventory inventoryIn)
+ Return whether the given inventory is part of this large chest.boolean
isUseableByPlayer(EntityPlayer entityplayer)
+ Do not make give this method the name canInteractWith because it clashes with Containervoid
markDirty()
+ For tile entities, ensures the chunk containing the tile entity is saved to disk later - the game won't think it hasn't changed and skip it.void
openInventory(EntityPlayer entityplayer)
ItemStack
removeStackFromSlot(int i)
+ Removes a stack from the given slot and returns it.void
setField(int var1, int var2)
void
setInventorySlotContents(int i, ItemStack itemstack)
+ Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections).void
setLockCode(LockCode lockcode)
-
-
-
Constructor Detail
-
InventoryLargeChest
public InventoryLargeChest(java.lang.String nameIn, ILockableContainer upperChestIn, ILockableContainer lowerChestIn)
-
-
Method Detail
-
getSizeInventory
public int getSizeInventory()
+ Returns the number of slots in the inventory.- Specified by:
getSizeInventory
in interfaceIInventory
-
isPartOfLargeChest
public boolean isPartOfLargeChest(IInventory inventoryIn)
+ Return whether the given inventory is part of this large chest.
-
getName
public java.lang.String getName()
+ Gets the name of this command sender (usually username, but possibly "Rcon")- Specified by:
getName
in interfaceIWorldNameable
-
hasCustomName
public boolean hasCustomName()
+ Returns true if this thing is named- Specified by:
hasCustomName
in interfaceIWorldNameable
-
getDisplayName
public IChatComponent getDisplayName()
+ Get the formatted ChatComponent that will be used for the sender's username in chat- Specified by:
getDisplayName
in interfaceIWorldNameable
-
getStackInSlot
public ItemStack getStackInSlot(int i)
+ Returns the stack in the given slot.- Specified by:
getStackInSlot
in 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:
decrStackSize
in interfaceIInventory
-
removeStackFromSlot
public ItemStack removeStackFromSlot(int i)
+ Removes a stack from the given slot and returns it.- Specified by:
removeStackFromSlot
in 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:
setInventorySlotContents
in interfaceIInventory
-
getInventoryStackLimit
public int getInventoryStackLimit()
+ Returns the maximum stack size for a inventory slot. Seems to always be 64, possibly will be extended.- Specified by:
getInventoryStackLimit
in interfaceIInventory
-
markDirty
public void markDirty()
+ For tile entities, ensures the chunk containing the tile entity is saved to disk later - the game won't think it hasn't changed and skip it.- Specified by:
markDirty
in interfaceIInventory
-
isUseableByPlayer
public boolean isUseableByPlayer(EntityPlayer entityplayer)
+ Do not make give this method the name canInteractWith because it clashes with Container- Specified by:
isUseableByPlayer
in interfaceIInventory
-
openInventory
public void openInventory(EntityPlayer entityplayer)
- Specified by:
openInventory
in interfaceIInventory
-
closeInventory
public void closeInventory(EntityPlayer entityplayer)
- Specified by:
closeInventory
in interfaceIInventory
-
isItemValidForSlot
public boolean isItemValidForSlot(int var1, ItemStack var2)
+ Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot.- Specified by:
isItemValidForSlot
in interfaceIInventory
-
getField
public int getField(int var1)
- Specified by:
getField
in interfaceIInventory
-
setField
public void setField(int var1, int var2)
- Specified by:
setField
in interfaceIInventory
-
getFieldCount
public int getFieldCount()
- Specified by:
getFieldCount
in interfaceIInventory
-
isLocked
public boolean isLocked()
- Specified by:
isLocked
in interfaceILockableContainer
-
setLockCode
public void setLockCode(LockCode lockcode)
- Specified by:
setLockCode
in interfaceILockableContainer
-
getLockCode
public LockCode getLockCode()
- Specified by:
getLockCode
in interfaceILockableContainer
-
getGuiID
public java.lang.String getGuiID()
- Specified by:
getGuiID
in interfaceIInteractionObject
-
createContainer
public Container createContainer(InventoryPlayer inventoryplayer, EntityPlayer entityplayer)
- Specified by:
createContainer
in interfaceIInteractionObject
-
clear
public void clear()
- Specified by:
clear
in interfaceIInventory
-
-