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"
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
CArtifactsOfHeroMain::CArtifactsOfHeroMain(const Point & position)
|
|
|
|
{
|
|
|
|
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-11 22:52:37 +02:00
|
|
|
void CArtifactsOfHeroMain::deactivate()
|
2023-07-06 21:14:12 +02:00
|
|
|
{
|
|
|
|
putBackPickedArtifact();
|
2024-04-11 22:52:37 +02:00
|
|
|
CArtifactsOfHeroBase::deactivate();
|
2023-07-06 21:14:12 +02:00
|
|
|
}
|