2023-04-23 15:10:35 +03: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 15:10:35 +03:00
|
|
|
#include "../CPlayerInterface.h"
|
|
|
|
|
|
|
|
#include "../../CCallback.h"
|
|
|
|
|
2023-05-17 16:52:16 +03:00
|
|
|
#include "../../lib/ArtifactUtils.h"
|
2023-04-23 15:10:35 +03:00
|
|
|
#include "../../lib/mapObjects/CGHeroInstance.h"
|
2023-10-23 16:38:05 +03:00
|
|
|
#include "../../lib/networkPacks/ArtifactLocation.h"
|
2023-04-23 15:10:35 +03:00
|
|
|
|
|
|
|
CArtifactsOfHeroAltar::CArtifactsOfHeroAltar(const Point & position)
|
|
|
|
{
|
2024-05-20 15:31:07 +03:00
|
|
|
init(position, std::bind(&CArtifactsOfHeroBase::scrollBackpack, this, _1));
|
2024-10-28 14:30:19 +02:00
|
|
|
setClickPressedArtPlacesCallback(std::bind(&CArtifactsOfHeroBase::clickPressedArtPlace, this, _1, _2));
|
2024-10-21 21:49:22 +03:00
|
|
|
setShowPopupArtPlacesCallback(std::bind(&CArtifactsOfHeroBase::showPopupArtPlace, this, _1, _2));
|
2024-05-20 15:31:07 +03:00
|
|
|
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 15:10:35 +03:00
|
|
|
};
|
|
|
|
|
2024-04-11 23:52:37 +03:00
|
|
|
void CArtifactsOfHeroAltar::deactivate()
|
2023-07-06 22:14:12 +03:00
|
|
|
{
|
|
|
|
putBackPickedArtifact();
|
2024-04-11 23:52:37 +03:00
|
|
|
CArtifactsOfHeroBase::deactivate();
|
2023-07-06 22:14:12 +03:00
|
|
|
}
|