2010-11-29 13:13:04 -05:00
|
|
|
/*
|
|
|
|
Minetest-c55
|
2011-11-13 17:19:48 -05:00
|
|
|
Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 13:13:04 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
#include "inventory.h"
|
|
|
|
#include "serialization.h"
|
|
|
|
#include "utility.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include <sstream>
|
2011-10-16 18:03:45 -04:00
|
|
|
#include "log.h"
|
2012-01-12 00:10:39 -05:00
|
|
|
#include "itemdef.h"
|
2011-11-16 07:36:33 -05:00
|
|
|
#include "strfnd.h"
|
2012-01-12 00:10:39 -05:00
|
|
|
#include "content_mapnode.h" // For loading legacy MaterialItems
|
2011-12-01 05:50:32 -05:00
|
|
|
#include "nameidmapping.h" // For loading legacy MaterialItems
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
/*
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack
|
2010-11-26 18:02:21 -05:00
|
|
|
*/
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
static content_t content_translate_from_19_to_internal(content_t c_from)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
for(u32 i=0; i<sizeof(trans_table_19)/sizeof(trans_table_19[0]); i++)
|
|
|
|
{
|
|
|
|
if(trans_table_19[i][1] == c_from)
|
|
|
|
{
|
|
|
|
return trans_table_19[i][0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return c_from;
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// If the string contains spaces, quotes or control characters, encodes as JSON.
|
|
|
|
// Else returns the string unmodified.
|
|
|
|
static std::string serializeJsonStringIfNeeded(const std::string &s)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
for(size_t i = 0; i < s.size(); ++i)
|
|
|
|
{
|
|
|
|
if(s[i] <= 0x1f || s[i] >= 0x7f || s[i] == ' ' || s[i] == '\"')
|
|
|
|
return serializeJsonString(s);
|
|
|
|
}
|
|
|
|
return s;
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// Parses a string serialized by serializeJsonStringIfNeeded.
|
|
|
|
static std::string deSerializeJsonStringIfNeeded(std::istream &is)
|
2011-07-30 19:20:40 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
std::ostringstream tmp_os;
|
|
|
|
bool expect_initial_quote = true;
|
|
|
|
bool is_json = false;
|
|
|
|
bool was_backslash = false;
|
|
|
|
for(;;)
|
2011-07-30 19:20:40 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
char c = is.get();
|
|
|
|
if(is.eof())
|
|
|
|
break;
|
|
|
|
if(expect_initial_quote && c == '"')
|
2011-07-30 19:20:40 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
tmp_os << c;
|
|
|
|
is_json = true;
|
|
|
|
}
|
|
|
|
else if(is_json)
|
|
|
|
{
|
|
|
|
tmp_os << c;
|
|
|
|
if(was_backslash)
|
|
|
|
was_backslash = false;
|
|
|
|
else if(c == '\\')
|
|
|
|
was_backslash = true;
|
|
|
|
else if(c == '"')
|
|
|
|
break; // Found end of string
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(c == ' ')
|
|
|
|
{
|
|
|
|
// Found end of word
|
|
|
|
is.unget();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tmp_os << c;
|
|
|
|
}
|
2011-07-30 19:20:40 -04:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
expect_initial_quote = false;
|
2011-07-30 19:20:40 -04:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
if(is_json)
|
|
|
|
{
|
|
|
|
std::istringstream tmp_is(tmp_os.str(), std::ios::binary);
|
|
|
|
return deSerializeJsonString(tmp_is);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return tmp_os.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ItemStack::ItemStack(std::string name_, u16 count_,
|
|
|
|
u16 wear_, std::string metadata_,
|
|
|
|
IItemDefManager *itemdef)
|
|
|
|
{
|
|
|
|
name = itemdef->getAlias(name_);
|
|
|
|
count = count_;
|
|
|
|
wear = wear_;
|
|
|
|
metadata = metadata_;
|
|
|
|
|
|
|
|
if(name.empty() || count == 0)
|
|
|
|
clear();
|
|
|
|
else if(itemdef->get(name).type == ITEM_TOOL)
|
|
|
|
count = 1;
|
2011-07-30 19:20:40 -04:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
void ItemStack::serialize(std::ostream &os) const
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
DSTACK(__FUNCTION_NAME);
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
if(empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Check how many parts of the itemstring are needed
|
|
|
|
int parts = 1;
|
|
|
|
if(count != 1)
|
|
|
|
parts = 2;
|
|
|
|
if(wear != 0)
|
|
|
|
parts = 3;
|
|
|
|
if(metadata != "")
|
|
|
|
parts = 4;
|
|
|
|
|
|
|
|
os<<serializeJsonStringIfNeeded(name);
|
|
|
|
if(parts >= 2)
|
|
|
|
os<<" "<<count;
|
|
|
|
if(parts >= 3)
|
|
|
|
os<<" "<<wear;
|
|
|
|
if(parts >= 4)
|
|
|
|
os<<" "<<serializeJsonStringIfNeeded(metadata);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ItemStack::deSerialize(std::istream &is, IItemDefManager *itemdef)
|
|
|
|
{
|
|
|
|
DSTACK(__FUNCTION_NAME);
|
|
|
|
|
|
|
|
clear();
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
// Read name
|
2012-01-12 00:10:39 -05:00
|
|
|
name = deSerializeJsonStringIfNeeded(is);
|
|
|
|
|
|
|
|
// Skip space
|
|
|
|
std::string tmp;
|
|
|
|
std::getline(is, tmp, ' ');
|
|
|
|
if(!tmp.empty())
|
|
|
|
throw SerializationError("Unexpected text after item name");
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
if(name == "MaterialItem")
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Obsoleted on 2011-07-30
|
|
|
|
|
2011-07-30 19:20:40 -04:00
|
|
|
u16 material;
|
|
|
|
is>>material;
|
2012-01-12 00:10:39 -05:00
|
|
|
u16 materialcount;
|
|
|
|
is>>materialcount;
|
2011-07-30 19:20:40 -04:00
|
|
|
// Convert old materials
|
|
|
|
if(material <= 0xff)
|
|
|
|
material = content_translate_from_19_to_internal(material);
|
|
|
|
if(material > MAX_CONTENT)
|
|
|
|
throw SerializationError("Too large material number");
|
2012-01-12 00:10:39 -05:00
|
|
|
// Convert old id to name
|
|
|
|
NameIdMapping legacy_nimap;
|
|
|
|
content_mapnode_get_name_id_mapping(&legacy_nimap);
|
|
|
|
legacy_nimap.getName(material, name);
|
|
|
|
if(name == "")
|
|
|
|
name = "unknown_block";
|
|
|
|
name = itemdef->getAlias(name);
|
|
|
|
count = materialcount;
|
2011-07-30 19:20:40 -04:00
|
|
|
}
|
|
|
|
else if(name == "MaterialItem2")
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Obsoleted on 2011-11-16
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
u16 material;
|
|
|
|
is>>material;
|
2012-01-12 00:10:39 -05:00
|
|
|
u16 materialcount;
|
|
|
|
is>>materialcount;
|
2011-07-23 09:55:26 -04:00
|
|
|
if(material > MAX_CONTENT)
|
2010-11-26 18:02:21 -05:00
|
|
|
throw SerializationError("Too large material number");
|
2012-01-12 00:10:39 -05:00
|
|
|
// Convert old id to name
|
|
|
|
NameIdMapping legacy_nimap;
|
|
|
|
content_mapnode_get_name_id_mapping(&legacy_nimap);
|
|
|
|
legacy_nimap.getName(material, name);
|
|
|
|
if(name == "")
|
|
|
|
name = "unknown_block";
|
|
|
|
name = itemdef->getAlias(name);
|
|
|
|
count = materialcount;
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
else if(name == "node" || name == "NodeItem" || name == "MaterialItem3"
|
|
|
|
|| name == "craft" || name == "CraftItem")
|
2011-11-16 07:36:33 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Obsoleted on 2012-01-07
|
|
|
|
|
2011-11-16 07:36:33 -05:00
|
|
|
std::string all;
|
|
|
|
std::getline(is, all, '\n');
|
2011-11-16 15:47:37 -05:00
|
|
|
// First attempt to read inside ""
|
2011-11-16 07:36:33 -05:00
|
|
|
Strfnd fnd(all);
|
|
|
|
fnd.next("\"");
|
2011-11-16 15:47:37 -05:00
|
|
|
// If didn't skip to end, we have ""s
|
|
|
|
if(!fnd.atend()){
|
2012-01-12 00:10:39 -05:00
|
|
|
name = fnd.next("\"");
|
2011-11-16 15:47:37 -05:00
|
|
|
} else { // No luck, just read a word then
|
|
|
|
fnd.start(all);
|
2012-01-12 00:10:39 -05:00
|
|
|
name = fnd.next(" ");
|
2011-11-16 15:47:37 -05:00
|
|
|
}
|
|
|
|
fnd.skip_over(" ");
|
2012-01-12 00:10:39 -05:00
|
|
|
name = itemdef->getAlias(name);
|
|
|
|
count = stoi(trim(fnd.next("")));
|
2011-11-30 17:04:21 -05:00
|
|
|
if(count == 0)
|
|
|
|
count = 1;
|
2011-11-16 07:36:33 -05:00
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
else if(name == "MBOItem")
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Obsoleted on 2011-10-14
|
2011-10-14 19:28:57 -04:00
|
|
|
throw SerializationError("MBOItem not supported anymore");
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
2011-12-02 05:12:07 -05:00
|
|
|
else if(name == "tool" || name == "ToolItem")
|
2010-12-23 20:08:05 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Obsoleted on 2012-01-07
|
|
|
|
|
2011-11-16 15:47:37 -05:00
|
|
|
std::string all;
|
|
|
|
std::getline(is, all, '\n');
|
|
|
|
// First attempt to read inside ""
|
|
|
|
Strfnd fnd(all);
|
|
|
|
fnd.next("\"");
|
|
|
|
// If didn't skip to end, we have ""s
|
|
|
|
if(!fnd.atend()){
|
2012-01-12 00:10:39 -05:00
|
|
|
name = fnd.next("\"");
|
2011-11-16 15:47:37 -05:00
|
|
|
} else { // No luck, just read a word then
|
|
|
|
fnd.start(all);
|
2012-01-12 00:10:39 -05:00
|
|
|
name = fnd.next(" ");
|
2011-11-16 15:47:37 -05:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
count = 1;
|
2011-11-16 15:47:37 -05:00
|
|
|
// Then read wear
|
|
|
|
fnd.skip_over(" ");
|
2012-01-12 00:10:39 -05:00
|
|
|
wear = stoi(trim(fnd.next("")));
|
2010-12-23 20:08:05 -05:00
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
else
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
do // This loop is just to allow "break;"
|
|
|
|
{
|
|
|
|
// The real thing
|
2011-11-13 17:19:48 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// Apply item aliases
|
|
|
|
name = itemdef->getAlias(name);
|
2011-11-13 17:19:48 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// Read the count
|
|
|
|
std::string count_str;
|
|
|
|
std::getline(is, count_str, ' ');
|
|
|
|
if(count_str.empty())
|
|
|
|
{
|
|
|
|
count = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
count = stoi(count_str);
|
2011-11-13 09:38:14 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// Read the wear
|
|
|
|
std::string wear_str;
|
|
|
|
std::getline(is, wear_str, ' ');
|
|
|
|
if(wear_str.empty())
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
wear = stoi(wear_str);
|
2011-12-03 06:46:19 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// Read metadata
|
|
|
|
metadata = deSerializeJsonStringIfNeeded(is);
|
2011-12-03 18:16:22 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// In case fields are added after metadata, skip space here:
|
|
|
|
//std::getline(is, tmp, ' ');
|
|
|
|
//if(!tmp.empty())
|
|
|
|
// throw SerializationError("Unexpected text after metadata");
|
2011-04-10 08:16:27 -04:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
} while(false);
|
|
|
|
}
|
2011-04-19 10:09:45 -04:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
if(name.empty() || count == 0)
|
|
|
|
clear();
|
|
|
|
else if(itemdef->get(name).type == ITEM_TOOL)
|
|
|
|
count = 1;
|
2011-04-05 11:23:30 -04:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
void ItemStack::deSerialize(const std::string &str, IItemDefManager *itemdef)
|
2011-04-05 11:23:30 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
std::istringstream is(str, std::ios::binary);
|
|
|
|
deSerialize(is, itemdef);
|
2011-04-05 03:59:48 -04:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
std::string ItemStack::getItemString() const
|
2011-11-15 19:22:41 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Get item string
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
serialize(os);
|
|
|
|
return os.str();
|
2011-11-15 19:22:41 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack ItemStack::addItem(const ItemStack &newitem_,
|
|
|
|
IItemDefManager *itemdef)
|
2011-11-15 19:22:41 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack newitem = newitem_;
|
2011-11-29 10:15:18 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// If the item is empty or the position invalid, bail out
|
|
|
|
if(newitem.empty())
|
|
|
|
{
|
|
|
|
// nothing can be added trivially
|
|
|
|
}
|
|
|
|
// If this is an empty item, it's an easy job.
|
|
|
|
else if(empty())
|
|
|
|
{
|
|
|
|
*this = newitem;
|
|
|
|
newitem.clear();
|
|
|
|
}
|
|
|
|
// If item name differs, bail out
|
|
|
|
else if(name != newitem.name)
|
|
|
|
{
|
|
|
|
// cannot be added
|
|
|
|
}
|
|
|
|
// If the item fits fully, add counter and delete it
|
|
|
|
else if(newitem.count <= freeSpace(itemdef))
|
|
|
|
{
|
|
|
|
add(newitem.count);
|
|
|
|
newitem.clear();
|
|
|
|
}
|
|
|
|
// Else the item does not fit fully. Add all that fits and return
|
|
|
|
// the rest.
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u16 freespace = freeSpace(itemdef);
|
|
|
|
add(freespace);
|
|
|
|
newitem.remove(freespace);
|
|
|
|
}
|
2011-11-29 10:15:18 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
return newitem;
|
2011-11-15 19:22:41 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
bool ItemStack::itemFits(const ItemStack &newitem_,
|
|
|
|
ItemStack *restitem,
|
|
|
|
IItemDefManager *itemdef) const
|
2011-07-30 11:51:15 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack newitem = newitem_;
|
2011-11-29 10:15:18 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
// If the item is empty or the position invalid, bail out
|
|
|
|
if(newitem.empty())
|
2011-11-29 10:15:18 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// nothing can be added trivially
|
2011-11-29 10:15:18 -05:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
// If this is an empty item, it's an easy job.
|
|
|
|
else if(empty())
|
2011-11-29 10:15:18 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
newitem.clear();
|
2011-11-29 10:15:18 -05:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
// If item name differs, bail out
|
|
|
|
else if(name != newitem.name)
|
2011-11-29 10:15:18 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// cannot be added
|
2011-11-29 10:15:18 -05:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
// If the item fits fully, delete it
|
|
|
|
else if(newitem.count <= freeSpace(itemdef))
|
|
|
|
{
|
|
|
|
newitem.clear();
|
|
|
|
}
|
|
|
|
// Else the item does not fit fully. Return the rest.
|
|
|
|
// the rest.
|
2011-11-29 10:15:18 -05:00
|
|
|
else
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
u16 freespace = freeSpace(itemdef);
|
|
|
|
newitem.remove(freespace);
|
2011-11-29 10:15:18 -05:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
|
|
|
|
if(restitem)
|
|
|
|
*restitem = newitem;
|
|
|
|
return newitem.empty();
|
2011-11-29 10:15:18 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack ItemStack::takeItem(u32 takecount)
|
2011-11-29 10:15:18 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
if(takecount == 0 || count == 0)
|
|
|
|
return ItemStack();
|
2011-11-29 10:15:18 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack result = *this;
|
|
|
|
if(takecount >= count)
|
2011-11-29 10:15:18 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Take all
|
|
|
|
clear();
|
2011-11-29 10:15:18 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Take part
|
|
|
|
remove(takecount);
|
|
|
|
result.count = takecount;
|
2011-11-29 10:15:18 -05:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
ItemStack ItemStack::peekItem(u32 peekcount) const
|
|
|
|
{
|
|
|
|
if(peekcount == 0 || count == 0)
|
|
|
|
return ItemStack();
|
|
|
|
|
|
|
|
ItemStack result = *this;
|
|
|
|
if(peekcount < count)
|
|
|
|
result.count = peekcount;
|
|
|
|
return result;
|
2011-07-30 11:51:15 -04:00
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
Inventory
|
|
|
|
*/
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
InventoryList::InventoryList(std::string name, u32 size, IItemDefManager *itemdef)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2010-12-22 04:29:06 -05:00
|
|
|
m_name = name;
|
2010-11-26 18:02:21 -05:00
|
|
|
m_size = size;
|
2012-01-12 00:10:39 -05:00
|
|
|
m_itemdef = itemdef;
|
2010-11-26 18:02:21 -05:00
|
|
|
clearItems();
|
2011-04-11 14:28:04 -04:00
|
|
|
//m_dirty = false;
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
2010-12-22 04:29:06 -05:00
|
|
|
InventoryList::~InventoryList()
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-12-22 04:29:06 -05:00
|
|
|
void InventoryList::clearItems()
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
m_items.clear();
|
2010-12-22 04:29:06 -05:00
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
for(u32 i=0; i<m_size; i++)
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
m_items.push_back(ItemStack());
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
2011-04-11 14:28:04 -04:00
|
|
|
|
|
|
|
//setDirty(true);
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
2011-12-06 08:21:56 -05:00
|
|
|
void InventoryList::setSize(u32 newsize)
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
if(newsize != m_items.size())
|
|
|
|
m_items.resize(newsize);
|
2011-12-06 08:21:56 -05:00
|
|
|
m_size = newsize;
|
|
|
|
}
|
|
|
|
|
2011-08-10 17:22:44 -04:00
|
|
|
void InventoryList::serialize(std::ostream &os) const
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
//os.imbue(std::locale("C"));
|
|
|
|
|
|
|
|
for(u32 i=0; i<m_items.size(); i++)
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
const ItemStack &item = m_items[i];
|
|
|
|
if(item.empty())
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
os<<"Empty";
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
os<<"Item ";
|
|
|
|
item.serialize(os);
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
os<<"\n";
|
|
|
|
}
|
|
|
|
|
2011-01-27 18:38:16 -05:00
|
|
|
os<<"EndInventoryList\n";
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
void InventoryList::deSerialize(std::istream &is)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
//is.imbue(std::locale("C"));
|
|
|
|
|
|
|
|
clearItems();
|
|
|
|
u32 item_i = 0;
|
|
|
|
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
std::getline(is, line, '\n');
|
|
|
|
|
|
|
|
std::istringstream iss(line);
|
|
|
|
//iss.imbue(std::locale("C"));
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
std::getline(iss, name, ' ');
|
|
|
|
|
2011-01-27 18:38:16 -05:00
|
|
|
if(name == "EndInventoryList")
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2011-02-03 08:45:53 -05:00
|
|
|
// This is a temporary backwards compatibility fix
|
|
|
|
else if(name == "end")
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2010-11-26 18:02:21 -05:00
|
|
|
else if(name == "Item")
|
|
|
|
{
|
|
|
|
if(item_i > getSize() - 1)
|
|
|
|
throw SerializationError("too many items");
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack item;
|
|
|
|
item.deSerialize(iss, m_itemdef);
|
2010-11-26 18:02:21 -05:00
|
|
|
m_items[item_i++] = item;
|
|
|
|
}
|
|
|
|
else if(name == "Empty")
|
|
|
|
{
|
|
|
|
if(item_i > getSize() - 1)
|
|
|
|
throw SerializationError("too many items");
|
2012-01-12 00:10:39 -05:00
|
|
|
m_items[item_i++].clear();
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw SerializationError("Unknown inventory identifier");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-22 04:29:06 -05:00
|
|
|
InventoryList::InventoryList(const InventoryList &other)
|
|
|
|
{
|
|
|
|
*this = other;
|
|
|
|
}
|
|
|
|
|
|
|
|
InventoryList & InventoryList::operator = (const InventoryList &other)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
m_items = other.m_items;
|
2010-11-26 18:02:21 -05:00
|
|
|
m_size = other.m_size;
|
2012-01-12 00:10:39 -05:00
|
|
|
m_name = other.m_name;
|
|
|
|
m_itemdef = other.m_itemdef;
|
2011-04-11 14:28:04 -04:00
|
|
|
//setDirty(true);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2011-08-10 05:38:49 -04:00
|
|
|
const std::string &InventoryList::getName() const
|
2010-12-22 04:29:06 -05:00
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
u32 InventoryList::getSize() const
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
return m_items.size();
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
u32 InventoryList::getUsedSlots() const
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
u32 num = 0;
|
|
|
|
for(u32 i=0; i<m_items.size(); i++)
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
if(!m_items[i].empty())
|
2010-11-26 18:02:21 -05:00
|
|
|
num++;
|
|
|
|
}
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
u32 InventoryList::getFreeSlots() const
|
2011-04-05 03:59:48 -04:00
|
|
|
{
|
|
|
|
return getSize() - getUsedSlots();
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
const ItemStack& InventoryList::getItem(u32 i) const
|
2011-08-10 05:38:49 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
assert(i < m_size);
|
2011-08-10 05:38:49 -04:00
|
|
|
return m_items[i];
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack& InventoryList::getItem(u32 i)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
assert(i < m_size);
|
2010-11-26 18:02:21 -05:00
|
|
|
return m_items[i];
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack InventoryList::changeItem(u32 i, const ItemStack &newitem)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2011-11-28 07:55:24 -05:00
|
|
|
if(i >= m_items.size())
|
|
|
|
return newitem;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack olditem = m_items[i];
|
2010-11-26 18:02:21 -05:00
|
|
|
m_items[i] = newitem;
|
2011-04-11 14:28:04 -04:00
|
|
|
//setDirty(true);
|
2010-11-26 18:02:21 -05:00
|
|
|
return olditem;
|
|
|
|
}
|
|
|
|
|
2010-12-22 04:29:06 -05:00
|
|
|
void InventoryList::deleteItem(u32 i)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
assert(i < m_items.size());
|
2012-01-12 00:10:39 -05:00
|
|
|
m_items[i].clear();
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack InventoryList::addItem(const ItemStack &newitem_)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack newitem = newitem_;
|
|
|
|
|
|
|
|
if(newitem.empty())
|
|
|
|
return newitem;
|
2011-04-05 11:23:30 -04:00
|
|
|
|
2010-12-24 10:08:50 -05:00
|
|
|
/*
|
|
|
|
First try to find if it could be added to some existing items
|
|
|
|
*/
|
|
|
|
for(u32 i=0; i<m_items.size(); i++)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2010-12-24 10:08:50 -05:00
|
|
|
// Ignore empty slots
|
2012-01-12 00:10:39 -05:00
|
|
|
if(m_items[i].empty())
|
2010-12-24 10:08:50 -05:00
|
|
|
continue;
|
|
|
|
// Try adding
|
|
|
|
newitem = addItem(i, newitem);
|
2012-01-12 00:10:39 -05:00
|
|
|
if(newitem.empty())
|
|
|
|
return newitem; // All was eaten
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
2010-12-24 10:08:50 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Then try to add it to empty slots
|
|
|
|
*/
|
2010-11-26 18:02:21 -05:00
|
|
|
for(u32 i=0; i<m_items.size(); i++)
|
|
|
|
{
|
2010-12-24 10:08:50 -05:00
|
|
|
// Ignore unempty slots
|
2012-01-12 00:10:39 -05:00
|
|
|
if(!m_items[i].empty())
|
2010-11-26 18:02:21 -05:00
|
|
|
continue;
|
2010-12-24 10:08:50 -05:00
|
|
|
// Try adding
|
|
|
|
newitem = addItem(i, newitem);
|
2012-01-12 00:10:39 -05:00
|
|
|
if(newitem.empty())
|
|
|
|
return newitem; // All was eaten
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
2010-12-24 10:08:50 -05:00
|
|
|
|
|
|
|
// Return leftover
|
|
|
|
return newitem;
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack InventoryList::addItem(u32 i, const ItemStack &newitem)
|
2010-12-22 09:30:23 -05:00
|
|
|
{
|
2011-11-28 07:55:24 -05:00
|
|
|
if(i >= m_items.size())
|
|
|
|
return newitem;
|
2012-01-12 00:10:39 -05:00
|
|
|
|
|
|
|
ItemStack leftover = m_items[i].addItem(newitem, m_itemdef);
|
|
|
|
//if(leftover != newitem)
|
|
|
|
// setDirty(true);
|
|
|
|
return leftover;
|
2010-12-24 10:08:50 -05:00
|
|
|
}
|
2010-12-22 09:30:23 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
bool InventoryList::itemFits(const u32 i, const ItemStack &newitem,
|
|
|
|
ItemStack *restitem) const
|
2011-04-04 19:56:29 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
if(i >= m_items.size())
|
2011-04-04 19:56:29 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
if(restitem)
|
|
|
|
*restitem = newitem;
|
2011-04-04 19:56:29 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
return m_items[i].itemFits(newitem, restitem, m_itemdef);
|
2011-04-04 19:56:29 -04:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
bool InventoryList::roomForItem(const ItemStack &item_) const
|
2011-08-25 19:27:50 -04:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack item = item_;
|
|
|
|
ItemStack leftover;
|
2011-08-25 19:27:50 -04:00
|
|
|
for(u32 i=0; i<m_items.size(); i++)
|
2012-01-12 00:10:39 -05:00
|
|
|
{
|
|
|
|
if(itemFits(i, item, &leftover))
|
2011-08-25 19:27:50 -04:00
|
|
|
return true;
|
2012-01-12 00:10:39 -05:00
|
|
|
item = leftover;
|
|
|
|
}
|
2011-08-25 19:27:50 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
bool InventoryList::containsItem(const ItemStack &item) const
|
2010-12-24 10:08:50 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
u32 count = item.count;
|
2010-12-24 10:08:50 -05:00
|
|
|
if(count == 0)
|
2012-01-12 00:10:39 -05:00
|
|
|
return true;
|
|
|
|
for(std::vector<ItemStack>::const_reverse_iterator
|
|
|
|
i = m_items.rbegin();
|
|
|
|
i != m_items.rend(); i++)
|
2010-12-24 10:08:50 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
if(count == 0)
|
|
|
|
break;
|
|
|
|
if(i->name == item.name)
|
|
|
|
{
|
|
|
|
if(i->count >= count)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
count -= i->count;
|
|
|
|
}
|
2010-12-22 09:30:23 -05:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack InventoryList::removeItem(const ItemStack &item)
|
2010-12-22 09:30:23 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack removed;
|
|
|
|
for(std::vector<ItemStack>::reverse_iterator
|
|
|
|
i = m_items.rbegin();
|
|
|
|
i != m_items.rend(); i++)
|
2010-12-22 09:30:23 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
if(i->name == item.name)
|
|
|
|
{
|
|
|
|
u32 still_to_remove = item.count - removed.count;
|
|
|
|
removed.addItem(i->takeItem(still_to_remove), m_itemdef);
|
|
|
|
if(removed.count == item.count)
|
|
|
|
break;
|
|
|
|
}
|
2010-12-22 09:30:23 -05:00
|
|
|
}
|
2012-01-12 00:10:39 -05:00
|
|
|
return removed;
|
2010-12-22 09:30:23 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
ItemStack InventoryList::takeItem(u32 i, u32 takecount)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
if(i >= m_items.size())
|
|
|
|
return ItemStack();
|
|
|
|
|
|
|
|
ItemStack taken = m_items[i].takeItem(takecount);
|
|
|
|
//if(!taken.empty())
|
|
|
|
// setDirty(true);
|
|
|
|
return taken;
|
|
|
|
}
|
|
|
|
|
|
|
|
ItemStack InventoryList::peekItem(u32 i, u32 peekcount) const
|
|
|
|
{
|
|
|
|
if(i >= m_items.size())
|
|
|
|
return ItemStack();
|
|
|
|
|
|
|
|
return m_items[i].peekItem(peekcount);
|
2010-11-26 18:02:21 -05:00
|
|
|
}
|
2010-12-22 04:29:06 -05:00
|
|
|
|
2012-01-21 18:49:02 -05:00
|
|
|
void InventoryList::moveItem(u32 i, InventoryList *dest, u32 dest_i, u32 count)
|
|
|
|
{
|
|
|
|
if(this == dest && i == dest_i)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Take item from source list
|
|
|
|
ItemStack item1;
|
|
|
|
if(count == 0)
|
|
|
|
item1 = changeItem(i, ItemStack());
|
|
|
|
else
|
|
|
|
item1 = takeItem(i, count);
|
|
|
|
|
|
|
|
if(item1.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Try to add the item to destination list
|
|
|
|
u32 oldcount = item1.count;
|
|
|
|
item1 = dest->addItem(dest_i, item1);
|
|
|
|
|
|
|
|
// If something is returned, the item was not fully added
|
|
|
|
if(!item1.empty())
|
|
|
|
{
|
|
|
|
// If olditem is returned, nothing was added.
|
|
|
|
bool nothing_added = (item1.count == oldcount);
|
|
|
|
|
|
|
|
// If something else is returned, part of the item was left unadded.
|
|
|
|
// Add the other part back to the source item
|
|
|
|
addItem(i, item1);
|
|
|
|
|
|
|
|
// If olditem is returned, nothing was added.
|
|
|
|
// Swap the items
|
|
|
|
if(nothing_added)
|
|
|
|
{
|
|
|
|
// Take item from source list
|
|
|
|
item1 = changeItem(i, ItemStack());
|
|
|
|
// Adding was not possible, swap the items.
|
|
|
|
ItemStack item2 = dest->changeItem(dest_i, item1);
|
|
|
|
// Put item from destination list to the source list
|
|
|
|
changeItem(i, item2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-22 04:29:06 -05:00
|
|
|
/*
|
|
|
|
Inventory
|
|
|
|
*/
|
|
|
|
|
|
|
|
Inventory::~Inventory()
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Inventory::clear()
|
|
|
|
{
|
|
|
|
for(u32 i=0; i<m_lists.size(); i++)
|
|
|
|
{
|
|
|
|
delete m_lists[i];
|
|
|
|
}
|
|
|
|
m_lists.clear();
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
Inventory::Inventory(IItemDefManager *itemdef)
|
2010-12-22 04:29:06 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
m_itemdef = itemdef;
|
2010-12-22 04:29:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Inventory::Inventory(const Inventory &other)
|
|
|
|
{
|
|
|
|
*this = other;
|
|
|
|
}
|
|
|
|
|
|
|
|
Inventory & Inventory::operator = (const Inventory &other)
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
// Gracefully handle self assignment
|
|
|
|
if(this != &other)
|
2010-12-22 04:29:06 -05:00
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
clear();
|
|
|
|
m_itemdef = other.m_itemdef;
|
|
|
|
for(u32 i=0; i<other.m_lists.size(); i++)
|
|
|
|
{
|
|
|
|
m_lists.push_back(new InventoryList(*other.m_lists[i]));
|
|
|
|
}
|
2010-12-22 04:29:06 -05:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2011-08-10 17:22:44 -04:00
|
|
|
void Inventory::serialize(std::ostream &os) const
|
2010-12-22 04:29:06 -05:00
|
|
|
{
|
|
|
|
for(u32 i=0; i<m_lists.size(); i++)
|
|
|
|
{
|
|
|
|
InventoryList *list = m_lists[i];
|
|
|
|
os<<"List "<<list->getName()<<" "<<list->getSize()<<"\n";
|
|
|
|
list->serialize(os);
|
|
|
|
}
|
|
|
|
|
2011-01-27 18:38:16 -05:00
|
|
|
os<<"EndInventory\n";
|
2010-12-22 04:29:06 -05:00
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
void Inventory::deSerialize(std::istream &is)
|
2010-12-22 04:29:06 -05:00
|
|
|
{
|
|
|
|
clear();
|
|
|
|
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
std::getline(is, line, '\n');
|
|
|
|
|
|
|
|
std::istringstream iss(line);
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
std::getline(iss, name, ' ');
|
|
|
|
|
2011-01-27 18:38:16 -05:00
|
|
|
if(name == "EndInventory")
|
2010-12-22 04:29:06 -05:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2011-02-03 08:45:53 -05:00
|
|
|
// This is a temporary backwards compatibility fix
|
|
|
|
else if(name == "end")
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2010-12-22 04:29:06 -05:00
|
|
|
else if(name == "List")
|
|
|
|
{
|
|
|
|
std::string listname;
|
|
|
|
u32 listsize;
|
|
|
|
|
|
|
|
std::getline(iss, listname, ' ');
|
|
|
|
iss>>listsize;
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
InventoryList *list = new InventoryList(listname, listsize, m_itemdef);
|
|
|
|
list->deSerialize(is);
|
2010-12-22 04:29:06 -05:00
|
|
|
|
|
|
|
m_lists.push_back(list);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw SerializationError("Unknown inventory identifier");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
InventoryList * Inventory::addList(const std::string &name, u32 size)
|
|
|
|
{
|
|
|
|
s32 i = getListIndex(name);
|
|
|
|
if(i != -1)
|
|
|
|
{
|
|
|
|
if(m_lists[i]->getSize() != size)
|
|
|
|
{
|
|
|
|
delete m_lists[i];
|
2012-01-12 00:10:39 -05:00
|
|
|
m_lists[i] = new InventoryList(name, size, m_itemdef);
|
2010-12-22 04:29:06 -05:00
|
|
|
}
|
|
|
|
return m_lists[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-01-12 00:10:39 -05:00
|
|
|
InventoryList *list = new InventoryList(name, size, m_itemdef);
|
|
|
|
m_lists.push_back(list);
|
|
|
|
return list;
|
2010-12-22 04:29:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
InventoryList * Inventory::getList(const std::string &name)
|
|
|
|
{
|
|
|
|
s32 i = getListIndex(name);
|
|
|
|
if(i == -1)
|
|
|
|
return NULL;
|
|
|
|
return m_lists[i];
|
|
|
|
}
|
|
|
|
|
2011-11-28 07:55:24 -05:00
|
|
|
bool Inventory::deleteList(const std::string &name)
|
|
|
|
{
|
|
|
|
s32 i = getListIndex(name);
|
|
|
|
if(i == -1)
|
|
|
|
return false;
|
|
|
|
delete m_lists[i];
|
2012-01-12 00:10:39 -05:00
|
|
|
m_lists.erase(m_lists.begin() + i);
|
2011-11-28 07:55:24 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-08-10 05:38:49 -04:00
|
|
|
const InventoryList * Inventory::getList(const std::string &name) const
|
|
|
|
{
|
|
|
|
s32 i = getListIndex(name);
|
|
|
|
if(i == -1)
|
|
|
|
return NULL;
|
|
|
|
return m_lists[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
const s32 Inventory::getListIndex(const std::string &name) const
|
2010-12-22 04:29:06 -05:00
|
|
|
{
|
|
|
|
for(u32 i=0; i<m_lists.size(); i++)
|
|
|
|
{
|
|
|
|
if(m_lists[i]->getName() == name)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
//END
|