public interface Storage
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clears the chest, i.e. removes all items.
|
int |
getHashCode()
Gets a hashcode of this chest.
|
int |
getID()
Gets the global, unique ID of this chest.
|
Item |
getItem(int slot)
Gets the item from the specified slot.
|
Item[] |
getItems()
Gets an array containing all items that are currently in the chest.
|
int |
getSlotCount()
Gets the amount of slots the chest has.
|
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)
to the chest (into the next free slot).
|
Item |
insertNewClothingItem(short clothingID,
int variation,
int color1,
int color2,
int color3,
int slot)
Creates and inserts a new "clothes" item (which repreasents a piece of clothes)
to the chest (into the particular slot).
|
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)
Creates and inserts a new custom item (which was declared and registered previously)
into the particular slot in the chest.
|
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)
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 free slot.
|
Item |
insertNewObjectItem(short objectID,
int variation,
int stacksize,
int slot)
Creates and inserts a new "objectkit" item into the particular slot.
|
void |
removeItem(int slot)
Removes an item from a particular slot in the chest.
|
void |
removeItem(int slot,
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 chest.
|
int |
removeItem(short itemID,
int variation,
int amount)
Removes the next item with the given type id and variation from the chest
(more precisely, the stack size of the item is reduced by the provided amount).
|
void |
setSlotCount(int slots)
Overrides the amount of slots the chest has.
|
int getID()
int getHashCode()
int getSlotCount()
void setSlotCount(int slots)
slots
- the new slot count. Must be greater than 0 and less or equal
than 480 (10 "pages"). Every chest "page" has 48 slots.Item[] getItems()
Item getItem(int slot)
slot
- the slot.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.Item insertNewItem(short itemID, int variation, int stacksize, int slot)
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.slot
- the target slot where you want to insert the item.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)
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.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)
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.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)
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 item.void removeItem(int slot)
slot
- the target slot you want to remove the item from.void removeItem(int slot, int amount)
slot
- the target slot in the chest you want to remove the item from.amount
- the amount you want to remove.int removeItem(short itemID, int variation, int amount)
itemID
- the item type id.variation
- the item variation (e.g. block texture), usually 0.amount
- the amount you want to remove. Set -1 to remove all items of
this type.void clear()