2017-07-13 10:26:03 +02:00
|
|
|
/*
|
2023-02-01 16:42:03 +02:00
|
|
|
* CList.cpp, part of VCMI engine
|
2017-07-13 10:26:03 +02:00
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
2012-06-13 16:04:06 +03:00
|
|
|
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "StdInc.h"
|
|
|
|
#include "CList.h"
|
2014-07-15 10:14:49 +03:00
|
|
|
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "CAdvMapInt.h"
|
2014-07-13 20:53:37 +03:00
|
|
|
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "../widgets/Images.h"
|
|
|
|
#include "../widgets/Buttons.h"
|
|
|
|
#include "../windows/InfoWindows.h"
|
2014-07-13 20:53:37 +03:00
|
|
|
#include "../CGameInfo.h"
|
|
|
|
#include "../CPlayerInterface.h"
|
|
|
|
#include "../gui/CGuiHandler.h"
|
|
|
|
|
|
|
|
#include "../../lib/CGeneralTextHandler.h"
|
|
|
|
#include "../../lib/CHeroHandler.h"
|
|
|
|
#include "../../lib/CModHandler.h"
|
|
|
|
#include "../../lib/mapObjects/CGHeroInstance.h"
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "../../lib/mapObjects/CGTownInstance.h"
|
2023-01-30 19:55:32 +02:00
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
CList::CListItem::CListItem(CList * Parent)
|
|
|
|
: CIntObject(LCLICK | RCLICK | HOVER),
|
2015-01-13 21:57:41 +02:00
|
|
|
parent(Parent),
|
2018-04-07 13:34:11 +02:00
|
|
|
selection()
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
defActions = 255-DISPOSE;
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
CList::CListItem::~CListItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CList::CListItem::clickRight(tribool down, bool previousState)
|
|
|
|
{
|
|
|
|
if (down == true)
|
|
|
|
showTooltip();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CList::CListItem::clickLeft(tribool down, bool previousState)
|
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
if(down == true)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
|
|
|
//second click on already selected item
|
2018-04-07 13:34:11 +02:00
|
|
|
if(parent->selected == this->shared_from_this())
|
|
|
|
{
|
2012-06-13 16:04:06 +03:00
|
|
|
open();
|
2018-04-07 13:34:11 +02:00
|
|
|
}
|
2012-06-13 16:04:06 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
//first click - switch selection
|
2018-04-07 13:34:11 +02:00
|
|
|
parent->select(this->shared_from_this());
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CList::CListItem::hover(bool on)
|
|
|
|
{
|
|
|
|
if (on)
|
2022-11-18 17:54:10 +02:00
|
|
|
GH.statusbar->write(getHoverText());
|
2012-06-13 16:04:06 +03:00
|
|
|
else
|
|
|
|
GH.statusbar->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CList::CListItem::onSelect(bool on)
|
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255-DISPOSE);
|
|
|
|
selection.reset();
|
|
|
|
if(on)
|
2012-06-13 16:04:06 +03:00
|
|
|
selection = genSelection();
|
|
|
|
select(on);
|
|
|
|
GH.totalRedraw();
|
|
|
|
}
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
CList::CList(int Size, Point position, std::string btnUp, std::string btnDown, size_t listAmount, int helpUp, int helpDown, CListBox::CreateFunc create)
|
|
|
|
: CIntObject(0, position),
|
2015-01-13 21:57:41 +02:00
|
|
|
size(Size),
|
|
|
|
selected(nullptr)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
|
|
|
scrollUp = std::make_shared<CButton>(Point(0, 0), btnUp, CGI->generaltexth->zelp[helpUp]);
|
2020-10-01 10:38:06 +02:00
|
|
|
scrollDown = std::make_shared<CButton>(Point(0, scrollUp->pos.h + 32*(int)size), btnDown, CGI->generaltexth->zelp[helpDown]);
|
2018-04-07 13:34:11 +02:00
|
|
|
|
|
|
|
listBox = std::make_shared<CListBox>(create, Point(1,scrollUp->pos.h), Point(0, 32), size, listAmount);
|
2012-06-13 16:04:06 +03:00
|
|
|
|
|
|
|
//assign callback only after list was created
|
2018-04-07 13:34:11 +02:00
|
|
|
scrollUp->addCallback(std::bind(&CListBox::moveToPrev, listBox));
|
|
|
|
scrollDown->addCallback(std::bind(&CListBox::moveToNext, listBox));
|
2014-08-09 15:14:31 +03:00
|
|
|
|
|
|
|
scrollUp->addCallback(std::bind(&CList::update, this));
|
2018-04-07 13:34:11 +02:00
|
|
|
scrollDown->addCallback(std::bind(&CList::update, this));
|
2012-06-13 16:04:06 +03:00
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CList::update()
|
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
bool onTop = listBox->getPos() == 0;
|
|
|
|
bool onBottom = listBox->getPos() + size >= listBox->size();
|
2012-06-13 16:04:06 +03:00
|
|
|
|
|
|
|
scrollUp->block(onTop);
|
|
|
|
scrollDown->block(onBottom);
|
|
|
|
}
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
void CList::select(std::shared_ptr<CListItem> which)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
if(selected == which)
|
2012-06-13 16:04:06 +03:00
|
|
|
return;
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
if(selected)
|
2012-06-13 16:04:06 +03:00
|
|
|
selected->onSelect(false);
|
|
|
|
|
|
|
|
selected = which;
|
2018-04-07 13:34:11 +02:00
|
|
|
if(which)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
|
|
|
which->onSelect(true);
|
|
|
|
onSelect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int CList::getSelectedIndex()
|
|
|
|
{
|
2020-10-01 10:38:06 +02:00
|
|
|
return static_cast<int>(listBox->getIndexOf(selected));
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CList::selectIndex(int which)
|
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
if(which < 0)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
if(selected)
|
2012-06-13 16:04:06 +03:00
|
|
|
select(nullptr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
listBox->scrollTo(which);
|
2012-06-13 16:04:06 +03:00
|
|
|
update();
|
2018-04-07 13:34:11 +02:00
|
|
|
select(std::dynamic_pointer_cast<CListItem>(listBox->getItem(which)));
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CList::selectNext()
|
|
|
|
{
|
2017-05-13 16:57:15 +02:00
|
|
|
int index = getSelectedIndex() + 1;
|
2018-04-07 13:34:11 +02:00
|
|
|
if(index >= listBox->size())
|
2017-05-13 16:57:15 +02:00
|
|
|
index = 0;
|
|
|
|
selectIndex(index);
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CList::selectPrev()
|
|
|
|
{
|
|
|
|
int index = getSelectedIndex();
|
2018-04-07 13:34:11 +02:00
|
|
|
if(index <= 0)
|
2012-06-13 16:04:06 +03:00
|
|
|
selectIndex(0);
|
|
|
|
else
|
|
|
|
selectIndex(index-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
CHeroList::CEmptyHeroItem::CEmptyHeroItem()
|
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
|
|
|
movement = std::make_shared<CAnimImage>("IMOBIL", 0, 0, 0, 1);
|
2023-01-30 13:58:13 +02:00
|
|
|
portrait = std::make_shared<CPicture>("HPSXXX", movement->pos.w + 1, 0);
|
2018-04-07 13:34:11 +02:00
|
|
|
mana = std::make_shared<CAnimImage>("IMANA", 0, 0, movement->pos.w + portrait->pos.w + 2, 1 );
|
2012-06-13 16:04:06 +03:00
|
|
|
|
|
|
|
pos.w = mana->pos.w + mana->pos.x - pos.x;
|
2023-01-30 19:55:32 +02:00
|
|
|
pos.h = std::max(std::max<int>(movement->pos.h + 1, mana->pos.h + 1), portrait->pos.h);
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
CHeroList::CHeroItem::CHeroItem(CHeroList *parent, const CGHeroInstance * Hero)
|
|
|
|
: CListItem(parent),
|
2015-01-13 21:57:41 +02:00
|
|
|
hero(Hero)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
|
|
|
movement = std::make_shared<CAnimImage>("IMOBIL", 0, 0, 0, 1);
|
|
|
|
portrait = std::make_shared<CAnimImage>("PortraitsSmall", hero->portrait, 0, movement->pos.w + 1);
|
|
|
|
mana = std::make_shared<CAnimImage>("IMANA", 0, 0, movement->pos.w + portrait->pos.w + 2, 1);
|
2012-06-13 16:04:06 +03:00
|
|
|
|
|
|
|
pos.w = mana->pos.w + mana->pos.x - pos.x;
|
2023-01-30 19:55:32 +02:00
|
|
|
pos.h = std::max(std::max<int>(movement->pos.h + 1, mana->pos.h + 1), portrait->pos.h);
|
2012-06-13 16:04:06 +03:00
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHeroList::CHeroItem::update()
|
|
|
|
{
|
2012-06-17 01:40:28 +03:00
|
|
|
movement->setFrame(std::min<size_t>(movement->size()-1, hero->movement / 100));
|
|
|
|
mana->setFrame(std::min<size_t>(mana->size()-1, hero->mana / 5));
|
2012-06-13 16:04:06 +03:00
|
|
|
redraw();
|
|
|
|
}
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
std::shared_ptr<CIntObject> CHeroList::CHeroItem::genSelection()
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2023-01-30 13:58:13 +02:00
|
|
|
return std::make_shared<CPicture>("HPSYYY", movement->pos.w + 1, 0);
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CHeroList::CHeroItem::select(bool on)
|
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
if(on && adventureInt->selection != hero)
|
|
|
|
adventureInt->select(hero);
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CHeroList::CHeroItem::open()
|
|
|
|
{
|
|
|
|
LOCPLINT->openHeroWindow(hero);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHeroList::CHeroItem::showTooltip()
|
|
|
|
{
|
2023-01-27 00:27:06 +02:00
|
|
|
CRClickPopup::createAndPush(hero, GH.getCursorPosition());
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string CHeroList::CHeroItem::getHoverText()
|
|
|
|
{
|
2023-01-02 13:27:03 +02:00
|
|
|
return boost::str(boost::format(CGI->generaltexth->allTexts[15]) % hero->getNameTranslated() % hero->type->heroClass->getNameTranslated());
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
std::shared_ptr<CIntObject> CHeroList::createHeroItem(size_t index)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
|
|
|
if (LOCPLINT->wanderingHeroes.size() > index)
|
2018-04-07 13:34:11 +02:00
|
|
|
return std::make_shared<CHeroItem>(this, LOCPLINT->wanderingHeroes[index]);
|
|
|
|
return std::make_shared<CEmptyHeroItem>();
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
CHeroList::CHeroList(int size, Point position, std::string btnUp, std::string btnDown):
|
2015-01-13 21:57:41 +02:00
|
|
|
CList(size, position, btnUp, btnDown, LOCPLINT->wanderingHeroes.size(), 303, 304, std::bind(&CHeroList::createHeroItem, this, _1))
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHeroList::select(const CGHeroInstance * hero)
|
|
|
|
{
|
|
|
|
selectIndex(vstd::find_pos(LOCPLINT->wanderingHeroes, hero));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHeroList::update(const CGHeroInstance * hero)
|
|
|
|
{
|
2012-06-17 01:40:28 +03:00
|
|
|
//this hero is already present, update its status
|
2018-04-07 13:34:11 +02:00
|
|
|
for(auto & elem : listBox->getItems())
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
auto item = std::dynamic_pointer_cast<CHeroItem>(elem);
|
|
|
|
if(item && item->hero == hero && vstd::contains(LOCPLINT->wanderingHeroes, hero))
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2012-06-17 01:40:28 +03:00
|
|
|
item->update();
|
|
|
|
return;
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//simplest solution for now: reset list and restore selection
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
listBox->resize(LOCPLINT->wanderingHeroes.size());
|
2012-06-13 16:04:06 +03:00
|
|
|
if (adventureInt->selection)
|
|
|
|
{
|
2018-10-29 17:56:14 +02:00
|
|
|
auto selectedHero = dynamic_cast<const CGHeroInstance *>(adventureInt->selection);
|
|
|
|
if (selectedHero)
|
|
|
|
select(selectedHero);
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
CList::update();
|
|
|
|
}
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
std::shared_ptr<CIntObject> CTownList::createTownItem(size_t index)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
|
|
|
if (LOCPLINT->towns.size() > index)
|
2018-04-07 13:34:11 +02:00
|
|
|
return std::make_shared<CTownItem>(this, LOCPLINT->towns[index]);
|
|
|
|
return std::make_shared<CAnimImage>("ITPA", 0);
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
CTownList::CTownItem::CTownItem(CTownList *parent, const CGTownInstance *Town):
|
2015-01-13 21:57:41 +02:00
|
|
|
CListItem(parent),
|
|
|
|
town(Town)
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
|
|
|
picture = std::make_shared<CAnimImage>("ITPA", 0);
|
2012-06-13 16:04:06 +03:00
|
|
|
pos = picture->pos;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
std::shared_ptr<CIntObject> CTownList::CTownItem::genSelection()
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
return std::make_shared<CAnimImage>("ITPA", 1);
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CTownList::CTownItem::update()
|
|
|
|
{
|
2012-09-22 18:10:15 +03:00
|
|
|
size_t iconIndex = town->town->clientInfo.icons[town->hasFort()][town->builded >= CGI->modh->settings.MAX_BUILDING_PER_TURN];
|
2012-06-13 16:04:06 +03:00
|
|
|
|
2012-12-03 19:00:17 +03:00
|
|
|
picture->setFrame(iconIndex + 2);
|
2012-06-13 16:04:06 +03:00
|
|
|
redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTownList::CTownItem::select(bool on)
|
|
|
|
{
|
|
|
|
if (on && adventureInt->selection != town)
|
|
|
|
adventureInt->select(town);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTownList::CTownItem::open()
|
|
|
|
{
|
|
|
|
LOCPLINT->openTownWindow(town);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTownList::CTownItem::showTooltip()
|
|
|
|
{
|
2023-01-27 00:27:06 +02:00
|
|
|
CRClickPopup::createAndPush(town, GH.getCursorPosition());
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string CTownList::CTownItem::getHoverText()
|
|
|
|
{
|
2014-06-24 20:39:36 +03:00
|
|
|
return town->getObjectName();
|
2012-06-13 16:04:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
CTownList::CTownList(int size, Point position, std::string btnUp, std::string btnDown):
|
2015-01-13 21:57:41 +02:00
|
|
|
CList(size, position, btnUp, btnDown, LOCPLINT->towns.size(), 306, 307, std::bind(&CTownList::createTownItem, this, _1))
|
2012-06-13 16:04:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTownList::select(const CGTownInstance * town)
|
|
|
|
{
|
|
|
|
selectIndex(vstd::find_pos(LOCPLINT->towns, town));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTownList::update(const CGTownInstance *)
|
|
|
|
{
|
|
|
|
//simplest solution for now: reset list and restore selection
|
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
listBox->resize(LOCPLINT->towns.size());
|
2012-06-13 16:04:06 +03:00
|
|
|
if (adventureInt->selection)
|
|
|
|
{
|
|
|
|
auto town = dynamic_cast<const CGTownInstance *>(adventureInt->selection);
|
|
|
|
if (town)
|
|
|
|
select(town);
|
|
|
|
}
|
|
|
|
CList::update();
|
|
|
|
}
|
|
|
|
|