2014-07-05 12:58:42 +03:00
|
|
|
/*
|
2024-04-23 12:49:35 +02:00
|
|
|
* CArtPlace.h, part of VCMI engine
|
2014-07-05 12:58:42 +03:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
2017-07-13 10:26:03 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "MiscWidgets.h"
|
2014-07-05 12:58:42 +03:00
|
|
|
|
|
|
|
class CAnimImage;
|
|
|
|
|
2024-01-10 18:01:34 +02:00
|
|
|
class CArtPlace : public SelectableSlot
|
2014-07-05 12:58:42 +03:00
|
|
|
{
|
2023-11-04 22:15:03 +02:00
|
|
|
public:
|
2023-11-13 17:43:02 +02:00
|
|
|
using ClickFunctor = std::function<void(CArtPlace&, const Point&)>;
|
|
|
|
|
|
|
|
ArtifactPosition slot;
|
2024-04-23 19:26:21 +02:00
|
|
|
|
2023-11-04 22:15:03 +02:00
|
|
|
CArtPlace(Point position, const CArtifactInstance * art = nullptr);
|
2024-04-23 19:26:21 +02:00
|
|
|
const CArtifactInstance * getArt() const;
|
2023-11-04 22:15:03 +02:00
|
|
|
void lockSlot(bool on);
|
|
|
|
bool isLocked() const;
|
|
|
|
void setArtifact(const CArtifactInstance * art);
|
2024-04-23 19:26:21 +02:00
|
|
|
void setClickPressedCallback(const ClickFunctor & callback);
|
|
|
|
void setShowPopupCallback(const ClickFunctor & callback);
|
|
|
|
void setGestureCallback(const ClickFunctor & callback);
|
2023-11-13 17:43:02 +02:00
|
|
|
void clickPressed(const Point & cursorPosition) override;
|
|
|
|
void showPopupWindow(const Point & cursorPosition) override;
|
2023-12-17 16:30:19 +02:00
|
|
|
void gesture(bool on, const Point & initialPosition, const Point & finalPosition) override;
|
2024-05-21 19:00:13 +02:00
|
|
|
void addCombinedArtInfo(const std::map<const ArtifactID, std::vector<ArtifactID>> & arts);
|
2023-11-04 22:15:03 +02:00
|
|
|
|
2024-04-23 19:26:21 +02:00
|
|
|
private:
|
2023-04-23 13:09:49 +02:00
|
|
|
const CArtifactInstance * ourArt;
|
2023-11-04 22:15:03 +02:00
|
|
|
bool locked;
|
2024-04-23 19:26:21 +02:00
|
|
|
int imageIndex;
|
|
|
|
std::shared_ptr<CAnimImage> image;
|
2023-11-13 17:43:02 +02:00
|
|
|
ClickFunctor clickPressedCallback;
|
|
|
|
ClickFunctor showPopupCallback;
|
2023-12-17 16:30:19 +02:00
|
|
|
ClickFunctor gestureCallback;
|
2023-04-23 13:09:49 +02:00
|
|
|
|
2024-04-23 19:26:21 +02:00
|
|
|
protected:
|
2023-04-23 13:09:49 +02:00
|
|
|
void setInternals(const CArtifactInstance * artInst);
|
2016-11-04 18:54:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class CCommanderArtPlace : public CArtPlace
|
|
|
|
{
|
2024-04-23 19:26:21 +02:00
|
|
|
private:
|
2016-11-06 14:02:00 +02:00
|
|
|
const CGHeroInstance * commanderOwner;
|
|
|
|
ArtifactPosition commanderSlotID;
|
|
|
|
|
|
|
|
void returnArtToHeroCallback();
|
2023-04-23 13:09:49 +02:00
|
|
|
|
2016-11-04 18:54:09 +02:00
|
|
|
public:
|
2023-11-04 22:15:03 +02:00
|
|
|
CCommanderArtPlace(Point position, const CGHeroInstance * commanderOwner, ArtifactPosition artSlot, const CArtifactInstance * art = nullptr);
|
2023-07-08 13:33:04 +02:00
|
|
|
void clickPressed(const Point & cursorPosition) override;
|
|
|
|
void showPopupWindow(const Point & cursorPosition) override;
|
2016-11-04 18:54:09 +02:00
|
|
|
};
|