minetest/src/inventory.cpp

1060 lines
22 KiB
C++
Raw Normal View History

/*
Minetest-c55
Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
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-27 00:02:21 +01:00
#include "inventory.h"
#include "serialization.h"
#include "utility.h"
#include "debug.h"
#include <sstream>
#include "main.h" // For tsrc, g_toolmanager
#include "serverobject.h"
#include "content_mapnode.h"
#include "content_sao.h"
2011-11-27 04:01:38 +01:00
#include "environment.h"
#include "mapblock.h"
#include "player.h"
2011-10-17 00:03:45 +02:00
#include "log.h"
2011-11-14 20:41:30 +01:00
#include "nodedef.h"
#include "tooldef.h"
2011-11-29 16:15:18 +01:00
#include "craftitemdef.h"
#include "gamedef.h"
2011-11-29 16:15:18 +01:00
#include "scriptapi.h"
#include "strfnd.h"
#include "nameidmapping.h" // For loading legacy MaterialItems
2010-11-27 00:02:21 +01:00
/*
InventoryItem
*/
InventoryItem::InventoryItem(IGameDef *gamedef, u16 count):
m_gamedef(gamedef),
m_count(count)
2010-11-27 00:02:21 +01:00
{
assert(m_gamedef);
2010-11-27 00:02:21 +01:00
}
InventoryItem::~InventoryItem()
{
}
content_t content_translate_from_19_to_internal(content_t c_from)
{
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;
}
InventoryItem* InventoryItem::deSerialize(std::istream &is, IGameDef *gamedef)
2010-11-27 00:02:21 +01:00
{
DSTACK(__FUNCTION_NAME);
//is.imbue(std::locale("C"));
// Read name
std::string name;
std::getline(is, name, ' ');
if(name == "MaterialItem")
{
// u16 reads directly as a number (u8 doesn't)
u16 material;
is>>material;
u16 count;
is>>count;
// Convert old materials
if(material <= 0xff)
material = content_translate_from_19_to_internal(material);
if(material > MAX_CONTENT)
throw SerializationError("Too large material number");
return new MaterialItem(gamedef, material, count);
}
else if(name == "MaterialItem2")
{
2010-11-27 00:02:21 +01:00
u16 material;
is>>material;
u16 count;
is>>count;
2011-07-23 15:55:26 +02:00
if(material > MAX_CONTENT)
2010-11-27 00:02:21 +01:00
throw SerializationError("Too large material number");
return new MaterialItem(gamedef, material, count);
2010-11-27 00:02:21 +01:00
}
else if(name == "node" || name == "NodeItem" || name == "MaterialItem3")
{
std::string all;
std::getline(is, all, '\n');
2011-11-16 21:47:37 +01:00
std::string nodename;
// First attempt to read inside ""
Strfnd fnd(all);
fnd.next("\"");
2011-11-16 21:47:37 +01:00
// If didn't skip to end, we have ""s
if(!fnd.atend()){
nodename = fnd.next("\"");
} else { // No luck, just read a word then
fnd.start(all);
nodename = fnd.next(" ");
}
fnd.skip_over(" ");
u16 count = stoi(trim(fnd.next("")));
2011-11-30 23:04:21 +01:00
if(count == 0)
count = 1;
return new MaterialItem(gamedef, nodename, count);
}
2010-11-27 00:02:21 +01:00
else if(name == "MBOItem")
{
std::string inventorystring;
std::getline(is, inventorystring, '|');
2011-10-15 01:28:57 +02:00
throw SerializationError("MBOItem not supported anymore");
2010-11-27 00:02:21 +01:00
}
else if(name == "craft" || name == "CraftItem")
{
2011-11-16 21:47:37 +01:00
std::string all;
std::getline(is, all, '\n');
std::string subname;
2011-11-16 21:47:37 +01:00
// First attempt to read inside ""
Strfnd fnd(all);
fnd.next("\"");
// If didn't skip to end, we have ""s
if(!fnd.atend()){
subname = fnd.next("\"");
} else { // No luck, just read a word then
fnd.start(all);
subname = fnd.next(" ");
}
// Then read count
fnd.skip_over(" ");
u16 count = stoi(trim(fnd.next("")));
2011-11-30 23:04:21 +01:00
if(count == 0)
count = 1;
return new CraftItem(gamedef, subname, count);
}
else if(name == "tool" || name == "ToolItem")
2010-12-24 02:08:05 +01:00
{
2011-11-16 21:47:37 +01:00
std::string all;
std::getline(is, all, '\n');
2010-12-24 02:08:05 +01:00
std::string toolname;
2011-11-16 21:47:37 +01:00
// First attempt to read inside ""
Strfnd fnd(all);
fnd.next("\"");
// If didn't skip to end, we have ""s
if(!fnd.atend()){
toolname = fnd.next("\"");
} else { // No luck, just read a word then
fnd.start(all);
toolname = fnd.next(" ");
}
// Then read wear
fnd.skip_over(" ");
u16 wear = stoi(trim(fnd.next("")));
return new ToolItem(gamedef, toolname, wear);
2010-12-24 02:08:05 +01:00
}
2010-11-27 00:02:21 +01:00
else
{
2011-10-17 00:03:45 +02:00
infostream<<"Unknown InventoryItem name=\""<<name<<"\""<<std::endl;
2010-11-27 00:02:21 +01:00
throw SerializationError("Unknown InventoryItem name");
}
}
2011-11-28 13:55:24 +01:00
InventoryItem* InventoryItem::deSerialize(const std::string &str,
IGameDef *gamedef)
{
std::istringstream is(str, std::ios_base::binary);
return deSerialize(is, gamedef);
}
std::string InventoryItem::getItemString() {
// Get item string
std::ostringstream os(std::ios_base::binary);
serialize(os);
return os.str();
}
2011-11-29 16:15:18 +01:00
bool InventoryItem::dropOrPlace(ServerEnvironment *env,
ServerActiveObject *dropper,
v3f pos, bool place, s16 count)
{
/*
2011-11-29 16:15:18 +01:00
Ensure that the block is loaded so that the item
can properly be added to the static list too
*/
v3s16 blockpos = getNodeBlockPos(floatToInt(pos, BS));
MapBlock *block = env->getMap().emergeBlock(blockpos, false);
if(block==NULL)
{
infostream<<"InventoryItem::dropOrPlace(): FAIL: block not found: "
<<blockpos.X<<","<<blockpos.Y<<","<<blockpos.Z
<<std::endl;
return false;
}
/*
Take specified number of items,
but limit to getDropCount().
*/
2011-11-29 16:15:18 +01:00
s16 dropcount = getDropCount();
if(count < 0 || count > dropcount)
count = dropcount;
if(count < 0 || count > getCount())
2011-11-29 16:15:18 +01:00
count = getCount();
if(count > 0)
{
/*
Create an ItemSAO
*/
pos.Y -= BS*0.25; // let it drop a bit
// Randomize a bit
//pos.X += BS*0.2*(float)myrand_range(-1000,1000)/1000.0;
//pos.Z += BS*0.2*(float)myrand_range(-1000,1000)/1000.0;
// Create object
ServerActiveObject *obj = new ItemSAO(env, pos, getItemString());
// Add the object to the environment
env->addActiveObject(obj);
infostream<<"Dropped item"<<std::endl;
setCount(getCount() - count);
}
return getCount() < 1; // delete the item?
}
2011-04-05 09:59:48 +02:00
/*
MaterialItem
*/
MaterialItem::MaterialItem(IGameDef *gamedef, std::string nodename, u16 count):
InventoryItem(gamedef, count)
{
if(nodename == "")
nodename = "unknown_block";
// Convert directly to the correct name through aliases
m_nodename = gamedef->ndef()->getAlias(nodename);
}
// Legacy constructor
MaterialItem::MaterialItem(IGameDef *gamedef, content_t content, u16 count):
InventoryItem(gamedef, count)
{
NameIdMapping legacy_nimap;
content_mapnode_get_name_id_mapping(&legacy_nimap);
std::string nodename;
legacy_nimap.getName(content, nodename);
if(nodename == "")
nodename = "unknown_block";
m_nodename = nodename;
}
#ifndef SERVER
2011-11-16 13:44:01 +01:00
video::ITexture * MaterialItem::getImage() const
{
return m_gamedef->getNodeDefManager()->get(m_nodename).inventory_texture;
}
#endif
2011-08-10 11:38:49 +02:00
bool MaterialItem::isCookable() const
{
INodeDefManager *ndef = m_gamedef->ndef();
const ContentFeatures &f = ndef->get(m_nodename);
return (f.cookresult_item != "");
}
2011-08-10 11:38:49 +02:00
InventoryItem *MaterialItem::createCookResult() const
2011-04-05 09:59:48 +02:00
{
INodeDefManager *ndef = m_gamedef->ndef();
const ContentFeatures &f = ndef->get(m_nodename);
std::istringstream is(f.cookresult_item, std::ios::binary);
return InventoryItem::deSerialize(is, m_gamedef);
}
float MaterialItem::getCookTime() const
{
INodeDefManager *ndef = m_gamedef->ndef();
const ContentFeatures &f = ndef->get(m_nodename);
return f.furnace_cooktime;
}
float MaterialItem::getBurnTime() const
{
INodeDefManager *ndef = m_gamedef->ndef();
const ContentFeatures &f = ndef->get(m_nodename);
return f.furnace_burntime;
}
content_t MaterialItem::getMaterial() const
{
INodeDefManager *ndef = m_gamedef->ndef();
content_t id = CONTENT_IGNORE;
ndef->getId(m_nodename, id);
return id;
}
2011-11-13 15:38:14 +01:00
/*
ToolItem
*/
ToolItem::ToolItem(IGameDef *gamedef, std::string toolname, u16 wear):
InventoryItem(gamedef, 1)
{
// Convert directly to the correct name through aliases
m_toolname = gamedef->tdef()->getAlias(toolname);
m_wear = wear;
}
2011-11-13 15:38:14 +01:00
std::string ToolItem::getImageBasename() const
{
return m_gamedef->getToolDefManager()->getImagename(m_toolname);
}
#ifndef SERVER
2011-11-16 13:44:01 +01:00
video::ITexture * ToolItem::getImage() const
{
2011-11-16 13:44:01 +01:00
ITextureSource *tsrc = m_gamedef->tsrc();
std::string basename = getImageBasename();
/*
Calculate a progress value with sane amount of
maximum states
*/
u32 maxprogress = 30;
u32 toolprogress = (65535-m_wear)/(65535/maxprogress);
float value_f = (float)toolprogress / (float)maxprogress;
std::ostringstream os;
os<<basename<<"^[progressbar"<<value_f;
return tsrc->getTextureRaw(os.str());
}
2011-11-16 13:44:01 +01:00
video::ITexture * ToolItem::getImageRaw() const
{
2011-11-16 13:44:01 +01:00
ITextureSource *tsrc = m_gamedef->tsrc();
return tsrc->getTextureRaw(getImageBasename());
2011-11-13 15:38:14 +01:00
}
#endif
2011-11-13 15:38:14 +01:00
bool ToolItem::isKnown() const
{
IToolDefManager *tdef = m_gamedef->tdef();
const ToolDefinition *def = tdef->getToolDefinition(m_toolname);
return (def != NULL);
}
/*
CraftItem
*/
CraftItem::CraftItem(IGameDef *gamedef, std::string subname, u16 count):
InventoryItem(gamedef, count)
{
// Convert directly to the correct name through aliases
m_subname = gamedef->cidef()->getAlias(subname);
}
#ifndef SERVER
2011-11-16 13:44:01 +01:00
video::ITexture * CraftItem::getImage() const
{
2011-11-29 16:15:18 +01:00
ICraftItemDefManager *cidef = m_gamedef->cidef();
2011-11-16 13:44:01 +01:00
ITextureSource *tsrc = m_gamedef->tsrc();
2011-11-29 16:15:18 +01:00
std::string imagename = cidef->getImagename(m_subname);
return tsrc->getTextureRaw(imagename);
}
#endif
bool CraftItem::isKnown() const
{
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
return (def != NULL);
}
2011-11-29 16:15:18 +01:00
u16 CraftItem::getStackMax() const
{
2011-11-29 16:15:18 +01:00
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
if(def == NULL)
return InventoryItem::getStackMax();
return def->stack_max;
}
2011-11-29 16:15:18 +01:00
bool CraftItem::isUsable() const
2011-04-19 16:09:45 +02:00
{
2011-11-29 16:15:18 +01:00
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
return def != NULL && def->usable;
2011-04-19 16:09:45 +02:00
}
2011-08-10 11:38:49 +02:00
bool CraftItem::isCookable() const
{
2011-11-29 16:15:18 +01:00
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
return def != NULL && def->cookresult_item != "";
}
2011-08-10 11:38:49 +02:00
InventoryItem *CraftItem::createCookResult() const
{
2011-11-29 16:15:18 +01:00
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
if(def == NULL)
return InventoryItem::createCookResult();
std::istringstream is(def->cookresult_item, std::ios::binary);
return InventoryItem::deSerialize(is, m_gamedef);
2011-04-05 09:59:48 +02:00
}
float CraftItem::getCookTime() const
{
2011-11-29 16:15:18 +01:00
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
if (def == NULL)
return InventoryItem::getCookTime();
return def->furnace_cooktime;
}
float CraftItem::getBurnTime() const
{
2011-11-29 16:15:18 +01:00
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
if (def == NULL)
return InventoryItem::getBurnTime();
return def->furnace_burntime;
}
s16 CraftItem::getDropCount() const
{
// Special cases
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
if(def != NULL && def->dropcount >= 0)
return def->dropcount;
// Default
return InventoryItem::getDropCount();
}
bool CraftItem::areLiquidsPointable() const
{
ICraftItemDefManager *cidef = m_gamedef->cidef();
const CraftItemDefinition *def = cidef->getCraftItemDefinition(m_subname);
return def != NULL && def->liquids_pointable;
}
2011-11-29 16:15:18 +01:00
bool CraftItem::dropOrPlace(ServerEnvironment *env,
ServerActiveObject *dropper,
v3f pos, bool place, s16 count)
{
2011-11-29 16:15:18 +01:00
if(count == 0)
2011-11-12 16:37:14 +01:00
return false;
2011-11-29 16:15:18 +01:00
bool callback_exists = false;
bool result = false;
if(place)
{
result = scriptapi_craftitem_on_place_on_ground(
env->getLua(),
m_subname.c_str(), dropper, pos,
callback_exists);
}
// note: on_drop is fallback for on_place_on_ground
if(!callback_exists)
{
result = scriptapi_craftitem_on_drop(
env->getLua(),
m_subname.c_str(), dropper, pos,
callback_exists);
}
if(callback_exists)
{
// If the callback returned true, drop one item
if(result)
setCount(getCount() - 1);
return getCount() < 1;
}
else
{
// If neither on_place_on_ground (if place==true)
// nor on_drop exists, call the base implementation
return InventoryItem::dropOrPlace(env, dropper, pos, place, count);
}
}
bool CraftItem::use(ServerEnvironment *env,
ServerActiveObject *user,
const PointedThing& pointed)
{
bool callback_exists = false;
bool result = false;
result = scriptapi_craftitem_on_use(
env->getLua(),
m_subname.c_str(), user, pointed,
callback_exists);
if(callback_exists)
{
// If the callback returned true, drop one item
if(result)
setCount(getCount() - 1);
return getCount() < 1;
}
else
{
// If neither on_place_on_ground (if place==true)
// nor on_drop exists, call the base implementation
return InventoryItem::use(env, user, pointed);
}
}
2010-11-27 00:02:21 +01:00
/*
Inventory
*/
2010-12-22 10:29:06 +01:00
InventoryList::InventoryList(std::string name, u32 size)
2010-11-27 00:02:21 +01:00
{
2010-12-22 10:29:06 +01:00
m_name = name;
2010-11-27 00:02:21 +01:00
m_size = size;
clearItems();
//m_dirty = false;
2010-11-27 00:02:21 +01:00
}
2010-12-22 10:29:06 +01:00
InventoryList::~InventoryList()
2010-11-27 00:02:21 +01:00
{
for(u32 i=0; i<m_items.size(); i++)
{
2010-12-22 10:29:06 +01:00
if(m_items[i])
delete m_items[i];
2010-11-27 00:02:21 +01:00
}
}
2010-12-22 10:29:06 +01:00
void InventoryList::clearItems()
2010-11-27 00:02:21 +01:00
{
2010-12-22 10:29:06 +01:00
for(u32 i=0; i<m_items.size(); i++)
{
if(m_items[i])
delete m_items[i];
}
2010-11-27 00:02:21 +01:00
m_items.clear();
2010-12-22 10:29:06 +01:00
2010-11-27 00:02:21 +01:00
for(u32 i=0; i<m_size; i++)
{
m_items.push_back(NULL);
}
//setDirty(true);
2010-11-27 00:02:21 +01:00
}
void InventoryList::setSize(u32 newsize)
{
if(newsize < m_items.size()){
for(u32 i=newsize; i<m_items.size(); i++){
if(m_items[i])
delete m_items[i];
}
m_items.erase(newsize, m_items.size() - newsize);
} else {
for(u32 i=m_items.size(); i<newsize; i++){
m_items.push_back(NULL);
}
}
m_size = newsize;
}
2011-08-10 23:22:44 +02:00
void InventoryList::serialize(std::ostream &os) const
2010-11-27 00:02:21 +01:00
{
//os.imbue(std::locale("C"));
for(u32 i=0; i<m_items.size(); i++)
{
InventoryItem *item = m_items[i];
if(item != NULL)
{
os<<"Item ";
item->serialize(os);
}
else
{
os<<"Empty";
}
os<<"\n";
}
os<<"EndInventoryList\n";
2010-11-27 00:02:21 +01:00
}
void InventoryList::deSerialize(std::istream &is, IGameDef *gamedef)
2010-11-27 00:02:21 +01: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, ' ');
if(name == "EndInventoryList")
2010-11-27 00:02:21 +01:00
{
break;
}
// This is a temporary backwards compatibility fix
else if(name == "end")
{
break;
}
2010-11-27 00:02:21 +01:00
else if(name == "Item")
{
if(item_i > getSize() - 1)
throw SerializationError("too many items");
InventoryItem *item = InventoryItem::deSerialize(iss, gamedef);
2010-11-27 00:02:21 +01:00
m_items[item_i++] = item;
}
else if(name == "Empty")
{
if(item_i > getSize() - 1)
throw SerializationError("too many items");
m_items[item_i++] = NULL;
}
else
{
throw SerializationError("Unknown inventory identifier");
}
}
}
2010-12-22 10:29:06 +01:00
InventoryList::InventoryList(const InventoryList &other)
{
/*
Do this so that the items get cloned. Otherwise the pointers
in the array will just get copied.
*/
*this = other;
}
InventoryList & InventoryList::operator = (const InventoryList &other)
2010-11-27 00:02:21 +01:00
{
2010-12-22 10:29:06 +01:00
m_name = other.m_name;
2010-11-27 00:02:21 +01:00
m_size = other.m_size;
clearItems();
for(u32 i=0; i<other.m_items.size(); i++)
{
InventoryItem *item = other.m_items[i];
if(item != NULL)
{
m_items[i] = item->clone();
}
}
//setDirty(true);
2010-11-27 00:02:21 +01:00
return *this;
}
2011-08-10 11:38:49 +02:00
const std::string &InventoryList::getName() const
2010-12-22 10:29:06 +01:00
{
return m_name;
}
u32 InventoryList::getSize()
2010-11-27 00:02:21 +01:00
{
return m_items.size();
}
2010-12-22 10:29:06 +01:00
u32 InventoryList::getUsedSlots()
2010-11-27 00:02:21 +01:00
{
u32 num = 0;
for(u32 i=0; i<m_items.size(); i++)
{
InventoryItem *item = m_items[i];
if(item != NULL)
num++;
}
return num;
}
2011-04-05 09:59:48 +02:00
u32 InventoryList::getFreeSlots()
{
return getSize() - getUsedSlots();
}
2011-08-10 11:38:49 +02:00
const InventoryItem * InventoryList::getItem(u32 i) const
{
2011-11-28 13:55:24 +01:00
if(i >= m_items.size())
2011-08-10 11:38:49 +02:00
return NULL;
return m_items[i];
}
2010-12-22 10:29:06 +01:00
InventoryItem * InventoryList::getItem(u32 i)
2010-11-27 00:02:21 +01:00
{
2011-11-28 13:55:24 +01:00
if(i >= m_items.size())
2010-11-27 00:02:21 +01:00
return NULL;
return m_items[i];
}
2010-12-22 10:29:06 +01:00
InventoryItem * InventoryList::changeItem(u32 i, InventoryItem *newitem)
2010-11-27 00:02:21 +01:00
{
2011-11-28 13:55:24 +01:00
if(i >= m_items.size())
return newitem;
2010-11-27 00:02:21 +01:00
InventoryItem *olditem = m_items[i];
m_items[i] = newitem;
//setDirty(true);
2010-11-27 00:02:21 +01:00
return olditem;
}
2010-12-22 10:29:06 +01:00
void InventoryList::deleteItem(u32 i)
2010-11-27 00:02:21 +01:00
{
assert(i < m_items.size());
InventoryItem *item = changeItem(i, NULL);
if(item)
delete item;
}
InventoryItem * InventoryList::addItem(InventoryItem *newitem)
2010-11-27 00:02:21 +01:00
{
if(newitem == NULL)
return NULL;
/*
First try to find if it could be added to some existing items
*/
for(u32 i=0; i<m_items.size(); i++)
2010-11-27 00:02:21 +01:00
{
// Ignore empty slots
if(m_items[i] == NULL)
continue;
// Try adding
newitem = addItem(i, newitem);
if(newitem == NULL)
return NULL; // All was eaten
2010-11-27 00:02:21 +01:00
}
/*
Then try to add it to empty slots
*/
2010-11-27 00:02:21 +01:00
for(u32 i=0; i<m_items.size(); i++)
{
// Ignore unempty slots
if(m_items[i] != NULL)
2010-11-27 00:02:21 +01:00
continue;
// Try adding
newitem = addItem(i, newitem);
if(newitem == NULL)
return NULL; // All was eaten
2010-11-27 00:02:21 +01:00
}
// Return leftover
return newitem;
2010-11-27 00:02:21 +01:00
}
InventoryItem * InventoryList::addItem(u32 i, InventoryItem *newitem)
2010-12-22 15:30:23 +01:00
{
if(newitem == NULL)
return NULL;
2011-11-28 13:55:24 +01:00
if(i >= m_items.size())
return newitem;
//setDirty(true);
2010-12-22 15:30:23 +01:00
// If it is an empty position, it's an easy job.
InventoryItem *to_item = getItem(i);
if(to_item == NULL)
2010-12-22 15:30:23 +01:00
{
m_items[i] = newitem;
return NULL;
2010-12-22 15:30:23 +01:00
}
// If not addable, return the item
if(newitem->addableTo(to_item) == false)
return newitem;
// If the item fits fully in the slot, add counter and delete it
if(newitem->getCount() <= to_item->freeSpace())
{
to_item->add(newitem->getCount());
delete newitem;
return NULL;
}
// Else the item does not fit fully. Add all that fits and return
// the rest.
else
2010-12-22 15:30:23 +01:00
{
u16 freespace = to_item->freeSpace();
to_item->add(freespace);
newitem->remove(freespace);
return newitem;
}
}
2010-12-22 15:30:23 +01:00
bool InventoryList::itemFits(const u32 i, const InventoryItem *newitem)
2011-04-05 01:56:29 +02:00
{
// If it is an empty position, it's an easy job.
2011-08-10 11:38:49 +02:00
const InventoryItem *to_item = getItem(i);
2011-04-05 01:56:29 +02:00
if(to_item == NULL)
{
return true;
}
// If not addable, fail
2011-04-05 01:56:29 +02:00
if(newitem->addableTo(to_item) == false)
return false;
// If the item fits fully in the slot, pass
2011-04-05 01:56:29 +02:00
if(newitem->getCount() <= to_item->freeSpace())
{
return true;
}
return false;
}
bool InventoryList::roomForItem(const InventoryItem *item)
{
for(u32 i=0; i<m_items.size(); i++)
if(itemFits(i, item))
return true;
return false;
}
bool InventoryList::roomForCookedItem(const InventoryItem *item)
{
if(!item)
return false;
const InventoryItem *cook = item->createCookResult();
if(!cook)
return false;
bool room = roomForItem(cook);
delete cook;
return room;
}
InventoryItem * InventoryList::takeItem(u32 i, u32 count)
{
if(count == 0)
return NULL;
//setDirty(true);
InventoryItem *item = getItem(i);
// If it is an empty position, return NULL
if(item == NULL)
return NULL;
if(count >= item->getCount())
{
// Get the item by swapping NULL to its place
return changeItem(i, NULL);
}
else
{
InventoryItem *item2 = item->clone();
item->remove(count);
item2->setCount(count);
return item2;
2010-12-22 15:30:23 +01:00
}
return false;
}
void InventoryList::decrementMaterials(u16 count)
{
for(u32 i=0; i<m_items.size(); i++)
{
InventoryItem *item = takeItem(i, count);
if(item)
delete item;
2010-12-22 15:30:23 +01:00
}
}
2010-12-22 10:29:06 +01:00
void InventoryList::print(std::ostream &o)
2010-11-27 00:02:21 +01:00
{
2010-12-22 10:29:06 +01:00
o<<"InventoryList:"<<std::endl;
2010-11-27 00:02:21 +01:00
for(u32 i=0; i<m_items.size(); i++)
{
InventoryItem *item = m_items[i];
if(item != NULL)
{
o<<i<<": ";
item->serialize(o);
o<<"\n";
}
}
}
2010-12-22 10:29:06 +01:00
/*
Inventory
*/
Inventory::~Inventory()
{
clear();
}
void Inventory::clear()
{
for(u32 i=0; i<m_lists.size(); i++)
{
delete m_lists[i];
}
m_lists.clear();
}
Inventory::Inventory()
{
}
Inventory::Inventory(const Inventory &other)
{
*this = other;
}
Inventory & Inventory::operator = (const Inventory &other)
{
clear();
for(u32 i=0; i<other.m_lists.size(); i++)
{
m_lists.push_back(new InventoryList(*other.m_lists[i]));
}
return *this;
}
2011-08-10 23:22:44 +02:00
void Inventory::serialize(std::ostream &os) const
2010-12-22 10:29:06 +01: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);
}
os<<"EndInventory\n";
2010-12-22 10:29:06 +01:00
}
void Inventory::deSerialize(std::istream &is, IGameDef *gamedef)
2010-12-22 10:29:06 +01:00
{
clear();
for(;;)
{
std::string line;
std::getline(is, line, '\n');
std::istringstream iss(line);
std::string name;
std::getline(iss, name, ' ');
if(name == "EndInventory")
2010-12-22 10:29:06 +01:00
{
break;
}
// This is a temporary backwards compatibility fix
else if(name == "end")
{
break;
}
2010-12-22 10:29:06 +01:00
else if(name == "List")
{
std::string listname;
u32 listsize;
std::getline(iss, listname, ' ');
iss>>listsize;
InventoryList *list = new InventoryList(listname, listsize);
list->deSerialize(is, gamedef);
2010-12-22 10:29:06 +01: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];
m_lists[i] = new InventoryList(name, size);
}
return m_lists[i];
}
else
{
m_lists.push_back(new InventoryList(name, size));
return m_lists.getLast();
}
}
InventoryList * Inventory::getList(const std::string &name)
{
s32 i = getListIndex(name);
if(i == -1)
return NULL;
return m_lists[i];
}
2011-11-28 13:55:24 +01:00
bool Inventory::deleteList(const std::string &name)
{
s32 i = getListIndex(name);
if(i == -1)
return false;
delete m_lists[i];
m_lists.erase(i);
return true;
}
2011-08-10 11:38:49 +02: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 10:29:06 +01:00
{
for(u32 i=0; i<m_lists.size(); i++)
{
if(m_lists[i]->getName() == name)
return i;
}
return -1;
}
2010-11-27 00:02:21 +01:00
//END