2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Defines.h"
|
|
|
|
#include "BlockID.h"
|
|
|
|
|
|
|
|
namespace Json
|
|
|
|
{
|
|
|
|
class Value;
|
2012-08-03 07:53:11 -04:00
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// tolua_begin
|
|
|
|
class cItem
|
|
|
|
{
|
|
|
|
public:
|
2013-01-11 23:46:01 -05:00
|
|
|
cItem(short a_ItemType = E_ITEM_EMPTY, char a_ItemCount = 0, short a_ItemDamage = 0)
|
2012-08-19 07:51:17 -04:00
|
|
|
: m_ItemType (a_ItemType)
|
|
|
|
, m_ItemCount (a_ItemCount)
|
2013-01-11 23:46:01 -05:00
|
|
|
, m_ItemDamage(a_ItemDamage)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
if (!IsValidItem(m_ItemType))
|
|
|
|
{
|
|
|
|
m_ItemType = E_ITEM_EMPTY;
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2012-08-19 07:51:17 -04:00
|
|
|
|
2013-04-10 17:40:30 -04:00
|
|
|
|
|
|
|
void Empty(void)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
m_ItemType = E_ITEM_EMPTY;
|
2012-06-14 09:06:06 -04:00
|
|
|
m_ItemCount = 0;
|
2013-01-11 23:46:01 -05:00
|
|
|
m_ItemDamage = 0;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2012-08-19 07:51:17 -04:00
|
|
|
|
2013-04-10 17:40:30 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
void Clear(void)
|
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
m_ItemType = E_ITEM_EMPTY;
|
2012-06-14 09:06:06 -04:00
|
|
|
m_ItemCount = 0;
|
2013-01-11 23:46:01 -05:00
|
|
|
m_ItemDamage = 0;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2012-08-19 07:51:17 -04:00
|
|
|
|
2013-04-10 17:40:30 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
bool IsEmpty(void) const
|
|
|
|
{
|
2013-04-10 17:40:30 -04:00
|
|
|
return ((m_ItemType <= 0) || (m_ItemCount <= 0));
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2012-08-18 05:56:28 -04:00
|
|
|
|
2013-04-10 17:40:30 -04:00
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
bool IsEqual(const cItem & a_Item) const
|
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
return (IsSameType(a_Item) && (m_ItemDamage == a_Item.m_ItemDamage));
|
2012-08-18 05:56:28 -04:00
|
|
|
}
|
|
|
|
|
2013-04-10 17:40:30 -04:00
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
bool IsSameType(const cItem & a_Item) const
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
return (m_ItemType == a_Item.m_ItemType) || (IsEmpty() && a_Item.IsEmpty());
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2013-04-10 17:40:30 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-04-10 17:40:30 -04: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-04-11 06:05:53 -04:00
|
|
|
/// 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
|
2013-05-19 14:22:37 -04:00
|
|
|
bool DamageItem(short a_Amount = 1);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-04-11 06:05:53 -04:00
|
|
|
inline bool IsDamageable(void) const { return (GetMaxDamage() > 0); }
|
2013-04-10 15:52:03 -04:00
|
|
|
|
|
|
|
/// Returns true if this itemstack can stack with the specified stack (types match, enchantments etc.) ItemCounts are ignored!
|
|
|
|
bool IsStackableWith(const cItem & a_OtherStack);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-06-19 17:31:00 -04:00
|
|
|
// tolua_end
|
2012-06-14 09:06:06 -04:00
|
|
|
void GetJson( Json::Value & a_OutValue ) const;
|
|
|
|
void FromJson( const Json::Value & a_Value );
|
2012-06-19 17:31:00 -04:00
|
|
|
// tolua_begin
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
static bool IsEnchantable(short a_ItemType);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
short m_ItemType;
|
|
|
|
char m_ItemCount;
|
|
|
|
short m_ItemDamage;
|
2012-06-14 09:06:06 -04:00
|
|
|
};
|
|
|
|
// tolua_end
|
|
|
|
|
2013-01-26 22:45:40 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-05-12 11:58:29 -04: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-26 22:45:40 -05:00
|
|
|
class cItems // tolua_export
|
|
|
|
: public std::vector<cItem>
|
|
|
|
{ // tolua_export
|
|
|
|
public:
|
|
|
|
// tolua_begin
|
2013-05-09 15:09:27 -04:00
|
|
|
|
2013-05-09 10:32:27 -04:00
|
|
|
/// Need a Lua-accessible constructor
|
|
|
|
cItems(void) {}
|
2013-05-09 15:09:27 -04:00
|
|
|
|
2013-05-12 11:58:29 -04:00
|
|
|
cItem * Get (int a_Idx);
|
|
|
|
void Set (int a_Idx, const cItem & a_Item);
|
2013-01-26 22:45:40 -05:00
|
|
|
void Add (const cItem & a_Item) {push_back(a_Item); }
|
2013-05-12 11:58:29 -04:00
|
|
|
void Delete(int a_Idx);
|
2013-01-26 22:45:40 -05:00
|
|
|
void Clear (void) {clear(); }
|
|
|
|
int Size (void) {return size(); }
|
2013-05-12 11:58:29 -04:00
|
|
|
void Set (int a_Idx, ENUM_ITEM_ID a_ItemType, char a_ItemCount, short a_ItemDamage);
|
2013-01-26 22:45:40 -05:00
|
|
|
|
2013-01-26 23:04:18 -05:00
|
|
|
void Add (ENUM_ITEM_ID a_ItemType, char a_ItemCount, short a_ItemDamage)
|
2013-01-26 22:45:40 -05:00
|
|
|
{
|
2013-01-26 23:04:18 -05:00
|
|
|
push_back(cItem(a_ItemType, a_ItemCount, a_ItemDamage));
|
2013-01-26 22:45:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// tolua_end
|
|
|
|
} ; // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-06 17:21:57 -04:00
|
|
|
|
|
|
|
/// Used to store loot probability tables
|
|
|
|
class cLootProbab
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cItem m_Item;
|
|
|
|
int m_MinAmount;
|
|
|
|
int m_MaxAmount;
|
|
|
|
int m_Weight;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|