From ca2f3bafe8815e5cba06426f24ef7acad6e699f4 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 14 Jan 2016 23:55:23 +0300 Subject: Add support for show cards in links. --- src/gui/widgets/browserbox.cpp | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'src/gui/widgets/browserbox.cpp') diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 14dd95ba3..9ffead378 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -23,6 +23,7 @@ #include "gui/widgets/browserbox.h" +#include "itemcolormanager.h" #include "settings.h" #include "input/inputmanager.h" @@ -235,13 +236,30 @@ void BrowserBox::addRow(const std::string &row, const bool atTop) bLink.y2 = bLink.y1 + font->getHeight(); if (bLink.caption.empty()) { + bLink.caption = bLink.link; #ifndef DYECMD - const int id = atoi(bLink.link.c_str()); - if (id) - bLink.caption = ItemDB::get(id).getName(); + size_t idx = bLink.link.find(","); + if (idx != std::string::npos) + { + const int id = atoi(bLink.link.substr(0, idx).c_str()); + if (id) + { + std::vector parts; + splitToIntVector(parts, bLink.link.substr(idx), ','); + while (parts.size() < 4) + parts.push_back(0); + const ItemColor itemColor = + ItemColorManager::getColorFromCards(&parts[0]); + bLink.caption = ItemDB::get(id).getName(itemColor); + } + } else + { + const int id = atoi(bLink.link.c_str()); + if (id) + bLink.caption = ItemDB::get(id).getName(); + } #endif - bLink.caption = bLink.link; if (translator) bLink.caption = translator->getStr(bLink.caption); } -- cgit v1.2.3-60-g2f50