minetest/src/inventory.h

345 lines
9.3 KiB
C
Raw Permalink Normal View History

/*
2013-02-24 17:40:43 +00:00
Minetest
2013-02-24 18:38:45 +00:00
Copyright (C) 2010-2013 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 Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser 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.
*/
#pragma once
2010-11-26 23:02:21 +00:00
#include "itemdef.h"
2014-06-26 00:28:41 +00:00
#include "irrlichttypes.h"
2017-01-31 19:49:01 +00:00
#include "itemstackmetadata.h"
2014-06-26 00:28:41 +00:00
#include <istream>
#include <ostream>
#include <string>
#include <vector>
#include <cassert>
2010-11-26 23:02:21 +00:00
2012-02-28 17:45:23 +00:00
struct ToolCapabilities;
struct ItemStack
2010-11-26 23:02:21 +00:00
{
ItemStack() = default;
2017-01-31 19:49:01 +00:00
ItemStack(const std::string &name_, u16 count_,
u16 wear, IItemDefManager *itemdef);
~ItemStack() = default;
// Serialization
void serialize(std::ostream &os, bool serialize_meta = true) const;
// Deserialization. Pass itemdef unless you don't want aliases resolved.
2014-06-26 00:28:41 +00:00
void deSerialize(std::istream &is, IItemDefManager *itemdef = NULL);
void deSerialize(const std::string &s, IItemDefManager *itemdef = NULL);
// Returns the string used for inventory
std::string getItemString(bool include_meta = true) const;
// Returns the tooltip
std::string getDescription(IItemDefManager *itemdef) const;
std::string getShortDescription(IItemDefManager *itemdef) const;
/*
Quantity methods
*/
2010-11-26 23:02:21 +00:00
bool empty() const
2011-11-29 15:15:18 +00:00
{
return count == 0;
2011-11-29 15:15:18 +00:00
}
2011-11-17 00:28:46 +00:00
void clear()
{
name = "";
count = 0;
wear = 0;
2017-01-31 19:49:01 +00:00
metadata.clear();
}
2010-11-26 23:02:21 +00:00
void add(u16 n)
2010-11-26 23:02:21 +00:00
{
count += n;
2010-11-26 23:02:21 +00:00
}
void remove(u16 n)
2010-11-26 23:02:21 +00:00
{
assert(count >= n); // Pre-condition
count -= n;
if(count == 0)
clear(); // reset name, wear and metadata too
2011-11-17 00:28:46 +00:00
}
2010-11-26 23:02:21 +00:00
// Maximum size of a stack
u16 getStackMax(IItemDefManager *itemdef) const
2011-11-17 00:28:46 +00:00
{
return itemdef->get(name).stack_max;
2011-11-17 00:28:46 +00:00
}
// Number of items that can be added to this stack
u16 freeSpace(IItemDefManager *itemdef) const
{
u16 max = getStackMax(itemdef);
if (count >= max)
return 0;
return max - count;
}
// Returns false if item is not known and cannot be used
bool isKnown(IItemDefManager *itemdef) const
2010-12-24 01:08:05 +00:00
{
return itemdef->isKnown(name);
2010-12-24 01:08:05 +00:00
}
2011-11-13 14:38:14 +00:00
// Returns a pointer to the item definition struct,
// or a fallback one (name="unknown") if the item is unknown.
const ItemDefinition& getDefinition(
IItemDefManager *itemdef) const
2010-12-24 01:08:05 +00:00
{
return itemdef->get(name);
2010-12-24 01:08:05 +00:00
}
2011-11-17 00:28:46 +00:00
// Get tool digging properties, or those of the hand if not a tool
2012-02-28 17:45:23 +00:00
const ToolCapabilities& getToolCapabilities(
IItemDefManager *itemdef) const
2011-11-17 00:28:46 +00:00
{
const ToolCapabilities *item_cap =
itemdef->get(name).tool_capabilities;
if (item_cap == NULL)
// Fall back to the hand's tool capabilities
item_cap = itemdef->get("").tool_capabilities;
assert(item_cap != NULL);
return metadata.getToolCapabilities(*item_cap); // Check for override
2011-11-17 00:28:46 +00:00
}
// Wear out (only tools)
// Returns true if the item is (was) a tool
bool addWear(s32 amount, IItemDefManager *itemdef)
2010-12-24 01:08:05 +00:00
{
if(getDefinition(itemdef).type == ITEM_TOOL)
2010-12-24 23:54:39 +00:00
{
if(amount > 65535 - wear)
clear();
else if(amount < -wear)
wear = 0;
else
wear += amount;
2010-12-24 23:54:39 +00:00
return true;
}
return false;
2010-12-24 23:54:39 +00:00
}
// If possible, adds newitem to this item.
// If cannot be added at all, returns the item back.
// If can be added partly, decremented item is returned back.
// If can be added fully, empty item is returned.
ItemStack addItem(ItemStack newitem, IItemDefManager *itemdef);
// Checks whether newitem could be added.
// If restitem is non-NULL, it receives the part of newitem that
// would be left over after adding.
bool itemFits(ItemStack newitem,
ItemStack *restitem, // may be NULL
IItemDefManager *itemdef) const;
// Takes some items.
// If there are not enough, takes as many as it can.
// Returns empty item if couldn't take any.
ItemStack takeItem(u32 takecount);
// Similar to takeItem, but keeps this ItemStack intact.
ItemStack peekItem(u32 peekcount) const;
bool operator ==(const ItemStack &s) const
{
return (this->name == s.name &&
this->count == s.count &&
this->wear == s.wear &&
this->metadata == s.metadata);
}
bool operator !=(const ItemStack &s) const
{
return !(*this == s);
}
/*
Properties
*/
std::string name = "";
u16 count = 0;
u16 wear = 0;
2017-01-31 19:49:01 +00:00
ItemStackMetadata metadata;
2010-12-24 01:08:05 +00:00
};
2010-12-22 09:29:06 +00:00
class InventoryList
2010-11-26 23:02:21 +00:00
{
public:
InventoryList(const std::string &name, u32 size, IItemDefManager *itemdef);
~InventoryList() = default;
2010-11-26 23:02:21 +00:00
void clearItems();
void setSize(u32 newsize);
void setWidth(u32 newWidth);
2012-06-02 21:32:49 +00:00
void setName(const std::string &name);
void serialize(std::ostream &os, bool incremental) const;
void deSerialize(std::istream &is);
2010-11-26 23:02:21 +00:00
2010-12-22 09:29:06 +00:00
InventoryList(const InventoryList &other);
InventoryList & operator = (const InventoryList &other);
bool operator == (const InventoryList &other) const;
bool operator != (const InventoryList &other) const
{
return !(*this == other);
}
2010-11-26 23:02:21 +00:00
2011-08-10 09:38:49 +00:00
const std::string &getName() const;
u32 getSize() const;
u32 getWidth() const;
2010-12-22 09:29:06 +00:00
// Count used slots
u32 getUsedSlots() const;
u32 getFreeSlots() const;
// Get reference to item
const ItemStack& getItem(u32 i) const;
ItemStack& getItem(u32 i);
// Returns old item. Parameter can be an empty item.
ItemStack changeItem(u32 i, const ItemStack &newitem);
2010-12-22 14:30:23 +00:00
// Delete item
2010-11-26 23:02:21 +00:00
void deleteItem(u32 i);
2011-04-04 23:56:29 +00:00
// Adds an item to a suitable place. Returns leftover item (possibly empty).
ItemStack addItem(const ItemStack &newitem);
// If possible, adds item to given slot.
// If cannot be added at all, returns the item back.
// If can be added partly, decremented item is returned back.
// If can be added fully, empty item is returned.
ItemStack addItem(u32 i, const ItemStack &newitem);
2011-04-04 23:56:29 +00:00
// Checks whether the item could be added to the given slot
// If restitem is non-NULL, it receives the part of newitem that
// would be left over after adding.
bool itemFits(const u32 i, const ItemStack &newitem,
ItemStack *restitem = NULL) const;
// Checks whether there is room for a given item
bool roomForItem(const ItemStack &item) const;
// Checks whether the given count of the given item
// exists in this inventory list.
// If match_meta is false, only the items' names are compared.
bool containsItem(const ItemStack &item, bool match_meta) const;
// Removes the given count of the given item name from
// this inventory list. Walks the list in reverse order.
// If not as many items exist as requested, removes as
// many as possible.
// Returns the items that were actually removed.
ItemStack removeItem(const ItemStack &item);
2011-04-04 23:56:29 +00:00
// Takes some items from a slot.
// If there are not enough, takes as many as it can.
// Returns empty item if couldn't take any.
ItemStack takeItem(u32 i, u32 takecount);
2010-12-22 14:30:23 +00:00
// Move an item to a different list (or a different stack in the same list)
// count is the maximum number of items to move (0 for everything)
// returns number of moved items
u32 moveItem(u32 i, InventoryList *dest, u32 dest_i,
2015-08-19 00:28:37 +00:00
u32 count = 0, bool swap_if_needed = true, bool *did_swap = NULL);
// like moveItem, but without a fixed destination index
// also with optional rollback recording
void moveItemSomewhere(u32 i, InventoryList *dest, u32 count);
inline bool checkModified() const { return m_dirty; }
inline void setModified(bool dirty = true) { m_dirty = dirty; }
2010-11-26 23:02:21 +00:00
private:
std::vector<ItemStack> m_items;
2010-12-22 09:29:06 +00:00
std::string m_name;
u32 m_size;
u32 m_width = 0;
IItemDefManager *m_itemdef;
bool m_dirty = true;
2010-12-22 09:29:06 +00:00
};
class Inventory
{
public:
~Inventory();
void clear();
Inventory(IItemDefManager *itemdef);
2010-12-22 09:29:06 +00:00
Inventory(const Inventory &other);
Inventory & operator = (const Inventory &other);
bool operator == (const Inventory &other) const;
bool operator != (const Inventory &other) const
{
return !(*this == other);
}
// Never ever serialize to disk using "incremental"!
void serialize(std::ostream &os, bool incremental = false) const;
void deSerialize(std::istream &is);
2010-12-22 09:29:06 +00:00
// Creates a new list if none exists or truncates existing lists
2010-12-22 09:29:06 +00:00
InventoryList * addList(const std::string &name, u32 size);
InventoryList * getList(const std::string &name);
2011-08-10 09:38:49 +00:00
const InventoryList * getList(const std::string &name) const;
std::vector<const InventoryList*> getLists();
2010-12-22 09:29:06 +00:00
bool deleteList(const std::string &name);
// A shorthand for adding items. Returns leftover item (possibly empty).
ItemStack addItem(const std::string &listname, const ItemStack &newitem)
2010-12-22 09:29:06 +00:00
{
InventoryList *list = getList(listname);
if(list == NULL)
return newitem;
2010-12-22 09:29:06 +00:00
return list->addItem(newitem);
}
inline bool checkModified() const
{
if (m_dirty)
return true;
for (const auto &list : m_lists)
if (list->checkModified())
return true;
return false;
}
inline void setModified(bool dirty = true)
{
m_dirty = dirty;
// Set all as handled
if (!dirty) {
for (const auto &list : m_lists)
list->setModified(dirty);
}
}
2010-12-22 09:29:06 +00:00
private:
// -1 if not found
2011-08-10 09:38:49 +00:00
const s32 getListIndex(const std::string &name) const;
2010-12-22 09:29:06 +00:00
std::vector<InventoryList*> m_lists;
IItemDefManager *m_itemdef;
bool m_dirty = true;
2010-11-26 23:02:21 +00:00
};