public interface Inventory
Modifier and Type | Interface and Description |
---|---|
static class |
Inventory.SlotType
Determines the "inventory type" or "slot type", i.e. the category in the
inventory (regular inventory items, hotbar, equipment etc.)
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clears the inventory, i.e. removes all items.
|
Item[] |
getAllItems()
Gets an array containing all items in this inventory.
|
int |
getInventoryHashCode()
Gets a hashcode of this inventory.
|
Item |
getItem(int slot,
Inventory.SlotType slotType)
Gets the item from the specified slot and inventory type.
|
Item[] |
getItems(Inventory.SlotType slotType)
Gets an array containing all items that are currently in the particular
inventory type.
|
int |
getOwnerID()
Gets the ID of the according owner.
|
int |
getPlayerDbID()
Deprecated.
Inventories are no longer used exclusively for players. Instead
they're also used by some npcs. Use
getOwnerID() instead! |
byte |
getQuickslotFocus()
Gets the current quickslot (hotbar) focus (i.e. the currently equipped item).
|
int |
getSlotCount(Inventory.SlotType slotType)
Gets the amount of slots the particular inventory/slot type has.
|
Item |
insertNewClothingItem(short clothingID,
int variation) |
Item |
insertNewClothingItem(short clothingID,
int variation,
int color1,
int color2,
int color3)
Creates and inserts a new "clothes" item (which repreasents a piece of clothes)
into the next slot that is available.
|
Item |
insertNewClothingItem(short clothingID,
int variation,
int color1,
int color2,
int color3,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new "clothes" item (which repreasents a piece of clothes)
to the inventory.
|
Item |
insertNewCustomItem(java.lang.String uuid,
int variation,
int stacksize)
Creates and inserts a new custom item (which was declared and registered previously).
|
Item |
insertNewCustomItem(java.lang.String uuid,
int variation,
int stacksize,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new custom item (which was declared and registered previously)
into the particular slot in the inventory.
|
Item |
insertNewItem(short itemID,
int variation,
int stacksize)
Creates and inserts a new item into the next slot that is available.
|
Item |
insertNewItem(short itemID,
int variation,
int stacksize,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new item into the particular slot.
|
Item |
insertNewObjectItem(short objectID,
int variation,
int stacksize)
Creates and inserts a new "objectkit" item into the next slot that is available.
|
Item |
insertNewObjectItem(short objectID,
int variation,
int stacksize,
int slot,
Inventory.SlotType slotType)
Creates and inserts a new "objectkit" item into the particular slot.
|
void |
removeItem(int slot,
Inventory.SlotType slotType)
Removes an item from a particular slot in the inventory.
|
void |
removeItem(int slot,
Inventory.SlotType slotType,
int amount)
Removes an item (or more precisely, reduces the stack size of the item by
the provided amount) from a particular slot in the inventory.
|
int getPlayerDbID()
getOwnerID()
instead!int getOwnerID()
byte getQuickslotFocus()
int getInventoryHashCode()
int getSlotCount(Inventory.SlotType slotType)
slotType
- the slot type.Item[] getItems(Inventory.SlotType slotType)
slotType
- the inventory/slot type (i.e. the category) you want to get
the items from.Item[] getAllItems()
Item getItem(int slot, Inventory.SlotType slotType)
slot
- the slot.slotType
- the slot / inventory type.Item insertNewItem(short itemID, int variation, int stacksize)
itemID
- the item type ID.variation
- the variation/texture of the item (only relevant for blocks etc).
Usually the variation for most regular items is 0.stacksize
- the stack size, i.e. the amount of items. This value cannot
be higher than the max stack size for an invidivual item.Item insertNewItem(short itemID, int variation, int stacksize, int slot, Inventory.SlotType slotType)
itemID
- the item type ID.variation
- the variation/texture of the item (only relevant for blocks etc).
Typically the the variation for most items is 0.stacksize
- the stack size, i.e. the amount of items. This value cannot
be higher than the max stack size for an invidivual item.slot
- the target slot where you want to insert the item.slotType
- the target slot type.Item insertNewObjectItem(short objectID, int variation, int stacksize)
objectID
- the object type ID.variation
- the object variation (texture). By default 0stacksize
- the stack size, i.e. the amount of items. This value cannot
be higher than the max stack size for an invidivual item.Item insertNewObjectItem(short objectID, int variation, int stacksize, int slot, Inventory.SlotType slotType)
objectID
- the object type ID.variation
- the object variation (texture). By default 0stacksize
- the stack size, i.e. the amount of items. This value cannot
be higher than the max stack size for an invidivual item.slot
- the target slot where you want to insert the object item.slotType
- the target slot type.Item insertNewClothingItem(short clothingID, int variation)
Item insertNewClothingItem(short clothingID, int variation, int color1, int color2, int color3)
clothingID
- the clothing type ID.variation
- currently not used, set to 0.color1
- currently not used, set to 0xFFFFFFcolor2
- currently not used, set to 0xFFFFFFcolor3
- currently not used, set to 0xFFFFFFItem insertNewClothingItem(short clothingID, int variation, int color1, int color2, int color3, int slot, Inventory.SlotType slotType)
clothingID
- the clothing type ID.variation
- currently not used, set to 0.color1
- currently not used, set to 0xFFFFFFcolor2
- currently not used, set to 0xFFFFFFcolor3
- currently not used, set to 0xFFFFFFslot
- the target slot where you want to insert the item.slotType
- the target slot type.Item insertNewCustomItem(java.lang.String uuid, int variation, int stacksize)
uuid
- the custom item UUID (see CustomItem.getUUID()
)variation
- the (optional) item variation. Default is 0.stacksize
- the amount of items you want to insert. This value cannot
be higher than the max stack size that was defined for the custom item.Item insertNewCustomItem(java.lang.String uuid, int variation, int stacksize, int slot, Inventory.SlotType slotType)
uuid
- the custom item UUID (see CustomItem.getUUID()
)variation
- the (optional) item variation. Default is 0.stacksize
- the amount of items you want to insert. This value cannot
be higher than the max stack size that was defined for the custom item.slot
- the target slot where you want to insert the custom item.slotType
- the target slot type.void removeItem(int slot, Inventory.SlotType slotType)
slot
- the target slot you want to remove the item from.slotType
- the target slot / inventory type.void removeItem(int slot, Inventory.SlotType slotType, int amount)
slot
- the target slot you want to remove the item from.slotType
- the target slot / inventory type.amount
- the amount you want to remove.void clear()