summaryrefslogblamecommitdiff
path: root/src/gui/widgets/shoplistbox.cpp
blob: 0bd126482514a413f7db53fb8318914f0172bc3c (plain) (tree)
1
2
3
4
5
6
7
  
                       

                                                            
                                                    
  
                                             





























                                                                         

                                
 

                  



                                
                                                           

                       






                                                              
 
                                                             

 

                                                          

                       






                                                                 
 
                                                             
 
 

                        

 
                                                  











                                                  
                                                        
                              



                                                             
                                             





                                               
                             
                        

                                                        





                                                                        

                                                 


                


                                                          
                                                          
                               

                                        
                            


                                
                                               





                                                 

                                                   

         

                       
                                                              





                                                
                                                 
                                                                           
                                                               








                                                                  
                                                 














                                                    
                                                






                                                                
                                                       











                                                                               
                                                                   




                       
 
/*
 *  The ManaPlus Client
 *  Copyright (C) 2004-2009  The Mana World Development Team
 *  Copyright (C) 2009-2010  The Mana Developers
 *  Copyright (C) 2011-2012  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 <http://www.gnu.org/licenses/>.
 */

#include "gui/widgets/shoplistbox.h"

#include "client.h"
#include "configuration.h"
#include "graphics.h"
#include "shopitem.h"

#include "gui/itempopup.h"
#include "gui/theme.h"
#include "gui/viewport.h"

#include "gui/widgets/shopitems.h"

#include "resources/image.h"

#include <guichan/font.hpp>
#include <guichan/listmodel.hpp>

#include "debug.h"

const int ITEM_ICON_SIZE = 32;

float ShopListBox::mAlpha = 1.0;

ShopListBox::ShopListBox(gcn::ListModel *const listModel) :
    ListBox(listModel),
    mPlayerMoney(0),
    mShopItems(nullptr),
    mItemPopup(new ItemPopup),
    mRowHeight(getFont()->getHeight()),
    mPriceCheck(true),
    mHighlightColor(Theme::getThemeColor(Theme::HIGHLIGHT)),
    mBackgroundColor(Theme::getThemeColor(Theme::BACKGROUND)),
    mWarningColor(Theme::getThemeColor(Theme::SHOP_WARNING))
{
    setForegroundColor(Theme::getThemeColor(Theme::LISTBOX));
}

ShopListBox::ShopListBox(gcn::ListModel *const listModel,
                         ShopItems *const shopListModel) :
    ListBox(listModel),
    mPlayerMoney(0),
    mShopItems(shopListModel),
    mItemPopup(new ItemPopup),
    mRowHeight(std::max(getFont()->getHeight(), ITEM_ICON_SIZE)),
    mPriceCheck(true),
    mHighlightColor(Theme::getThemeColor(Theme::HIGHLIGHT)),
    mBackgroundColor(Theme::getThemeColor(Theme::BACKGROUND)),
    mWarningColor(Theme::getThemeColor(Theme::SHOP_WARNING))
{
    setForegroundColor(Theme::getThemeColor(Theme::LISTBOX));
}

void ShopListBox::init()
{
}

void ShopListBox::setPlayersMoney(const int money)
{
    mPlayerMoney = money;
}

void ShopListBox::draw(gcn::Graphics *gcnGraphics)
{
    if (!mListModel || !mShopItems)
        return;

    if (Client::getGuiAlpha() != mAlpha)
        mAlpha = Client::getGuiAlpha();

    const int alpha = static_cast<int>(mAlpha * 255.0f);
    mHighlightColor.a = alpha;

    Graphics *graphics = static_cast<Graphics*>(gcnGraphics);

    graphics->setFont(getFont());
    graphics->setColor(getForegroundColor());

    // Draw the list elements
    for (int i = 0, y = 0;
         i < mListModel->getNumberOfElements();
         ++i, y += mRowHeight)
    {
        bool needDraw(false);
        gcn::Color temp;
        gcn::Color* backgroundColor = &mBackgroundColor;
        mBackgroundColor.a = alpha;

        if (mShopItems && mShopItems->at(i) &&
            mPlayerMoney < mShopItems->at(i)->getPrice() && mPriceCheck)
        {
            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)
        {
            backgroundColor = &mHighlightColor;
            needDraw = true;
        }

        if (needDraw)
        {
            graphics->setColor(*backgroundColor);
            graphics->fillRectangle(gcn::Rectangle(
                0, y, getWidth(), mRowHeight));
        }

        if (mShopItems)
        {
            Image *const icon = mShopItems->at(i)->getImage();
            if (icon)
            {
                icon->setAlpha(1.0f);
                graphics->drawImage(icon, 1, y);
            }
        }
        graphics->setColor(getForegroundColor());
        graphics->drawText(mListModel->getElementAt(i), ITEM_ICON_SIZE + 5,
            y + (ITEM_ICON_SIZE - getFont()->getHeight()) / 2);
    }
}

void ShopListBox::adjustSize()
{
    if (mListModel)
        setHeight(mRowHeight * mListModel->getNumberOfElements());
}

void ShopListBox::setPriceCheck(const bool check)
{
    mPriceCheck = check;
}

void ShopListBox::mouseMoved(gcn::MouseEvent &event)
{
    if (!mItemPopup)
        return;

    if (!mShopItems)
    {
        mItemPopup->hide();
        return;
    }

    const int index = event.getY() / 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::mouseExited(gcn::MouseEvent& mouseEvent A_UNUSED)
{
    if (!mItemPopup)
        return;

    mItemPopup->hide();
}