diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-24 23:29:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-24 23:29:04 +0300 |
commit | 4e97da8e138b21a5f5bea75e6a8d3211e4f28594 (patch) | |
tree | c10d3cad963066a908ebd42041723e110a0c9bf0 /src/resources/item | |
parent | ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8 (diff) | |
download | plus-4e97da8e138b21a5f5bea75e6a8d3211e4f28594.tar.gz plus-4e97da8e138b21a5f5bea75e6a8d3211e4f28594.tar.bz2 plus-4e97da8e138b21a5f5bea75e6a8d3211e4f28594.tar.xz plus-4e97da8e138b21a5f5bea75e6a8d3211e4f28594.zip |
Add enum for item types.
Diffstat (limited to 'src/resources/item')
-rw-r--r-- | src/resources/item/complexitem.cpp | 2 | ||||
-rw-r--r-- | src/resources/item/complexitem.h | 2 | ||||
-rw-r--r-- | src/resources/item/item.cpp | 2 | ||||
-rw-r--r-- | src/resources/item/item.h | 12 | ||||
-rw-r--r-- | src/resources/item/shopitem.cpp | 4 | ||||
-rw-r--r-- | src/resources/item/shopitem.h | 4 |
6 files changed, 14 insertions, 12 deletions
diff --git a/src/resources/item/complexitem.cpp b/src/resources/item/complexitem.cpp index 3d50d62e5..ecb4edb9e 100644 --- a/src/resources/item/complexitem.cpp +++ b/src/resources/item/complexitem.cpp @@ -25,7 +25,7 @@ #include "debug.h" ComplexItem::ComplexItem(const int id, - const int type, + const ItemTypeT type, const int quantity, const uint8_t refine, const ItemColor color, diff --git a/src/resources/item/complexitem.h b/src/resources/item/complexitem.h index b567c49e8..aae9130fc 100644 --- a/src/resources/item/complexitem.h +++ b/src/resources/item/complexitem.h @@ -35,7 +35,7 @@ class ComplexItem final : public Item * Constructor. */ ComplexItem(const int id, - const int type, + const ItemTypeT type, const int quantity, const uint8_t refine, const ItemColor color, diff --git a/src/resources/item/item.cpp b/src/resources/item/item.cpp index 044e11fdb..f6d0af1d9 100644 --- a/src/resources/item/item.cpp +++ b/src/resources/item/item.cpp @@ -38,7 +38,7 @@ DragDrop dragDrop(nullptr, DragDropSource::Empty); Item::Item(const int id, - const int type, + const ItemTypeT type, const int quantity, const uint8_t refine, const ItemColor color, diff --git a/src/resources/item/item.h b/src/resources/item/item.h index 9a910c31b..d0bb9b9f3 100644 --- a/src/resources/item/item.h +++ b/src/resources/item/item.h @@ -25,6 +25,8 @@ #include "const/resources/item/cards.h" +#include "enums/resources/itemtype.h" + #include "enums/simpletypes/damaged.h" #include "enums/simpletypes/equipm.h" #include "enums/simpletypes/equipped.h" @@ -48,7 +50,7 @@ class Item notfinal * Constructor. */ Item(const int id, - const int type, + const ItemTypeT type, const int quantity, const uint8_t refine, const ItemColor color, @@ -209,10 +211,10 @@ class Item notfinal const int *getCards() const { return mCards; } - void setType(const int type) + void setType(const ItemTypeT type) { mType = type; } - int getType() const A_WARN_UNUSED + ItemTypeT getType() const A_WARN_UNUSED { return mType; } void setTag(const int tag) @@ -225,7 +227,7 @@ class Item notfinal void updateColor(); - int mId; /**< Item type id. */ + int mId; /**< Item id. */ ItemColor mColor; int mQuantity; /**< Number of items. */ int mTag; @@ -237,7 +239,7 @@ class Item notfinal int mCards[maxCards]; uint8_t mRefine; /**< Item refine level. */ int mInvIndex; /**< Inventory index. */ - int mType; /**< Item type. */ + ItemTypeT mType; /**< Item type. */ Equipm mEquipment; /**< Item is equipment. */ Equipped mEquipped; /**< Item is equipped. */ bool mInEquipment; /**< Item is in equipment */ diff --git a/src/resources/item/shopitem.cpp b/src/resources/item/shopitem.cpp index f8e837c86..1f70076b9 100644 --- a/src/resources/item/shopitem.cpp +++ b/src/resources/item/shopitem.cpp @@ -34,7 +34,7 @@ ShopItem::ShopItem(const int inventoryIndex, const int id, - const int type, + const ItemTypeT type, const ItemColor color, const int quantity, const int price) : @@ -58,7 +58,7 @@ ShopItem::ShopItem(const int inventoryIndex, } ShopItem::ShopItem(const int id, - const int type, + const ItemTypeT type, const ItemColor color, const int price) : Item(id, type, 0, 0, color, diff --git a/src/resources/item/shopitem.h b/src/resources/item/shopitem.h index 6c4d3f886..bf966aeb7 100644 --- a/src/resources/item/shopitem.h +++ b/src/resources/item/shopitem.h @@ -46,7 +46,7 @@ class ShopItem final : public Item */ ShopItem(const int inventoryIndex, const int id, - const int type, + const ItemTypeT type, const ItemColor color, const int quantity, const int price); @@ -59,7 +59,7 @@ class ShopItem final : public Item * @param price price of the item */ ShopItem(const int id, - const int type, + const ItemTypeT type, const ItemColor color, const int price); |