2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "Item.h"
|
2013-11-27 03:17:25 -05:00
|
|
|
#include "json/json.h"
|
2013-06-16 10:12:25 -04:00
|
|
|
#include "Items/ItemHandler.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-10 17:40:30 -04:00
|
|
|
cItem cItem::CopyOne(void) const
|
|
|
|
{
|
|
|
|
cItem res(*this);
|
|
|
|
res.m_ItemCount = 1;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-16 10:12:25 -04:00
|
|
|
cItem & cItem::AddCount(char a_AmountToAdd)
|
|
|
|
{
|
|
|
|
m_ItemCount += a_AmountToAdd;
|
|
|
|
if (m_ItemCount <= 0)
|
|
|
|
{
|
|
|
|
Empty();
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-11 06:05:53 -04:00
|
|
|
short cItem::GetMaxDamage(void) const
|
|
|
|
{
|
|
|
|
switch (m_ItemType)
|
|
|
|
{
|
2013-11-02 10:08:00 -04:00
|
|
|
case E_ITEM_BOW: return 384;
|
2013-04-11 06:05:53 -04:00
|
|
|
case E_ITEM_DIAMOND_AXE: return 1563;
|
|
|
|
case E_ITEM_DIAMOND_HOE: return 1563;
|
|
|
|
case E_ITEM_DIAMOND_PICKAXE: return 1563;
|
|
|
|
case E_ITEM_DIAMOND_SHOVEL: return 1563;
|
|
|
|
case E_ITEM_DIAMOND_SWORD: return 1563;
|
|
|
|
case E_ITEM_FLINT_AND_STEEL: return 65;
|
|
|
|
case E_ITEM_GOLD_AXE: return 32;
|
|
|
|
case E_ITEM_GOLD_HOE: return 32;
|
|
|
|
case E_ITEM_GOLD_PICKAXE: return 32;
|
|
|
|
case E_ITEM_GOLD_SHOVEL: return 32;
|
|
|
|
case E_ITEM_GOLD_SWORD: return 32;
|
|
|
|
case E_ITEM_IRON_AXE: return 251;
|
|
|
|
case E_ITEM_IRON_HOE: return 251;
|
|
|
|
case E_ITEM_IRON_PICKAXE: return 251;
|
|
|
|
case E_ITEM_IRON_SHOVEL: return 251;
|
|
|
|
case E_ITEM_IRON_SWORD: return 251;
|
|
|
|
case E_ITEM_SHEARS: return 251;
|
|
|
|
case E_ITEM_STONE_AXE: return 132;
|
|
|
|
case E_ITEM_STONE_HOE: return 132;
|
|
|
|
case E_ITEM_STONE_PICKAXE: return 132;
|
|
|
|
case E_ITEM_STONE_SHOVEL: return 132;
|
|
|
|
case E_ITEM_STONE_SWORD: return 132;
|
|
|
|
case E_ITEM_WOODEN_AXE: return 60;
|
|
|
|
case E_ITEM_WOODEN_HOE: return 60;
|
|
|
|
case E_ITEM_WOODEN_PICKAXE: return 60;
|
|
|
|
case E_ITEM_WOODEN_SHOVEL: return 60;
|
|
|
|
case E_ITEM_WOODEN_SWORD: return 60;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-05-19 14:22:37 -04:00
|
|
|
bool cItem::DamageItem(short a_Amount)
|
2013-04-11 06:05:53 -04:00
|
|
|
{
|
|
|
|
short MaxDamage = GetMaxDamage();
|
|
|
|
if (MaxDamage == 0)
|
|
|
|
{
|
|
|
|
// Item doesn't have damage
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-19 14:22:37 -04:00
|
|
|
m_ItemDamage += a_Amount;
|
2013-04-11 06:05:53 -04:00
|
|
|
return (m_ItemDamage >= MaxDamage);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-16 10:12:25 -04:00
|
|
|
bool cItem::IsFullStack(void) const
|
|
|
|
{
|
|
|
|
return (m_ItemCount >= ItemHandler(m_ItemType)->GetMaxStackSize());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-10 12:41:26 -05:00
|
|
|
char cItem::GetMaxStackSize(void) const
|
|
|
|
{
|
|
|
|
return ItemHandler(m_ItemType)->GetMaxStackSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-16 10:12:25 -04:00
|
|
|
/// Returns the cItemHandler responsible for this item type
|
|
|
|
cItemHandler * cItem::GetHandler(void) const
|
|
|
|
{
|
|
|
|
return ItemHandler(m_ItemType);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-02 17:21:32 -04:00
|
|
|
void cItem::GetJson(Json::Value & a_OutValue) const
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
a_OutValue["ID"] = m_ItemType;
|
2013-06-02 17:21:32 -04:00
|
|
|
if (m_ItemType > 0)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
a_OutValue["Count"] = m_ItemCount;
|
2013-01-11 23:46:01 -05:00
|
|
|
a_OutValue["Health"] = m_ItemDamage;
|
2013-06-02 17:21:32 -04:00
|
|
|
AString Enchantments(m_Enchantments.ToString());
|
|
|
|
if (!Enchantments.empty())
|
|
|
|
{
|
|
|
|
a_OutValue["ench"] = Enchantments;
|
|
|
|
}
|
2014-01-15 17:38:03 -05:00
|
|
|
if (!IsCustomNameEmpty())
|
|
|
|
{
|
|
|
|
a_OutValue["Name"] = m_CustomName;
|
|
|
|
}
|
|
|
|
if (!IsLoreEmpty())
|
|
|
|
{
|
|
|
|
a_OutValue["Lore"] = m_Lore;
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-02 17:21:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cItem::FromJson(const Json::Value & a_Value)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
m_ItemType = (ENUM_ITEM_ID)a_Value.get("ID", -1 ).asInt();
|
2013-06-02 17:21:32 -04:00
|
|
|
if (m_ItemType > 0)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
m_ItemCount = (char)a_Value.get("Count", -1 ).asInt();
|
2013-01-11 23:46:01 -05:00
|
|
|
m_ItemDamage = (short)a_Value.get("Health", -1 ).asInt();
|
2013-06-02 17:21:32 -04:00
|
|
|
m_Enchantments.Clear();
|
|
|
|
m_Enchantments.AddFromString(a_Value.get("ench", "").asString());
|
2014-01-15 17:38:03 -05:00
|
|
|
m_CustomName = a_Value.get("Name", "").asString();
|
|
|
|
m_Lore = a_Value.get("Lore", "").asString();
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cItem::IsEnchantable(short item)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-08-18 05:56:28 -04:00
|
|
|
if ((item >= 256) && (item <= 259))
|
2012-06-14 09:06:06 -04:00
|
|
|
return true;
|
2012-08-18 05:56:28 -04:00
|
|
|
if ((item >= 267) && (item <= 279))
|
2012-06-14 09:06:06 -04:00
|
|
|
return true;
|
2012-08-18 05:56:28 -04:00
|
|
|
if ((item >= 283) && (item <= 286))
|
2012-06-14 09:06:06 -04:00
|
|
|
return true;
|
2012-08-18 05:56:28 -04:00
|
|
|
if ((item >= 290) && (item <= 294))
|
2012-06-14 09:06:06 -04:00
|
|
|
return true;
|
2012-08-18 05:56:28 -04:00
|
|
|
if ((item >= 298) && (item <= 317))
|
2012-06-14 09:06:06 -04:00
|
|
|
return true;
|
2012-08-18 05:56:28 -04:00
|
|
|
if ((item >= 290) && (item <= 294))
|
2012-06-14 09:06:06 -04:00
|
|
|
return true;
|
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
if ((item == 346) || (item == 359) || (item == 261))
|
2012-06-14 09:06:06 -04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-18 05:56:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-05-12 11:58:29 -04:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cItems:
|
|
|
|
|
|
|
|
cItem * cItems::Get(int a_Idx)
|
|
|
|
{
|
|
|
|
if ((a_Idx < 0) || (a_Idx >= (int)size()))
|
|
|
|
{
|
|
|
|
LOGWARNING("cItems: Attempt to get an out-of-bounds item at index %d; there are currently %d items. Returning a nil.", a_Idx, size());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return &at(a_Idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cItems::Set(int a_Idx, const cItem & a_Item)
|
|
|
|
{
|
|
|
|
if ((a_Idx < 0) || (a_Idx >= (int)size()))
|
|
|
|
{
|
|
|
|
LOGWARNING("cItems: Attempt to set an item at an out-of-bounds index %d; there are currently %d items. Not setting.", a_Idx, size());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
at(a_Idx) = a_Item;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cItems::Delete(int a_Idx)
|
|
|
|
{
|
|
|
|
if ((a_Idx < 0) || (a_Idx >= (int)size()))
|
|
|
|
{
|
|
|
|
LOGWARNING("cItems: Attempt to delete an item at an out-of-bounds index %d; there are currently %d items. Ignoring.", a_Idx, size());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
erase(begin() + a_Idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-06 16:22:33 -05:00
|
|
|
void cItems::Set(int a_Idx, short a_ItemType, char a_ItemCount, short a_ItemDamage)
|
2013-05-12 11:58:29 -04:00
|
|
|
{
|
|
|
|
if ((a_Idx < 0) || (a_Idx >= (int)size()))
|
|
|
|
{
|
|
|
|
LOGWARNING("cItems: Attempt to set an item at an out-of-bounds index %d; there are currently %d items. Not setting.", a_Idx, size());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
at(a_Idx) = cItem(a_ItemType, a_ItemCount, a_ItemDamage);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|