1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/client/windows/CHeroBackpackWindow.cpp

135 lines
4.4 KiB
C++
Raw Normal View History

2023-07-06 21:14:12 +02:00
/*
* CHeroBackpackWindow.cpp, part of VCMI engine
*
* 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
*
*/
#include "StdInc.h"
#include "CHeroBackpackWindow.h"
#include "../gui/CGuiHandler.h"
2023-07-17 18:42:55 +02:00
#include "../gui/Shortcut.h"
#include "../widgets/Buttons.h"
#include "../widgets/Images.h"
2024-01-18 13:42:52 +02:00
#include "../widgets/TextControls.h"
#include "CMessage.h"
#include "render/Canvas.h"
2023-08-21 17:08:15 +02:00
#include "CPlayerInterface.h"
2023-07-06 21:14:12 +02:00
2024-09-26 12:47:26 +02:00
#include "../../CCallback.h"
#include "../../lib/mapObjects/CGHeroInstance.h"
#include "../../lib/networkPacks/ArtifactLocation.h"
CHeroBackpackWindow::CHeroBackpackWindow(const CGHeroInstance * hero, const std::vector<CArtifactsOfHeroPtr> & artsSets)
2024-04-23 15:21:45 +02:00
: CWindowWithArtifacts(&artsSets)
2023-07-06 21:14:12 +02:00
{
OBJECT_CONSTRUCTION;
2023-11-07 14:17:34 +02:00
stretchedBackground = std::make_shared<CFilledTexture>(ImagePath::builtin("DIBOXBCK"), Rect(0, 0, 0, 0));
2023-12-17 16:30:19 +02:00
arts = std::make_shared<CArtifactsOfHeroBackpack>();
arts->moveBy(Point(windowMargin, windowMargin));
2024-05-20 14:31:07 +02:00
arts->clickPressedCallback = [this](const CArtPlace & artPlace, const Point & cursorPosition)
{
clickPressedOnArtPlace(arts->getHero(), artPlace.slot, true, false, true, cursorPosition);
};
arts->showPopupCallback = [this](CArtPlace & artPlace, const Point & cursorPosition)
{
showArtifactAssembling(*arts, artPlace, cursorPosition);
};
addSet(arts);
2023-11-07 14:17:34 +02:00
arts->setHero(hero);
2024-09-26 12:47:26 +02:00
2024-09-30 17:26:16 +02:00
buttons.emplace_back(std::make_unique<CButton>(Point(), AnimationPath::builtin("ALTFILL.DEF"),
CButton::tooltipLocalized("vcmi.heroWindow.sortBackpackByCost"),
[hero]() { LOCPLINT->cb->sortBackpackArtifactsByCost(hero->id); }));
buttons.emplace_back(std::make_unique<CButton>(Point(), AnimationPath::builtin("ALTFILL.DEF"),
CButton::tooltipLocalized("vcmi.heroWindow.sortBackpackBySlot"),
[hero]() { LOCPLINT->cb->sortBackpackArtifactsBySlot(hero->id); }));
buttons.emplace_back(std::make_unique<CButton>(Point(), AnimationPath::builtin("ALTFILL.DEF"),
CButton::tooltipLocalized("vcmi.heroWindow.sortBackpackByClass"),
[hero]() { LOCPLINT->cb->sortBackpackArtifactsByClass(hero->id); }));
2023-11-07 14:17:34 +02:00
pos.w = stretchedBackground->pos.w = arts->pos.w + 2 * windowMargin;
2024-09-30 17:26:16 +02:00
pos.h = stretchedBackground->pos.h = arts->pos.h + buttons.back()->pos.h + 3 * windowMargin;
2024-09-26 12:47:26 +02:00
2024-09-30 17:26:16 +02:00
auto buttonPos = Point(pos.x + windowMargin, pos.y + arts->pos.h + 2 * windowMargin);
for(const auto & button : buttons)
{
button->moveTo(buttonPos);
buttonPos += Point(button->pos.w + 10, 0);
}
2024-01-18 13:42:52 +02:00
statusbar = CGStatusBar::create(0, pos.h, ImagePath::builtin("ADROLLVR.bmp"), pos.w);
pos.h += statusbar->pos.h;
2024-09-30 17:26:16 +02:00
addUsedEvents(LCLICK);
2023-12-17 16:30:19 +02:00
center();
}
2024-09-30 17:26:16 +02:00
void CHeroBackpackWindow::notFocusedClick()
{
close();
}
void CHeroBackpackWindow::showAll(Canvas & to)
{
CIntObject::showAll(to);
CMessage::drawBorder(PlayerColor(LOCPLINT->playerID), to, pos.w+28, pos.h+29, pos.x-14, pos.y-15);
2023-07-16 20:16:12 +02:00
}
2023-11-07 14:17:34 +02:00
CHeroQuickBackpackWindow::CHeroQuickBackpackWindow(const CGHeroInstance * hero, ArtifactPosition targetSlot)
{
OBJECT_CONSTRUCTION;
2023-11-07 14:17:34 +02:00
2023-12-17 16:30:19 +02:00
stretchedBackground = std::make_shared<CFilledTexture>(ImagePath::builtin("DIBOXBCK"), Rect(0, 0, 0, 0));
arts = std::make_shared<CArtifactsOfHeroQuickBackpack>(targetSlot);
arts->moveBy(Point(windowMargin, windowMargin));
2024-05-20 14:31:07 +02:00
arts->clickPressedCallback = [this](const CArtPlace & artPlace, const Point & cursorPosition)
{
if(const auto curHero = arts->getHero())
swapArtifactAndClose(*arts, artPlace.slot, ArtifactLocation(curHero->id, arts->getFilterSlot()));
};
addSet(arts);
2023-11-07 14:17:34 +02:00
arts->setHero(hero);
2023-12-17 16:30:19 +02:00
addUsedEvents(GESTURE);
2024-09-24 15:35:28 +02:00
addUsedEvents(LCLICK);
2023-12-17 16:30:19 +02:00
pos.w = stretchedBackground->pos.w = arts->pos.w + 2 * windowMargin;
pos.h = stretchedBackground->pos.h = arts->pos.h + windowMargin;
}
void CHeroQuickBackpackWindow::gesture(bool on, const Point & initialPosition, const Point & finalPosition)
{
if(on)
return;
arts->swapSelected();
close();
}
2023-11-07 14:17:34 +02:00
2023-12-17 16:30:19 +02:00
void CHeroQuickBackpackWindow::gesturePanning(const Point & initialPosition, const Point & currentPosition, const Point & lastUpdateDistance)
{
arts->selectSlotAt(currentPosition);
redraw();
2023-11-07 14:17:34 +02:00
}
2024-09-24 15:35:28 +02:00
void CHeroQuickBackpackWindow::notFocusedClick()
{
close();
}
2023-11-07 14:17:34 +02:00
void CHeroQuickBackpackWindow::showAll(Canvas & to)
{
if(arts->getSlotsNum() == 0)
{
2023-12-17 16:30:19 +02:00
// Dirty solution for closing that window
2023-11-07 14:17:34 +02:00
close();
return;
}
CMessage::drawBorder(PlayerColor(LOCPLINT->playerID), to, pos.w + 28, pos.h + 29, pos.x - 14, pos.y - 15);
2023-12-17 16:30:19 +02:00
CIntObject::showAll(to);
2023-11-07 14:17:34 +02:00
}