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 11:26:03 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "MiscWidgets.h"
|
2014-07-05 12:58:42 +03:00
|
|
|
|
2022-07-26 16:07:42 +03:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
struct ArtifactLocation;
|
2023-04-23 14:09:49 +03:00
|
|
|
class CArtifactSet;
|
2022-07-26 16:07:42 +03:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|
|
|
|
|
2014-07-05 12:58:42 +03:00
|
|
|
class CAnimImage;
|
2014-08-03 14:16:19 +03:00
|
|
|
class CButton;
|
2014-07-05 12:58:42 +03:00
|
|
|
|
|
|
|
class CArtifactHolder
|
|
|
|
{
|
|
|
|
public:
|
2023-04-23 14:09:49 +03: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 17:54:09 +01:00
|
|
|
class CArtPlace : public LRClickableAreaWTextComp
|
2014-07-05 12:58:42 +03:00
|
|
|
{
|
2016-11-04 17:54:09 +01:00
|
|
|
protected:
|
2018-04-07 14:34:11 +03:00
|
|
|
std::shared_ptr<CAnimImage> image;
|
2023-04-23 14:09:49 +03:00
|
|
|
const CArtifactInstance * ourArt;
|
|
|
|
|
|
|
|
void setInternals(const CArtifactInstance * artInst);
|
2016-11-04 17:54:09 +01:00
|
|
|
virtual void createImage()=0;
|
|
|
|
|
2023-04-23 14:09:49 +03:00
|
|
|
public:
|
2017-07-18 00:04:00 +03:00
|
|
|
CArtPlace(Point position, const CArtifactInstance * Art = nullptr);
|
2016-11-04 17:54:09 +01:00
|
|
|
void clickLeft(tribool down, bool previousState) override;
|
|
|
|
void clickRight(tribool down, bool previousState) override;
|
2023-04-23 14:09:49 +03:00
|
|
|
const CArtifactInstance * getArt();
|
2016-11-04 17:54:09 +01:00
|
|
|
|
2023-04-23 14:09:49 +03:00
|
|
|
virtual void setArtifact(const CArtifactInstance * art)=0;
|
2016-11-04 17:54:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class CCommanderArtPlace : public CArtPlace
|
|
|
|
{
|
|
|
|
protected:
|
2016-11-06 13:02:00 +01:00
|
|
|
const CGHeroInstance * commanderOwner;
|
|
|
|
ArtifactPosition commanderSlotID;
|
|
|
|
|
2016-11-04 17:54:09 +01:00
|
|
|
void createImage() override;
|
2016-11-06 13:02:00 +01:00
|
|
|
void returnArtToHeroCallback();
|
2023-04-23 14:09:49 +03:00
|
|
|
|
2016-11-04 17:54:09 +01:00
|
|
|
public:
|
2017-07-18 00:04:00 +03:00
|
|
|
CCommanderArtPlace(Point position, const CGHeroInstance * commanderOwner, ArtifactPosition artSlot, const CArtifactInstance * Art = nullptr);
|
2016-11-04 17:54:09 +01:00
|
|
|
void clickLeft(tribool down, bool previousState) override;
|
|
|
|
void clickRight(tribool down, bool previousState) override;
|
2023-04-23 14:09:49 +03:00
|
|
|
void setArtifact(const CArtifactInstance * art) override;
|
2016-11-04 17:54:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class CHeroArtPlace: public CArtPlace
|
|
|
|
{
|
2014-07-05 12:58:42 +03:00
|
|
|
public:
|
2023-04-23 14:09:49 +03:00
|
|
|
using ClickHandler = std::function<void(CHeroArtPlace&)>;
|
2014-07-05 12:58:42 +03:00
|
|
|
|
2023-04-23 14:09:49 +03:00
|
|
|
ArtifactPosition slot;
|
|
|
|
ClickHandler leftClickCallback;
|
|
|
|
ClickHandler rightClickCallback;
|
2016-11-25 19:17:37 +03:00
|
|
|
|
2017-07-18 00:04:00 +03:00
|
|
|
CHeroArtPlace(Point position, const CArtifactInstance * Art = nullptr);
|
2014-07-05 12:58:42 +03:00
|
|
|
void lockSlot(bool on);
|
2023-04-23 14:09:49 +03:00
|
|
|
bool isLocked();
|
2014-07-05 12:58:42 +03:00
|
|
|
void selectSlot(bool on);
|
2023-04-23 14:09:49 +03:00
|
|
|
bool isMarked() const;
|
2015-10-12 16:47:10 +03:00
|
|
|
void clickLeft(tribool down, bool previousState) override;
|
|
|
|
void clickRight(tribool down, bool previousState) override;
|
2023-06-02 16:42:18 +03:00
|
|
|
void showAll(Canvas & to) override;
|
2023-04-23 14:09:49 +03:00
|
|
|
void setArtifact(const CArtifactInstance * art) override;
|
|
|
|
void addCombinedArtInfo(std::map<const CArtifact*, int> & arts);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::shared_ptr<CAnimImage> selection;
|
|
|
|
bool locked;
|
|
|
|
bool marked;
|
2014-07-05 12:58:42 +03:00
|
|
|
|
2023-04-23 14:09:49 +03:00
|
|
|
void createImage() override;
|
2014-07-05 12:58:42 +03:00
|
|
|
};
|
|
|
|
|
2023-04-23 15:10:35 +03:00
|
|
|
namespace ArtifactUtilsClient
|
2014-07-05 12:58:42 +03:00
|
|
|
{
|
2023-04-23 15:10:35 +03:00
|
|
|
bool askToAssemble(const CGHeroInstance * hero, const ArtifactPosition & slot);
|
|
|
|
bool askToDisassemble(const CGHeroInstance * hero, const ArtifactPosition & slot);
|
2023-04-23 14:17:27 +03:00
|
|
|
}
|