mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
59b2bb4940
* proper updating resdatabar after building structure in town or buying creatures (non 800x600 res) * fixed blinking resdatabar in town screen when buying (800x600) * updating blockmap/visitmap of randomized objects * blocked "save" command during battle * cannot select heroes for computer player (pregame) * fixed mouse slow downs in pregame
231 lines
5.8 KiB
C++
231 lines
5.8 KiB
C++
#ifndef __CCASTLEINTERFACE_H__
|
|
#define __CCASTLEINTERFACE_H__
|
|
|
|
|
|
|
|
#include "global.h"
|
|
#include <SDL.h>
|
|
#include "CPlayerInterface.h"
|
|
//#include "boost/tuple/tuple.hpp"
|
|
class CGTownInstance;
|
|
class CTownHandler;
|
|
class CHallInterface;
|
|
struct Structure;
|
|
class CSpell;
|
|
class AdventureMapButton;
|
|
class CResDataBar;
|
|
class CBuildingRect : public Hoverable, public MotionInterested, public ClickableL, public ClickableR//, public TimeInterested
|
|
{
|
|
public:
|
|
bool moi; //motion interested is active
|
|
int offset, max; //first and last animation frame
|
|
Structure* str;
|
|
CDefHandler* def;
|
|
SDL_Surface* border;
|
|
SDL_Surface* area;
|
|
CBuildingRect(Structure *Str);
|
|
~CBuildingRect();
|
|
void activate();
|
|
void deactivate();
|
|
bool operator<(const CBuildingRect & p2) const;
|
|
void hover(bool on);
|
|
void clickLeft (tribool down);
|
|
void clickRight (tribool down);
|
|
void mouseMoved (const SDL_MouseMotionEvent & sEvent);
|
|
};
|
|
class CHeroGSlot : public ClickableL, public ClickableR, public Hoverable
|
|
{
|
|
public:
|
|
CCastleInterface *owner;
|
|
const CGHeroInstance *hero;
|
|
int upg; //0 - up garrison, 1 - down garrison
|
|
bool highlight;
|
|
|
|
void hover (bool on);
|
|
void clickRight (boost::logic::tribool down);
|
|
void clickLeft(boost::logic::tribool down);
|
|
void activate();
|
|
void deactivate();
|
|
void show();
|
|
CHeroGSlot(int x, int y, int updown, const CGHeroInstance *h,CCastleInterface * Owner);
|
|
~CHeroGSlot();
|
|
};
|
|
|
|
class CCastleInterface : public CMainInterface
|
|
{
|
|
public:
|
|
SDL_Rect pos;
|
|
bool showing;
|
|
CBuildingRect * hBuild; //highlighted building
|
|
SDL_Surface * townInt;
|
|
SDL_Surface * cityBg;
|
|
const CGTownInstance * town;
|
|
CStatusBar * statusbar;
|
|
CResDataBar *resdatabar;
|
|
unsigned char animval, count;
|
|
|
|
CDefHandler *hall,*fort;
|
|
CDefEssential* bicons; //150x70 buildings imgs
|
|
CTownList * townlist;
|
|
|
|
CHeroGSlot hslotup, hslotdown;
|
|
CGarrisonInt * garr;
|
|
AdventureMapButton *exit;
|
|
AdventureMapButton *split;
|
|
|
|
std::vector<CBuildingRect*> buildings; //building id, building def, structure struct, border, filling
|
|
|
|
CCastleInterface(const CGTownInstance * Town, bool Activate=true);
|
|
~CCastleInterface();
|
|
void townChange();
|
|
void show(SDL_Surface * to=NULL);
|
|
void showAll(SDL_Surface * to=NULL, bool forceTotalRedraw = false);
|
|
void buildingClicked(int building);
|
|
void enterMageGuild();
|
|
CRecrutationWindow * showRecruitmentWindow(int building);
|
|
void enterHall();
|
|
void close();
|
|
void splitF();
|
|
void activate();
|
|
void deactivate();
|
|
void addBuilding(int bid);
|
|
void removeBuilding(int bid);
|
|
void recreateBuildings();
|
|
};
|
|
class CHallInterface : public IShowActivable
|
|
{
|
|
public:
|
|
CMinorResDataBar resdatabar;
|
|
SDL_Rect pos;
|
|
|
|
class CBuildingBox : public Hoverable, public ClickableL, public ClickableR
|
|
{
|
|
public:
|
|
int BID;
|
|
int state;// 0 - no more than one capitol, 1 - lack of water, 2 - forbidden, 3 - Add another level to Mage Guild, 4 - already built, 5 - cannot build, 6 - cannot afford, 7 - build, 8 - lack of requirements
|
|
//(-1) - forbidden in this town, 0 - possible, 1 - lack of res, 2 - requirements/buildings per turn limit, (3) - already exists
|
|
void hover(bool on);
|
|
void clickLeft (tribool down);
|
|
void clickRight (tribool down);
|
|
void show(SDL_Surface * to=NULL);
|
|
void activate();
|
|
void deactivate();
|
|
CBuildingBox(int id);
|
|
CBuildingBox(int id, int x, int y);
|
|
~CBuildingBox();
|
|
};
|
|
|
|
class CBuildWindow: public IShowable, public ClickableR
|
|
{
|
|
public:
|
|
int tid, bid, state; //town id, building id, state
|
|
bool mode; // 0 - normal (with buttons), 1 - r-click popup
|
|
SDL_Surface * bitmap; //main window bitmap, with blitted res/text, without buttons/subtitle in "statusbar"
|
|
AdventureMapButton *buy, *cancel;
|
|
|
|
void activate();
|
|
void deactivate();
|
|
std::string getTextForState(int state);
|
|
void clickRight (tribool down);
|
|
void show(SDL_Surface * to=NULL);
|
|
void Buy();
|
|
void close();
|
|
CBuildWindow(int Tid, int Bid, int State, bool Mode);
|
|
~CBuildWindow();
|
|
};
|
|
|
|
CDefEssential *bars, //0 - yellow, 1 - green, 2 - red, 3 - gray
|
|
*status; //0 - already, 1 - can't, 2 - lack of resources
|
|
std::vector< std::vector<CBuildingBox*> >boxes;
|
|
|
|
AdventureMapButton *exit;
|
|
|
|
SDL_Surface * bg;
|
|
|
|
|
|
CHallInterface(CCastleInterface * owner);
|
|
~CHallInterface();
|
|
void close();
|
|
void show(SDL_Surface * to=NULL);
|
|
void activate();
|
|
void deactivate();
|
|
};
|
|
|
|
class CFortScreen : public CMainInterface, public CIntObject
|
|
{
|
|
class RecArea : public ClickableL, public ClickableR
|
|
{
|
|
public:
|
|
int bid;
|
|
RecArea(int BID):bid(BID){};
|
|
void clickLeft (tribool down);
|
|
void clickRight (tribool down);
|
|
void activate();
|
|
void deactivate();
|
|
};
|
|
public:
|
|
CMinorResDataBar resdatabar;
|
|
AdventureMapButton *exit;
|
|
SDL_Surface * bg;
|
|
std::vector<Rect> positions;
|
|
std::vector<RecArea*> recAreas;
|
|
std::vector<CCreaturePic*> crePics;
|
|
|
|
CFortScreen(CCastleInterface * owner);
|
|
|
|
void draw( CCastleInterface * owner, bool first);
|
|
~CFortScreen();
|
|
void close();
|
|
void show(SDL_Surface * to=NULL);
|
|
void activate();
|
|
void deactivate();
|
|
};
|
|
|
|
class CMageGuildScreen : public IShowActivable, public CIntObject
|
|
{
|
|
public:
|
|
class Scroll : public ClickableL, public Hoverable, public ClickableR
|
|
{
|
|
public:
|
|
CSpell *spell;
|
|
|
|
Scroll(CSpell *Spell):spell(Spell){};
|
|
void clickLeft (tribool down);
|
|
void clickRight (tribool down);
|
|
void hover(bool on);
|
|
void activate();
|
|
void deactivate();
|
|
};
|
|
std::vector<std::vector<SDL_Rect> > positions;
|
|
|
|
SDL_Surface *bg;
|
|
CDefEssential *scrolls, *scrolls2;
|
|
AdventureMapButton *exit;
|
|
std::vector<Scroll> spells;
|
|
CMinorResDataBar resdatabar;
|
|
|
|
|
|
CMageGuildScreen(CCastleInterface * owner);
|
|
~CMageGuildScreen();
|
|
void close();
|
|
void show(SDL_Surface * to=NULL);
|
|
void activate();
|
|
void deactivate();
|
|
};
|
|
|
|
class CBlacksmithDialog : public IShowable, public CIntObject
|
|
{
|
|
public:
|
|
AdventureMapButton *buy, *cancel;
|
|
SDL_Surface *bmp;
|
|
|
|
CBlacksmithDialog(bool possible, int creMachineID, int aid, int hid);
|
|
~CBlacksmithDialog();
|
|
void close();
|
|
void show(SDL_Surface * to=NULL);
|
|
void activate();
|
|
void deactivate();
|
|
};
|
|
|
|
#endif // __CCASTLEINTERFACE_H__
|