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)
|
|
|
|
{
|
2024-05-20 14:31:07 +02:00
|
|
|
init(position, std::bind(&CArtifactsOfHeroBase::scrollBackpack, this, _1));
|
|
|
|
enableGesture();
|
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
|
|
|
};
|
|
|
|
|
2024-04-11 22:52:37 +02:00
|
|
|
void CArtifactsOfHeroAltar::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
|
|
|
}
|