d37761cfedfc3906eaf4fcef49a693b3acc10f15
[oweals/minetest.git] / src / inventory.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
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 General Public License for more details.
14
15 You should have received a copy of the GNU 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.
18 */
19
20 /*
21 (c) 2010 Perttu Ahola <celeron55@gmail.com>
22 */
23
24 #ifndef INVENTORY_HEADER
25 #define INVENTORY_HEADER
26
27 #include <iostream>
28 #include <sstream>
29 #include <string>
30 #include "common_irrlicht.h"
31 #include "debug.h"
32 #include "mapblockobject.h"
33 // For g_materials
34 #include "main.h"
35
36 class InventoryItem
37 {
38 public:
39         InventoryItem();
40         virtual ~InventoryItem();
41         
42         static InventoryItem* deSerialize(std::istream &is);
43         
44         virtual const char* getName() const = 0;
45         // Shall write the name and the parameters
46         virtual void serialize(std::ostream &os) = 0;
47         // Shall make an exact clone of the item
48         virtual InventoryItem* clone() = 0;
49 #ifndef SERVER
50         // Shall return an image to show in the GUI (or NULL)
51         virtual video::ITexture * getImage() { return NULL; }
52 #endif
53         // Shall return a text to show in the GUI
54         virtual std::string getText() { return ""; }
55
56 private:
57 };
58
59 #define MATERIAL_ITEM_MAX_COUNT 99
60
61 class MaterialItem : public InventoryItem
62 {
63 public:
64         MaterialItem(u8 content, u16 count)
65         {
66                 m_content = content;
67                 m_count = count;
68         }
69         /*
70                 Implementation interface
71         */
72         virtual const char* getName() const
73         {
74                 return "MaterialItem";
75         }
76         virtual void serialize(std::ostream &os)
77         {
78                 //os.imbue(std::locale("C"));
79                 os<<getName();
80                 os<<" ";
81                 os<<(unsigned int)m_content;
82                 os<<" ";
83                 os<<m_count;
84         }
85         virtual InventoryItem* clone()
86         {
87                 return new MaterialItem(m_content, m_count);
88         }
89 #ifndef SERVER
90         video::ITexture * getImage()
91         {
92                 /*if(m_content == CONTENT_TORCH)
93                         return g_texturecache.get("torch_on_floor");
94
95                 u16 tile = content_tile(m_content, v3s16(1,0,0));
96                 return g_tile_contents[tile].getTexture(0);*/
97                 
98                 if(m_content >= USEFUL_CONTENT_COUNT)
99                         return NULL;
100                         
101                 return g_irrlicht->getTexture(g_content_inventory_textures[m_content]);
102         }
103 #endif
104         std::string getText()
105         {
106                 std::ostringstream os;
107                 os<<m_count;
108                 return os.str();
109         }
110         /*
111                 Special methods
112         */
113         u8 getMaterial()
114         {
115                 return m_content;
116         }
117         u16 getCount()
118         {
119                 return m_count;
120         }
121         u16 freeSpace()
122         {
123                 if(m_count > MATERIAL_ITEM_MAX_COUNT)
124                         return 0;
125                 return MATERIAL_ITEM_MAX_COUNT - m_count;
126         }
127         void add(u16 count)
128         {
129                 assert(m_count + count <= MATERIAL_ITEM_MAX_COUNT);
130                 m_count += count;
131         }
132         void remove(u16 count)
133         {
134                 assert(m_count >= count);
135                 m_count -= count;
136         }
137 private:
138         u8 m_content;
139         u16 m_count;
140 };
141
142 class MapBlockObjectItem : public InventoryItem
143 {
144 public:
145         /*MapBlockObjectItem(MapBlockObject *obj)
146         {
147                 m_inventorystring = obj->getInventoryString();
148         }*/
149         MapBlockObjectItem(std::string inventorystring)
150         {
151                 m_inventorystring = inventorystring;
152         }
153         
154         /*
155                 Implementation interface
156         */
157         virtual const char* getName() const
158         {
159                 return "MBOItem";
160         }
161         virtual void serialize(std::ostream &os)
162         {
163                 for(;;)
164                 {
165                         size_t t = m_inventorystring.find('|');
166                         if(t == std::string::npos)
167                                 break;
168                         m_inventorystring[t] = '?';
169                 }
170                 os<<getName();
171                 os<<" ";
172                 os<<m_inventorystring;
173                 os<<"|";
174         }
175         virtual InventoryItem* clone()
176         {
177                 return new MapBlockObjectItem(m_inventorystring);
178         }
179
180 #ifndef SERVER
181         video::ITexture * getImage();
182 #endif
183         std::string getText();
184
185         /*
186                 Special methods
187         */
188         std::string getInventoryString()
189         {
190                 return m_inventorystring;
191         }
192
193         MapBlockObject * createObject(v3f pos, f32 player_yaw, f32 player_pitch);
194
195 private:
196         std::string m_inventorystring;
197 };
198
199 class InventoryList
200 {
201 public:
202         InventoryList(std::string name, u32 size);
203         ~InventoryList();
204         void clearItems();
205         void serialize(std::ostream &os);
206         void deSerialize(std::istream &is);
207
208         InventoryList(const InventoryList &other);
209         InventoryList & operator = (const InventoryList &other);
210
211         std::string getName();
212         u32 getSize();
213         // Count used slots
214         u32 getUsedSlots();
215         
216         InventoryItem * getItem(u32 i);
217         // Returns old item (or NULL). Parameter can be NULL.
218         InventoryItem * changeItem(u32 i, InventoryItem *newitem);
219         void deleteItem(u32 i);
220         // Adds an item to a suitable place. Returns false if failed.
221         bool addItem(InventoryItem *newitem);
222
223         void print(std::ostream &o);
224         
225 private:
226         core::array<InventoryItem*> m_items;
227         u32 m_size;
228         std::string m_name;
229 };
230
231 class Inventory
232 {
233 public:
234         ~Inventory();
235
236         void clear();
237
238         Inventory();
239         Inventory(const Inventory &other);
240         Inventory & operator = (const Inventory &other);
241         
242         void serialize(std::ostream &os);
243         void deSerialize(std::istream &is);
244
245         InventoryList * addList(const std::string &name, u32 size);
246         InventoryList * getList(const std::string &name);
247         bool deleteList(const std::string &name);
248         // A shorthand for adding items
249         bool addItem(const std::string &listname, InventoryItem *newitem)
250         {
251                 InventoryList *list = getList(listname);
252                 if(list == NULL)
253                         return false;
254                 return list->addItem(newitem);
255         }
256         
257 private:
258         // -1 if not found
259         s32 getListIndex(const std::string &name);
260
261         core::array<InventoryList*> m_lists;
262 };
263
264 #endif
265