summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-17 20:43:09 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-17 20:43:09 +0300
commit3ba28f181216a150b3a59d912a8bbd9f8392f901 (patch)
treef75db51afc1f38f324c2ffeb13fcdd608372af21
parentb43ea5469c75cf8ceddc627d545a8e0e4175c68e (diff)
downloadplus-3ba28f181216a150b3a59d912a8bbd9f8392f901.tar.gz
plus-3ba28f181216a150b3a59d912a8bbd9f8392f901.tar.bz2
plus-3ba28f181216a150b3a59d912a8bbd9f8392f901.tar.xz
plus-3ba28f181216a150b3a59d912a8bbd9f8392f901.zip
improve outfitwindow.
-rw-r--r--src/gui/outfitwindow.cpp57
-rw-r--r--src/gui/outfitwindow.h21
2 files changed, 50 insertions, 28 deletions
diff --git a/src/gui/outfitwindow.cpp b/src/gui/outfitwindow.cpp
index 281355a58..e9274e2cd 100644
--- a/src/gui/outfitwindow.cpp
+++ b/src/gui/outfitwindow.cpp
@@ -82,13 +82,16 @@ OutfitWindow::OutfitWindow():
mCursorPosY(0),
mGridWidth(4),
mGridHeight(4),
- mItemClicked(false),
mItemMoved(nullptr),
+ mItems(),
mItemSelected(-1),
- mItemColorSelected(1),
mAwayOutfit(0),
mBorderColor(getThemeColor(Theme::BORDER, 64)),
- mBackgroundColor(getThemeColor(Theme::BACKGROUND, 32))
+ mBackgroundColor(getThemeColor(Theme::BACKGROUND, 32)),
+ mItemColors(),
+ mItemColorSelected(1),
+ mItemClicked(false),
+ mItemsUnequip()
{
setWindowName("Outfits");
setResizable(true);
@@ -185,7 +188,7 @@ void OutfitWindow::load(const bool oldConfig)
mAwayOutfitCheck->setSelected(mAwayOutfit == mCurrentOutfit);
}
-void OutfitWindow::save()
+void OutfitWindow::save() const
{
std::string outfitStr;
std::string outfitColorsStr;
@@ -194,7 +197,8 @@ void OutfitWindow::save()
bool good = false;
for (unsigned i = 0; i < OUTFIT_ITEM_COUNT; i++)
{
- const int res = mItems[o][i] ? mItems[o][i] : -1;
+ const int val = mItems[o][i];
+ const int res = val ? val : -1;
if (res != -1)
good = true;
outfitStr.append(toString(res));
@@ -245,8 +249,11 @@ void OutfitWindow::action(const gcn::ActionEvent &event)
}
else if (eventId == "unequip")
{
- if (mCurrentOutfit < static_cast<int>(OUTFITS_COUNT))
+ if (mCurrentOutfit >= 0 && mCurrentOutfit < static_cast<int>(
+ OUTFITS_COUNT))
+ {
mItemsUnequip[mCurrentOutfit] = mUnequipCheck->isSelected();
+ }
}
else if (eventId == "equip")
{
@@ -319,10 +326,16 @@ void OutfitWindow::draw(gcn::Graphics *graphics)
Window::draw(graphics);
Graphics *const g = static_cast<Graphics*>(graphics);
+ if (mCurrentOutfit < 0 || mCurrentOutfit
+ >= static_cast<signed int>(OUTFITS_COUNT))
+ {
+ return;
+ }
+
for (unsigned int i = 0; i < OUTFIT_ITEM_COUNT; i++)
{
const int itemX = mPadding + ((i % mGridWidth) * mBoxWidth);
- const int itemY = mPadding + getTitleBarHeight()
+ const int itemY = mPadding + mTitleBarHeight
+ ((i / mGridWidth) * mBoxHeight);
graphics->setColor(mBorderColor);
@@ -383,6 +396,13 @@ void OutfitWindow::mouseDragged(gcn::MouseEvent &event)
{
if (!mItemMoved && mItemClicked)
{
+ if (mCurrentOutfit < 0 || mCurrentOutfit
+ >= static_cast<signed int>(OUTFITS_COUNT))
+ {
+ Window::mouseDragged(event);
+ return;
+ }
+
const int index = getIndexFromGrid(event.getX(), event.getY());
if (index == -1)
{
@@ -457,9 +477,11 @@ void OutfitWindow::mouseReleased(gcn::MouseEvent &event)
{
if (event.getButton() == gcn::MouseEvent::LEFT)
{
-// if (isItemSelected())
-// mItemSelected = -1;
-
+ if (mCurrentOutfit < 0 || mCurrentOutfit
+ >= static_cast<signed int>(OUTFITS_COUNT))
+ {
+ return;
+ }
const int index = getIndexFromGrid(event.getX(), event.getY());
if (index == -1)
{
@@ -502,7 +524,8 @@ void OutfitWindow::unequipNotInOutfit(const int outfit) const
if (!inventory)
return;
- for (unsigned i = 0; i < inventory->getSize(); i++)
+ const unsigned int invSize = inventory->getSize();
+ for (unsigned i = 0; i < invSize; i++)
{
const Item *const item = inventory->getItem(i);
if (item && item->isEquipped())
@@ -565,7 +588,8 @@ void OutfitWindow::showCurrentOutfit()
void OutfitWindow::wearNextOutfit(const bool all)
{
next();
- if (!all && mCurrentOutfit < static_cast<int>(OUTFITS_COUNT))
+ if (!all && mCurrentOutfit >= 0 && mCurrentOutfit
+ < static_cast<int>(OUTFITS_COUNT))
{
bool fromStart = false;
while (!mItemsUnequip[mCurrentOutfit])
@@ -586,7 +610,8 @@ void OutfitWindow::wearNextOutfit(const bool all)
void OutfitWindow::wearPreviousOutfit(const bool all)
{
previous();
- if (!all && mCurrentOutfit < static_cast<int>(OUTFITS_COUNT))
+ if (!all && mCurrentOutfit >= 0 && mCurrentOutfit
+ < static_cast<int>(OUTFITS_COUNT))
{
bool fromStart = false;
while (!mItemsUnequip[mCurrentOutfit])
@@ -616,7 +641,6 @@ void OutfitWindow::copyFromEquiped(const int dst)
return;
int outfitCell = 0;
-
for (unsigned i = 0, sz = inventory->getSize(); i < sz; i++)
{
const Item *const item = inventory->getItem(i);
@@ -657,6 +681,11 @@ void OutfitWindow::setItemSelected(const Item *const item)
void OutfitWindow::clearCurrentOutfit()
{
+ if (mCurrentOutfit < 0 || mCurrentOutfit
+ >= static_cast<signed int>(OUTFITS_COUNT))
+ {
+ return;
+ }
for (unsigned f = 0; f < OUTFIT_ITEM_COUNT; f++)
{
mItems[mCurrentOutfit][f] = -1;
diff --git a/src/gui/outfitwindow.h b/src/gui/outfitwindow.h
index 38751f80d..cc17e1839 100644
--- a/src/gui/outfitwindow.h
+++ b/src/gui/outfitwindow.h
@@ -28,12 +28,6 @@
#include <guichan/actionlistener.hpp>
#include <guichan/mouselistener.hpp>
-#ifdef __GNUC__
-#define A_PURE __attribute__ ((pure))
-#else
-#define A_PURE
-#endif
-
const unsigned int OUTFITS_COUNT = 100;
const unsigned int OUTFIT_ITEM_COUNT = 16;
@@ -42,7 +36,8 @@ class CheckBox;
class Item;
class Label;
-class OutfitWindow final : public Window, private gcn::ActionListener
+class OutfitWindow final : public Window,
+ private gcn::ActionListener
{
public:
/**
@@ -120,6 +115,7 @@ class OutfitWindow final : public Window, private gcn::ActionListener
int getIndexFromGrid(const int pointX,
const int pointY) const A_WARN_UNUSED;
+ void save() const;
int mBoxWidth;
int mBoxHeight;
@@ -127,21 +123,18 @@ class OutfitWindow final : public Window, private gcn::ActionListener
int mCursorPosY;
int mGridWidth;
int mGridHeight;
- bool mItemClicked;
Item *mItemMoved;
- void save();
-
int mItems[OUTFITS_COUNT + 1][OUTFIT_ITEM_COUNT];
- unsigned char mItemColors[OUTFITS_COUNT + 1][OUTFIT_ITEM_COUNT];
- bool mItemsUnequip[OUTFITS_COUNT];
int mItemSelected;
- unsigned char mItemColorSelected;
-
int mAwayOutfit;
gcn::Color mBorderColor;
gcn::Color mBackgroundColor;
+ unsigned char mItemColors[OUTFITS_COUNT + 1][OUTFIT_ITEM_COUNT];
+ unsigned char mItemColorSelected;
+ bool mItemClicked;
+ bool mItemsUnequip[OUTFITS_COUNT];
static float mAlpha;
};