| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #ifndef __STARTINFO_H__
- #define __STARTINFO_H__
- #include "global.h"
- #include <vector>
- #include <string>
- /*
- * StartInfo.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
- *
- */
- enum Ebonus {brandom=-1,bartifact, bgold, bresource};
- struct PlayerSettings
- {
- si32 castle, hero, //ID, if -1 then random, if -2 then none
- heroPortrait; //-1 if default, else ID
- std::string heroName;
- si8 bonus; //usees enum type Ebonus
- ui8 color; //from 0 -
- ui8 serial;
- ui8 handicap;//0-no, 1-mild, 2-severe
- std::string name;
- ui8 human;
- template <typename Handler> void serialize(Handler &h, const int version)
- {
- h & castle;
- h & hero;
- h & heroPortrait;
- h & heroName;
- h & bonus;
- h & color;
- h & serial;
- h & handicap;
- h & name;
- h & human;
- }
- PlayerSettings()
- {
- bonus = brandom;
- castle = -2;
- heroPortrait = -1;
- }
- };
- struct StartInfo
- {
- ui8 mode; //0 - new game; 1 - load game; 2 - campaign
- ui8 difficulty; //0=easy; 4=impossible
- std::vector<PlayerSettings> playerInfos; //serial indexed
- ui8 turnTime; //in minutes, 0=unlimited
- std::string mapname;
- ui8 whichMapInCampaign; //used only for mode 2
- PlayerSettings & getIthPlayersSettings(int no)
- {
- for(unsigned int i=0; i<playerInfos.size(); ++i)
- if(playerInfos[i].color == no)
- return playerInfos[i];
- tlog1 << "Cannot find info about player " << no <<". Throwing...\n";
- throw std::string("Cannot find info about player");
- }
- PlayerSettings *getPlayersSettings(const std::string &name)
- {
- for(unsigned int i=0; i<playerInfos.size(); ++i)
- if(playerInfos[i].name == name)
- return &playerInfos[i];
- return NULL;
- }
- template <typename Handler> void serialize(Handler &h, const int version)
- {
- h & mode;
- h & difficulty;
- h & playerInfos;
- h & turnTime;
- h & mapname;
- h & whichMapInCampaign;
- }
- };
- #endif // __STARTINFO_H__
|