From 1ee562da80ee76787823f5e18c9463c05e2bb524 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 22 Sep 2014 21:04:58 +0300 Subject: In shop items hide amount if one --- src/shopitem.cpp | 54 +++++++++++++++++++----------------------------------- 1 file changed, 19 insertions(+), 35 deletions(-) (limited to 'src/shopitem.cpp') diff --git a/src/shopitem.cpp b/src/shopitem.cpp index 10491ef2d..386583170 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -42,17 +42,8 @@ ShopItem::ShopItem(const int inventoryIndex, const int id, mPrice(price), mShowQuantity(true) { - if (serverFeatures->haveItemColors()) - { - mDisplayName = std::string(getInfo().getName(color)).append(" (") - .append(Units::formatCurrency(mPrice)).append(") "); - } - else - { - mDisplayName = std::string(getInfo().getName()).append(" (") - .append(Units::formatCurrency(mPrice)).append(") "); - } - if (quantity > 0) + updateDisplayName(quantity); + if (quantity > 1) mDisplayName.append("[").append(toString(quantity)).append("]"); setInvIndex(inventoryIndex); @@ -66,16 +57,7 @@ ShopItem::ShopItem(const int id, const unsigned char color, const int price) : mPrice(price), mShowQuantity(false) { - if (serverFeatures->haveItemColors()) - { - mDisplayName = std::string(getInfo().getName(color)).append(" (") - .append(Units::formatCurrency(mPrice)).append(")"); - } - else - { - mDisplayName = std::string(getInfo().getName()).append(" (") - .append(Units::formatCurrency(mPrice)).append(")"); - } + updateDisplayName(0); setInvIndex(-1); addDuplicate(-1, 0); } @@ -90,23 +72,25 @@ ShopItem::~ShopItem() } } -void ShopItem::update() +void ShopItem::updateDisplayName(const int quantity) { - if (mShowQuantity) + if (serverFeatures->haveItemColors()) + mDisplayName = std::string(getInfo().getName(mColor)); + else + mDisplayName = std::string(getInfo().getName()); + if (mPrice) { - if (serverFeatures->haveItemColors()) - { - mDisplayName = std::string(getInfo().getName(mColor)).append(" (") - .append(Units::formatCurrency(mPrice)).append(") "); - } - else - { - mDisplayName = std::string(getInfo().getName()).append(" (") - .append(Units::formatCurrency(mPrice)).append(") "); - } - if (mQuantity > 0) - mDisplayName.append("[").append(toString(mQuantity)).append("]"); + mDisplayName.append(" (").append( + Units::formatCurrency(mPrice)).append(") "); } + if (quantity > 1) + mDisplayName.append("[").append(toString(quantity)).append("]"); +} + +void ShopItem::update() +{ + if (mShowQuantity) + updateDisplayName(mQuantity); } void ShopItem::addDuplicate(const int inventoryIndex, const int quantity) -- cgit v1.2.3-60-g2f50