3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #ifndef INVENTORY_HEADER
21 #define INVENTORY_HEADER
27 #include "irrlichttypes_bloated.h"
31 struct ToolCapabilities;
35 ItemStack(): name(""), count(0), wear(0), metadata("") {}
36 ItemStack(std::string name_, u16 count_,
37 u16 wear, std::string metadata_,
38 IItemDefManager *itemdef);
42 void serialize(std::ostream &os) const;
43 void deSerialize(std::istream &is, IItemDefManager *itemdef);
44 void deSerialize(const std::string &s, IItemDefManager *itemdef);
46 // Returns the string used for inventory
47 std::string getItemString() const;
76 clear(); // reset name, wear and metadata too
79 // Maximum size of a stack
80 u16 getStackMax(IItemDefManager *itemdef) const
82 s16 max = itemdef->get(name).stack_max;
83 return (max >= 0) ? max : 0;
86 // Number of items that can be added to this stack
87 u16 freeSpace(IItemDefManager *itemdef) const
89 u16 max = getStackMax(itemdef);
95 // Returns false if item is not known and cannot be used
96 bool isKnown(IItemDefManager *itemdef) const
98 return itemdef->isKnown(name);
101 // Returns a pointer to the item definition struct,
102 // or a fallback one (name="unknown") if the item is unknown.
103 const ItemDefinition& getDefinition(
104 IItemDefManager *itemdef) const
106 return itemdef->get(name);
109 // Get tool digging properties, or those of the hand if not a tool
110 const ToolCapabilities& getToolCapabilities(
111 IItemDefManager *itemdef) const
113 ToolCapabilities *cap;
114 cap = itemdef->get(name).tool_capabilities;
116 cap = itemdef->get("").tool_capabilities;
121 // Wear out (only tools)
122 // Returns true if the item is (was) a tool
123 bool addWear(s32 amount, IItemDefManager *itemdef)
125 if(getDefinition(itemdef).type == ITEM_TOOL)
127 if(amount > 65535 - wear)
129 else if(amount < -wear)
141 // If possible, adds newitem to this item.
142 // If cannot be added at all, returns the item back.
143 // If can be added partly, decremented item is returned back.
144 // If can be added fully, empty item is returned.
145 ItemStack addItem(const ItemStack &newitem,
146 IItemDefManager *itemdef);
148 // Checks whether newitem could be added.
149 // If restitem is non-NULL, it receives the part of newitem that
150 // would be left over after adding.
151 bool itemFits(const ItemStack &newitem,
152 ItemStack *restitem, // may be NULL
153 IItemDefManager *itemdef) const;
156 // If there are not enough, takes as many as it can.
157 // Returns empty item if couldn't take any.
158 ItemStack takeItem(u32 takecount);
160 // Similar to takeItem, but keeps this ItemStack intact.
161 ItemStack peekItem(u32 peekcount) const;
169 std::string metadata;
175 InventoryList(std::string name, u32 size, IItemDefManager *itemdef);
178 void setSize(u32 newsize);
179 void setWidth(u32 newWidth);
180 void setName(const std::string &name);
181 void serialize(std::ostream &os) const;
182 void deSerialize(std::istream &is);
184 InventoryList(const InventoryList &other);
185 InventoryList & operator = (const InventoryList &other);
187 const std::string &getName() const;
189 u32 getWidth() const;
191 u32 getUsedSlots() const;
192 u32 getFreeSlots() const;
194 // Get reference to item
195 const ItemStack& getItem(u32 i) const;
196 ItemStack& getItem(u32 i);
197 // Returns old item. Parameter can be an empty item.
198 ItemStack changeItem(u32 i, const ItemStack &newitem);
200 void deleteItem(u32 i);
202 // Adds an item to a suitable place. Returns leftover item (possibly empty).
203 ItemStack addItem(const ItemStack &newitem);
205 // If possible, adds item to given slot.
206 // If cannot be added at all, returns the item back.
207 // If can be added partly, decremented item is returned back.
208 // If can be added fully, empty item is returned.
209 ItemStack addItem(u32 i, const ItemStack &newitem);
211 // Checks whether the item could be added to the given slot
212 // If restitem is non-NULL, it receives the part of newitem that
213 // would be left over after adding.
214 bool itemFits(const u32 i, const ItemStack &newitem,
215 ItemStack *restitem = NULL) const;
217 // Checks whether there is room for a given item
218 bool roomForItem(const ItemStack &item) const;
220 // Checks whether the given count of the given item name
221 // exists in this inventory list.
222 bool containsItem(const ItemStack &item) const;
224 // Removes the given count of the given item name from
225 // this inventory list. Walks the list in reverse order.
226 // If not as many items exist as requested, removes as
228 // Returns the items that were actually removed.
229 ItemStack removeItem(const ItemStack &item);
231 // Takes some items from a slot.
232 // If there are not enough, takes as many as it can.
233 // Returns empty item if couldn't take any.
234 ItemStack takeItem(u32 i, u32 takecount);
236 // Similar to takeItem, but keeps the slot intact.
237 ItemStack peekItem(u32 i, u32 peekcount) const;
239 // Move an item to a different list (or a different stack in the same list)
240 // count is the maximum number of items to move (0 for everything)
241 void moveItem(u32 i, InventoryList *dest, u32 dest_i, u32 count = 0);
244 std::vector<ItemStack> m_items;
247 IItemDefManager *m_itemdef;
256 void clearContents();
258 Inventory(IItemDefManager *itemdef);
259 Inventory(const Inventory &other);
260 Inventory & operator = (const Inventory &other);
262 void serialize(std::ostream &os) const;
263 void deSerialize(std::istream &is);
265 InventoryList * addList(const std::string &name, u32 size);
266 InventoryList * getList(const std::string &name);
267 const InventoryList * getList(const std::string &name) const;
268 std::vector<const InventoryList*> getLists();
269 bool deleteList(const std::string &name);
270 // A shorthand for adding items. Returns leftover item (possibly empty).
271 ItemStack addItem(const std::string &listname, const ItemStack &newitem)
273 InventoryList *list = getList(listname);
276 return list->addItem(newitem);
281 const s32 getListIndex(const std::string &name) const;
283 std::vector<InventoryList*> m_lists;
284 IItemDefManager *m_itemdef;