mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
83 lines
2.8 KiB
C++
83 lines
2.8 KiB
C++
/*
|
|
* CArtifactsOfHeroBase.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
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include "CArtPlace.h"
|
|
#include "Scrollable.h"
|
|
|
|
class CButton;
|
|
class BackpackScroller;
|
|
|
|
class CArtifactsOfHeroBase : virtual public CIntObject
|
|
{
|
|
protected:
|
|
using ArtPlacePtr = std::shared_ptr<CArtPlace>;
|
|
using BpackScrollFunctor = std::function<void(int)>;
|
|
|
|
public:
|
|
using ArtPlaceMap = std::map<ArtifactPosition, ArtPlacePtr>;
|
|
using ClickFunctor = std::function<void(CArtifactsOfHeroBase&, CArtPlace&, const Point&)>;
|
|
|
|
ClickFunctor clickPressedCallback;
|
|
ClickFunctor showPopupCallback;
|
|
ClickFunctor gestureCallback;
|
|
|
|
CArtifactsOfHeroBase();
|
|
virtual void putBackPickedArtifact();
|
|
virtual void clickPrassedArtPlace(CArtPlace & artPlace, const Point & cursorPosition);
|
|
virtual void showPopupArtPlace(CArtPlace & artPlace, const Point & cursorPosition);
|
|
virtual void gestureArtPlace(CArtPlace & artPlace, const Point & cursorPosition);
|
|
virtual void setHero(const CGHeroInstance * hero);
|
|
virtual const CGHeroInstance * getHero() const;
|
|
virtual void scrollBackpack(bool left);
|
|
virtual void markPossibleSlots(const CArtifactInstance * art, bool assumeDestRemoved = true);
|
|
virtual void unmarkSlots();
|
|
virtual ArtPlacePtr getArtPlace(const ArtifactPosition & slot);
|
|
virtual void updateWornSlots();
|
|
virtual void updateBackpackSlots();
|
|
virtual void updateSlot(const ArtifactPosition & slot);
|
|
virtual const CArtifactInstance * getPickedArtifact();
|
|
void addGestureCallback(CArtPlace::ClickFunctor callback);
|
|
|
|
protected:
|
|
const CGHeroInstance * curHero;
|
|
ArtPlaceMap artWorn;
|
|
std::vector<ArtPlacePtr> backpack;
|
|
std::shared_ptr<CButton> leftBackpackRoll;
|
|
std::shared_ptr<CButton> rightBackpackRoll;
|
|
std::shared_ptr<BackpackScroller> backpackScroller;
|
|
|
|
const std::vector<Point> slotPos =
|
|
{
|
|
Point(509,30), Point(568,242), Point(509,80), //0-2
|
|
Point(383,69), Point(562,184), Point(509,131), //3-5
|
|
Point(431,69), Point(610,184), Point(515,295), //6-8
|
|
Point(383,143), Point(399,193), Point(415,244), //9-11
|
|
Point(431,295), Point(564,30), Point(610,30), //12-14
|
|
Point(610,76), Point(610,122), Point(610,310), //15-17
|
|
Point(381,295) //18
|
|
};
|
|
|
|
virtual void init(const CArtPlace::ClickFunctor & lClickCallback, const CArtPlace::ClickFunctor & showPopupCallback,
|
|
const Point & position, const BpackScrollFunctor & scrollCallback);
|
|
// Assigns an artifacts to an artifact place depending on it's new slot ID
|
|
virtual void setSlotData(ArtPlacePtr artPlace, const ArtifactPosition & slot);
|
|
};
|
|
|
|
class BackpackScroller : public Scrollable
|
|
{
|
|
CArtifactsOfHeroBase * owner;
|
|
|
|
void scrollBy(int distance) override;
|
|
|
|
public:
|
|
BackpackScroller(CArtifactsOfHeroBase * owner, const Rect & dimensions);
|
|
};
|