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-11-13 17:43:02 +02:00
|
|
|
std::bind(&CArtifactsOfHeroBase::leftClickArtPlace, this, _1, _2),
|
|
|
|
std::bind(&CArtifactsOfHeroBase::rightClickArtPlace, this, _1, _2),
|
2023-04-23 14:10:35 +02:00
|
|
|
position,
|
|
|
|
std::bind(&CArtifactsOfHeroBase::scrollBackpack, this, _1));
|
|
|
|
}
|
|
|
|
|
2023-07-06 21:14:12 +02:00
|
|
|
CArtifactsOfHeroMain::~CArtifactsOfHeroMain()
|
|
|
|
{
|
|
|
|
putBackPickedArtifact();
|
|
|
|
}
|
|
|
|
|
2023-04-23 14:10:35 +02:00
|
|
|
void CArtifactsOfHeroMain::swapArtifacts(const ArtifactLocation & srcLoc, const ArtifactLocation & dstLoc)
|
|
|
|
{
|
|
|
|
LOCPLINT->cb->swapArtifacts(srcLoc, dstLoc);
|
|
|
|
}
|
|
|
|
|
2023-11-13 17:43:02 +02:00
|
|
|
void CArtifactsOfHeroMain::pickUpArtifact(CArtPlace & artPlace)
|
2023-04-23 14:10:35 +02:00
|
|
|
{
|
2023-10-14 21:00:39 +02:00
|
|
|
LOCPLINT->cb->swapArtifacts(ArtifactLocation(curHero->id, artPlace.slot),
|
|
|
|
ArtifactLocation(curHero->id, ArtifactPosition::TRANSITION_POS));
|
2023-10-23 12:59:15 +02:00
|
|
|
}
|