From 76e55447563fae6f8d17f2fd90231c81e0b3f927 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 21 Oct 2014 01:13:46 +0300 Subject: Add to item field identified. --- src/inventory.cpp | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) (limited to 'src/inventory.cpp') diff --git a/src/inventory.cpp b/src/inventory.cpp index 245927ce9..d407d94f9 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -103,16 +103,26 @@ Item *Inventory::findItem(const int itemId, const unsigned char color) const return nullptr; } -void Inventory::addItem(const int id, const int quantity, const uint8_t refine, - const uint8_t color, const bool equipment, +void Inventory::addItem(const int id, + const int quantity, + const uint8_t refine, + const uint8_t color, + const bool identified, + const bool equipment, const bool equipped) { - setItem(getFreeSlot(), id, quantity, refine, color, equipment, equipped); + setItem(getFreeSlot(), id, quantity, refine, color, + identified, equipment, equipped); } -void Inventory::setItem(const int index, const int id, const int quantity, - const uint8_t refine, const unsigned char color, - const bool equipment, const bool equipped) +void Inventory::setItem(const int index, + const int id, + const int quantity, + const uint8_t refine, + const unsigned char color, + const bool identified, + const bool equipment, + const bool equipped) { if (index < 0 || index >= static_cast(mSize)) { @@ -124,7 +134,7 @@ void Inventory::setItem(const int index, const int id, const int quantity, if (!item1 && id > 0) { Item *const item = new Item(id, quantity, refine, color, - equipment, equipped); + identified, equipment, equipped); item->setInvIndex(index); mItems[index] = item; mUsed++; -- cgit v1.2.3-60-g2f50