diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-28 00:31:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-28 00:31:06 +0300 |
commit | 8611b3c1ea3316bfc4740149b8f41c35dacee7c1 (patch) | |
tree | d2af4e3af305ea451ed4072d52b45212ddc3c884 /src/gui/widgets/itemshortcutcontainer.cpp | |
parent | 81b52381745a96fcbae36aa744585ac1a1ff5d18 (diff) | |
download | plus-8611b3c1ea3316bfc4740149b8f41c35dacee7c1.tar.gz plus-8611b3c1ea3316bfc4740149b8f41c35dacee7c1.tar.bz2 plus-8611b3c1ea3316bfc4740149b8f41c35dacee7c1.tar.xz plus-8611b3c1ea3316bfc4740149b8f41c35dacee7c1.zip |
Change texture order drawing in item containers.
Diffstat (limited to 'src/gui/widgets/itemshortcutcontainer.cpp')
-rw-r--r-- | src/gui/widgets/itemshortcutcontainer.cpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/gui/widgets/itemshortcutcontainer.cpp b/src/gui/widgets/itemshortcutcontainer.cpp index 4d9e6dd2d..0585f59cd 100644 --- a/src/gui/widgets/itemshortcutcontainer.cpp +++ b/src/gui/widgets/itemshortcutcontainer.cpp @@ -113,14 +113,24 @@ void ItemShortcutContainer::draw(gcn::Graphics *graphics) graphics->setFont(getFont()); + if (mBackgroundImg) + { + for (unsigned i = 0; i < mMaxItems; i++) + { + g->drawImage(mBackgroundImg, (i % mGridWidth) * mBoxWidth, + (i / mGridWidth) * mBoxHeight); + } + } + + Inventory *inv = PlayerInfo::getInventory(); + if (!inv) + return; + for (unsigned i = 0; i < mMaxItems; i++) { const int itemX = (i % mGridWidth) * mBoxWidth; const int itemY = (i / mGridWidth) * mBoxHeight; - if (mBackgroundImg) - g->drawImage(mBackgroundImg, itemX, itemY); - // Draw item keyboard shortcut. std::string key = inputManager.getKeyValueString( Input::KEY_SHORTCUT_1 + i); @@ -137,11 +147,7 @@ void ItemShortcutContainer::draw(gcn::Graphics *graphics) // this is item if (itemId < SPELL_MIN_ID) { - if (!PlayerInfo::getInventory()) - continue; - - Item *item = PlayerInfo::getInventory()->findItem( - itemId, itemColor); + Item *item = inv->findItem(itemId, itemColor); if (item) { |