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
|
|
|
{
|
|
|
|
init(
|
2023-12-17 16:30:19 +02:00
|
|
|
std::bind(&CArtifactsOfHeroBase::clickPrassedArtPlace, this, _1, _2),
|
|
|
|
std::bind(&CArtifactsOfHeroBase::showPopupArtPlace, this, _1, _2),
|
2023-04-23 14:10:35 +02:00
|
|
|
position,
|
|
|
|
std::bind(&CArtifactsOfHeroBase::scrollBackpack, this, _1));
|
2023-12-17 16:30:19 +02:00
|
|
|
addGestureCallback(std::bind(&CArtifactsOfHeroBase::gestureArtPlace, this, _1, _2));
|
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-19 16:14:41 +02:00
|
|
|
void CArtifactsOfHeroMain::enableArtifactsCostumeSwitcher()
|
2024-03-30 17:18:50 +02:00
|
|
|
{
|
2024-04-27 01:08:47 +02:00
|
|
|
addUsedEvents(AEventsReceiver::KEYBOARD);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CArtifactsOfHeroMain::keyPressed(EShortcut key)
|
|
|
|
{
|
|
|
|
if(!shortcutPressed)
|
2024-04-19 16:14:41 +02:00
|
|
|
{
|
2024-04-27 01:08:47 +02:00
|
|
|
uint32_t costumeIdx;
|
|
|
|
switch(key)
|
|
|
|
{
|
|
|
|
case EShortcut::HERO_COSTUME_0:
|
|
|
|
costumeIdx = 0;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_1:
|
|
|
|
costumeIdx = 1;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_2:
|
|
|
|
costumeIdx = 2;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_3:
|
|
|
|
costumeIdx = 3;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_4:
|
|
|
|
costumeIdx = 4;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_5:
|
|
|
|
costumeIdx = 5;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_6:
|
|
|
|
costumeIdx = 6;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_7:
|
|
|
|
costumeIdx = 7;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_8:
|
|
|
|
costumeIdx = 8;
|
|
|
|
break;
|
|
|
|
case EShortcut::HERO_COSTUME_9:
|
|
|
|
costumeIdx = 9;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
shortcutPressed = true;
|
|
|
|
LOCPLINT->cb->manageHeroCostume(getHero()->id, costumeIdx, GH.isKeyboardCtrlDown());
|
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)
|
|
|
|
{
|
|
|
|
if(vstd::contains(costumesSwitcherHotkeys, key))
|
|
|
|
shortcutPressed = false;
|
|
|
|
}
|