2023-04-23 14:10:35 +02:00
|
|
|
/*
|
|
|
|
* CArtifactsOfHeroAltar.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 "CArtifactsOfHeroAltar.h"
|
|
|
|
|
2023-11-06 14:13:10 +02:00
|
|
|
#include "Buttons.h"
|
2023-04-23 14:10:35 +02:00
|
|
|
#include "../CPlayerInterface.h"
|
|
|
|
|
|
|
|
#include "../../CCallback.h"
|
|
|
|
|
2023-05-17 15:52:16 +02:00
|
|
|
#include "../../lib/ArtifactUtils.h"
|
2023-04-23 14:10:35 +02:00
|
|
|
#include "../../lib/mapObjects/CGHeroInstance.h"
|
2023-10-23 15:38:05 +02:00
|
|
|
#include "../../lib/networkPacks/ArtifactLocation.h"
|
2023-04-23 14:10:35 +02:00
|
|
|
|
|
|
|
CArtifactsOfHeroAltar::CArtifactsOfHeroAltar(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,
|
2024-03-05 17:59:56 +02:00
|
|
|
std::bind(&CArtifactsOfHeroBase::scrollBackpack, this, _1));
|
2023-11-06 14:13:10 +02:00
|
|
|
|
|
|
|
// The backpack is in the altar window above and to the right
|
|
|
|
for(auto & slot : backpack)
|
|
|
|
slot->moveBy(Point(2, -1));
|
|
|
|
leftBackpackRoll->moveBy(Point(2, -1));
|
|
|
|
rightBackpackRoll->moveBy(Point(2, -1));
|
2023-04-23 14:10:35 +02:00
|
|
|
};
|
|
|
|
|
2023-07-06 21:14:12 +02:00
|
|
|
CArtifactsOfHeroAltar::~CArtifactsOfHeroAltar()
|
|
|
|
{
|
|
|
|
putBackPickedArtifact();
|
|
|
|
}
|