/*
* The ManaPlus Client
* Copyright (C) 2004-2009 The Mana World Development Team
* Copyright (C) 2009-2010 The Mana Developers
* Copyright (C) 2011-2014 The ManaPlus Developers
*
* This file is part of The ManaPlus Client.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#include "gui/widgets/shoplistbox.h"
#include "client.h"
#include "shopitem.h"
#include "being/playerinfo.h"
#include "gui/font.h"
#include "gui/viewport.h"
#include "gui/popups/itempopup.h"
#include "gui/models/shopitems.h"
#include "resources/image.h"
#include "gui/models/listmodel.h"
#include "debug.h"
const int ITEM_ICON_SIZE = 32;
ShopListBox::ShopListBox(const Widget2 *const widget,
ListModel *const listModel) :
ListBox(widget, listModel, "shoplistbox.xml"),
mPlayerMoney(0),
mShopItems(nullptr),
mItemPopup(new ItemPopup),
mBackgroundColor(getThemeColor(Theme::BACKGROUND)),
mWarningColor(getThemeColor(Theme::SHOP_WARNING)),
mPriceCheck(true),
mProtectItems(false)
{
mRowHeight = getFont()->getHeight();
mItemPopup->postInit();
mHighlightColor = getThemeColor(Theme::HIGHLIGHT);
mForegroundColor = getThemeColor(Theme::LISTBOX);
}
ShopListBox::ShopListBox(const Widget2 *const widget,
ListModel *const listModel,
ShopItems *const shopListModel) :
ListBox(widget, listModel, "shoplistbox.xml"),
mPlayerMoney(0),
mShopItems(shopListModel),
mItemPopup(new ItemPopup),
mBackgroundColor(getThemeColor(Theme::BACKGROUND)),
mWarningColor(getThemeColor(Theme::SHOP_WARNING)),
mPriceCheck(true),
mProtectItems(false)
{
mRowHeight = std::max(getFont()->getHeight(), ITEM_ICON_SIZE);
mItemPopup->postInit();
mHighlightColor = getThemeColor(Theme::HIGHLIGHT);
mForegroundColor = getThemeColor(Theme::LISTBOX);
}
void ShopListBox::setPlayersMoney(const int money)
{
mPlayerMoney = money;
}
void ShopListBox::draw(Graphics *graphics)
{
BLOCK_START("ShopListBox::draw")
if (!mListModel || !mShopItems)
{
BLOCK_END("ShopListBox::draw")
return;
}
if (client->getGuiAlpha() != mAlpha)
mAlpha = client->getGuiAlpha();
const int alpha = static_cast(mAlpha * 255.0F);
Font *const font = getFont();
const int sz = mListModel->getNumberOfElements();
const int fontHeigh = getFont()->getHeight();
const int width = mDimension.width - 2 * mPadding;
// Draw the list elements
for (int i = 0, y = 0;
i < sz;
++i, y += mRowHeight)
{
bool needDraw(false);
Color temp;
Color* backgroundColor = &mBackgroundColor;
ShopItem *const item = mShopItems->at(i);
if (item && ((mShopItems && mPlayerMoney < item->getPrice()
&& mPriceCheck)
|| (mProtectItems && PlayerInfo::isItemProtected(item->getId()))))
{
if (i != mSelected)
{
backgroundColor = &mWarningColor;
backgroundColor->a = alpha;
}
else
{
temp = mWarningColor;
temp.r = (temp.r + mHighlightColor.r) / 2;
temp.g = (temp.g + mHighlightColor.g) / 2;
temp.b = (temp.b + mHighlightColor.b) / 2;
temp.a = alpha;
backgroundColor = &temp;
}
needDraw = true;
}
else if (i == mSelected)
{
mHighlightColor.a = alpha;
backgroundColor = &mHighlightColor;
needDraw = true;
}
else
{
mBackgroundColor.a = alpha;
}
if (needDraw)
{
graphics->setColor(*backgroundColor);
graphics->fillRectangle(Rect(mPadding, y + mPadding,
width, mRowHeight));
}
if (mShopItems && item)
{
Image *const icon = item->getImage();
if (icon)
{
icon->setAlpha(1.0F);
graphics->drawImage(icon, mPadding, y + mPadding);
}
}
if (mSelected == i)
{
graphics->setColorAll(mForegroundSelectedColor,
mForegroundSelectedColor2);
}
else
{
graphics->setColorAll(mForegroundColor, mForegroundColor2);
}
font->drawString(graphics, mListModel->getElementAt(i),
ITEM_ICON_SIZE + mPadding,
y + (ITEM_ICON_SIZE - fontHeigh) / 2 + mPadding);
}
BLOCK_END("ShopListBox::draw")
}
void ShopListBox::adjustSize()
{
BLOCK_START("ShopListBox::adjustSize")
if (mListModel)
{
setHeight(mRowHeight * mListModel->getNumberOfElements()
+ 2 * mPadding);
}
BLOCK_END("ShopListBox::adjustSize")
}
void ShopListBox::setPriceCheck(const bool check)
{
mPriceCheck = check;
}
void ShopListBox::mouseMoved(MouseEvent &event)
{
if (!mItemPopup || !mRowHeight)
return;
if (!mShopItems)
{
mItemPopup->hide();
return;
}
const int index = (event.getY() - mPadding) / mRowHeight;
if (index < 0 || index >= mShopItems->getNumberOfElements())
{
mItemPopup->hide();
}
else
{
const Item *const item = mShopItems->at(index);
if (item)
{
mItemPopup->setItem(item);
mItemPopup->position(viewport->getMouseX(), viewport->getMouseY());
}
else
{
mItemPopup->setVisible(false);
}
}
}
void ShopListBox::mouseReleased(MouseEvent& event)
{
ListBox::mouseReleased(event);
if (event.getButton() == MouseEvent::RIGHT)
{
setSelected(std::max(0, getSelectionByMouse(event.getY())));
if (mSelected < 0 || mSelected >= mShopItems->getNumberOfElements())
return;
Item *const item = mShopItems->at(mSelected);
viewport->showItemPopup(item);
}
}
void ShopListBox::mouseExited(MouseEvent& event A_UNUSED)
{
if (!mItemPopup)
return;
mItemPopup->hide();
}