2009-04-16 14:14:13 +03:00
|
|
|
#ifndef __CPREGAME_H__
|
|
|
|
#define __CPREGAME_H__
|
2009-05-20 13:08:56 +03:00
|
|
|
#include "../global.h"
|
2009-04-16 14:14:13 +03:00
|
|
|
#include <set>
|
|
|
|
#include <SDL.h>
|
2009-05-20 13:08:56 +03:00
|
|
|
#include "../StartInfo.h"
|
2009-08-17 11:50:31 +03:00
|
|
|
#include "GUIBase.h"
|
2009-08-27 11:04:32 +03:00
|
|
|
#include "FunctionList.h"
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2009-04-15 17:03:31 +03:00
|
|
|
/*
|
|
|
|
* CPreGame.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
|
|
|
|
*
|
2009-04-16 14:14:13 +03:00
|
|
|
*/
|
|
|
|
|
2009-05-01 02:25:17 +03:00
|
|
|
struct CMusicHandler;
|
2010-02-08 16:38:06 +02:00
|
|
|
class CMapHeader;
|
2010-02-13 18:26:47 +02:00
|
|
|
class CCampaignHeader;
|
2010-02-15 08:54:57 +02:00
|
|
|
class CTextInput;
|
2010-02-15 14:12:21 +02:00
|
|
|
class CCampaign;
|
2010-02-15 13:37:47 +02:00
|
|
|
class CGStatusBar;
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2010-02-13 18:26:47 +02:00
|
|
|
class CMapInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CMapHeader * mapHeader; //may be NULL if campaign
|
|
|
|
CCampaignHeader * campaignHeader; //may be NULL if scenario
|
|
|
|
ui8 seldiff; //selected difficulty (only in saved games)
|
|
|
|
std::string filename;
|
2010-02-18 14:34:44 +02:00
|
|
|
bool lodCmpgn; //tells if this campaign is located in Lod file
|
2010-02-13 18:26:47 +02:00
|
|
|
std::string date;
|
|
|
|
int playerAmnt, humenPlayers;
|
|
|
|
CMapInfo(bool map = true);
|
|
|
|
~CMapInfo();
|
|
|
|
//CMapInfo(const std::string &fname, const unsigned char *map);
|
|
|
|
void mapInit(const std::string &fname, const unsigned char *map);
|
|
|
|
void campaignInit();
|
|
|
|
void countPlayers();
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
|
|
|
|
2010-02-15 15:28:33 +02:00
|
|
|
enum ESortBy{_playerAm, _size, _format, _name, _viccon, _loscon, _numOfMaps}; //_numOfMaps is for campaigns
|
2010-02-08 16:38:06 +02:00
|
|
|
|
|
|
|
class mapSorter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ESortBy sortBy;
|
2010-02-13 18:26:47 +02:00
|
|
|
bool operator()(const CMapInfo *aaa, const CMapInfo *bbb);
|
2010-02-08 16:38:06 +02:00
|
|
|
mapSorter(ESortBy es):sortBy(es){};
|
|
|
|
};
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2009-08-17 11:50:31 +03:00
|
|
|
class CMenuScreen : public CIntObject
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
|
|
|
public:
|
2010-02-13 18:26:47 +02:00
|
|
|
enum EState { //where are we?
|
|
|
|
mainMenu, newGame, loadGame, campaignMain, ScenarioList, saveGame, scenarioInfo, campaignList
|
|
|
|
};
|
|
|
|
|
2009-08-17 11:50:31 +03:00
|
|
|
CPicture *bgAd;
|
|
|
|
AdventureMapButton *buttons[5];
|
|
|
|
|
|
|
|
CMenuScreen(EState which);
|
|
|
|
~CMenuScreen();
|
|
|
|
void showAll(SDL_Surface * to);
|
|
|
|
void show(SDL_Surface * to);
|
|
|
|
void moveTo(CMenuScreen *next);
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
struct FileInfo
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2009-10-10 04:42:33 +03:00
|
|
|
std::string name; // file name with full path and extension
|
2009-08-17 11:50:31 +03:00
|
|
|
std::time_t date;
|
2010-02-18 14:34:44 +02:00
|
|
|
bool inLod; //tells if this file is located in Lod
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
|
|
|
|
2009-08-17 11:50:31 +03:00
|
|
|
class InfoCard : public CIntObject
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2009-08-17 11:50:31 +03:00
|
|
|
CPicture *bg;
|
2010-02-18 14:34:44 +02:00
|
|
|
public:
|
2010-02-13 18:26:47 +02:00
|
|
|
CMenuScreen::EState type;
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
CHighlightableButtonsGroup *difficulty;
|
|
|
|
CDefHandler *sizes, *sFlags;;
|
|
|
|
|
|
|
|
void changeSelection(const CMapInfo *to);
|
|
|
|
void showAll(SDL_Surface * to);
|
2009-08-22 16:59:15 +03:00
|
|
|
void clickRight(tribool down, bool previousState);
|
|
|
|
void showTeamsPopup();
|
2010-02-13 18:26:47 +02:00
|
|
|
InfoCard(CMenuScreen::EState Type);
|
2009-08-17 11:50:31 +03:00
|
|
|
~InfoCard();
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
class SelectionTab : public CIntObject
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2010-02-13 18:26:47 +02:00
|
|
|
private:
|
|
|
|
CDefHandler *format; //map size
|
|
|
|
|
|
|
|
void parseMaps(std::vector<FileInfo> &files, int start = 0, int threads = 1);
|
|
|
|
void parseGames(std::vector<FileInfo> &files);
|
|
|
|
void parseCampaigns( std::vector<FileInfo> & files );
|
|
|
|
void getFiles(std::vector<FileInfo> &out, const std::string &dirname, const std::string &ext);
|
|
|
|
CMenuScreen::EState tabType;
|
2009-04-16 14:14:13 +03:00
|
|
|
public:
|
2009-08-17 11:50:31 +03:00
|
|
|
int positions; //how many entries (games/maps) can be shown
|
|
|
|
CPicture *bg; //general bg image
|
|
|
|
CSlider *slider;
|
|
|
|
std::vector<CMapInfo> allItems;
|
|
|
|
std::vector<CMapInfo*> curItems;
|
|
|
|
size_t selectionPos;
|
|
|
|
boost::function<void(CMapInfo *)> onSelect;
|
|
|
|
|
|
|
|
ESortBy sortingBy;
|
|
|
|
bool ascending;
|
|
|
|
|
2009-08-27 11:04:32 +03:00
|
|
|
CTextInput *txt;
|
|
|
|
|
2010-02-13 18:26:47 +02:00
|
|
|
|
2009-08-27 11:04:32 +03:00
|
|
|
void filter(int size, bool selectFirst = false); //0 - all
|
2009-08-17 11:50:31 +03:00
|
|
|
void select(int position); //position: <0 - positions> position on the screen
|
2009-08-27 11:04:32 +03:00
|
|
|
void selectAbs(int position); //position: absolute position in curItems vector
|
2009-08-17 11:50:31 +03:00
|
|
|
int getPosition(int x, int y); //convert mouse coords to entry position; -1 means none
|
|
|
|
void sliderMove(int slidPos);
|
|
|
|
void sortBy(int criteria);
|
|
|
|
void sort();
|
|
|
|
void printMaps(SDL_Surface *to);
|
2009-08-27 11:04:32 +03:00
|
|
|
int getLine();
|
|
|
|
void selectFName(const std::string &fname);
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
void showAll(SDL_Surface * to);
|
|
|
|
void clickLeft(tribool down, bool previousState);
|
2009-08-23 21:01:08 +03:00
|
|
|
void wheelScrolled(bool down, bool in);
|
|
|
|
void keyPressed(const SDL_KeyboardEvent & key);
|
|
|
|
void onDoubleClick();
|
2010-02-13 18:26:47 +02:00
|
|
|
SelectionTab(CMenuScreen::EState Type, const boost::function<void(CMapInfo *)> &OnSelect);
|
2009-08-17 11:50:31 +03:00
|
|
|
~SelectionTab();
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
class OptionsTab : public CIntObject
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2010-02-18 14:34:44 +02:00
|
|
|
CPicture *bg;
|
2009-04-16 14:14:13 +03:00
|
|
|
public:
|
2009-08-17 11:50:31 +03:00
|
|
|
enum SelType {TOWN, HERO, BONUS};
|
|
|
|
struct SelectedBox : public CIntObject //img with current town/hero/bonus
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2009-08-17 11:50:31 +03:00
|
|
|
SelType which;
|
|
|
|
ui8 player; //serial nr
|
2009-08-22 16:59:15 +03:00
|
|
|
|
|
|
|
SDL_Surface *getImg() const;
|
|
|
|
const std::string *getText() const;
|
|
|
|
|
2009-08-17 11:50:31 +03:00
|
|
|
SelectedBox(SelType Which, ui8 Player);
|
2009-08-22 16:59:15 +03:00
|
|
|
void showAll(SDL_Surface * to);
|
|
|
|
void clickRight(tribool down, bool previousState);
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
struct PlayerOptionsEntry : public CIntObject
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2009-08-17 11:50:31 +03:00
|
|
|
PlayerSettings &s;
|
|
|
|
CPicture *bg;
|
|
|
|
AdventureMapButton *btns[6]; //left and right for town, hero, bonus
|
|
|
|
AdventureMapButton *flag;
|
|
|
|
SelectedBox *town;
|
|
|
|
SelectedBox *hero;
|
|
|
|
SelectedBox *bonus;
|
2009-08-18 11:22:56 +03:00
|
|
|
bool fixedHero;
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
PlayerOptionsEntry(OptionsTab *owner, PlayerSettings &S);
|
2009-08-18 11:22:56 +03:00
|
|
|
void selectButtons(bool onlyHero = true); //hides unavailable buttons
|
2009-08-17 11:50:31 +03:00
|
|
|
void showAll(SDL_Surface * to);
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2010-02-13 18:26:47 +02:00
|
|
|
CMenuScreen::EState type;
|
2009-08-17 11:50:31 +03:00
|
|
|
CSlider *turnDuration;
|
|
|
|
|
2009-04-16 14:14:13 +03:00
|
|
|
std::set<int> usedHeroes;
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
std::vector<PlayerOptionsEntry *> entries;
|
|
|
|
|
|
|
|
void nextCastle(int player, int dir); //dir == -1 or +1
|
|
|
|
void nextHero(int player, int dir); //dir == -1 or +1
|
|
|
|
void nextBonus(int player, int dir); //dir == -1 or +1
|
|
|
|
void setTurnLength(int npos);
|
|
|
|
void flagPressed(int player);
|
|
|
|
|
2009-08-27 11:04:32 +03:00
|
|
|
void changeSelection(const CMapHeader *to);
|
2010-02-13 18:26:47 +02:00
|
|
|
OptionsTab(CMenuScreen::EState Type/*, StartInfo &Opts*/);
|
2009-08-17 11:50:31 +03:00
|
|
|
~OptionsTab();
|
|
|
|
void showAll(SDL_Surface * to);
|
|
|
|
|
|
|
|
int nextAllowedHero( int min, int max, int incl, int dir );
|
|
|
|
|
|
|
|
bool canUseThisHero( int ID );
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
class CSelectionScreen : public CIntObject
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2009-08-17 11:50:31 +03:00
|
|
|
CPicture *bg; //general bg image
|
|
|
|
InfoCard *card;
|
|
|
|
OptionsTab *opt;
|
2010-02-18 14:34:44 +02:00
|
|
|
public:
|
|
|
|
AdventureMapButton *start, *back;
|
2009-08-17 11:50:31 +03:00
|
|
|
|
2010-02-18 14:34:44 +02:00
|
|
|
SelectionTab *sel;
|
2010-02-13 18:26:47 +02:00
|
|
|
CMenuScreen::EState type; //new/save/load#Game
|
2009-08-17 11:50:31 +03:00
|
|
|
const CMapInfo *current;
|
|
|
|
StartInfo sInfo;
|
|
|
|
CIntObject *curTab;
|
|
|
|
|
2010-02-16 18:35:24 +02:00
|
|
|
CSelectionScreen(CMenuScreen::EState Type);
|
2009-08-17 11:50:31 +03:00
|
|
|
~CSelectionScreen();
|
|
|
|
void toggleTab(CIntObject *tab);
|
|
|
|
void changeSelection(const CMapInfo *to);
|
2010-02-18 14:34:44 +02:00
|
|
|
static void updateStartInfo( const CMapInfo * to, StartInfo & sInfo, const CMapHeader * mapHeader );
|
2010-02-15 14:12:21 +02:00
|
|
|
void startCampaign();
|
2009-08-17 11:50:31 +03:00
|
|
|
void startGame();
|
|
|
|
void difficultyChange(int to);
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2009-08-17 11:50:31 +03:00
|
|
|
|
2009-08-27 11:04:32 +03:00
|
|
|
class CScenarioInfo : public CIntObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AdventureMapButton *back;
|
|
|
|
InfoCard *card;
|
|
|
|
OptionsTab *opt;
|
|
|
|
|
2010-02-13 18:26:47 +02:00
|
|
|
CScenarioInfo(const CMapHeader *mapHeader, const StartInfo *startInfo, const CMapInfo * makeItCurrent=NULL);
|
2009-08-27 11:04:32 +03:00
|
|
|
~CScenarioInfo();
|
|
|
|
};
|
|
|
|
|
2010-02-15 08:54:57 +02:00
|
|
|
class CMultiMode : public CIntObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CPicture *bg;
|
|
|
|
CTextInput *txt;
|
|
|
|
AdventureMapButton *btns[7]; //0 - hotseat, 6 - cancel
|
2010-02-15 13:37:47 +02:00
|
|
|
CGStatusBar *bar;
|
2010-02-15 08:54:57 +02:00
|
|
|
|
|
|
|
CMultiMode();
|
|
|
|
void openHotseat();
|
|
|
|
};
|
|
|
|
|
|
|
|
class CHotSeatPlayers : public CIntObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CPicture *bg;
|
|
|
|
CTextInput *txt[8];
|
|
|
|
AdventureMapButton *ok, *cancel;
|
2010-02-15 13:37:47 +02:00
|
|
|
CGStatusBar *bar;
|
2010-02-15 08:54:57 +02:00
|
|
|
|
|
|
|
CHotSeatPlayers(const std::string &firstPlayer);
|
2010-02-15 13:37:47 +02:00
|
|
|
void enterSelectionScreen();
|
2010-02-15 08:54:57 +02:00
|
|
|
};
|
|
|
|
|
2010-02-15 14:12:21 +02:00
|
|
|
class CBonusSelection : public CIntObject
|
|
|
|
{
|
|
|
|
SDL_Surface * background;
|
|
|
|
AdventureMapButton * startB, * backB;
|
2010-02-16 19:28:56 +02:00
|
|
|
|
|
|
|
struct SCampPositions
|
|
|
|
{
|
|
|
|
std::string campPrefix;
|
|
|
|
int colorSuffixLength;
|
|
|
|
|
|
|
|
struct SRegionDesc
|
|
|
|
{
|
|
|
|
std::string infix;
|
|
|
|
int xpos, ypos;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<SRegionDesc> regions;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<SCampPositions> campDescriptions;
|
|
|
|
|
|
|
|
class CRegion : public CIntObject
|
|
|
|
{
|
|
|
|
CBonusSelection * owner;
|
|
|
|
SDL_Surface * graphics[3]; //[0] - not selected, [1] - selected, [2] - striped
|
|
|
|
bool accessible; //false if region should be striped
|
|
|
|
bool selectable; //true if region should be selectable
|
|
|
|
int myNumber; //number of region
|
|
|
|
public:
|
2010-02-18 14:34:44 +02:00
|
|
|
std::string rclickText;
|
2010-02-16 19:28:56 +02:00
|
|
|
CRegion(CBonusSelection * _owner, bool _accessible, bool _selectable, int _myNumber);
|
|
|
|
~CRegion();
|
|
|
|
|
|
|
|
void clickLeft(tribool down, bool previousState);
|
|
|
|
void clickRight(tribool down, bool previousState);
|
|
|
|
void show(SDL_Surface * to);
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<CRegion *> regions;
|
|
|
|
CRegion * highlightedRegion;
|
|
|
|
|
|
|
|
void loadPositionsOfGraphics();
|
|
|
|
const CCampaign * ourCampaign;
|
2010-02-18 14:34:44 +02:00
|
|
|
CMapHeader *ourHeader;
|
|
|
|
CDefHandler *sizes; //icons of map sizes
|
2010-02-16 19:28:56 +02:00
|
|
|
int whichMap;
|
2010-02-23 17:39:31 +02:00
|
|
|
|
|
|
|
//bonus selection
|
|
|
|
void updateBonusSelection();
|
|
|
|
void selectBonus(int id);
|
|
|
|
CHighlightableButtonsGroup * bonuses;
|
|
|
|
|
2010-02-15 14:12:21 +02:00
|
|
|
public:
|
2010-02-18 14:34:44 +02:00
|
|
|
StartInfo sInfo;
|
|
|
|
void selectMap(int whichOne);
|
|
|
|
|
2010-02-16 19:28:56 +02:00
|
|
|
CBonusSelection(const CCampaign * _ourCampaign, int _whichMap);
|
2010-02-15 14:12:21 +02:00
|
|
|
~CBonusSelection();
|
|
|
|
|
|
|
|
void showAll(SDL_Surface * to);
|
2010-02-18 14:34:44 +02:00
|
|
|
void show(SDL_Surface * to);
|
2010-02-15 14:12:21 +02:00
|
|
|
|
|
|
|
void goBack();
|
|
|
|
void startMap();
|
|
|
|
};
|
|
|
|
|
2009-12-28 06:08:24 +02:00
|
|
|
class CGPreGame : public CIntObject, public IUpdateable
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
|
|
|
public:
|
2009-08-17 11:50:31 +03:00
|
|
|
SDL_Surface *mainbg;
|
2010-02-08 16:38:06 +02:00
|
|
|
CMenuScreen *scrs[4];
|
2009-08-17 11:50:31 +03:00
|
|
|
|
|
|
|
SDL_Surface *nHero, *rHero, *nTown, *rTown; // none/random hero/town imgs
|
|
|
|
CDefHandler *bonuses;
|
|
|
|
CDefHandler *victory, *loss;
|
|
|
|
|
|
|
|
CGPreGame();
|
|
|
|
~CGPreGame();
|
2009-12-28 06:08:24 +02:00
|
|
|
void update();
|
2009-08-17 11:50:31 +03:00
|
|
|
void run();
|
2010-02-13 18:26:47 +02:00
|
|
|
void openSel(CMenuScreen::EState type);
|
2009-08-17 11:50:31 +03:00
|
|
|
void loadGraphics();
|
|
|
|
void disposeGraphics();
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
|
|
|
|
2009-08-17 11:50:31 +03:00
|
|
|
extern CGPreGame *CGP;
|
2009-04-16 14:14:13 +03:00
|
|
|
|
|
|
|
#endif // __CPREGAME_H__
|