2023-04-23 14:10:35 +02:00
|
|
|
/*
|
|
|
|
* CArtifactsOfHeroMain.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 "CArtifactsOfHeroMain.h"
|
|
|
|
|
2024-03-30 17:18:50 +02:00
|
|
|
#include "../gui/CGuiHandler.h"
|
|
|
|
|
2023-04-23 14:10:35 +02:00
|
|
|
#include "../CPlayerInterface.h"
|
2023-10-14 21:00:39 +02:00
|
|
|
#include "../../lib/mapObjects/CGHeroInstance.h"
|
2023-04-23 14:10:35 +02:00
|
|
|
|
|
|
|
#include "../../CCallback.h"
|
2023-10-23 15:38:05 +02:00
|
|
|
#include "../../lib/networkPacks/ArtifactLocation.h"
|
2023-04-23 14:10:35 +02:00
|
|
|
|
2024-04-19 16:14:41 +02:00
|
|
|
CArtifactsOfHeroMain::CArtifactsOfHeroMain(const Point & position)
|
2023-04-23 14:10:35 +02:00
|
|
|
{
|
2024-05-20 14:31:07 +02:00
|
|
|
init(position, std::bind(&CArtifactsOfHeroBase::scrollBackpack, this, _1));
|
2024-10-28 14:30:19 +02:00
|
|
|
setClickPressedArtPlacesCallback(std::bind(&CArtifactsOfHeroBase::clickPressedArtPlace, this, _1, _2));
|
2024-10-21 20:49:22 +02:00
|
|
|
setShowPopupArtPlacesCallback(std::bind(&CArtifactsOfHeroBase::showPopupArtPlace, this, _1, _2));
|
2024-05-20 14:31:07 +02:00
|
|
|
enableGesture();
|
2023-04-23 14:10:35 +02:00
|
|
|
}
|
|
|
|
|
2024-04-16 16:45:31 +02:00
|
|
|
CArtifactsOfHeroMain::~CArtifactsOfHeroMain()
|
2023-07-06 21:14:12 +02:00
|
|
|
{
|
2024-04-16 16:45:31 +02:00
|
|
|
CArtifactsOfHeroBase::putBackPickedArtifact();
|
2023-07-06 21:14:12 +02:00
|
|
|
}
|
2024-03-30 17:18:50 +02:00
|
|
|
|
2024-04-27 01:08:47 +02:00
|
|
|
void CArtifactsOfHeroMain::keyPressed(EShortcut key)
|
|
|
|
{
|
|
|
|
if(!shortcutPressed)
|
2024-04-19 16:14:41 +02:00
|
|
|
{
|
2024-05-18 18:27:42 +02:00
|
|
|
int saveIdx = vstd::find_pos(costumeSaveShortcuts, key);
|
|
|
|
int loadIdx = vstd::find_pos(costumeLoadShortcuts, key);
|
|
|
|
|
|
|
|
if (saveIdx != -1)
|
|
|
|
{
|
|
|
|
shortcutPressed = true;
|
|
|
|
LOCPLINT->cb->manageHeroCostume(getHero()->id, saveIdx, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (loadIdx != -1)
|
2024-04-27 01:08:47 +02:00
|
|
|
{
|
2024-05-18 18:27:42 +02:00
|
|
|
shortcutPressed = true;
|
|
|
|
LOCPLINT->cb->manageHeroCostume(getHero()->id, loadIdx, false);
|
2024-04-27 01:08:47 +02:00
|
|
|
return;
|
|
|
|
}
|
2024-04-19 16:14:41 +02:00
|
|
|
}
|
2024-03-30 17:18:50 +02:00
|
|
|
}
|
2024-04-27 01:08:47 +02:00
|
|
|
|
|
|
|
void CArtifactsOfHeroMain::keyReleased(EShortcut key)
|
|
|
|
{
|
2024-05-18 18:27:42 +02:00
|
|
|
if(vstd::contains(costumeSaveShortcuts, key) || vstd::contains(costumeLoadShortcuts, key))
|
2024-04-27 01:08:47 +02:00
|
|
|
shortcutPressed = false;
|
|
|
|
}
|