1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/client/CHeroWindow.h

100 lines
2.9 KiB
C
Raw Normal View History

#ifndef __CHEROWINDOW_H__
#define __CHEROWINDOW_H__
#include "..\lib\HeroBonus.h"
//#include "CPlayerInterface.h"
/*
* CHeroWindow.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
*
*/
class AdventureMapButton;
struct SDL_Surface;
class CGHeroInstance;
class CDefHandler;
class CArtifact;
class CHeroWindow;
2009-06-18 18:05:00 +03:00
class LClickableAreaHero;
class LRClickableAreaWText;
class LRClickableAreaWTextComp;
class CArtifactsOfHero;
/// Button which switches hero selection
class CHeroSwitcher : public CIntObject
{
public:
int id;
2010-12-17 00:32:53 +02:00
CHeroWindow * getOwner();
virtual void clickLeft(tribool down, bool previousState);
2010-12-17 00:32:53 +02:00
CHeroSwitcher(int serial);
};
//helper class for calculating values of hero bonuses without bonuses from picked up artifact
class CHeroWithMaybePickedArtifact : public IBonusBearer
{
public:
const CGHeroInstance *hero;
CWindowWithArtifacts *cww;
2010-12-17 00:32:53 +02:00
CHeroWithMaybePickedArtifact(CWindowWithArtifacts *Cww, const CGHeroInstance *Hero);
void getAllBonuses(BonusList &out, const CSelector &selector, const CSelector &limit, const CBonusSystemNode *root = NULL) const OVERRIDE;
};
2010-12-17 00:32:53 +02:00
class CHeroWindow: public CWindowWithGarrison, public CWindowWithArtifacts
{
2010-12-17 00:32:53 +02:00
enum ELabel {};
std::map<ELabel, CLabel*> labels;
2010-12-17 20:47:07 +02:00
CPicture *background;
2010-12-17 00:32:53 +02:00
CGStatusBar * ourBar; //heroWindow's statusBar
//general graphics
CDefEssential *flags;
//buttons
//AdventureMapButton * gar4button; //splitting
std::vector<CHeroSwitcher *> heroListMi; //new better list of heroes
//clickable areas
LRClickableAreaWText * portraitArea;
std::vector<LRClickableAreaWTextComp *> primSkillAreas;
LRClickableAreaWText * expArea;
LRClickableAreaWText * spellPointsArea;
LRClickableAreaWText * specArea;//speciality
2010-02-07 17:06:14 +02:00
MoraleLuckBox * morale, * luck;
std::vector<LRClickableAreaWTextComp *> secSkillAreas;
CHeroWithMaybePickedArtifact heroWArt;
public:
const CGHeroInstance * curHero;
AdventureMapButton * quitButton, * dismissButton, * questlogButton; //general
2010-12-17 00:32:53 +02:00
CHighlightableButton *tacticsButton; //garrison / formation handling;
CHighlightableButtonsGroup *formations;
int player;
2010-12-17 00:32:53 +02:00
CHeroWindow(const CGHeroInstance *hero); //c-tor
~CHeroWindow(); //d-tor
void update(const CGHeroInstance * hero, bool redrawNeeded = false); //sets main displayed hero
2010-12-17 00:32:53 +02:00
void showAll(SDL_Surface * to); //shows and activates adv. map interface
// void redrawCurBack(); //redraws curBAck from scratch
void quit(); //stops displaying hero window and disposes
void dismissCurrent(); //dissmissed currently displayed hero (curHero)
void questlog(); //show quest log in hero window
2010-12-17 00:32:53 +02:00
void switchHero(); //changes displayed hero
//friends
friend void CArtPlace::clickLeft(tribool down, bool previousState);
friend class CPlayerInterface;
};
#endif // __CHEROWINDOW_H__