Keep track of player item
[oweals/minetest.git] / src / inventory.cpp
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 #include "inventory.h"
25 #include "serialization.h"
26 #include "utility.h"
27 #include "debug.h"
28 #include <sstream>
29 #include "main.h"
30 #include "serverobject.h"
31 #include "content_mapnode.h"
32 #include "content_inventory.h"
33 #include "content_sao.h"
34 #include "player.h"
35
36 /*
37         InventoryItem
38 */
39
40 InventoryItem::InventoryItem(u16 count)
41 {
42         m_count = count;
43 }
44
45 InventoryItem::~InventoryItem()
46 {
47 }
48
49 content_t content_translate_from_19_to_internal(content_t c_from)
50 {
51         for(u32 i=0; i<sizeof(trans_table_19)/sizeof(trans_table_19[0]); i++)
52         {
53                 if(trans_table_19[i][1] == c_from)
54                 {
55                         return trans_table_19[i][0];
56                 }
57         }
58         return c_from;
59 }
60
61 InventoryItem* InventoryItem::deSerialize(std::istream &is)
62 {
63         DSTACK(__FUNCTION_NAME);
64
65         //is.imbue(std::locale("C"));
66         // Read name
67         std::string name;
68         std::getline(is, name, ' ');
69         
70         if(name == "MaterialItem")
71         {
72                 // u16 reads directly as a number (u8 doesn't)
73                 u16 material;
74                 is>>material;
75                 u16 count;
76                 is>>count;
77                 // Convert old materials
78                 if(material <= 0xff)
79                 {
80                         material = content_translate_from_19_to_internal(material);
81                 }
82                 if(material > MAX_CONTENT)
83                         throw SerializationError("Too large material number");
84                 return new MaterialItem(material, count);
85         }
86         else if(name == "MaterialItem2")
87         {
88                 u16 material;
89                 is>>material;
90                 u16 count;
91                 is>>count;
92                 if(material > MAX_CONTENT)
93                         throw SerializationError("Too large material number");
94                 return new MaterialItem(material, count);
95         }
96         else if(name == "MBOItem")
97         {
98                 std::string inventorystring;
99                 std::getline(is, inventorystring, '|');
100                 return new MapBlockObjectItem(inventorystring);
101         }
102         else if(name == "CraftItem")
103         {
104                 std::string subname;
105                 std::getline(is, subname, ' ');
106                 u16 count;
107                 is>>count;
108                 return new CraftItem(subname, count);
109         }
110         else if(name == "ToolItem")
111         {
112                 std::string toolname;
113                 std::getline(is, toolname, ' ');
114                 u16 wear;
115                 is>>wear;
116                 return new ToolItem(toolname, wear);
117         }
118         else
119         {
120                 dstream<<"Unknown InventoryItem name=\""<<name<<"\""<<std::endl;
121                 throw SerializationError("Unknown InventoryItem name");
122         }
123 }
124
125 ServerActiveObject* InventoryItem::createSAO(ServerEnvironment *env, u16 id, v3f pos)
126 {
127         /*
128                 Create an ItemSAO
129         */
130         // Get item string
131         std::ostringstream os(std::ios_base::binary);
132         serialize(os);
133         // Create object
134         ServerActiveObject *obj = new ItemSAO(env, 0, pos, os.str());
135         return obj;
136 }
137
138 /*
139         MaterialItem
140 */
141
142 bool MaterialItem::isCookable() const
143 {
144         return item_material_is_cookable(m_content);
145 }
146
147 InventoryItem *MaterialItem::createCookResult() const
148 {
149         return item_material_create_cook_result(m_content);
150 }
151
152 /*
153         CraftItem
154 */
155
156 #ifndef SERVER
157 video::ITexture * CraftItem::getImage()
158 {
159         if(g_texturesource == NULL)
160                 return NULL;
161         
162         std::string name = item_craft_get_image_name(m_subname);
163
164         // Get such a texture
165         return g_texturesource->getTextureRaw(name);
166 }
167 #endif
168
169 ServerActiveObject* CraftItem::createSAO(ServerEnvironment *env, u16 id, v3f pos)
170 {
171         // Special cases
172         ServerActiveObject *obj = item_craft_create_object(m_subname, env, id, pos);
173         if(obj)
174                 return obj;
175         // Default
176         return InventoryItem::createSAO(env, id, pos);
177 }
178
179 u16 CraftItem::getDropCount() const
180 {
181         // Special cases
182         s16 dc = item_craft_get_drop_count(m_subname);
183         if(dc != -1)
184                 return dc;
185         // Default
186         return InventoryItem::getDropCount();
187 }
188
189 bool CraftItem::isCookable() const
190 {
191         return item_craft_is_cookable(m_subname);
192 }
193
194 InventoryItem *CraftItem::createCookResult() const
195 {
196         return item_craft_create_cook_result(m_subname);
197 }
198
199 bool CraftItem::use(ServerEnvironment *env, Player *player)
200 {
201         if(item_craft_is_eatable(m_subname))
202         {
203                 s16 hp_change = item_craft_eat_hp_change(m_subname);
204                 if(player->hp + hp_change > 20)
205                         player->hp = 20;
206                 else
207                         player->hp += hp_change;
208                 return true;
209         }
210         return false;
211 }
212
213 /*
214         MapBlockObjectItem DEPRECATED
215         TODO: Remove
216 */
217 #ifndef SERVER
218 video::ITexture * MapBlockObjectItem::getImage()
219 {
220         if(m_inventorystring.substr(0,3) == "Rat")
221                 return g_texturesource->getTextureRaw("rat.png");
222         
223         if(m_inventorystring.substr(0,4) == "Sign")
224                 return g_texturesource->getTextureRaw("sign.png");
225
226         return NULL;
227 }
228 #endif
229 std::string MapBlockObjectItem::getText()
230 {
231         if(m_inventorystring.substr(0,3) == "Rat")
232                 return "";
233         
234         if(m_inventorystring.substr(0,4) == "Sign")
235                 return "";
236
237         return "obj";
238 }
239
240 MapBlockObject * MapBlockObjectItem::createObject
241                 (v3f pos, f32 player_yaw, f32 player_pitch)
242 {
243         std::istringstream is(m_inventorystring);
244         std::string name;
245         std::getline(is, name, ' ');
246         
247         if(name == "None")
248         {
249                 return NULL;
250         }
251         else if(name == "Sign")
252         {
253                 std::string text;
254                 std::getline(is, text, '|');
255                 SignObject *obj = new SignObject(NULL, -1, pos);
256                 obj->setText(text);
257                 obj->setYaw(-player_yaw);
258                 return obj;
259         }
260         else if(name == "Rat")
261         {
262                 RatObject *obj = new RatObject(NULL, -1, pos);
263                 return obj;
264         }
265         else if(name == "ItemObj")
266         {
267                 /*
268                         Now we are an inventory item containing the serialization
269                         string of an object that contains the serialization
270                         string of an inventory item. Fuck this.
271                 */
272                 //assert(0);
273                 dstream<<__FUNCTION_NAME<<": WARNING: Ignoring ItemObj "
274                                 <<"because an item-object should never be inside "
275                                 <<"an object-item."<<std::endl;
276                 return NULL;
277         }
278         else
279         {
280                 return NULL;
281         }
282 }
283
284 /*
285         Inventory
286 */
287
288 InventoryList::InventoryList(std::string name, u32 size)
289 {
290         m_name = name;
291         m_size = size;
292         clearItems();
293         //m_dirty = false;
294 }
295
296 InventoryList::~InventoryList()
297 {
298         for(u32 i=0; i<m_items.size(); i++)
299         {
300                 if(m_items[i])
301                         delete m_items[i];
302         }
303 }
304
305 void InventoryList::clearItems()
306 {
307         for(u32 i=0; i<m_items.size(); i++)
308         {
309                 if(m_items[i])
310                         delete m_items[i];
311         }
312
313         m_items.clear();
314
315         for(u32 i=0; i<m_size; i++)
316         {
317                 m_items.push_back(NULL);
318         }
319
320         //setDirty(true);
321 }
322
323 void InventoryList::serialize(std::ostream &os)
324 {
325         //os.imbue(std::locale("C"));
326         
327         for(u32 i=0; i<m_items.size(); i++)
328         {
329                 InventoryItem *item = m_items[i];
330                 if(item != NULL)
331                 {
332                         os<<"Item ";
333                         item->serialize(os);
334                 }
335                 else
336                 {
337                         os<<"Empty";
338                 }
339                 os<<"\n";
340         }
341
342         os<<"EndInventoryList\n";
343 }
344
345 void InventoryList::deSerialize(std::istream &is)
346 {
347         //is.imbue(std::locale("C"));
348
349         clearItems();
350         u32 item_i = 0;
351
352         for(;;)
353         {
354                 std::string line;
355                 std::getline(is, line, '\n');
356
357                 std::istringstream iss(line);
358                 //iss.imbue(std::locale("C"));
359
360                 std::string name;
361                 std::getline(iss, name, ' ');
362
363                 if(name == "EndInventoryList")
364                 {
365                         break;
366                 }
367                 // This is a temporary backwards compatibility fix
368                 else if(name == "end")
369                 {
370                         break;
371                 }
372                 else if(name == "Item")
373                 {
374                         if(item_i > getSize() - 1)
375                                 throw SerializationError("too many items");
376                         InventoryItem *item = InventoryItem::deSerialize(iss);
377                         m_items[item_i++] = item;
378                 }
379                 else if(name == "Empty")
380                 {
381                         if(item_i > getSize() - 1)
382                                 throw SerializationError("too many items");
383                         m_items[item_i++] = NULL;
384                 }
385                 else
386                 {
387                         throw SerializationError("Unknown inventory identifier");
388                 }
389         }
390 }
391
392 InventoryList::InventoryList(const InventoryList &other)
393 {
394         /*
395                 Do this so that the items get cloned. Otherwise the pointers
396                 in the array will just get copied.
397         */
398         *this = other;
399 }
400
401 InventoryList & InventoryList::operator = (const InventoryList &other)
402 {
403         m_name = other.m_name;
404         m_size = other.m_size;
405         clearItems();
406         for(u32 i=0; i<other.m_items.size(); i++)
407         {
408                 InventoryItem *item = other.m_items[i];
409                 if(item != NULL)
410                 {
411                         m_items[i] = item->clone();
412                 }
413         }
414         //setDirty(true);
415
416         return *this;
417 }
418
419 const std::string &InventoryList::getName() const
420 {
421         return m_name;
422 }
423
424 u32 InventoryList::getSize()
425 {
426         return m_items.size();
427 }
428
429 u32 InventoryList::getUsedSlots()
430 {
431         u32 num = 0;
432         for(u32 i=0; i<m_items.size(); i++)
433         {
434                 InventoryItem *item = m_items[i];
435                 if(item != NULL)
436                         num++;
437         }
438         return num;
439 }
440
441 u32 InventoryList::getFreeSlots()
442 {
443         return getSize() - getUsedSlots();
444 }
445
446 const InventoryItem * InventoryList::getItem(u32 i) const
447 {
448         if(i > m_items.size() - 1)
449                 return NULL;
450         return m_items[i];
451 }
452
453 InventoryItem * InventoryList::getItem(u32 i)
454 {
455         if(i > m_items.size() - 1)
456                 return NULL;
457         return m_items[i];
458 }
459
460 InventoryItem * InventoryList::changeItem(u32 i, InventoryItem *newitem)
461 {
462         assert(i < m_items.size());
463
464         InventoryItem *olditem = m_items[i];
465         m_items[i] = newitem;
466         //setDirty(true);
467         return olditem;
468 }
469
470 void InventoryList::deleteItem(u32 i)
471 {
472         assert(i < m_items.size());
473         InventoryItem *item = changeItem(i, NULL);
474         if(item)
475                 delete item;
476 }
477
478 InventoryItem * InventoryList::addItem(InventoryItem *newitem)
479 {
480         if(newitem == NULL)
481                 return NULL;
482         
483         /*
484                 First try to find if it could be added to some existing items
485         */
486         for(u32 i=0; i<m_items.size(); i++)
487         {
488                 // Ignore empty slots
489                 if(m_items[i] == NULL)
490                         continue;
491                 // Try adding
492                 newitem = addItem(i, newitem);
493                 if(newitem == NULL)
494                         return NULL; // All was eaten
495         }
496
497         /*
498                 Then try to add it to empty slots
499         */
500         for(u32 i=0; i<m_items.size(); i++)
501         {
502                 // Ignore unempty slots
503                 if(m_items[i] != NULL)
504                         continue;
505                 // Try adding
506                 newitem = addItem(i, newitem);
507                 if(newitem == NULL)
508                         return NULL; // All was eaten
509         }
510
511         // Return leftover
512         return newitem;
513 }
514
515 InventoryItem * InventoryList::addItem(u32 i, InventoryItem *newitem)
516 {
517         if(newitem == NULL)
518                 return NULL;
519         
520         //setDirty(true);
521         
522         // If it is an empty position, it's an easy job.
523         InventoryItem *to_item = getItem(i);
524         if(to_item == NULL)
525         {
526                 m_items[i] = newitem;
527                 return NULL;
528         }
529         
530         // If not addable, return the item
531         if(newitem->addableTo(to_item) == false)
532                 return newitem;
533         
534         // If the item fits fully in the slot, add counter and delete it
535         if(newitem->getCount() <= to_item->freeSpace())
536         {
537                 to_item->add(newitem->getCount());
538                 delete newitem;
539                 return NULL;
540         }
541         // Else the item does not fit fully. Add all that fits and return
542         // the rest.
543         else
544         {
545                 u16 freespace = to_item->freeSpace();
546                 to_item->add(freespace);
547                 newitem->remove(freespace);
548                 return newitem;
549         }
550 }
551
552 bool InventoryList::itemFits(u32 i, InventoryItem *newitem)
553 {
554         // If it is an empty position, it's an easy job.
555         const InventoryItem *to_item = getItem(i);
556         if(to_item == NULL)
557         {
558                 return true;
559         }
560         
561         // If not addable, return the item
562         if(newitem->addableTo(to_item) == false)
563                 return false;
564         
565         // If the item fits fully in the slot, add counter and delete it
566         if(newitem->getCount() <= to_item->freeSpace())
567         {
568                 return true;
569         }
570
571         return false;
572 }
573
574 InventoryItem * InventoryList::takeItem(u32 i, u32 count)
575 {
576         if(count == 0)
577                 return NULL;
578         
579         //setDirty(true);
580
581         InventoryItem *item = getItem(i);
582         // If it is an empty position, return NULL
583         if(item == NULL)
584                 return NULL;
585         
586         if(count >= item->getCount())
587         {
588                 // Get the item by swapping NULL to its place
589                 return changeItem(i, NULL);
590         }
591         else
592         {
593                 InventoryItem *item2 = item->clone();
594                 item->remove(count);
595                 item2->setCount(count);
596                 return item2;
597         }
598         
599         return false;
600 }
601
602 void InventoryList::decrementMaterials(u16 count)
603 {
604         for(u32 i=0; i<m_items.size(); i++)
605         {
606                 InventoryItem *item = takeItem(i, count);
607                 if(item)
608                         delete item;
609         }
610 }
611
612 void InventoryList::print(std::ostream &o)
613 {
614         o<<"InventoryList:"<<std::endl;
615         for(u32 i=0; i<m_items.size(); i++)
616         {
617                 InventoryItem *item = m_items[i];
618                 if(item != NULL)
619                 {
620                         o<<i<<": ";
621                         item->serialize(o);
622                         o<<"\n";
623                 }
624         }
625 }
626
627 /*
628         Inventory
629 */
630
631 Inventory::~Inventory()
632 {
633         clear();
634 }
635
636 void Inventory::clear()
637 {
638         for(u32 i=0; i<m_lists.size(); i++)
639         {
640                 delete m_lists[i];
641         }
642         m_lists.clear();
643 }
644
645 Inventory::Inventory()
646 {
647 }
648
649 Inventory::Inventory(const Inventory &other)
650 {
651         *this = other;
652 }
653
654 Inventory & Inventory::operator = (const Inventory &other)
655 {
656         clear();
657         for(u32 i=0; i<other.m_lists.size(); i++)
658         {
659                 m_lists.push_back(new InventoryList(*other.m_lists[i]));
660         }
661         return *this;
662 }
663
664 void Inventory::serialize(std::ostream &os)
665 {
666         for(u32 i=0; i<m_lists.size(); i++)
667         {
668                 InventoryList *list = m_lists[i];
669                 os<<"List "<<list->getName()<<" "<<list->getSize()<<"\n";
670                 list->serialize(os);
671         }
672
673         os<<"EndInventory\n";
674 }
675
676 void Inventory::deSerialize(std::istream &is)
677 {
678         clear();
679
680         for(;;)
681         {
682                 std::string line;
683                 std::getline(is, line, '\n');
684
685                 std::istringstream iss(line);
686
687                 std::string name;
688                 std::getline(iss, name, ' ');
689
690                 if(name == "EndInventory")
691                 {
692                         break;
693                 }
694                 // This is a temporary backwards compatibility fix
695                 else if(name == "end")
696                 {
697                         break;
698                 }
699                 else if(name == "List")
700                 {
701                         std::string listname;
702                         u32 listsize;
703
704                         std::getline(iss, listname, ' ');
705                         iss>>listsize;
706
707                         InventoryList *list = new InventoryList(listname, listsize);
708                         list->deSerialize(is);
709
710                         m_lists.push_back(list);
711                 }
712                 else
713                 {
714                         throw SerializationError("Unknown inventory identifier");
715                 }
716         }
717 }
718
719 InventoryList * Inventory::addList(const std::string &name, u32 size)
720 {
721         s32 i = getListIndex(name);
722         if(i != -1)
723         {
724                 if(m_lists[i]->getSize() != size)
725                 {
726                         delete m_lists[i];
727                         m_lists[i] = new InventoryList(name, size);
728                 }
729                 return m_lists[i];
730         }
731         else
732         {
733                 m_lists.push_back(new InventoryList(name, size));
734                 return m_lists.getLast();
735         }
736 }
737
738 InventoryList * Inventory::getList(const std::string &name)
739 {
740         s32 i = getListIndex(name);
741         if(i == -1)
742                 return NULL;
743         return m_lists[i];
744 }
745
746 const InventoryList * Inventory::getList(const std::string &name) const
747 {
748         s32 i = getListIndex(name);
749         if(i == -1)
750                 return NULL;
751         return m_lists[i];
752 }
753
754 const s32 Inventory::getListIndex(const std::string &name) const
755 {
756         for(u32 i=0; i<m_lists.size(); i++)
757         {
758                 if(m_lists[i]->getName() == name)
759                         return i;
760         }
761         return -1;
762 }
763
764 /*
765         InventoryAction
766 */
767
768 InventoryAction * InventoryAction::deSerialize(std::istream &is)
769 {
770         std::string type;
771         std::getline(is, type, ' ');
772
773         InventoryAction *a = NULL;
774
775         if(type == "Move")
776         {
777                 a = new IMoveAction(is);
778         }
779
780         return a;
781 }
782
783 void IMoveAction::apply(InventoryContext *c, InventoryManager *mgr)
784 {
785 #if 1
786
787         /*dstream<<"from_inv="<<from_inv<<" to_inv="<<to_inv<<std::endl;
788         dstream<<"from_list="<<from_list<<" to_list="<<to_list<<std::endl;
789         dstream<<"from_i="<<from_i<<" to_i="<<to_i<<std::endl;*/
790
791         Inventory *inv_from = mgr->getInventory(c, from_inv);
792         Inventory *inv_to = mgr->getInventory(c, to_inv);
793
794         if(!inv_from || !inv_to)
795         {
796                 dstream<<__FUNCTION_NAME<<": Operation not allowed "
797                                 <<"(inventories not found)"<<std::endl;
798                 return;
799         }
800
801         InventoryList *list_from = inv_from->getList(from_list);
802         InventoryList *list_to = inv_to->getList(to_list);
803
804         /*dstream<<"list_from="<<list_from<<" list_to="<<list_to
805                         <<std::endl;*/
806         /*if(list_from)
807                 dstream<<" list_from->getItem(from_i)="<<list_from->getItem(from_i)
808                                 <<std::endl;
809         if(list_to)
810                 dstream<<" list_to->getItem(to_i)="<<list_to->getItem(to_i)
811                                 <<std::endl;*/
812         
813         /*
814                 If a list doesn't exist or the source item doesn't exist
815         */
816         if(!list_from || !list_to)
817         {
818                 dstream<<__FUNCTION_NAME<<": Operation not allowed "
819                                 <<"(a list doesn't exist)"
820                                 <<std::endl;
821                 return;
822         }
823         if(list_from->getItem(from_i) == NULL)
824         {
825                 dstream<<__FUNCTION_NAME<<": Operation not allowed "
826                                 <<"(the source item doesn't exist)"
827                                 <<std::endl;
828                 return;
829         }
830         /*
831                 If the source and the destination slots are the same
832         */
833         if(inv_from == inv_to && list_from == list_to && from_i == to_i)
834         {
835                 dstream<<__FUNCTION_NAME<<": Operation not allowed "
836                                 <<"(source and the destination slots are the same)"<<std::endl;
837                 return;
838         }
839         
840         // Take item from source list
841         InventoryItem *item1 = NULL;
842         if(count == 0)
843                 item1 = list_from->changeItem(from_i, NULL);
844         else
845                 item1 = list_from->takeItem(from_i, count);
846
847         // Try to add the item to destination list
848         InventoryItem *olditem = item1;
849         item1 = list_to->addItem(to_i, item1);
850
851         // If something is returned, the item was not fully added
852         if(item1 != NULL)
853         {
854                 // If olditem is returned, nothing was added.
855                 bool nothing_added = (item1 == olditem);
856                 
857                 // If something else is returned, part of the item was left unadded.
858                 // Add the other part back to the source item
859                 list_from->addItem(from_i, item1);
860
861                 // If olditem is returned, nothing was added.
862                 // Swap the items
863                 if(nothing_added)
864                 {
865                         // Take item from source list
866                         item1 = list_from->changeItem(from_i, NULL);
867                         // Adding was not possible, swap the items.
868                         InventoryItem *item2 = list_to->changeItem(to_i, item1);
869                         // Put item from destination list to the source list
870                         list_from->changeItem(from_i, item2);
871                 }
872         }
873
874         mgr->inventoryModified(c, from_inv);
875         if(from_inv != to_inv)
876                 mgr->inventoryModified(c, to_inv);
877 #endif
878 }
879
880 /*
881         Craft checking system
882 */
883
884 bool ItemSpec::checkItem(const InventoryItem *item) const
885 {
886         if(type == ITEM_NONE)
887         {
888                 // Has to be no item
889                 if(item != NULL)
890                         return false;
891                 return true;
892         }
893         
894         // There should be an item
895         if(item == NULL)
896                 return false;
897
898         std::string itemname = item->getName();
899
900         if(type == ITEM_MATERIAL)
901         {
902                 if(itemname != "MaterialItem")
903                         return false;
904                 MaterialItem *mitem = (MaterialItem*)item;
905                 if(mitem->getMaterial() != num)
906                         return false;
907         }
908         else if(type == ITEM_CRAFT)
909         {
910                 if(itemname != "CraftItem")
911                         return false;
912                 CraftItem *mitem = (CraftItem*)item;
913                 if(mitem->getSubName() != name)
914                         return false;
915         }
916         else if(type == ITEM_TOOL)
917         {
918                 // Not supported yet
919                 assert(0);
920         }
921         else if(type == ITEM_MBO)
922         {
923                 // Not supported yet
924                 assert(0);
925         }
926         else
927         {
928                 // Not supported yet
929                 assert(0);
930         }
931         return true;
932 }
933
934 bool checkItemCombination(InventoryItem const * const *items, const ItemSpec *specs)
935 {
936         u16 items_min_x = 100;
937         u16 items_max_x = 100;
938         u16 items_min_y = 100;
939         u16 items_max_y = 100;
940         for(u16 y=0; y<3; y++)
941         for(u16 x=0; x<3; x++)
942         {
943                 if(items[y*3 + x] == NULL)
944                         continue;
945                 if(items_min_x == 100 || x < items_min_x)
946                         items_min_x = x;
947                 if(items_min_y == 100 || y < items_min_y)
948                         items_min_y = y;
949                 if(items_max_x == 100 || x > items_max_x)
950                         items_max_x = x;
951                 if(items_max_y == 100 || y > items_max_y)
952                         items_max_y = y;
953         }
954         // No items at all, just return false
955         if(items_min_x == 100)
956                 return false;
957         
958         u16 items_w = items_max_x - items_min_x + 1;
959         u16 items_h = items_max_y - items_min_y + 1;
960
961         u16 specs_min_x = 100;
962         u16 specs_max_x = 100;
963         u16 specs_min_y = 100;
964         u16 specs_max_y = 100;
965         for(u16 y=0; y<3; y++)
966         for(u16 x=0; x<3; x++)
967         {
968                 if(specs[y*3 + x].type == ITEM_NONE)
969                         continue;
970                 if(specs_min_x == 100 || x < specs_min_x)
971                         specs_min_x = x;
972                 if(specs_min_y == 100 || y < specs_min_y)
973                         specs_min_y = y;
974                 if(specs_max_x == 100 || x > specs_max_x)
975                         specs_max_x = x;
976                 if(specs_max_y == 100 || y > specs_max_y)
977                         specs_max_y = y;
978         }
979         // No specs at all, just return false
980         if(specs_min_x == 100)
981                 return false;
982
983         u16 specs_w = specs_max_x - specs_min_x + 1;
984         u16 specs_h = specs_max_y - specs_min_y + 1;
985
986         // Different sizes
987         if(items_w != specs_w || items_h != specs_h)
988                 return false;
989
990         for(u16 y=0; y<specs_h; y++)
991         for(u16 x=0; x<specs_w; x++)
992         {
993                 u16 items_x = items_min_x + x;
994                 u16 items_y = items_min_y + y;
995                 u16 specs_x = specs_min_x + x;
996                 u16 specs_y = specs_min_y + y;
997                 const InventoryItem *item = items[items_y * 3 + items_x];
998                 const ItemSpec &spec = specs[specs_y * 3 + specs_x];
999
1000                 if(spec.checkItem(item) == false)
1001                         return false;
1002         }
1003
1004         return true;
1005 }
1006         
1007 //END