2014-07-05 12:58:42 +03:00
|
|
|
/*
|
|
|
|
* CArtifactHolder.h, 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
|
|
|
|
*
|
|
|
|
*/
|
2017-07-13 10:26:03 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "MiscWidgets.h"
|
2014-07-05 12:58:42 +03:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
struct ArtifactLocation;
|
2023-04-23 13:09:49 +02:00
|
|
|
class CArtifactSet;
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|
|
|
|
|
2014-07-05 12:58:42 +03:00
|
|
|
class CAnimImage;
|
|
|
|
|
|
|
|
class CArtifactHolder
|
|
|
|
{
|
|
|
|
public:
|
2023-04-23 13:09:49 +02:00
|
|
|
virtual void artifactRemoved(const ArtifactLocation & artLoc)=0;
|
|
|
|
virtual void artifactMoved(const ArtifactLocation & artLoc, const ArtifactLocation & destLoc, bool withRedraw)=0;
|
|
|
|
virtual void artifactDisassembled(const ArtifactLocation & artLoc)=0;
|
|
|
|
virtual void artifactAssembled(const ArtifactLocation & artLoc)=0;
|
2014-07-05 12:58:42 +03:00
|
|
|
};
|
|
|
|
|
2016-11-04 18:54:09 +02:00
|
|
|
class CArtPlace : public LRClickableAreaWTextComp
|
2014-07-05 12:58:42 +03:00
|
|
|
{
|
2023-11-04 22:15:03 +02:00
|
|
|
public:
|
|
|
|
CArtPlace(Point position, const CArtifactInstance * art = nullptr);
|
|
|
|
const CArtifactInstance* getArt();
|
|
|
|
void lockSlot(bool on);
|
|
|
|
bool isLocked() const;
|
|
|
|
void selectSlot(bool on);
|
|
|
|
bool isSelected() const;
|
|
|
|
void showAll(Canvas & to) override;
|
|
|
|
void setArtifact(const CArtifactInstance * art);
|
|
|
|
|
2016-11-04 18:54:09 +02:00
|
|
|
protected:
|
2018-04-07 13:34:11 +02:00
|
|
|
std::shared_ptr<CAnimImage> image;
|
2023-04-23 13:09:49 +02:00
|
|
|
const CArtifactInstance * ourArt;
|
2023-10-19 20:22:26 +02:00
|
|
|
int imageIndex;
|
2023-11-04 22:15:03 +02:00
|
|
|
std::shared_ptr<CAnimImage> selection;
|
|
|
|
bool locked;
|
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
|
|
|
|
{
|
|
|
|
protected:
|
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
|
|
|
};
|
|
|
|
|
|
|
|
class CHeroArtPlace: public CArtPlace
|
|
|
|
{
|
2014-07-05 12:58:42 +03:00
|
|
|
public:
|
2023-09-17 17:40:14 +02:00
|
|
|
using ClickFunctor = std::function<void(CHeroArtPlace&)>;
|
2014-07-05 12:58:42 +03:00
|
|
|
|
2023-04-23 13:09:49 +02:00
|
|
|
ArtifactPosition slot;
|
2023-09-17 17:40:14 +02:00
|
|
|
ClickFunctor leftClickCallback;
|
|
|
|
ClickFunctor showPopupCallback;
|
2016-11-25 18:17:37 +02:00
|
|
|
|
2023-11-04 22:15:03 +02:00
|
|
|
CHeroArtPlace(Point position, const CArtifactInstance * art = nullptr);
|
2023-07-08 13:33:04 +02:00
|
|
|
void clickPressed(const Point & cursorPosition) override;
|
|
|
|
void showPopupWindow(const Point & cursorPosition) override;
|
2023-04-23 13:09:49 +02:00
|
|
|
void addCombinedArtInfo(std::map<const CArtifact*, int> & arts);
|
2014-07-05 12:58:42 +03:00
|
|
|
};
|
|
|
|
|
2023-04-23 14:10:35 +02:00
|
|
|
namespace ArtifactUtilsClient
|
2014-07-05 12:58:42 +03:00
|
|
|
{
|
2023-04-23 14:10:35 +02:00
|
|
|
bool askToAssemble(const CGHeroInstance * hero, const ArtifactPosition & slot);
|
|
|
|
bool askToDisassemble(const CGHeroInstance * hero, const ArtifactPosition & slot);
|
2023-04-23 13:17:27 +02:00
|
|
|
}
|