Files
cuberite-2a/source/Item.h
T

211 lines
4.3 KiB
C++
Raw Normal View History

2013-06-02 10:40:20 +00:00
// Item.h
// Declares the cItem class representing an item (in the inventory sense)
#pragma once
#include "Defines.h"
2013-06-02 10:40:20 +00:00
#include "Enchantments.h"
2013-06-16 14:12:25 +00:00
// fwd:
class cItemHandler;
namespace Json
{
class Value;
}
// tolua_begin
class cItem
{
public:
/// Creates an empty item
cItem(void) :
m_ItemType(E_ITEM_EMPTY),
m_ItemCount(0),
m_ItemDamage(0)
{
}
2013-06-02 10:40:20 +00:00
/// Creates an item of the specified type, by default 1 piece with no damage and no enchantments
cItem(
short a_ItemType,
char a_ItemCount = 1,
2013-06-02 10:40:20 +00:00
short a_ItemDamage = 0,
const AString & a_Enchantments = ""
) :
2013-06-02 10:40:20 +00:00
m_ItemType (a_ItemType),
m_ItemCount (a_ItemCount),
m_ItemDamage (a_ItemDamage),
m_Enchantments(a_Enchantments)
{
if (!IsValidItem(m_ItemType))
{
if (m_ItemType != E_BLOCK_AIR)
{
LOGWARNING("%s: creating an invalid item type (%d), resetting to empty.", __FUNCTION__, a_ItemType);
}
Empty();
}
}
2012-08-19 11:51:17 +00:00
2013-04-10 21:40:30 +00:00
/// Creates an exact copy of the item
cItem(const cItem & a_CopyFrom) :
m_ItemType (a_CopyFrom.m_ItemType),
m_ItemCount (a_CopyFrom.m_ItemCount),
m_ItemDamage (a_CopyFrom.m_ItemDamage),
m_Enchantments(a_CopyFrom.m_Enchantments)
{
}
2013-04-10 21:40:30 +00:00
void Empty(void)
{
m_ItemType = E_ITEM_EMPTY;
m_ItemCount = 0;
m_ItemDamage = 0;
2013-06-02 10:40:20 +00:00
m_Enchantments.Clear();
}
2012-08-19 11:51:17 +00:00
2013-04-10 21:40:30 +00:00
void Clear(void)
{
m_ItemType = E_ITEM_EMPTY;
m_ItemCount = 0;
m_ItemDamage = 0;
}
2012-08-19 11:51:17 +00:00
2013-04-10 21:40:30 +00:00
bool IsEmpty(void) const
{
2013-04-10 21:40:30 +00:00
return ((m_ItemType <= 0) || (m_ItemCount <= 0));
}
2013-04-10 21:40:30 +00:00
bool IsEqual(const cItem & a_Item) const
{
return (
IsSameType(a_Item) &&
(m_ItemDamage == a_Item.m_ItemDamage) &&
(m_Enchantments == a_Item.m_Enchantments)
);
}
2013-04-10 21:40:30 +00:00
bool IsSameType(const cItem & a_Item) const
{
return (m_ItemType == a_Item.m_ItemType) || (IsEmpty() && a_Item.IsEmpty());
}
2013-04-10 21:40:30 +00:00
2013-04-10 21:40:30 +00:00
/// Returns a copy of this item with m_ItemCount set to 1. Useful to preserve enchantments etc. on stacked items
cItem CopyOne(void) const;
2013-06-16 14:12:25 +00:00
/// Adds the specified count to this object and returns the reference to self (useful for chaining)
cItem & AddCount(char a_AmountToAdd);
/// Returns the maximum damage value that this item can have; zero if damage is not applied
short GetMaxDamage(void) const;
/// Damages a weapon / tool. Returns true when damage reaches max value and the item should be destroyed
bool DamageItem(short a_Amount = 1);
inline bool IsDamageable(void) const { return (GetMaxDamage() > 0); }
/// Returns true if this itemstack can stack with the specified stack (types match, enchantments etc.) ItemCounts are ignored!
bool IsStackableWith(const cItem & a_OtherStack) const;
2013-06-16 14:12:25 +00:00
/// Returns true if the item is stacked up to its maximum stacking.
bool IsFullStack(void) const;
2013-11-10 18:41:26 +01:00
/// Returns the maximum amount of stacked items of this type.
char GetMaxStackSize(void) const;
2012-06-19 21:31:00 +00:00
// tolua_end
2013-06-16 14:12:25 +00:00
/// Returns the cItemHandler responsible for this item type
cItemHandler * GetHandler(void) const;
/// Saves the item data into JSON representation
void GetJson(Json::Value & a_OutValue) const;
/// Loads the item data from JSON representation
void FromJson(const Json::Value & a_Value);
/// Returns true if the specified item type is enchantable (as per 1.2.5 protocol requirements)
static bool IsEnchantable(short a_ItemType);
2013-06-16 14:12:25 +00:00
// tolua_begin
2013-06-02 10:40:20 +00:00
short m_ItemType;
char m_ItemCount;
short m_ItemDamage;
cEnchantments m_Enchantments;
};
// tolua_end
2013-01-27 03:45:40 +00:00
/** This class bridges a vector of cItem for safe access via Lua. It checks boundaries for all accesses
Note that this class is zero-indexed!
*/
2013-01-27 03:45:40 +00:00
class cItems // tolua_export
: public std::vector<cItem>
{ // tolua_export
public:
// tolua_begin
2013-05-09 19:09:27 +00:00
/// Need a Lua-accessible constructor
cItems(void) {}
2013-05-09 19:09:27 +00:00
cItem * Get (int a_Idx);
void Set (int a_Idx, const cItem & a_Item);
2013-01-27 03:45:40 +00:00
void Add (const cItem & a_Item) {push_back(a_Item); }
void Delete(int a_Idx);
2013-01-27 03:45:40 +00:00
void Clear (void) {clear(); }
int Size (void) {return size(); }
void Set (int a_Idx, ENUM_ITEM_ID a_ItemType, char a_ItemCount, short a_ItemDamage);
2013-01-27 03:45:40 +00:00
void Add (ENUM_ITEM_ID a_ItemType, char a_ItemCount, short a_ItemDamage)
2013-01-27 03:45:40 +00:00
{
push_back(cItem(a_ItemType, a_ItemCount, a_ItemDamage));
2013-01-27 03:45:40 +00:00
}
// tolua_end
} ; // tolua_export
/// Used to store loot probability tables
class cLootProbab
{
public:
cItem m_Item;
int m_MinAmount;
int m_MaxAmount;
int m_Weight;
} ;