CPreGame.cpp 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032
  1. #include "StdInc.h"
  2. #include "CPreGame.h"
  3. #include "../lib/Filesystem/CResourceLoader.h"
  4. #include "../lib/Filesystem/CFileInfo.h"
  5. #include "../lib/Filesystem/CCompressedStream.h"
  6. #include "../lib/CStopWatch.h"
  7. #include "UIFramework/SDL_Extensions.h"
  8. #include "CGameInfo.h"
  9. #include "UIFramework/CCursorHandler.h"
  10. #include "CAnimation.h"
  11. #include "CDefHandler.h"
  12. #include "../lib/CDefObjInfoHandler.h"
  13. #include "../lib/CGeneralTextHandler.h"
  14. #include "../lib/CTownHandler.h"
  15. #include "../lib/CHeroHandler.h"
  16. #include "../lib/CObjectHandler.h"
  17. #include "../lib/Map/CCampaignHandler.h"
  18. #include "../lib/CCreatureHandler.h"
  19. #include "../lib/JsonNode.h"
  20. #include "CMusicHandler.h"
  21. #include "CVideoHandler.h"
  22. #include "Graphics.h"
  23. #include "../lib/Connection.h"
  24. #include "../lib/VCMIDirs.h"
  25. #include "../lib/Map/CMap.h"
  26. #include "GUIClasses.h"
  27. #include "CPlayerInterface.h"
  28. #include "../CCallback.h"
  29. #include "CMessage.h"
  30. #include "../lib/CSpellHandler.h" /*for campaign bonuses*/
  31. #include "../lib/CArtHandler.h" /*for campaign bonuses*/
  32. #include "../lib/CBuildingHandler.h" /*for campaign bonuses*/
  33. #include "CBitmapHandler.h"
  34. #include "Client.h"
  35. #include "../lib/NetPacks.h"
  36. #include "../lib/RegisterTypes.h"
  37. #include "../lib/CThreadHelper.h"
  38. #include "../lib/CConfigHandler.h"
  39. #include "../lib/GameConstants.h"
  40. #include "UIFramework/CGuiHandler.h"
  41. #include "UIFramework/CIntObjectClasses.h"
  42. #include "../lib/Map/CMapService.h"
  43. /*
  44. * CPreGame.cpp, part of VCMI engine
  45. *
  46. * Authors: listed in file AUTHORS in main folder
  47. *
  48. * License: GNU General Public License v2.0 or later
  49. * Full text of license available in license.txt file, in main folder
  50. *
  51. */
  52. namespace fs = boost::filesystem;
  53. using boost::bind;
  54. using boost::ref;
  55. #if _MSC_VER >= 1600
  56. //#define bind boost::bind
  57. //#define ref boost::ref
  58. #endif
  59. void startGame(StartInfo * options, CConnection *serv = NULL);
  60. CGPreGame * CGP = nullptr;
  61. ISelectionScreenInfo *SEL;
  62. static int playerColor; //if more than one player - applies to the first
  63. /**
  64. * Stores the current name of the savegame.
  65. *
  66. * TODO better solution for auto-selection when saving already saved games.
  67. * -> CSelectionScreen should be divided into CLoadGameScreen, CSaveGameScreen,...
  68. * The name of the savegame can then be stored non-statically in CGameState and
  69. * passed separately to CSaveGameScreen.
  70. */
  71. static std::string saveGameName;
  72. struct EvilHlpStruct
  73. {
  74. CConnection *serv;
  75. StartInfo *sInfo;
  76. void reset(bool strong = true)
  77. {
  78. if(strong)
  79. {
  80. vstd::clear_pointer(serv);
  81. vstd::clear_pointer(sInfo);
  82. }
  83. else
  84. {
  85. serv = NULL;
  86. sInfo = NULL;
  87. }
  88. }
  89. } startingInfo;
  90. static void do_quit()
  91. {
  92. SDL_Event event;
  93. event.quit.type = SDL_QUIT;
  94. SDL_PushEvent(&event);
  95. }
  96. static CMapInfo *mapInfoFromGame()
  97. {
  98. CMapInfo * ret = new CMapInfo();
  99. ret->mapHeader = std::unique_ptr<CMapHeader>(new CMapHeader(*LOCPLINT->cb->getMapHeader()));
  100. return ret;
  101. }
  102. static void setPlayersFromGame()
  103. {
  104. playerColor = LOCPLINT->playerID;
  105. }
  106. static void swapPlayers(PlayerSettings &a, PlayerSettings &b)
  107. {
  108. std::swap(a.playerID, b.playerID);
  109. std::swap(a.name, b.name);
  110. if(a.playerID == 1)
  111. playerColor = a.color;
  112. else if(b.playerID == 1)
  113. playerColor = b.color;
  114. }
  115. void setPlayer(PlayerSettings &pset, TPlayerColor player, const std::map<TPlayerColor, std::string> &playerNames)
  116. {
  117. if(vstd::contains(playerNames, player))
  118. pset.name = playerNames.find(player)->second;
  119. else
  120. pset.name = CGI->generaltexth->allTexts[468];//Computer
  121. pset.playerID = player;
  122. if(player == playerNames.begin()->first)
  123. playerColor = pset.color;
  124. }
  125. void updateStartInfo(std::string filename, StartInfo & sInfo, const CMapHeader * mapHeader, const std::map<TPlayerColor, std::string> &playerNames)
  126. {
  127. sInfo.playerInfos.clear();
  128. if(!mapHeader)
  129. {
  130. return;
  131. }
  132. sInfo.mapname = filename;
  133. playerColor = -1;
  134. auto namesIt = playerNames.cbegin();
  135. for (int i = 0; i < mapHeader->players.size(); i++)
  136. {
  137. const PlayerInfo &pinfo = mapHeader->players[i];
  138. //neither computer nor human can play - no player
  139. if (!(pinfo.canHumanPlay || pinfo.canComputerPlay))
  140. continue;
  141. PlayerSettings &pset = sInfo.playerInfos[i];
  142. pset.color = i;
  143. if(pinfo.canHumanPlay && namesIt != playerNames.cend())
  144. setPlayer(pset, namesIt++->first, playerNames);
  145. else
  146. setPlayer(pset, 0, playerNames);
  147. pset.castle = pinfo.defaultCastle();
  148. pset.hero = pinfo.defaultHero();
  149. if(pinfo.customHeroID >= 0)
  150. {
  151. pset.hero = pinfo.customHeroID;
  152. if (!pinfo.mainHeroName.empty())
  153. pset.heroName = pinfo.mainHeroName;
  154. else
  155. pset.heroName = CGI->heroh->heroes[pinfo.customHeroID]->name;
  156. if (pinfo.mainHeroPortrait >= 0)
  157. pset.heroPortrait = pinfo.mainHeroPortrait;
  158. else
  159. pset.heroPortrait = pinfo.customHeroID;
  160. }
  161. pset.handicap = 0;
  162. }
  163. }
  164. template <typename T> class CApplyOnPG;
  165. class CBaseForPGApply
  166. {
  167. public:
  168. virtual void applyOnPG(CSelectionScreen *selScr, void *pack) const =0;
  169. virtual ~CBaseForPGApply(){};
  170. template<typename U> static CBaseForPGApply *getApplier(const U * t=NULL)
  171. {
  172. return new CApplyOnPG<U>;
  173. }
  174. };
  175. template <typename T> class CApplyOnPG : public CBaseForPGApply
  176. {
  177. public:
  178. void applyOnPG(CSelectionScreen *selScr, void *pack) const
  179. {
  180. T *ptr = static_cast<T*>(pack);
  181. ptr->apply(selScr);
  182. }
  183. };
  184. static CApplier<CBaseForPGApply> *applier = NULL;
  185. static CPicture* createPicture(const JsonNode& config)
  186. {
  187. return new CPicture(config["name"].String(), config["x"].Float(), config["y"].Float());
  188. }
  189. CMenuScreen::CMenuScreen(const JsonNode& configNode):
  190. config(configNode)
  191. {
  192. OBJ_CONSTRUCTION_CAPTURING_ALL;
  193. background = new CPicture(config["background"].String());
  194. if (config["scalable"].Bool())
  195. {
  196. if (background->bg->format->palette)
  197. background->convertToScreenBPP();
  198. background->scaleTo(Point(screen->w, screen->h));
  199. }
  200. pos = background->center();
  201. BOOST_FOREACH(const JsonNode& node, config["items"].Vector())
  202. menuNameToEntry.push_back(node["name"].String());
  203. BOOST_FOREACH(const JsonNode& node, config["images"].Vector())
  204. images.push_back(createPicture(node));
  205. //Hardcoded entry
  206. menuNameToEntry.push_back("credits");
  207. tabs = new CTabbedInt(boost::bind(&CMenuScreen::createTab, this, _1), CTabbedInt::DestroyFunc());
  208. tabs->type |= REDRAW_PARENT;
  209. }
  210. CIntObject * CMenuScreen::createTab(size_t index)
  211. {
  212. if (config["items"].Vector().size() == index)
  213. return new CreditsScreen();
  214. return new CMenuEntry(this, config["items"].Vector()[index]);
  215. }
  216. void CMenuScreen::showAll(SDL_Surface * to)
  217. {
  218. CIntObject::showAll(to);
  219. if (pos.h != to->h || pos.w != to->w)
  220. CMessage::drawBorder(1, to, pos.w+28, pos.h+30, pos.x-14, pos.y-15);
  221. }
  222. void CMenuScreen::show(SDL_Surface * to)
  223. {
  224. if (!config["video"].isNull())
  225. CCS->videoh->update(config["video"]["x"].Float() + pos.x, config["video"]["y"].Float() + pos.y, to, true, false);
  226. CIntObject::show(to);
  227. }
  228. void CMenuScreen::activate()
  229. {
  230. CCS->musich->playMusic("Music/MainMenu", true);
  231. if (!config["video"].isNull())
  232. CCS->videoh->open(config["video"]["name"].String());
  233. CIntObject::activate();
  234. }
  235. void CMenuScreen::deactivate()
  236. {
  237. if (!config["video"].isNull())
  238. CCS->videoh->close();
  239. CIntObject::deactivate();
  240. }
  241. void CMenuScreen::switchToTab(size_t index)
  242. {
  243. tabs->setActive(index);
  244. }
  245. //funciton for std::string -> boost::function conversion for main menu
  246. static boost::function<void()> genCommand(CMenuScreen* menu, std::vector<std::string> menuType, const std::string &string)
  247. {
  248. static const std::vector<std::string> commandType = boost::assign::list_of
  249. ("to")("campaigns")("start")("load")("exit")("highscores");
  250. static const std::vector<std::string> gameType = boost::assign::list_of
  251. ("single")("multi")("campaign")("tutorial");
  252. std::list<std::string> commands;
  253. boost::split(commands, string, boost::is_any_of("\t "));
  254. if (!commands.empty())
  255. {
  256. size_t index = std::find(commandType.begin(), commandType.end(), commands.front()) - commandType.begin();
  257. commands.pop_front();
  258. if (index > 3 || !commands.empty())
  259. {
  260. switch (index)
  261. {
  262. break; case 0://to - switch to another tab, if such tab exists
  263. {
  264. size_t index2 = std::find(menuType.begin(), menuType.end(), commands.front()) - menuType.begin();
  265. if ( index2 != menuType.size())
  266. return boost::bind(&CMenuScreen::switchToTab, menu, index2);
  267. }
  268. break; case 1://open campaign selection window
  269. {
  270. return boost::bind(&CGPreGame::openCampaignScreen, CGP, commands.front());
  271. }
  272. break; case 2://start
  273. {
  274. switch (std::find(gameType.begin(), gameType.end(), commands.front()) - gameType.begin())
  275. {
  276. case 0: return bind(&CGPreGame::openSel, CGP, CMenuScreen::newGame, CMenuScreen::SINGLE_PLAYER);
  277. case 1: return &pushIntT<CMultiMode>;
  278. case 2: return boost::bind(&CGPreGame::openSel, CGP, CMenuScreen::campaignList, CMenuScreen::SINGLE_PLAYER);
  279. case 3: return boost::function<void()>();//TODO: start tutorial
  280. }
  281. }
  282. break; case 3://load
  283. {
  284. switch (std::find(gameType.begin(), gameType.end(), commands.front()) - gameType.begin())
  285. {
  286. case 0: return boost::bind(&CGPreGame::openSel, CGP, CMenuScreen::loadGame, CMenuScreen::SINGLE_PLAYER);
  287. case 1: return boost::bind(&CGPreGame::openSel, CGP, CMenuScreen::loadGame, CMenuScreen::MULTI_HOT_SEAT);
  288. case 2: return boost::function<void()>();//TODO: load campaign
  289. case 3: return boost::function<void()>();//TODO: load tutorial
  290. }
  291. }
  292. break; case 4://exit
  293. {
  294. return boost::bind(CInfoWindow::showYesNoDialog, boost::ref(CGI->generaltexth->allTexts[69]), (const std::vector<CComponent*>*)0, do_quit, 0, false, 1);
  295. }
  296. break; case 5://highscores
  297. {
  298. return boost::function<void()>(); //TODO: high scores &pushIntT<CHighScores>;
  299. }
  300. }
  301. }
  302. }
  303. tlog0<<"Failed to parse command: "<<string<<"\n";
  304. return boost::function<void()>();
  305. }
  306. CAdventureMapButton* CMenuEntry::createButton(CMenuScreen* parent, const JsonNode& button)
  307. {
  308. boost::function<void()> command = genCommand(parent, parent->menuNameToEntry, button["command"].String());
  309. std::pair<std::string, std::string> help;
  310. if (!button["help"].isNull() && button["help"].Float() > 0)
  311. help = CGI->generaltexth->zelp[button["help"].Float()];
  312. int posx = button["x"].Float();
  313. if (posx < 0)
  314. posx = pos.w + posx;
  315. int posy = button["y"].Float();
  316. if (posy < 0)
  317. posy = pos.h + posy;
  318. return new CAdventureMapButton(help, command, posx, posy, button["name"].String(), button["hotkey"].Float());
  319. }
  320. CMenuEntry::CMenuEntry(CMenuScreen* parent, const JsonNode &config)
  321. {
  322. OBJ_CONSTRUCTION_CAPTURING_ALL;
  323. type |= REDRAW_PARENT;
  324. pos = parent->pos;
  325. BOOST_FOREACH(const JsonNode& node, config["images"].Vector())
  326. images.push_back(createPicture(node));
  327. BOOST_FOREACH(const JsonNode& node, config["buttons"].Vector())
  328. {
  329. buttons.push_back(createButton(parent, node));
  330. buttons.back()->hoverable = true;
  331. buttons.back()->type |= REDRAW_PARENT;
  332. }
  333. }
  334. CreditsScreen::CreditsScreen()
  335. {
  336. addUsedEvents(LCLICK | RCLICK);
  337. type |= REDRAW_PARENT;
  338. OBJ_CONSTRUCTION_CAPTURING_ALL;
  339. pos.w = CGP->menu->pos.w;
  340. pos.h = CGP->menu->pos.h;
  341. auto textFile = CResourceHandler::get()->loadData(ResourceID("DATA/CREDITS.TXT"));
  342. std::string text((char*)textFile.first.get(), textFile.second);
  343. size_t firstQuote = text.find('\"')+1;
  344. text = text.substr(firstQuote, text.find('\"', firstQuote) - firstQuote );
  345. credits = new CTextBox(text, Rect(pos.w - 350, 600, 350, 32000), 0, FONT_CREDITS, CENTER, Colors::WHITE);
  346. credits->pos.h = credits->maxH;
  347. }
  348. void CreditsScreen::showAll(SDL_Surface * to)
  349. {
  350. //Do not draw anything
  351. }
  352. void CreditsScreen::show(SDL_Surface * to)
  353. {
  354. static int count = 0;
  355. count++;
  356. if (count == 2)
  357. {
  358. credits->pos.y--;
  359. count = 0;
  360. }
  361. Rect creditsArea = credits->pos & pos;
  362. SDL_SetClipRect(screenBuf, &creditsArea);
  363. SDL_SetClipRect(screen, &creditsArea);
  364. redraw();
  365. CIntObject::showAll(to);
  366. SDL_SetClipRect(screen, NULL);
  367. SDL_SetClipRect(screenBuf, NULL);
  368. //end of credits, close this screen
  369. if (credits->pos.y + credits->pos.h < 0)
  370. clickRight(false, false);
  371. }
  372. void CreditsScreen::clickLeft(tribool down, bool previousState)
  373. {
  374. clickRight(down, previousState);
  375. }
  376. void CreditsScreen::clickRight(tribool down, bool previousState)
  377. {
  378. CTabbedInt* menu = dynamic_cast<CTabbedInt*>(parent);
  379. assert(menu);
  380. menu->setActive(0);
  381. }
  382. CGPreGame::CGPreGame():
  383. pregameConfig(new JsonNode(ResourceID("config/mainmenu.json")))
  384. {
  385. pos.w = screen->w;
  386. pos.h = screen->h;
  387. GH.defActionsDef = 63;
  388. CGP = this;
  389. menu = new CMenuScreen((*pregameConfig)["window"]);
  390. loadGraphics();
  391. }
  392. CGPreGame::~CGPreGame()
  393. {
  394. disposeGraphics();
  395. }
  396. void CGPreGame::openSel(CMenuScreen::EState screenType, CMenuScreen::EMultiMode multi /*= CMenuScreen::SINGLE_PLAYER*/)
  397. {
  398. GH.pushInt(new CSelectionScreen(screenType, multi));
  399. }
  400. void CGPreGame::loadGraphics()
  401. {
  402. OBJ_CONSTRUCTION_CAPTURING_ALL;
  403. new CFilledTexture("DIBOXBCK", pos);
  404. victory = CDefHandler::giveDef("SCNRVICT.DEF");
  405. loss = CDefHandler::giveDef("SCNRLOSS.DEF");
  406. }
  407. void CGPreGame::disposeGraphics()
  408. {
  409. delete victory;
  410. delete loss;
  411. }
  412. void CGPreGame::update()
  413. {
  414. if (GH.listInt.empty())
  415. {
  416. GH.pushInt(this);
  417. GH.pushInt(menu);
  418. menu->switchToTab(0);
  419. }
  420. if(SEL)
  421. SEL->update();
  422. // Handles mouse and key input
  423. GH.updateTime();
  424. GH.handleEvents();
  425. if (GH.curInt == NULL) // no redraw, when a new game was created
  426. return;
  427. GH.topInt()->show(screen);
  428. if (settings["general"]["showfps"].Bool())
  429. GH.drawFPSCounter();
  430. // draw the mouse cursor and update the screen
  431. CCS->curh->drawWithScreenRestore();
  432. CSDL_Ext::update(screen);
  433. CCS->curh->drawRestored();
  434. }
  435. void CGPreGame::openCampaignScreen(std::string name)
  436. {
  437. BOOST_FOREACH(const JsonNode& node, (*pregameConfig)["campaignsset"].Vector())
  438. {
  439. if (node["name"].String() == name)
  440. {
  441. GH.pushInt(new CCampaignScreen(node));
  442. return;
  443. }
  444. }
  445. tlog1<<"Unknown campaign set: "<<name<<"\n";
  446. }
  447. CGPreGame *CGPreGame::create()
  448. {
  449. if(!CGP)
  450. CGP = new CGPreGame();
  451. return CGP;
  452. }
  453. void CGPreGame::removeFromGui()
  454. {
  455. //remove everything but main menu and background
  456. GH.popInts(GH.listInt.size() - 2);
  457. GH.popInt(GH.topInt()); //remove main menu
  458. GH.popInt(GH.topInt()); //remove background
  459. }
  460. CSelectionScreen::CSelectionScreen(CMenuScreen::EState Type, CMenuScreen::EMultiMode MultiPlayer /*= CMenuScreen::SINGLE_PLAYER*/, const std::map<TPlayerColor, std::string> *Names /*= NULL*/)
  461. : ISelectionScreenInfo(Names), serverHandlingThread(NULL), mx(new boost::recursive_mutex),
  462. serv(NULL), ongoingClosing(false), myNameID(255)
  463. {
  464. CGPreGame::create(); //we depend on its graphics
  465. screenType = Type;
  466. multiPlayer = MultiPlayer;
  467. OBJ_CONSTRUCTION_CAPTURING_ALL;
  468. bool network = (MultiPlayer == CMenuScreen::MULTI_NETWORK_GUEST || MultiPlayer == CMenuScreen::MULTI_NETWORK_HOST);
  469. CServerHandler *sh = NULL;
  470. if(multiPlayer == CMenuScreen::MULTI_NETWORK_HOST)
  471. {
  472. sh = new CServerHandler;
  473. sh->startServer();
  474. }
  475. IShowActivatable::type = BLOCK_ADV_HOTKEYS;
  476. pos.w = 762;
  477. pos.h = 584;
  478. if(Type == CMenuScreen::saveGame)
  479. {
  480. bordered = false;
  481. center(pos);
  482. }
  483. else if(Type == CMenuScreen::campaignList)
  484. {
  485. bordered = false;
  486. bg = new CPicture("CamCust.bmp", 0, 0);
  487. pos = bg->center();
  488. }
  489. else
  490. {
  491. bordered = true;
  492. //load random background
  493. const JsonVector & bgNames = (*CGP->pregameConfig)["game-select"].Vector();
  494. bg = new CPicture(bgNames[rand() % bgNames.size()].String(), 0, 0);
  495. pos = bg->center();
  496. }
  497. sInfo.difficulty = 1;
  498. current = NULL;
  499. sInfo.mode = (Type == CMenuScreen::newGame ? StartInfo::NEW_GAME : StartInfo::LOAD_GAME);
  500. sInfo.turnTime = 0;
  501. curTab = NULL;
  502. card = new InfoCard(network); //right info card
  503. if (screenType == CMenuScreen::campaignList)
  504. {
  505. opt = NULL;
  506. }
  507. else
  508. {
  509. opt = new OptionsTab(); //scenario options tab
  510. opt->recActions = DISPOSE;
  511. randMapTab = new RandomMapTab();
  512. randMapTab->getMapInfoChanged() += bind(&CSelectionScreen::changeSelection, this, _1);
  513. randMapTab->recActions = DISPOSE;
  514. }
  515. sel = new SelectionTab(screenType, bind(&CSelectionScreen::changeSelection, this, _1), multiPlayer); //scenario selection tab
  516. sel->recActions = DISPOSE;
  517. switch(screenType)
  518. {
  519. case CMenuScreen::newGame:
  520. {
  521. card->difficulty->onChange = bind(&CSelectionScreen::difficultyChange, this, _1);
  522. card->difficulty->select(1, 0);
  523. CAdventureMapButton * select = new CAdventureMapButton(CGI->generaltexth->zelp[45], 0, 411, 80, "GSPBUTT.DEF", SDLK_s);
  524. select->callback = [&]()
  525. {
  526. toggleTab(sel);
  527. changeSelection(sel->getSelectedMapInfo());
  528. };
  529. select->addTextOverlay(CGI->generaltexth->allTexts[500], FONT_SMALL);
  530. CAdventureMapButton *opts = new CAdventureMapButton(CGI->generaltexth->zelp[46], bind(&CSelectionScreen::toggleTab, this, opt), 411, 510, "GSPBUTT.DEF", SDLK_a);
  531. opts->addTextOverlay(CGI->generaltexth->allTexts[501], FONT_SMALL);
  532. CAdventureMapButton * randomBtn = new CAdventureMapButton(CGI->generaltexth->zelp[47], 0, 411, 105, "GSPBUTT.DEF", SDLK_r);
  533. randomBtn->addTextOverlay(CGI->generaltexth->allTexts[740], FONT_SMALL);
  534. if(settings["general"]["enableRMG"].Bool())
  535. {
  536. randomBtn->callback = [&]()
  537. {
  538. toggleTab(randMapTab);
  539. changeSelection(&randMapTab->getMapInfo());
  540. };
  541. }
  542. start = new CAdventureMapButton(CGI->generaltexth->zelp[103], bind(&CSelectionScreen::startGame, this), 411, 535, "SCNRBEG.DEF", SDLK_b);
  543. if(network)
  544. {
  545. CAdventureMapButton *hideChat = new CAdventureMapButton(CGI->generaltexth->zelp[48], bind(&InfoCard::toggleChat, card), 619, 83, "GSPBUT2.DEF", SDLK_h);
  546. hideChat->addTextOverlay(CGI->generaltexth->allTexts[531], FONT_SMALL);
  547. if(multiPlayer == CMenuScreen::MULTI_NETWORK_GUEST)
  548. {
  549. SDL_Color orange = {232, 184, 32, 0};
  550. select->text->color = opts->text->color = randomBtn->text->color = orange;
  551. select->block(true);
  552. opts->block(true);
  553. randomBtn->block(true);
  554. start->block(true);
  555. }
  556. }
  557. }
  558. break;
  559. case CMenuScreen::loadGame:
  560. sel->recActions = 255;
  561. start = new CAdventureMapButton(CGI->generaltexth->zelp[103], bind(&CSelectionScreen::startGame, this), 411, 535, "SCNRLOD.DEF", SDLK_l);
  562. break;
  563. case CMenuScreen::saveGame:
  564. sel->recActions = 255;
  565. start = new CAdventureMapButton("", CGI->generaltexth->zelp[103].second, bind(&CSelectionScreen::startGame, this), 411, 535, "SCNRSAV.DEF");
  566. break;
  567. case CMenuScreen::campaignList:
  568. sel->recActions = 255;
  569. start = new CAdventureMapButton(std::pair<std::string, std::string>(), bind(&CSelectionScreen::startCampaign, this), 411, 535, "SCNRLOD.DEF", SDLK_b);
  570. break;
  571. }
  572. start->assignedKeys.insert(SDLK_RETURN);
  573. std::string backName;
  574. if(Type == CMenuScreen::campaignList)
  575. {
  576. backName = "SCNRBACK.DEF";
  577. }
  578. else
  579. {
  580. backName = "SCNRBACK.DEF";
  581. }
  582. back = new CAdventureMapButton("", CGI->generaltexth->zelp[105].second, bind(&CGuiHandler::popIntTotally, &GH, this), 581, 535, backName, SDLK_ESCAPE);
  583. if(network)
  584. {
  585. if(multiPlayer == CMenuScreen::MULTI_NETWORK_HOST)
  586. {
  587. assert(playerNames.size() == 1 && vstd::contains(playerNames, 1)); //TODO hot-seat/network combo
  588. serv = sh->connectToServer();
  589. *serv << (ui8) 4;
  590. myNameID = 1;
  591. }
  592. else
  593. {
  594. serv = CServerHandler::justConnectToServer();
  595. }
  596. *serv << playerNames.begin()->second;
  597. if(multiPlayer == CMenuScreen::MULTI_NETWORK_GUEST)
  598. {
  599. const CMapInfo *map;
  600. *serv >> myNameID >> map;
  601. serv->connectionID = myNameID;
  602. changeSelection(map);
  603. }
  604. else //host
  605. {
  606. if(current)
  607. {
  608. SelectMap sm(*current);
  609. *serv << &sm;
  610. UpdateStartOptions uso(sInfo);
  611. *serv << &uso;
  612. }
  613. }
  614. applier = new CApplier<CBaseForPGApply>;
  615. registerTypes4(*applier);
  616. serverHandlingThread = new boost::thread(&CSelectionScreen::handleConnection, this);
  617. }
  618. delete sh;
  619. }
  620. CSelectionScreen::~CSelectionScreen()
  621. {
  622. ongoingClosing = true;
  623. if(serv)
  624. {
  625. assert(serverHandlingThread);
  626. QuitMenuWithoutStarting qmws;
  627. *serv << &qmws;
  628. // while(!serverHandlingThread->timed_join(boost::posix_time::milliseconds(50)))
  629. // processPacks();
  630. serverHandlingThread->join();
  631. delete serverHandlingThread;
  632. }
  633. playerColor = -1;
  634. playerNames.clear();
  635. assert(!serv);
  636. vstd::clear_pointer(applier);
  637. delete mx;
  638. }
  639. void CSelectionScreen::toggleTab(CIntObject *tab)
  640. {
  641. if(multiPlayer == CMenuScreen::MULTI_NETWORK_HOST && serv)
  642. {
  643. PregameGuiAction pga;
  644. if(tab == curTab)
  645. pga.action = PregameGuiAction::NO_TAB;
  646. else if(tab == opt)
  647. pga.action = PregameGuiAction::OPEN_OPTIONS;
  648. else if(tab == sel)
  649. pga.action = PregameGuiAction::OPEN_SCENARIO_LIST;
  650. else if(tab == randMapTab)
  651. pga.action = PregameGuiAction::OPEN_RANDOM_MAP_OPTIONS;
  652. *serv << &pga;
  653. }
  654. if(curTab && curTab->active)
  655. {
  656. curTab->deactivate();
  657. curTab->recActions = DISPOSE;
  658. }
  659. if(curTab != tab)
  660. {
  661. tab->recActions = 255;
  662. tab->activate();
  663. curTab = tab;
  664. }
  665. else
  666. {
  667. curTab = NULL;
  668. };
  669. GH.totalRedraw();
  670. }
  671. void CSelectionScreen::changeSelection(const CMapInfo * to)
  672. {
  673. if(multiPlayer == CMenuScreen::MULTI_NETWORK_GUEST)
  674. {
  675. vstd::clear_pointer(current);
  676. }
  677. current = to;
  678. if(to && (screenType == CMenuScreen::loadGame ||
  679. screenType == CMenuScreen::saveGame))
  680. SEL->sInfo.difficulty = to->scenarioOpts->difficulty;
  681. if(screenType != CMenuScreen::campaignList)
  682. {
  683. updateStartInfo(to ? to->fileURI : "", sInfo, to ? to->mapHeader.get() : NULL);
  684. if(screenType == CMenuScreen::newGame)
  685. {
  686. sInfo.createRandomMap = to->isRandomMap;
  687. if(to->isRandomMap)
  688. {
  689. sInfo.mapGenOptions = std::shared_ptr<CMapGenOptions>(new CMapGenOptions(randMapTab->getMapGenOptions()));
  690. }
  691. else
  692. {
  693. sInfo.mapGenOptions.reset();
  694. }
  695. }
  696. }
  697. card->changeSelection(to);
  698. if(screenType != CMenuScreen::campaignList)
  699. {
  700. opt->recreate();
  701. }
  702. if(multiPlayer == CMenuScreen::MULTI_NETWORK_HOST && serv)
  703. {
  704. SelectMap sm(*to);
  705. *serv << &sm;
  706. UpdateStartOptions uso(sInfo);
  707. *serv << &uso;
  708. }
  709. }
  710. void CSelectionScreen::startCampaign()
  711. {
  712. if (SEL->current)
  713. {
  714. GH.pushInt(new CBonusSelection(SEL->current->fileURI));
  715. }
  716. }
  717. void CSelectionScreen::startGame()
  718. {
  719. if(screenType == CMenuScreen::newGame)
  720. {
  721. //there must be at least one human player before game can be started
  722. std::map<TPlayerColor, PlayerSettings>::const_iterator i;
  723. for(i = SEL->sInfo.playerInfos.cbegin(); i != SEL->sInfo.playerInfos.cend(); i++)
  724. if(i->second.playerID != PlayerSettings::PLAYER_AI)
  725. break;
  726. if(i == SEL->sInfo.playerInfos.cend())
  727. {
  728. GH.pushInt(CInfoWindow::create(CGI->generaltexth->allTexts[530])); //You must position yourself prior to starting the game.
  729. return;
  730. }
  731. }
  732. if(multiPlayer == CMenuScreen::MULTI_NETWORK_HOST)
  733. {
  734. start->block(true);
  735. StartWithCurrentSettings swcs;
  736. *serv << &swcs;
  737. ongoingClosing = true;
  738. return;
  739. }
  740. if(screenType != CMenuScreen::saveGame)
  741. {
  742. if(!current)
  743. return;
  744. saveGameName.clear();
  745. if(screenType == CMenuScreen::loadGame)
  746. {
  747. saveGameName = sInfo.mapname;
  748. }
  749. if(sInfo.createRandomMap)
  750. {
  751. // Random map generation fails for now, so don't start game...
  752. return;
  753. }
  754. StartInfo * si = new StartInfo(sInfo);
  755. CGP->removeFromGui();
  756. ::startGame(si);
  757. }
  758. else
  759. {
  760. if(!(sel && sel->txt && sel->txt->text.size()))
  761. return;
  762. saveGameName = "Saves/" + sel->txt->text;
  763. CFunctionList<void()> overWrite;
  764. overWrite += boost::bind(&CCallback::save, LOCPLINT->cb, saveGameName);
  765. overWrite += bind(&CGuiHandler::popIntTotally, &GH, this);
  766. if(CResourceHandler::get()->existsResource(ResourceID(saveGameName, EResType::LIB_SAVEGAME)))
  767. {
  768. std::string hlp = CGI->generaltexth->allTexts[493]; //%s exists. Overwrite?
  769. boost::algorithm::replace_first(hlp, "%s", sel->txt->text);
  770. LOCPLINT->showYesNoDialog(hlp, overWrite, 0, false);
  771. }
  772. else
  773. overWrite();
  774. }
  775. }
  776. void CSelectionScreen::difficultyChange( int to )
  777. {
  778. assert(screenType == CMenuScreen::newGame);
  779. sInfo.difficulty = to;
  780. propagateOptions();
  781. redraw();
  782. }
  783. void CSelectionScreen::handleConnection()
  784. {
  785. setThreadName("CSelectionScreen::handleConnection");
  786. try
  787. {
  788. assert(serv);
  789. while(serv)
  790. {
  791. CPackForSelectionScreen *pack = NULL;
  792. *serv >> pack;
  793. assert(pack);
  794. if(QuitMenuWithoutStarting *endingPack = dynamic_cast<QuitMenuWithoutStarting *>(pack))
  795. {
  796. endingPack->apply(this);
  797. }
  798. else if(StartWithCurrentSettings *endingPack = dynamic_cast<StartWithCurrentSettings *>(pack))
  799. {
  800. endingPack->apply(this);
  801. }
  802. else
  803. {
  804. boost::unique_lock<boost::recursive_mutex> lll(*mx);
  805. upcomingPacks.push_back(pack);
  806. }
  807. }
  808. } HANDLE_EXCEPTION
  809. catch(int i)
  810. {
  811. if(i != 666)
  812. throw;
  813. }
  814. }
  815. void CSelectionScreen::setSInfo(const StartInfo &si)
  816. {
  817. std::map<TPlayerColor, PlayerSettings>::const_iterator i;
  818. for(i = si.playerInfos.cbegin(); i != si.playerInfos.cend(); i++)
  819. {
  820. if(i->second.playerID == myNameID)
  821. {
  822. playerColor = i->first;
  823. break;
  824. }
  825. }
  826. if(i == si.playerInfos.cend()) //not found
  827. playerColor = -1;
  828. sInfo = si;
  829. if(current)
  830. opt->recreate(); //will force to recreate using current sInfo
  831. card->difficulty->select(si.difficulty, 0);
  832. GH.totalRedraw();
  833. }
  834. void CSelectionScreen::processPacks()
  835. {
  836. boost::unique_lock<boost::recursive_mutex> lll(*mx);
  837. while(upcomingPacks.size())
  838. {
  839. CPackForSelectionScreen *pack = upcomingPacks.front();
  840. upcomingPacks.pop_front();
  841. CBaseForPGApply *apply = applier->apps[typeList.getTypeID(pack)]; //find the applier
  842. apply->applyOnPG(this, pack);
  843. delete pack;
  844. }
  845. }
  846. void CSelectionScreen::update()
  847. {
  848. if(serverHandlingThread)
  849. processPacks();
  850. }
  851. void CSelectionScreen::propagateOptions()
  852. {
  853. if(isHost() && serv)
  854. {
  855. UpdateStartOptions ups(sInfo);
  856. *serv << &ups;
  857. }
  858. }
  859. void CSelectionScreen::postRequest(ui8 what, ui8 dir)
  860. {
  861. if(!isGuest() || !serv)
  862. return;
  863. RequestOptionsChange roc(what, dir, myNameID);
  864. *serv << &roc;
  865. }
  866. void CSelectionScreen::postChatMessage(const std::string &txt)
  867. {
  868. assert(serv);
  869. ChatMessage cm;
  870. cm.message = txt;
  871. cm.playerName = sInfo.getPlayersSettings(myNameID)->name;
  872. *serv << &cm;
  873. }
  874. void CSelectionScreen::propagateNames()
  875. {
  876. PlayersNames pn;
  877. pn.playerNames = playerNames;
  878. *serv << &pn;
  879. }
  880. void CSelectionScreen::showAll(SDL_Surface *to)
  881. {
  882. CIntObject::showAll(to);
  883. if (bordered && (pos.h != to->h || pos.w != to->w))
  884. CMessage::drawBorder(1, to, pos.w+28, pos.h+30, pos.x-14, pos.y-15);
  885. }
  886. // A new size filter (Small, Medium, ...) has been selected. Populate
  887. // selMaps with the relevant data.
  888. void SelectionTab::filter( int size, bool selectFirst )
  889. {
  890. curItems.clear();
  891. if(tabType == CMenuScreen::campaignList)
  892. {
  893. for (size_t i=0; i<allItems.size(); i++)
  894. curItems.push_back(&allItems[i]);
  895. }
  896. else
  897. {
  898. for (size_t i=0; i<allItems.size(); i++)
  899. if( allItems[i].mapHeader && allItems[i].mapHeader->version && (!size || allItems[i].mapHeader->width == size))
  900. curItems.push_back(&allItems[i]);
  901. }
  902. if(curItems.size())
  903. {
  904. slider->block(false);
  905. slider->setAmount(curItems.size());
  906. sort();
  907. if(selectFirst)
  908. {
  909. slider->moveTo(0);
  910. onSelect(curItems[0]);
  911. }
  912. selectAbs(0);
  913. }
  914. else
  915. {
  916. slider->block(true);
  917. onSelect(NULL);
  918. }
  919. }
  920. std::vector<ResourceID> SelectionTab::getFiles(std::string dirURI, int resType)
  921. {
  922. std::vector<ResourceID> ret;
  923. boost::to_upper(dirURI);
  924. auto iterator = CResourceHandler::get()->getIterator([&](const ResourceID & ident)
  925. {
  926. return ident.getType() == resType
  927. && boost::algorithm::starts_with(ident.getName(), dirURI);
  928. });
  929. while (iterator.hasNext())
  930. {
  931. ret.push_back(*iterator);
  932. ++iterator;
  933. }
  934. return ret;
  935. }
  936. void SelectionTab::parseMaps(const std::vector<ResourceID> & files)
  937. {
  938. allItems.clear();
  939. for(int i = 0; i < files.size(); ++i)
  940. {
  941. try
  942. {
  943. CMapInfo mapInfo;
  944. mapInfo.mapInit(files[i].getName());
  945. allItems.push_back(mapInfo);
  946. }
  947. catch(std::exception & e)
  948. {
  949. tlog2 << "Map " << files[i].getName() << " is invalid. Message: " << e.what() << std::endl;
  950. }
  951. }
  952. }
  953. void SelectionTab::parseGames(const std::vector<ResourceID> &files, bool multi)
  954. {
  955. for(int i=0; i<files.size(); i++)
  956. {
  957. try
  958. {
  959. CLoadFile lf(CResourceHandler::get()->getResourceName(files[i]));
  960. ui8 sign[8];
  961. lf >> sign;
  962. if(std::memcmp(sign,"VCMISVG",7))
  963. {
  964. throw std::runtime_error("not a correct savefile!");
  965. }
  966. // Create the map info object
  967. CMapInfo mapInfo;
  968. mapInfo.mapHeader = std::shared_ptr<CMapHeader>(new CMapHeader);
  969. mapInfo.scenarioOpts = new StartInfo;
  970. lf >> *(mapInfo.mapHeader.get()) >> mapInfo.scenarioOpts;
  971. mapInfo.fileURI = files[i].getName();
  972. mapInfo.countPlayers();
  973. std::time_t time = CFileInfo(CResourceHandler::get()->getResourceName(files[i])).getDate();
  974. mapInfo.date = std::asctime(std::localtime(&time));
  975. // If multi mode then only multi games, otherwise single
  976. if((mapInfo.actualHumanPlayers > 1) != multi)
  977. {
  978. mapInfo.mapHeader.reset();
  979. }
  980. allItems.push_back(mapInfo);
  981. }
  982. catch(std::exception & e)
  983. {
  984. tlog3 << "Failed to process " << files[i].getName() <<": " << e.what() << std::endl;
  985. }
  986. }
  987. }
  988. void SelectionTab::parseCampaigns(const std::vector<ResourceID> & files )
  989. {
  990. for(int i=0; i<files.size(); i++)
  991. {
  992. //allItems[i].date = std::asctime(std::localtime(&files[i].date));
  993. allItems[i].fileURI = files[i].getName();
  994. allItems[i].campaignInit();
  995. }
  996. }
  997. SelectionTab::SelectionTab(CMenuScreen::EState Type, const boost::function<void(CMapInfo *)> &OnSelect, CMenuScreen::EMultiMode MultiPlayer /*= CMenuScreen::SINGLE_PLAYER*/)
  998. :bg(NULL), onSelect(OnSelect)
  999. {
  1000. OBJ_CONSTRUCTION;
  1001. selectionPos = 0;
  1002. addUsedEvents(LCLICK | WHEEL | KEYBOARD | DOUBLECLICK);
  1003. slider = NULL;
  1004. txt = NULL;
  1005. tabType = Type;
  1006. if (Type != CMenuScreen::campaignList)
  1007. {
  1008. bg = new CPicture("SCSELBCK.bmp", 0, 6);
  1009. pos = bg->pos;
  1010. }
  1011. else
  1012. {
  1013. bg = nullptr; //use background from parent
  1014. pos.w = parent->pos.w;
  1015. pos.h = parent->pos.h;
  1016. pos.x += 3; pos.y += 6;
  1017. }
  1018. if(MultiPlayer == CMenuScreen::MULTI_NETWORK_GUEST)
  1019. {
  1020. positions = 18;
  1021. }
  1022. else
  1023. {
  1024. std::vector<CCampaignHeader> cpm;
  1025. switch(tabType)
  1026. {
  1027. case CMenuScreen::newGame:
  1028. parseMaps(getFiles("Maps/", EResType::MAP));
  1029. positions = 18;
  1030. break;
  1031. case CMenuScreen::loadGame:
  1032. case CMenuScreen::saveGame:
  1033. parseGames(getFiles("Saves/", EResType::LIB_SAVEGAME), MultiPlayer);
  1034. if(tabType == CMenuScreen::loadGame)
  1035. {
  1036. positions = 18;
  1037. }
  1038. else
  1039. {
  1040. positions = 16;
  1041. }
  1042. if(tabType == CMenuScreen::saveGame)
  1043. {
  1044. txt = new CTextInput(Rect(32, 539, 350, 20), Point(-32, -25), "GSSTRIP.bmp", 0);
  1045. txt->filters.add(CTextInput::filenameFilter);
  1046. }
  1047. break;
  1048. case CMenuScreen::campaignList:
  1049. parseCampaigns(getFiles("Maps/", EResType::CAMPAIGN));
  1050. positions = 18;
  1051. break;
  1052. default:
  1053. assert(0);
  1054. break;
  1055. }
  1056. }
  1057. if (tabType != CMenuScreen::campaignList)
  1058. {
  1059. //size filter buttons
  1060. {
  1061. int sizes[] = {36, 72, 108, 144, 0};
  1062. const char * names[] = {"SCSMBUT.DEF", "SCMDBUT.DEF", "SCLGBUT.DEF", "SCXLBUT.DEF", "SCALBUT.DEF"};
  1063. for(int i = 0; i < 5; i++)
  1064. new CAdventureMapButton("", CGI->generaltexth->zelp[54+i].second, bind(&SelectionTab::filter, this, sizes[i], true), 158 + 47*i, 46, names[i]);
  1065. }
  1066. //sort buttons buttons
  1067. {
  1068. int xpos[] = {23, 55, 88, 121, 306, 339};
  1069. const char * names[] = {"SCBUTT1.DEF", "SCBUTT2.DEF", "SCBUTCP.DEF", "SCBUTT3.DEF", "SCBUTT4.DEF", "SCBUTT5.DEF"};
  1070. for(int i = 0; i < 6; i++)
  1071. new CAdventureMapButton("", CGI->generaltexth->zelp[107+i].second, bind(&SelectionTab::sortBy, this, i), xpos[i], 86, names[i]);
  1072. }
  1073. }
  1074. else
  1075. {
  1076. //sort by buttons
  1077. new CAdventureMapButton("", "", bind(&SelectionTab::sortBy, this, _numOfMaps), 23, 86, "CamCusM.DEF"); //by num of maps
  1078. new CAdventureMapButton("", "", bind(&SelectionTab::sortBy, this, _name), 55, 86, "CamCusL.DEF"); //by name
  1079. }
  1080. slider = new CSlider(372, 86, tabType != CMenuScreen::saveGame ? 480 : 430, bind(&SelectionTab::sliderMove, this, _1), positions, curItems.size(), 0, false, 1);
  1081. slider->addUsedEvents(WHEEL);
  1082. slider->slider->keepFrame = true;
  1083. format = CDefHandler::giveDef("SCSELC.DEF");
  1084. sortingBy = _format;
  1085. ascending = true;
  1086. filter(0);
  1087. //select(0);
  1088. switch(tabType)
  1089. {
  1090. case CMenuScreen::newGame:
  1091. selectFName("Maps/Arrogance");
  1092. break;
  1093. case CMenuScreen::loadGame:
  1094. case CMenuScreen::campaignList:
  1095. select(0);
  1096. break;
  1097. case CMenuScreen::saveGame:;
  1098. if(saveGameName.empty())
  1099. {
  1100. txt->setTxt("NEWGAME");
  1101. }
  1102. else
  1103. {
  1104. selectFName(saveGameName);
  1105. }
  1106. }
  1107. }
  1108. SelectionTab::~SelectionTab()
  1109. {
  1110. delete format;
  1111. }
  1112. void SelectionTab::sortBy( int criteria )
  1113. {
  1114. if(criteria == sortingBy)
  1115. {
  1116. ascending = !ascending;
  1117. }
  1118. else
  1119. {
  1120. sortingBy = (ESortBy)criteria;
  1121. ascending = true;
  1122. }
  1123. sort();
  1124. selectAbs(0);
  1125. }
  1126. void SelectionTab::sort()
  1127. {
  1128. if(sortingBy != _name)
  1129. std::stable_sort(curItems.begin(), curItems.end(), mapSorter(_name));
  1130. std::stable_sort(curItems.begin(), curItems.end(), mapSorter(sortingBy));
  1131. if(!ascending)
  1132. std::reverse(curItems.begin(), curItems.end());
  1133. redraw();
  1134. }
  1135. void SelectionTab::select( int position )
  1136. {
  1137. if(!curItems.size()) return;
  1138. // New selection. py is the index in curItems.
  1139. int py = position + slider->value;
  1140. vstd::amax(py, 0);
  1141. vstd::amin(py, curItems.size()-1);
  1142. selectionPos = py;
  1143. if(position < 0)
  1144. slider->moveTo(slider->value + position);
  1145. else if(position >= positions)
  1146. slider->moveTo(slider->value + position - positions + 1);
  1147. if(txt)
  1148. {
  1149. std::string filename = CResourceHandler::get()->getResourceName(
  1150. ResourceID(curItems[py]->fileURI, EResType::LIB_SAVEGAME));
  1151. txt->setTxt(CFileInfo(filename).getBaseName());
  1152. }
  1153. onSelect(curItems[py]);
  1154. }
  1155. void SelectionTab::selectAbs( int position )
  1156. {
  1157. select(position - slider->value);
  1158. }
  1159. int SelectionTab::getPosition( int x, int y )
  1160. {
  1161. return -1;
  1162. }
  1163. void SelectionTab::sliderMove( int slidPos )
  1164. {
  1165. if(!slider) return; //ignore spurious call when slider is being created
  1166. redraw();
  1167. }
  1168. // Display the tab with the scenario names
  1169. //
  1170. // elemIdx is the index of the maps or saved game to display on line 0
  1171. // slider->capacity contains the number of available screen lines
  1172. // slider->positionsAmnt is the number of elements after filtering
  1173. void SelectionTab::printMaps(SDL_Surface *to)
  1174. {
  1175. int elemIdx = slider->value;
  1176. // Display all elements if there's enough space
  1177. //if(slider->amount < slider->capacity)
  1178. // elemIdx = 0;
  1179. SDL_Color itemColor;
  1180. #define POS(xx, yy) pos.x + xx, pos.y + yy + line*25
  1181. for (int line = 0; line < positions && elemIdx < curItems.size(); elemIdx++, line++)
  1182. {
  1183. CMapInfo *currentItem = curItems[elemIdx];
  1184. if (elemIdx == selectionPos)
  1185. itemColor=Colors::YELLOW;
  1186. else
  1187. itemColor=Colors::WHITE;
  1188. if(tabType != CMenuScreen::campaignList)
  1189. {
  1190. //amount of players
  1191. std::ostringstream ostr(std::ostringstream::out);
  1192. ostr << currentItem->playerAmnt << "/" << currentItem->humanPlayers;
  1193. CSDL_Ext::printAt(ostr.str(), POS(29, 120), FONT_SMALL, itemColor, to);
  1194. //map size
  1195. std::string temp2 = "C";
  1196. switch (currentItem->mapHeader->width)
  1197. {
  1198. case 36:
  1199. temp2="S";
  1200. break;
  1201. case 72:
  1202. temp2="M";
  1203. break;
  1204. case 108:
  1205. temp2="L";
  1206. break;
  1207. case 144:
  1208. temp2="XL";
  1209. break;
  1210. }
  1211. CSDL_Ext::printAtMiddle(temp2, POS(70, 128), FONT_SMALL, itemColor, to);
  1212. int temp=-1;
  1213. switch (currentItem->mapHeader->version)
  1214. {
  1215. case EMapFormat::ROE:
  1216. temp=0;
  1217. break;
  1218. case EMapFormat::AB:
  1219. temp=1;
  1220. break;
  1221. case EMapFormat::SOD:
  1222. temp=2;
  1223. break;
  1224. case EMapFormat::WOG:
  1225. temp=3;
  1226. break;
  1227. default:
  1228. // Unknown version. Be safe and ignore that map
  1229. tlog2 << "Warning: " << currentItem->fileURI << " has wrong version!\n";
  1230. continue;
  1231. }
  1232. blitAt(format->ourImages[temp].bitmap, POS(88, 117), to);
  1233. //victory conditions
  1234. if (currentItem->mapHeader->victoryCondition.condition == EVictoryConditionType::WINSTANDARD)
  1235. temp = 11;
  1236. else
  1237. temp = currentItem->mapHeader->victoryCondition.condition;
  1238. blitAt(CGP->victory->ourImages[temp].bitmap, POS(306, 117), to);
  1239. //loss conditions
  1240. if (currentItem->mapHeader->lossCondition.typeOfLossCon == ELossConditionType::LOSSSTANDARD)
  1241. temp=3;
  1242. else
  1243. temp=currentItem->mapHeader->lossCondition.typeOfLossCon;
  1244. blitAt(CGP->loss->ourImages[temp].bitmap, POS(339, 117), to);
  1245. }
  1246. else //if campaign
  1247. {
  1248. //number of maps in campaign
  1249. std::ostringstream ostr(std::ostringstream::out);
  1250. ostr << CGI->generaltexth->campaignRegionNames[ currentItem->campaignHeader->mapVersion ].size();
  1251. CSDL_Ext::printAt(ostr.str(), POS(29, 120), FONT_SMALL, itemColor, to);
  1252. }
  1253. std::string name;
  1254. if(tabType == CMenuScreen::newGame)
  1255. {
  1256. if (!currentItem->mapHeader->name.length())
  1257. currentItem->mapHeader->name = "Unnamed";
  1258. name = currentItem->mapHeader->name;
  1259. }
  1260. else if(tabType == CMenuScreen::campaignList)
  1261. {
  1262. name = currentItem->campaignHeader->name;
  1263. }
  1264. else
  1265. {
  1266. name = CFileInfo(CResourceHandler::get()->getResourceName(
  1267. ResourceID(currentItem->fileURI, EResType::LIB_SAVEGAME))).getBaseName();
  1268. }
  1269. //print name
  1270. CSDL_Ext::printAtMiddle(CSDL_Ext::trimToFit(name, 185, FONT_SMALL), POS(213, 128), FONT_SMALL, itemColor, to);
  1271. }
  1272. #undef POS
  1273. }
  1274. void SelectionTab::showAll(SDL_Surface * to)
  1275. {
  1276. CIntObject::showAll(to);
  1277. printMaps(to);
  1278. std::string title;
  1279. switch(tabType) {
  1280. case CMenuScreen::newGame:
  1281. title = CGI->generaltexth->arraytxt[229];
  1282. break;
  1283. case CMenuScreen::loadGame:
  1284. title = CGI->generaltexth->arraytxt[230];
  1285. break;
  1286. case CMenuScreen::saveGame:
  1287. title = CGI->generaltexth->arraytxt[231];
  1288. break;
  1289. case CMenuScreen::campaignList:
  1290. title = "Select a Campaign"; //TODO: find where is the title
  1291. break;
  1292. }
  1293. CSDL_Ext::printAtMiddle(title, pos.x+205, pos.y+28, FONT_MEDIUM, Colors::YELLOW, to); //Select a Scenario to Play
  1294. if(tabType != CMenuScreen::campaignList)
  1295. {
  1296. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[510], pos.x+87, pos.y+62, FONT_SMALL, Colors::YELLOW, to); //Map sizes
  1297. }
  1298. }
  1299. void SelectionTab::clickLeft( tribool down, bool previousState )
  1300. {
  1301. if(down)
  1302. {
  1303. int line = getLine();
  1304. if(line != -1)
  1305. select(line);
  1306. }
  1307. }
  1308. void SelectionTab::keyPressed( const SDL_KeyboardEvent & key )
  1309. {
  1310. if(key.state != SDL_PRESSED) return;
  1311. int moveBy = 0;
  1312. switch(key.keysym.sym)
  1313. {
  1314. case SDLK_UP:
  1315. moveBy = -1;
  1316. break;
  1317. case SDLK_DOWN:
  1318. moveBy = +1;
  1319. break;
  1320. case SDLK_PAGEUP:
  1321. moveBy = -positions+1;
  1322. break;
  1323. case SDLK_PAGEDOWN:
  1324. moveBy = +positions-1;
  1325. break;
  1326. case SDLK_HOME:
  1327. select(-slider->value);
  1328. return;
  1329. case SDLK_END:
  1330. select(curItems.size() - slider->value);
  1331. return;
  1332. default:
  1333. return;
  1334. }
  1335. select(selectionPos - slider->value + moveBy);
  1336. }
  1337. void SelectionTab::onDoubleClick()
  1338. {
  1339. if(getLine() != -1) //double clicked scenarios list
  1340. {
  1341. //act as if start button was pressed
  1342. (static_cast<CSelectionScreen*>(parent))->start->callback();
  1343. }
  1344. }
  1345. int SelectionTab::getLine()
  1346. {
  1347. int line = -1;
  1348. Point clickPos(GH.current->button.x, GH.current->button.y);
  1349. clickPos = clickPos - pos.topLeft();
  1350. if (clickPos.y > 115 && clickPos.y < 564 && clickPos.x > 22 && clickPos.x < 371)
  1351. {
  1352. line = (clickPos.y-115) / 25; //which line
  1353. }
  1354. return line;
  1355. }
  1356. void SelectionTab::selectFName( std::string fname )
  1357. {
  1358. boost::to_upper(fname);
  1359. for(int i = curItems.size() - 1; i >= 0; i--)
  1360. {
  1361. if(curItems[i]->fileURI == fname)
  1362. {
  1363. slider->moveTo(i);
  1364. selectAbs(i);
  1365. return;
  1366. }
  1367. }
  1368. selectAbs(0);
  1369. }
  1370. const CMapInfo * SelectionTab::getSelectedMapInfo() const
  1371. {
  1372. return curItems.empty() ? nullptr : curItems[selectionPos];
  1373. }
  1374. RandomMapTab::RandomMapTab()
  1375. {
  1376. OBJ_CONSTRUCTION;
  1377. bg = new CPicture("RANMAPBK", 0, 6);
  1378. // Map Size
  1379. mapSizeBtnGroup = new CHighlightableButtonsGroup(0);
  1380. mapSizeBtnGroup->pos.y = 81;
  1381. mapSizeBtnGroup->pos.x = 158;
  1382. const std::vector<std::string> mapSizeBtns = boost::assign::list_of("RANSIZS")("RANSIZM")("RANSIZL")("RANSIZX");
  1383. addButtonsToGroup(mapSizeBtnGroup, mapSizeBtns, 0, 3, 47, 198);
  1384. mapSizeBtnGroup->select(1, false);
  1385. mapSizeBtnGroup->onChange = [&](int btnId)
  1386. {
  1387. const std::vector<int> mapSizeVal = boost::assign::list_of(36)(72)(108)(144); // Map sizes in this order: S, M, L, XL
  1388. mapGenOptions.setWidth(mapSizeVal[btnId]);
  1389. mapGenOptions.setHeight(mapSizeVal[btnId]);
  1390. updateMapInfo();
  1391. };
  1392. // Two levels
  1393. twoLevelsBtn = new CHighlightableButton(0, 0, std::map<int,std::string>(),
  1394. CGI->generaltexth->zelp[202].second, false, "RANUNDR", nullptr, 346, 81);
  1395. twoLevelsBtn->select(true);
  1396. twoLevelsBtn->callback = [&]() { mapGenOptions.setHasTwoLevels(true); updateMapInfo(); };
  1397. twoLevelsBtn->callback2 = [&]() { mapGenOptions.setHasTwoLevels(false); updateMapInfo(); };
  1398. // Create number defs list
  1399. std::vector<std::string> numberDefs;
  1400. for(int i = 0; i <= 8; ++i)
  1401. {
  1402. numberDefs.push_back("RANNUM" + boost::lexical_cast<std::string>(i));
  1403. }
  1404. const int NUMBERS_WIDTH = 32;
  1405. const int BTNS_GROUP_LEFT_MARGIN = 67;
  1406. // Amount of players
  1407. playersCntGroup = new CHighlightableButtonsGroup(0);
  1408. playersCntGroup->pos.y = 153;
  1409. playersCntGroup->pos.x = BTNS_GROUP_LEFT_MARGIN;
  1410. addButtonsWithRandToGroup(playersCntGroup, numberDefs, 1, 8, NUMBERS_WIDTH, 204, 212);
  1411. playersCntGroup->onChange = [&](int btnId)
  1412. {
  1413. mapGenOptions.setPlayersCnt(btnId);
  1414. deactivateButtonsFrom(teamsCntGroup, btnId);
  1415. deactivateButtonsFrom(compOnlyPlayersCntGroup, 8 - btnId + 1);
  1416. validatePlayersCnt(btnId);
  1417. updateMapInfo();
  1418. };
  1419. // Amount of teams
  1420. teamsCntGroup = new CHighlightableButtonsGroup(0);
  1421. teamsCntGroup->pos.y = 219;
  1422. teamsCntGroup->pos.x = BTNS_GROUP_LEFT_MARGIN;
  1423. addButtonsWithRandToGroup(teamsCntGroup, numberDefs, 0, 7, NUMBERS_WIDTH, 214, 222);
  1424. teamsCntGroup->onChange = [&](int btnId)
  1425. {
  1426. mapGenOptions.setTeamsCnt(btnId);
  1427. updateMapInfo();
  1428. };
  1429. // Computer only players
  1430. compOnlyPlayersCntGroup = new CHighlightableButtonsGroup(0);
  1431. compOnlyPlayersCntGroup->pos.y = 285;
  1432. compOnlyPlayersCntGroup->pos.x = BTNS_GROUP_LEFT_MARGIN;
  1433. addButtonsWithRandToGroup(compOnlyPlayersCntGroup, numberDefs, 0, 7, NUMBERS_WIDTH, 224, 232);
  1434. compOnlyPlayersCntGroup->select(0, true);
  1435. compOnlyPlayersCntGroup->onChange = [&](int btnId)
  1436. {
  1437. mapGenOptions.setCompOnlyPlayersCnt(btnId);
  1438. deactivateButtonsFrom(compOnlyTeamsCntGroup, btnId);
  1439. validateCompOnlyPlayersCnt(btnId);
  1440. updateMapInfo();
  1441. };
  1442. // Computer only teams
  1443. compOnlyTeamsCntGroup = new CHighlightableButtonsGroup(0);
  1444. compOnlyTeamsCntGroup->pos.y = 351;
  1445. compOnlyTeamsCntGroup->pos.x = BTNS_GROUP_LEFT_MARGIN;
  1446. addButtonsWithRandToGroup(compOnlyTeamsCntGroup, numberDefs, 0, 6, NUMBERS_WIDTH, 234, 241);
  1447. deactivateButtonsFrom(compOnlyTeamsCntGroup, 0);
  1448. compOnlyTeamsCntGroup->onChange = [&](int btnId)
  1449. {
  1450. mapGenOptions.setCompOnlyTeamsCnt(btnId);
  1451. updateMapInfo();
  1452. };
  1453. const int WIDE_BTN_WIDTH = 85;
  1454. // Water content
  1455. waterContentGroup = new CHighlightableButtonsGroup(0);
  1456. waterContentGroup->pos.y = 419;
  1457. waterContentGroup->pos.x = BTNS_GROUP_LEFT_MARGIN;
  1458. const std::vector<std::string> waterContentBtns = boost::assign::list_of("RANNONE")("RANNORM")("RANISLD");
  1459. addButtonsWithRandToGroup(waterContentGroup, waterContentBtns, 0, 2, WIDE_BTN_WIDTH, 243, 246);
  1460. waterContentGroup->onChange = [&](int btnId)
  1461. {
  1462. mapGenOptions.setWaterContent(static_cast<EWaterContent::EWaterContent>(btnId));
  1463. };
  1464. // Monster strength
  1465. monsterStrengthGroup = new CHighlightableButtonsGroup(0);
  1466. monsterStrengthGroup->pos.y = 485;
  1467. monsterStrengthGroup->pos.x = BTNS_GROUP_LEFT_MARGIN;
  1468. const std::vector<std::string> monsterStrengthBtns = boost::assign::list_of("RANWEAK")("RANNORM")("RANSTRG");
  1469. addButtonsWithRandToGroup(monsterStrengthGroup, monsterStrengthBtns, 0, 2, WIDE_BTN_WIDTH, 248, 251);
  1470. monsterStrengthGroup->onChange = [&](int btnId)
  1471. {
  1472. mapGenOptions.setMonsterStrength(static_cast<EMonsterStrength::EMonsterStrength>(btnId));
  1473. };
  1474. // Show random maps btn
  1475. showRandMaps = new CAdventureMapButton("", CGI->generaltexth->zelp[252].second, 0, 54, 535, "RANSHOW");
  1476. // Initialize map info object
  1477. mapInfo.isRandomMap = true;
  1478. shared_ptr<CMapHeader> mapHeader(new CMapHeader());
  1479. mapHeader->version = EMapFormat::SOD;
  1480. mapHeader->name = CGI->generaltexth->allTexts[740];
  1481. mapHeader->description = CGI->generaltexth->allTexts[741];
  1482. mapHeader->difficulty = 1; // Normal
  1483. mapInfo.mapHeader = mapHeader;
  1484. updateMapInfo();
  1485. }
  1486. void RandomMapTab::addButtonsWithRandToGroup(CHighlightableButtonsGroup * group, const std::vector<std::string> & defs, int nStart, int nEnd, int btnWidth, int helpStartIndex, int helpRandIndex) const
  1487. {
  1488. addButtonsToGroup(group, defs, nStart, nEnd, btnWidth, helpStartIndex);
  1489. // Buttons are relative to button group, TODO better solution?
  1490. SObjectConstruction obj__i(group);
  1491. const std::string RANDOM_DEF = "RANRAND";
  1492. group->addButton(new CHighlightableButton("", CGI->generaltexth->zelp[helpRandIndex].second, 0, 256, 0, RANDOM_DEF, CMapGenOptions::RANDOM_SIZE));
  1493. group->select(CMapGenOptions::RANDOM_SIZE, true);
  1494. }
  1495. void RandomMapTab::addButtonsToGroup(CHighlightableButtonsGroup * group, const std::vector<std::string> & defs, int nStart, int nEnd, int btnWidth, int helpStartIndex) const
  1496. {
  1497. // Buttons are relative to button group, TODO better solution?
  1498. SObjectConstruction obj__i(group);
  1499. int cnt = nEnd - nStart + 1;
  1500. for(int i = 0; i < cnt; ++i)
  1501. {
  1502. group->addButton(new CHighlightableButton("", CGI->generaltexth->zelp[helpStartIndex + i].second, 0, i * btnWidth, 0, defs[i + nStart], i + nStart));
  1503. }
  1504. }
  1505. void RandomMapTab::deactivateButtonsFrom(CHighlightableButtonsGroup * group, int startId)
  1506. {
  1507. BOOST_FOREACH(CHighlightableButton * btn, group->buttons)
  1508. {
  1509. if(startId == CMapGenOptions::RANDOM_SIZE || btn->ID < startId)
  1510. {
  1511. if(btn->isBlocked())
  1512. {
  1513. btn->setOffset(0);
  1514. btn->setState(CButtonBase::NORMAL);
  1515. }
  1516. }
  1517. else
  1518. {
  1519. // Blocked state looks like frame 'selected'=1
  1520. btn->setOffset(-1);
  1521. btn->setState(CButtonBase::BLOCKED);
  1522. }
  1523. }
  1524. }
  1525. void RandomMapTab::validatePlayersCnt(int playersCnt)
  1526. {
  1527. if(playersCnt == CMapGenOptions::RANDOM_SIZE)
  1528. {
  1529. return;
  1530. }
  1531. if(mapGenOptions.getTeamsCnt() >= playersCnt)
  1532. {
  1533. mapGenOptions.setTeamsCnt(playersCnt - 1);
  1534. teamsCntGroup->select(mapGenOptions.getTeamsCnt(), true);
  1535. }
  1536. if(mapGenOptions.getCompOnlyPlayersCnt() > 8 - playersCnt)
  1537. {
  1538. mapGenOptions.setCompOnlyPlayersCnt(8 - playersCnt);
  1539. compOnlyPlayersCntGroup->select(mapGenOptions.getCompOnlyPlayersCnt(), true);
  1540. }
  1541. validateCompOnlyPlayersCnt(mapGenOptions.getCompOnlyPlayersCnt());
  1542. }
  1543. void RandomMapTab::validateCompOnlyPlayersCnt(int compOnlyPlayersCnt)
  1544. {
  1545. if(compOnlyPlayersCnt == CMapGenOptions::RANDOM_SIZE)
  1546. {
  1547. return;
  1548. }
  1549. if(mapGenOptions.getCompOnlyTeamsCnt() >= compOnlyPlayersCnt)
  1550. {
  1551. mapGenOptions.setCompOnlyTeamsCnt(compOnlyPlayersCnt - 1);
  1552. compOnlyTeamsCntGroup->select(mapGenOptions.getCompOnlyTeamsCnt(), true);
  1553. }
  1554. }
  1555. void RandomMapTab::showAll(SDL_Surface * to)
  1556. {
  1557. CIntObject::showAll(to);
  1558. // Headline
  1559. printAtMiddleLoc(CGI->generaltexth->allTexts[738], 222, 36, FONT_BIG, Colors::YELLOW, to);
  1560. printAtMiddleLoc(CGI->generaltexth->allTexts[739], 222, 56, FONT_SMALL, Colors::WHITE, to);
  1561. // Map size
  1562. printAtMiddleLoc(CGI->generaltexth->allTexts[752], 104, 97, FONT_SMALL, Colors::WHITE, to);
  1563. // Players cnt
  1564. printAtLoc(CGI->generaltexth->allTexts[753], 68, 133, FONT_SMALL, Colors::WHITE, to);
  1565. // Teams cnt
  1566. printAtLoc(CGI->generaltexth->allTexts[754], 68, 199, FONT_SMALL, Colors::WHITE, to);
  1567. // Computer only players cnt
  1568. printAtLoc(CGI->generaltexth->allTexts[755], 68, 265, FONT_SMALL, Colors::WHITE, to);
  1569. // Computer only teams cnt
  1570. printAtLoc(CGI->generaltexth->allTexts[756], 68, 331, FONT_SMALL, Colors::WHITE, to);
  1571. // Water content
  1572. printAtLoc(CGI->generaltexth->allTexts[757], 68, 398, FONT_SMALL, Colors::WHITE, to);
  1573. // Monster strength
  1574. printAtLoc(CGI->generaltexth->allTexts[758], 68, 465, FONT_SMALL, Colors::WHITE, to);
  1575. }
  1576. void RandomMapTab::updateMapInfo()
  1577. {
  1578. mapInfo.mapHeader->height = mapGenOptions.getHeight();
  1579. mapInfo.mapHeader->width = mapGenOptions.getWidth();
  1580. mapInfo.mapHeader->twoLevel = mapGenOptions.getHasTwoLevels();
  1581. // Generate player information
  1582. mapInfo.mapHeader->players.clear();
  1583. int playersToGen = (mapGenOptions.getPlayersCnt() == CMapGenOptions::RANDOM_SIZE
  1584. || mapGenOptions.getCompOnlyPlayersCnt() == CMapGenOptions::RANDOM_SIZE)
  1585. ? 8 : mapGenOptions.getPlayersCnt() + mapGenOptions.getCompOnlyPlayersCnt();
  1586. mapInfo.mapHeader->howManyTeams = playersToGen;
  1587. for(int i = 0; i < playersToGen; ++i)
  1588. {
  1589. PlayerInfo player;
  1590. player.canComputerPlay = true;
  1591. if(i >= mapGenOptions.getPlayersCnt() && mapGenOptions.getPlayersCnt() != CMapGenOptions::RANDOM_SIZE)
  1592. {
  1593. player.canHumanPlay = false;
  1594. }
  1595. else
  1596. {
  1597. player.canHumanPlay = true;
  1598. }
  1599. player.team = i;
  1600. mapInfo.mapHeader->players.push_back(player);
  1601. }
  1602. mapInfoChanged(&mapInfo);
  1603. }
  1604. CFunctionList<void(const CMapInfo *)> & RandomMapTab::getMapInfoChanged()
  1605. {
  1606. return mapInfoChanged;
  1607. }
  1608. const CMapInfo & RandomMapTab::getMapInfo() const
  1609. {
  1610. return mapInfo;
  1611. }
  1612. const CMapGenOptions & RandomMapTab::getMapGenOptions() const
  1613. {
  1614. return mapGenOptions;
  1615. }
  1616. CChatBox::CChatBox(const Rect &rect)
  1617. {
  1618. OBJ_CONSTRUCTION;
  1619. pos += rect;
  1620. addUsedEvents(KEYBOARD);
  1621. captureAllKeys = true;
  1622. const int height = graphics->fonts[FONT_SMALL]->height;
  1623. inputBox = new CTextInput(Rect(0, rect.h - height, rect.w, height));
  1624. inputBox->removeUsedEvents(KEYBOARD);
  1625. chatHistory = new CTextBox("", Rect(0, 0, rect.w, rect.h - height), 1);
  1626. SDL_Color green = {0,252,0, SDL_ALPHA_OPAQUE};
  1627. chatHistory->color = green;
  1628. }
  1629. void CChatBox::keyPressed(const SDL_KeyboardEvent & key)
  1630. {
  1631. if(key.keysym.sym == SDLK_RETURN && key.state == SDL_PRESSED && inputBox->text.size())
  1632. {
  1633. SEL->postChatMessage(inputBox->text);
  1634. inputBox->setTxt("");
  1635. }
  1636. else
  1637. inputBox->keyPressed(key);
  1638. }
  1639. void CChatBox::addNewMessage(const std::string &text)
  1640. {
  1641. chatHistory->setTxt(chatHistory->text + text + "\n");
  1642. if(chatHistory->slider)
  1643. chatHistory->slider->moveToMax();
  1644. }
  1645. InfoCard::InfoCard( bool Network )
  1646. : bg(NULL), network(Network), chatOn(false), chat(NULL), playerListBg(NULL),
  1647. difficulty(NULL), sizes(NULL), sFlags(NULL)
  1648. {
  1649. OBJ_CONSTRUCTION_CAPTURING_ALL;
  1650. pos.x += 393;
  1651. pos.y += 6;
  1652. addUsedEvents(RCLICK);
  1653. mapDescription = NULL;
  1654. Rect descriptionRect(26, 149, 320, 115);
  1655. mapDescription = new CTextBox("", descriptionRect, 1);
  1656. if(SEL->screenType == CMenuScreen::campaignList)
  1657. {
  1658. CSelectionScreen *ss = static_cast<CSelectionScreen*>(parent);
  1659. mapDescription->addChild(new CPicture(*ss->bg, descriptionRect + Point(-393, 0)), true); //move subpicture bg to our description control (by default it's our (Infocard) child)
  1660. }
  1661. else
  1662. {
  1663. bg = new CPicture("GSELPOP1.bmp", 0, 0);
  1664. parent->addChild(bg);
  1665. auto it = vstd::find(parent->children, this); //our position among parent children
  1666. parent->children.insert(it, bg); //put BG before us
  1667. parent->children.pop_back();
  1668. pos.w = bg->pos.w;
  1669. pos.h = bg->pos.h;
  1670. sizes = CDefHandler::giveDef("SCNRMPSZ.DEF");
  1671. sFlags = CDefHandler::giveDef("ITGFLAGS.DEF");
  1672. difficulty = new CHighlightableButtonsGroup(0);
  1673. {
  1674. static const char *difButns[] = {"GSPBUT3.DEF", "GSPBUT4.DEF", "GSPBUT5.DEF", "GSPBUT6.DEF", "GSPBUT7.DEF"};
  1675. for(int i = 0; i < 5; i++)
  1676. {
  1677. difficulty->addButton(new CHighlightableButton("", CGI->generaltexth->zelp[24+i].second, 0, 110 + i*32, 450, difButns[i], i));
  1678. }
  1679. }
  1680. if(SEL->screenType != CMenuScreen::newGame)
  1681. difficulty->block(true);
  1682. //description needs bg
  1683. mapDescription->addChild(new CPicture(*bg, descriptionRect), true); //move subpicture bg to our description control (by default it's our (Infocard) child)
  1684. if(network)
  1685. {
  1686. playerListBg = new CPicture("CHATPLUG.bmp", 16, 276);
  1687. chat = new CChatBox(descriptionRect);
  1688. chat->chatHistory->addChild(new CPicture(*bg, chat->chatHistory->pos - pos), true); //move subpicture bg to our description control (by default it's our (Infocard) child)
  1689. chatOn = true;
  1690. mapDescription->disable();
  1691. }
  1692. }
  1693. }
  1694. InfoCard::~InfoCard()
  1695. {
  1696. delete sizes;
  1697. delete sFlags;
  1698. }
  1699. void InfoCard::showAll(SDL_Surface * to)
  1700. {
  1701. CIntObject::showAll(to);
  1702. //blit texts
  1703. if(SEL->screenType != CMenuScreen::campaignList)
  1704. {
  1705. printAtLoc(CGI->generaltexth->allTexts[390] + ":", 24, 400, FONT_SMALL, Colors::WHITE, to); //Allies
  1706. printAtLoc(CGI->generaltexth->allTexts[391] + ":", 190, 400, FONT_SMALL, Colors::WHITE, to); //Enemies
  1707. printAtLoc(CGI->generaltexth->allTexts[494], 33, 430, FONT_SMALL, Colors::YELLOW, to);//"Map Diff:"
  1708. printAtLoc(CGI->generaltexth->allTexts[492] + ":", 133,430, FONT_SMALL, Colors::YELLOW, to); //player difficulty
  1709. printAtLoc(CGI->generaltexth->allTexts[218] + ":", 290,430, FONT_SMALL, Colors::YELLOW, to); //"Rating:"
  1710. printAtLoc(CGI->generaltexth->allTexts[495], 26, 22, FONT_SMALL, Colors::YELLOW, to); //Scenario Name:
  1711. if(!chatOn)
  1712. {
  1713. printAtLoc(CGI->generaltexth->allTexts[496], 26, 132, FONT_SMALL, Colors::YELLOW, to); //Scenario Description:
  1714. printAtLoc(CGI->generaltexth->allTexts[497], 26, 283, FONT_SMALL, Colors::YELLOW, to); //Victory Condition:
  1715. printAtLoc(CGI->generaltexth->allTexts[498], 26, 339, FONT_SMALL, Colors::YELLOW, to); //Loss Condition:
  1716. }
  1717. else //players list
  1718. {
  1719. std::map<TPlayerColor, std::string> playerNames = SEL->playerNames;
  1720. int playerSoFar = 0;
  1721. for (auto i = SEL->sInfo.playerInfos.cbegin(); i != SEL->sInfo.playerInfos.cend(); i++)
  1722. {
  1723. if(i->second.playerID != PlayerSettings::PLAYER_AI)
  1724. {
  1725. printAtLoc(i->second.name, 24, 285 + playerSoFar++ * graphics->fonts[FONT_SMALL]->height, FONT_SMALL, Colors::WHITE, to);
  1726. playerNames.erase(i->second.playerID);
  1727. }
  1728. }
  1729. playerSoFar = 0;
  1730. for (auto i = playerNames.cbegin(); i != playerNames.cend(); i++)
  1731. {
  1732. printAtLoc(i->second, 193, 285 + playerSoFar++ * graphics->fonts[FONT_SMALL]->height, FONT_SMALL, Colors::WHITE, to);
  1733. }
  1734. }
  1735. }
  1736. if(SEL->current)
  1737. {
  1738. if(SEL->screenType != CMenuScreen::campaignList)
  1739. {
  1740. int temp = -1;
  1741. if(!chatOn)
  1742. {
  1743. //victory conditions
  1744. temp = SEL->current->mapHeader->victoryCondition.condition+1;
  1745. if (temp>20) temp=0;
  1746. std::string sss = CGI->generaltexth->victoryConditions[temp];
  1747. if (temp && SEL->current->mapHeader->victoryCondition.allowNormalVictory) sss+= "/" + CGI->generaltexth->victoryConditions[0];
  1748. printAtLoc(sss, 60, 307, FONT_SMALL, Colors::WHITE, to);
  1749. temp = SEL->current->mapHeader->victoryCondition.condition;
  1750. if (temp>12) temp=11;
  1751. blitAtLoc(CGP->victory->ourImages[temp].bitmap, 24, 302, to); //victory cond descr
  1752. //loss conditoins
  1753. temp = SEL->current->mapHeader->lossCondition.typeOfLossCon+1;
  1754. if (temp>20) temp=0;
  1755. sss = CGI->generaltexth->lossCondtions[temp];
  1756. printAtLoc(sss, 60, 366, FONT_SMALL, Colors::WHITE, to);
  1757. temp=SEL->current->mapHeader->lossCondition.typeOfLossCon;
  1758. if (temp>12) temp=3;
  1759. blitAtLoc(CGP->loss->ourImages[temp].bitmap, 24, 359, to); //loss cond
  1760. }
  1761. //difficulty
  1762. assert(SEL->current->mapHeader->difficulty <= 4);
  1763. std::string &diff = CGI->generaltexth->arraytxt[142 + SEL->current->mapHeader->difficulty];
  1764. printAtMiddleLoc(diff, 62, 472, FONT_SMALL, Colors::WHITE, to);
  1765. //selecting size icon
  1766. switch (SEL->current->mapHeader->width)
  1767. {
  1768. case 36:
  1769. temp=0;
  1770. break;
  1771. case 72:
  1772. temp=1;
  1773. break;
  1774. case 108:
  1775. temp=2;
  1776. break;
  1777. case 144:
  1778. temp=3;
  1779. break;
  1780. default:
  1781. temp=4;
  1782. break;
  1783. }
  1784. blitAtLoc(sizes->ourImages[temp].bitmap, 318, 22, to);
  1785. if(SEL->screenType == CMenuScreen::loadGame)
  1786. printToLoc((static_cast<const CMapInfo*>(SEL->current))->date,308,34, FONT_SMALL, Colors::WHITE, to);
  1787. //print flags
  1788. int fx = 34 + graphics->fonts[FONT_SMALL]->getWidth(CGI->generaltexth->allTexts[390].c_str());
  1789. int ex = 200 + graphics->fonts[FONT_SMALL]->getWidth(CGI->generaltexth->allTexts[391].c_str());
  1790. int myT;
  1791. if(playerColor >= 0)
  1792. myT = SEL->current->mapHeader->players[playerColor].team;
  1793. else
  1794. myT = -1;
  1795. for (auto i = SEL->sInfo.playerInfos.cbegin(); i != SEL->sInfo.playerInfos.cend(); i++)
  1796. {
  1797. int *myx = ((i->first == playerColor || SEL->current->mapHeader->players[i->first].team == myT) ? &fx : &ex);
  1798. blitAtLoc(sFlags->ourImages[i->first].bitmap, *myx, 399, to);
  1799. *myx += sFlags->ourImages[i->first].bitmap->w;
  1800. }
  1801. std::string tob;
  1802. switch (SEL->sInfo.difficulty)
  1803. {
  1804. case 0:
  1805. tob="80%";
  1806. break;
  1807. case 1:
  1808. tob="100%";
  1809. break;
  1810. case 2:
  1811. tob="130%";
  1812. break;
  1813. case 3:
  1814. tob="160%";
  1815. break;
  1816. case 4:
  1817. tob="200%";
  1818. break;
  1819. }
  1820. printAtMiddleLoc(tob, 311, 472, FONT_SMALL, Colors::WHITE, to);
  1821. }
  1822. //blit description
  1823. std::string name;
  1824. if (SEL->screenType == CMenuScreen::campaignList)
  1825. {
  1826. name = SEL->current->campaignHeader->name;
  1827. }
  1828. else
  1829. {
  1830. name = SEL->current->mapHeader->name;
  1831. }
  1832. //name
  1833. if (name.length())
  1834. printAtLoc(CSDL_Ext::trimToFit(name, 300, FONT_BIG), 26, 39, FONT_BIG, Colors::YELLOW, to);
  1835. else
  1836. printAtLoc("Unnamed", 26, 39, FONT_BIG, Colors::YELLOW, to);
  1837. }
  1838. }
  1839. void InfoCard::changeSelection( const CMapInfo *to )
  1840. {
  1841. if(to && mapDescription)
  1842. {
  1843. if (SEL->screenType == CMenuScreen::campaignList)
  1844. mapDescription->setTxt(to->campaignHeader->description);
  1845. else
  1846. mapDescription->setTxt(to->mapHeader->description);
  1847. if(SEL->screenType != CMenuScreen::newGame && SEL->screenType != CMenuScreen::campaignList) {
  1848. difficulty->block(true);
  1849. difficulty->select(SEL->sInfo.difficulty, 0);
  1850. }
  1851. }
  1852. GH.totalRedraw();
  1853. }
  1854. void InfoCard::clickRight( tribool down, bool previousState )
  1855. {
  1856. static const Rect flagArea(19, 397, 335, 23);
  1857. if(down && SEL->current && isItInLoc(flagArea, GH.current->motion.x, GH.current->motion.y))
  1858. showTeamsPopup();
  1859. }
  1860. void InfoCard::showTeamsPopup()
  1861. {
  1862. SDL_Surface *bmp = CMessage::drawDialogBox(256, 90 + 50 * SEL->current->mapHeader->howManyTeams);
  1863. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[657], 128, 30, FONT_MEDIUM, Colors::YELLOW, bmp); //{Team Alignments}
  1864. for(int i = 0; i < SEL->current->mapHeader->howManyTeams; i++)
  1865. {
  1866. std::vector<ui8> flags;
  1867. std::string hlp = CGI->generaltexth->allTexts[656]; //Team %d
  1868. hlp.replace(hlp.find("%d"), 2, boost::lexical_cast<std::string>(i+1));
  1869. CSDL_Ext::printAtMiddle(hlp, 128, 65 + 50*i, FONT_SMALL, Colors::WHITE, bmp);
  1870. for(int j = 0; j < GameConstants::PLAYER_LIMIT; j++)
  1871. if((SEL->current->mapHeader->players[j].canHumanPlay || SEL->current->mapHeader->players[j].canComputerPlay)
  1872. && SEL->current->mapHeader->players[j].team == i)
  1873. flags.push_back(j);
  1874. int curx = 128 - 9*flags.size();
  1875. for(int j = 0; j < flags.size(); j++)
  1876. {
  1877. blitAt(sFlags->ourImages[flags[j]].bitmap, curx, 75 + 50*i, bmp);
  1878. curx += 18;
  1879. }
  1880. }
  1881. GH.pushInt(new CInfoPopup(bmp, true));
  1882. }
  1883. void InfoCard::toggleChat()
  1884. {
  1885. setChat(!chatOn);
  1886. }
  1887. void InfoCard::setChat(bool activateChat)
  1888. {
  1889. if(chatOn == activateChat)
  1890. return;
  1891. assert(active);
  1892. if(activateChat)
  1893. {
  1894. mapDescription->disable();
  1895. chat->enable();
  1896. playerListBg->enable();
  1897. }
  1898. else
  1899. {
  1900. mapDescription->enable();
  1901. chat->disable();
  1902. playerListBg->disable();
  1903. }
  1904. chatOn = activateChat;
  1905. GH.totalRedraw();
  1906. }
  1907. OptionsTab::OptionsTab():
  1908. turnDuration(NULL)
  1909. {
  1910. OBJ_CONSTRUCTION;
  1911. bg = new CPicture("ADVOPTBK", 0, 6);
  1912. pos = bg->pos;
  1913. if(SEL->screenType == CMenuScreen::newGame)
  1914. turnDuration = new CSlider(55, 551, 194, bind(&OptionsTab::setTurnLength, this, _1), 1, 11, 11, true, 1);
  1915. }
  1916. OptionsTab::~OptionsTab()
  1917. {
  1918. }
  1919. void OptionsTab::showAll(SDL_Surface * to)
  1920. {
  1921. CIntObject::showAll(to);
  1922. printAtMiddleLoc(CGI->generaltexth->allTexts[515], 222, 30, FONT_BIG, Colors::YELLOW, to);
  1923. printAtMiddleWBLoc(CGI->generaltexth->allTexts[516], 222, 58, FONT_SMALL, 55, Colors::WHITE, to); //Select starting options, handicap, and name for each player in the game.
  1924. printAtMiddleWBLoc(CGI->generaltexth->allTexts[517], 107, 102, FONT_SMALL, 14, Colors::YELLOW, to); //Player Name Handicap Type
  1925. printAtMiddleWBLoc(CGI->generaltexth->allTexts[518], 197, 102, FONT_SMALL, 10, Colors::YELLOW, to); //Starting Town
  1926. printAtMiddleWBLoc(CGI->generaltexth->allTexts[519], 273, 102, FONT_SMALL, 10, Colors::YELLOW, to); //Starting Hero
  1927. printAtMiddleWBLoc(CGI->generaltexth->allTexts[520], 349, 102, FONT_SMALL, 10, Colors::YELLOW, to); //Starting Bonus
  1928. printAtMiddleLoc(CGI->generaltexth->allTexts[521], 222, 538, FONT_SMALL, Colors::YELLOW, to); // Player Turn Duration
  1929. if (turnDuration)
  1930. printAtMiddleLoc(CGI->generaltexth->turnDurations[turnDuration->value], 319,559, FONT_SMALL, Colors::WHITE, to);//Turn duration value
  1931. }
  1932. void OptionsTab::nextCastle( int player, int dir )
  1933. {
  1934. if(SEL->isGuest())
  1935. {
  1936. SEL->postRequest(RequestOptionsChange::TOWN, dir);
  1937. return;
  1938. }
  1939. PlayerSettings &s = SEL->sInfo.playerInfos[player];
  1940. si16 &cur = s.castle;
  1941. auto & allowed = SEL->current->mapHeader->players[s.color].allowedFactions;
  1942. if (cur == PlayerSettings::NONE) //no change
  1943. return;
  1944. if (cur == PlayerSettings::RANDOM) //first/last available
  1945. {
  1946. if (dir > 0)
  1947. cur = *allowed.begin(); //id of first town
  1948. else
  1949. cur = *allowed.rbegin(); //id of last town
  1950. }
  1951. else // next/previous available
  1952. {
  1953. if ( (cur == *allowed.begin() && dir < 0 )
  1954. || (cur == *allowed.rbegin() && dir > 0) )
  1955. cur = -1;
  1956. else
  1957. {
  1958. assert(dir >= -1 && dir <= 1); //othervice std::advance may go out of range
  1959. auto iter = allowed.find(cur);
  1960. std::advance(iter, dir);
  1961. cur = *iter;
  1962. }
  1963. }
  1964. if(s.hero >= 0 && SEL->current->mapHeader->players[s.color].customHeroID < 0) // remove hero unless it set to fixed one in map editor
  1965. s.hero = PlayerSettings::RANDOM;
  1966. if(cur < 0 && s.bonus == PlayerSettings::RESOURCE)
  1967. s.bonus = PlayerSettings::RANDOM;
  1968. entries[player]->selectButtons();
  1969. SEL->propagateOptions();
  1970. entries[player]->update();
  1971. redraw();
  1972. }
  1973. void OptionsTab::nextHero( int player, int dir )
  1974. {
  1975. if(SEL->isGuest())
  1976. {
  1977. SEL->postRequest(RequestOptionsChange::HERO, dir);
  1978. return;
  1979. }
  1980. PlayerSettings &s = SEL->sInfo.playerInfos[player];
  1981. int old = s.hero;
  1982. if (s.castle < 0 || s.playerID == PlayerSettings::PLAYER_AI || s.hero == PlayerSettings::NONE)
  1983. return;
  1984. if (s.hero == PlayerSettings::RANDOM) // first/last available
  1985. {
  1986. int max = CGI->heroh->heroes.size(),
  1987. min = 0;
  1988. s.hero = nextAllowedHero(player, min,max,0,dir);
  1989. }
  1990. else
  1991. {
  1992. if(dir > 0)
  1993. s.hero = nextAllowedHero(player, s.hero, CGI->heroh->heroes.size(), 1, dir);
  1994. else
  1995. s.hero = nextAllowedHero(player, 0, s.hero, 1, dir);
  1996. }
  1997. if(old != s.hero)
  1998. {
  1999. usedHeroes.erase(old);
  2000. usedHeroes.insert(s.hero);
  2001. entries[player]->update();
  2002. redraw();
  2003. }
  2004. SEL->propagateOptions();
  2005. }
  2006. int OptionsTab::nextAllowedHero( int player, int min, int max, int incl, int dir )
  2007. {
  2008. if(dir>0)
  2009. {
  2010. for(int i=min+incl; i<=max-incl; i++)
  2011. if(canUseThisHero(player, i))
  2012. return i;
  2013. }
  2014. else
  2015. {
  2016. for(int i=max-incl; i>=min+incl; i--)
  2017. if(canUseThisHero(player, i))
  2018. return i;
  2019. }
  2020. return -1;
  2021. }
  2022. bool OptionsTab::canUseThisHero( int player, int ID )
  2023. {
  2024. return CGI->heroh->heroes.size() > ID
  2025. && SEL->sInfo.playerInfos[player].castle == CGI->heroh->heroes[ID]->heroClass->faction
  2026. && !vstd::contains(usedHeroes, ID)
  2027. && SEL->current->mapHeader->allowedHeroes[ID];
  2028. }
  2029. void OptionsTab::nextBonus( int player, int dir )
  2030. {
  2031. if(SEL->isGuest())
  2032. {
  2033. SEL->postRequest(RequestOptionsChange::BONUS, dir);
  2034. return;
  2035. }
  2036. PlayerSettings &s = SEL->sInfo.playerInfos[player];
  2037. si8 &ret = s.bonus += dir;
  2038. if (s.hero==PlayerSettings::NONE &&
  2039. !SEL->current->mapHeader->players[s.color].heroesNames.size() &&
  2040. ret==PlayerSettings::ARTIFACT) //no hero - can't be artifact
  2041. {
  2042. if (dir<0)
  2043. ret=PlayerSettings::RANDOM;
  2044. else ret=PlayerSettings::GOLD;
  2045. }
  2046. if(ret > PlayerSettings::RESOURCE)
  2047. ret = PlayerSettings::RANDOM;
  2048. if(ret < PlayerSettings::RANDOM)
  2049. ret = PlayerSettings::RESOURCE;
  2050. if (s.castle==PlayerSettings::RANDOM && ret==PlayerSettings::RESOURCE) //random castle - can't be resource
  2051. {
  2052. if (dir<0)
  2053. ret=PlayerSettings::GOLD;
  2054. else ret=PlayerSettings::RANDOM;
  2055. }
  2056. SEL->propagateOptions();
  2057. entries[player]->update();
  2058. redraw();
  2059. }
  2060. void OptionsTab::recreate()
  2061. {
  2062. for(std::map<int, PlayerOptionsEntry*>::iterator it = entries.begin(); it != entries.end(); ++it)
  2063. {
  2064. delete it->second;
  2065. }
  2066. entries.clear();
  2067. usedHeroes.clear();
  2068. OBJ_CONSTRUCTION_CAPTURING_ALL;
  2069. for(auto it = SEL->sInfo.playerInfos.begin(); it != SEL->sInfo.playerInfos.end(); ++it)
  2070. {
  2071. entries.insert(std::make_pair(it->first, new PlayerOptionsEntry(this, it->second)));
  2072. const std::vector<SHeroName> &heroes = SEL->current->mapHeader->players[it->first].heroesNames;
  2073. for(size_t hi=0; hi<heroes.size(); hi++)
  2074. usedHeroes.insert(heroes[hi].heroId);
  2075. }
  2076. }
  2077. void OptionsTab::setTurnLength( int npos )
  2078. {
  2079. static const int times[] = {1, 2, 4, 6, 8, 10, 15, 20, 25, 30, 0};
  2080. vstd::amin(npos, ARRAY_COUNT(times) - 1);
  2081. SEL->sInfo.turnTime = times[npos];
  2082. redraw();
  2083. }
  2084. void OptionsTab::flagPressed( int color )
  2085. {
  2086. PlayerSettings &clicked = SEL->sInfo.playerInfos[color];
  2087. PlayerSettings *old = NULL;
  2088. if(SEL->playerNames.size() == 1) //single player -> just swap
  2089. {
  2090. if(color == playerColor) //that color is already selected, no action needed
  2091. return;
  2092. old = &SEL->sInfo.playerInfos[playerColor];
  2093. swapPlayers(*old, clicked);
  2094. }
  2095. else
  2096. {
  2097. //identify clicked player
  2098. int clickedNameID = clicked.playerID; //human is a number of player, zero means AI
  2099. if(clickedNameID > 0 && playerToRestore.id == clickedNameID) //player to restore is about to being replaced -> put him back to the old place
  2100. {
  2101. PlayerSettings &restPos = SEL->sInfo.playerInfos[playerToRestore.color];
  2102. SEL->setPlayer(restPos, playerToRestore.id);
  2103. playerToRestore.reset();
  2104. }
  2105. int newPlayer; //which player will take clicked position
  2106. //who will be put here?
  2107. if(!clickedNameID) //AI player clicked -> if possible replace computer with unallocated player
  2108. {
  2109. newPlayer = SEL->getIdOfFirstUnallocatedPlayer();
  2110. if(!newPlayer) //no "free" player -> get just first one
  2111. newPlayer = SEL->playerNames.begin()->first;
  2112. }
  2113. else //human clicked -> take next
  2114. {
  2115. auto i = SEL->playerNames.find(clickedNameID); //clicked one
  2116. i++; //player AFTER clicked one
  2117. if(i != SEL->playerNames.end())
  2118. newPlayer = i->first;
  2119. else
  2120. newPlayer = 0; //AI if we scrolled through all players
  2121. }
  2122. SEL->setPlayer(clicked, newPlayer); //put player
  2123. //if that player was somewhere else, we need to replace him with computer
  2124. if(newPlayer) //not AI
  2125. {
  2126. for(auto i = SEL->sInfo.playerInfos.begin(); i != SEL->sInfo.playerInfos.end(); i++)
  2127. {
  2128. int curNameID = i->second.playerID;
  2129. if(i->first != color && curNameID == newPlayer)
  2130. {
  2131. assert(i->second.playerID);
  2132. playerToRestore.color = i->first;
  2133. playerToRestore.id = newPlayer;
  2134. SEL->setPlayer(i->second, 0); //set computer
  2135. old = &i->second;
  2136. break;
  2137. }
  2138. }
  2139. }
  2140. }
  2141. entries[clicked.color]->selectButtons();
  2142. if(old)
  2143. {
  2144. entries[old->color]->selectButtons();
  2145. if(old->hero >= 0)
  2146. usedHeroes.erase(old->hero);
  2147. old->hero = entries[old->color]->pi.defaultHero();
  2148. }
  2149. SEL->propagateOptions();
  2150. GH.totalRedraw();
  2151. }
  2152. OptionsTab::PlayerOptionsEntry::PlayerOptionsEntry( OptionsTab *owner, PlayerSettings &S)
  2153. : pi(SEL->current->mapHeader->players[S.color]), s(S)
  2154. {
  2155. OBJ_CONSTRUCTION;
  2156. defActions |= SHARE_POS;
  2157. int serial = 0;
  2158. for(int g=0; g < s.color; ++g)
  2159. {
  2160. PlayerInfo &itred = SEL->current->mapHeader->players[g];
  2161. if( itred.canComputerPlay || itred.canHumanPlay)
  2162. serial++;
  2163. }
  2164. pos.x += 54;
  2165. pos.y += 122 + serial*50;
  2166. static const char *flags[] = {"AOFLGBR.DEF", "AOFLGBB.DEF", "AOFLGBY.DEF", "AOFLGBG.DEF",
  2167. "AOFLGBO.DEF", "AOFLGBP.DEF", "AOFLGBT.DEF", "AOFLGBS.DEF"};
  2168. static const char *bgs[] = {"ADOPRPNL.bmp", "ADOPBPNL.bmp", "ADOPYPNL.bmp", "ADOPGPNL.bmp",
  2169. "ADOPOPNL.bmp", "ADOPPPNL.bmp", "ADOPTPNL.bmp", "ADOPSPNL.bmp"};
  2170. bg = new CPicture(BitmapHandler::loadBitmap(bgs[s.color]), 0, 0, true);
  2171. if(SEL->screenType == CMenuScreen::newGame)
  2172. {
  2173. btns[0] = new CAdventureMapButton(CGI->generaltexth->zelp[132], bind(&OptionsTab::nextCastle, owner, s.color, -1), 107, 5, "ADOPLFA.DEF");
  2174. btns[1] = new CAdventureMapButton(CGI->generaltexth->zelp[133], bind(&OptionsTab::nextCastle, owner, s.color, +1), 168, 5, "ADOPRTA.DEF");
  2175. btns[2] = new CAdventureMapButton(CGI->generaltexth->zelp[148], bind(&OptionsTab::nextHero, owner, s.color, -1), 183, 5, "ADOPLFA.DEF");
  2176. btns[3] = new CAdventureMapButton(CGI->generaltexth->zelp[149], bind(&OptionsTab::nextHero, owner, s.color, +1), 244, 5, "ADOPRTA.DEF");
  2177. btns[4] = new CAdventureMapButton(CGI->generaltexth->zelp[164], bind(&OptionsTab::nextBonus, owner, s.color, -1), 259, 5, "ADOPLFA.DEF");
  2178. btns[5] = new CAdventureMapButton(CGI->generaltexth->zelp[165], bind(&OptionsTab::nextBonus, owner, s.color, +1), 320, 5, "ADOPRTA.DEF");
  2179. }
  2180. else
  2181. for(int i = 0; i < 6; i++)
  2182. btns[i] = NULL;
  2183. selectButtons();
  2184. assert(SEL->current && SEL->current->mapHeader);
  2185. const PlayerInfo &p = SEL->current->mapHeader->players[s.color];
  2186. assert(p.canComputerPlay || p.canHumanPlay); //someone must be able to control this player
  2187. if(p.canHumanPlay && p.canComputerPlay)
  2188. whoCanPlay = HUMAN_OR_CPU;
  2189. else if(p.canComputerPlay)
  2190. whoCanPlay = CPU;
  2191. else
  2192. whoCanPlay = HUMAN;
  2193. if(SEL->screenType != CMenuScreen::scenarioInfo
  2194. && SEL->current->mapHeader->players[s.color].canHumanPlay
  2195. && SEL->multiPlayer != CMenuScreen::MULTI_NETWORK_GUEST)
  2196. {
  2197. flag = new CAdventureMapButton(CGI->generaltexth->zelp[180], bind(&OptionsTab::flagPressed, owner, s.color), -43, 2, flags[s.color]);
  2198. flag->hoverable = true;
  2199. }
  2200. else
  2201. flag = NULL;
  2202. town = new SelectedBox(Point(119, 2), s, TOWN);
  2203. hero = new SelectedBox(Point(195, 2), s, HERO);
  2204. bonus = new SelectedBox(Point(271, 2), s, BONUS);
  2205. }
  2206. void OptionsTab::PlayerOptionsEntry::showAll(SDL_Surface * to)
  2207. {
  2208. CIntObject::showAll(to);
  2209. printAtMiddleLoc(s.name, 55, 10, FONT_SMALL, Colors::WHITE, to);
  2210. printAtMiddleWBLoc(CGI->generaltexth->arraytxt[206+whoCanPlay], 28, 34, FONT_TINY, 8, Colors::WHITE, to);
  2211. }
  2212. void OptionsTab::PlayerOptionsEntry::update()
  2213. {
  2214. town->update();
  2215. hero->update();
  2216. bonus->update();
  2217. }
  2218. void OptionsTab::PlayerOptionsEntry::selectButtons()
  2219. {
  2220. if(!btns[0])
  2221. return;
  2222. if( (pi.defaultCastle() != -1) //fixed tow
  2223. || (SEL->isGuest() && s.color != playerColor)) //or not our player
  2224. {
  2225. btns[0]->disable();
  2226. btns[1]->disable();
  2227. }
  2228. else
  2229. {
  2230. btns[0]->enable();
  2231. btns[1]->enable();
  2232. }
  2233. if( (pi.defaultHero() != -1 || !s.playerID || s.castle < 0) //fixed hero
  2234. || (SEL->isGuest() && s.color != playerColor))//or not our player
  2235. {
  2236. btns[2]->disable();
  2237. btns[3]->disable();
  2238. }
  2239. else
  2240. {
  2241. btns[2]->enable();
  2242. btns[3]->enable();
  2243. }
  2244. if(SEL->isGuest() && s.color != playerColor)//or not our player
  2245. {
  2246. btns[4]->disable();
  2247. btns[5]->disable();
  2248. }
  2249. else
  2250. {
  2251. btns[4]->enable();
  2252. btns[5]->enable();
  2253. }
  2254. }
  2255. size_t OptionsTab::CPlayerSettingsHelper::getImageIndex()
  2256. {
  2257. enum EBonusSelection //frames of bonuses file
  2258. {
  2259. WOOD_ORE = 0, CRYSTAL = 1, GEM = 2,
  2260. MERCURY = 3, SULFUR = 5, GOLD = 8,
  2261. ARTIFACT = 9, RANDOM = 10,
  2262. WOOD = 0, ORE = 0, MITHRIL = 10, // resources unavailable in bonuses file
  2263. TOWN_RANDOM = 38, TOWN_NONE = 39, // Special frames in ITPA
  2264. HERO_RANDOM = 200, HERO_NONE = 201 // Special frames in PortraitsSmall
  2265. };
  2266. switch(type)
  2267. {
  2268. case TOWN:
  2269. switch (settings.castle)
  2270. {
  2271. case PlayerSettings::NONE: return TOWN_NONE;
  2272. case PlayerSettings::RANDOM: return TOWN_RANDOM;
  2273. default: return CGI->townh->towns[settings.castle].clientInfo.icons[true][false] + 2;
  2274. }
  2275. case HERO:
  2276. switch (settings.hero)
  2277. {
  2278. case PlayerSettings::NONE: return HERO_NONE;
  2279. case PlayerSettings::RANDOM: return HERO_RANDOM;
  2280. default:
  2281. {
  2282. if(settings.heroPortrait >= 0)
  2283. return settings.heroPortrait;
  2284. return CGI->heroh->heroes[settings.hero]->imageIndex;
  2285. }
  2286. }
  2287. case BONUS:
  2288. {
  2289. switch(settings.bonus)
  2290. {
  2291. case PlayerSettings::RANDOM: return RANDOM;
  2292. case PlayerSettings::ARTIFACT: return ARTIFACT;
  2293. case PlayerSettings::GOLD: return GOLD;
  2294. case PlayerSettings::RESOURCE:
  2295. {
  2296. switch(CGI->townh->towns[settings.castle].primaryRes)
  2297. {
  2298. case 127 : return WOOD_ORE;
  2299. case Res::WOOD : return WOOD;
  2300. case Res::MERCURY : return MERCURY;
  2301. case Res::ORE : return ORE;
  2302. case Res::SULFUR : return SULFUR;
  2303. case Res::CRYSTAL : return CRYSTAL;
  2304. case Res::GEMS : return GEM;
  2305. case Res::GOLD : return GOLD;
  2306. case Res::MITHRIL : return MITHRIL;
  2307. }
  2308. }
  2309. }
  2310. }
  2311. }
  2312. return 0;
  2313. }
  2314. std::string OptionsTab::CPlayerSettingsHelper::getImageName()
  2315. {
  2316. switch(type)
  2317. {
  2318. case OptionsTab::TOWN: return "ITPA";
  2319. case OptionsTab::HERO: return "PortraitsSmall";
  2320. case OptionsTab::BONUS: return "SCNRSTAR";
  2321. }
  2322. return "";
  2323. }
  2324. std::string OptionsTab::CPlayerSettingsHelper::getTitle()
  2325. {
  2326. switch(type)
  2327. {
  2328. case OptionsTab::TOWN: return (settings.castle < 0) ? CGI->generaltexth->allTexts[103] : CGI->generaltexth->allTexts[80];
  2329. case OptionsTab::HERO: return (settings.hero < 0) ? CGI->generaltexth->allTexts[101] : CGI->generaltexth->allTexts[77];
  2330. case OptionsTab::BONUS:
  2331. {
  2332. switch(settings.bonus)
  2333. {
  2334. case PlayerSettings::RANDOM: return CGI->generaltexth->allTexts[86]; //{Random Bonus}
  2335. case PlayerSettings::ARTIFACT: return CGI->generaltexth->allTexts[83]; //{Artifact Bonus}
  2336. case PlayerSettings::GOLD: return CGI->generaltexth->allTexts[84]; //{Gold Bonus}
  2337. case PlayerSettings::RESOURCE: return CGI->generaltexth->allTexts[85]; //{Resource Bonus}
  2338. }
  2339. }
  2340. }
  2341. return "";
  2342. }
  2343. std::string OptionsTab::CPlayerSettingsHelper::getName()
  2344. {
  2345. switch(type)
  2346. {
  2347. case TOWN:
  2348. {
  2349. switch (settings.castle)
  2350. {
  2351. case PlayerSettings::NONE : return CGI->generaltexth->allTexts[523];
  2352. case PlayerSettings::RANDOM : return CGI->generaltexth->allTexts[522];
  2353. default : return CGI->townh->factions[settings.castle].name;
  2354. }
  2355. }
  2356. case HERO:
  2357. {
  2358. switch (settings.hero)
  2359. {
  2360. case PlayerSettings::NONE : return CGI->generaltexth->allTexts[523];
  2361. case PlayerSettings::RANDOM : return CGI->generaltexth->allTexts[522];
  2362. default :
  2363. {
  2364. if (!settings.heroName.empty())
  2365. return settings.heroName;
  2366. return CGI->heroh->heroes[settings.hero]->name;
  2367. }
  2368. }
  2369. }
  2370. case BONUS:
  2371. {
  2372. switch (settings.bonus)
  2373. {
  2374. case PlayerSettings::RANDOM : return CGI->generaltexth->allTexts[522];
  2375. default: return CGI->generaltexth->arraytxt[214 + settings.bonus];
  2376. }
  2377. }
  2378. }
  2379. return "";
  2380. }
  2381. std::string OptionsTab::CPlayerSettingsHelper::getSubtitle()
  2382. {
  2383. switch(type)
  2384. {
  2385. case TOWN: return getName();
  2386. case HERO:
  2387. {
  2388. if (settings.hero >= 0)
  2389. return getName() + " - " + CGI->heroh->heroes[settings.hero]->heroClass->name;
  2390. return getName();
  2391. }
  2392. case BONUS:
  2393. {
  2394. switch(settings.bonus)
  2395. {
  2396. case PlayerSettings::GOLD: return CGI->generaltexth->allTexts[87]; //500-1000
  2397. case PlayerSettings::RESOURCE:
  2398. {
  2399. switch(CGI->townh->towns[settings.castle].primaryRes)
  2400. {
  2401. case Res::MERCURY: return CGI->generaltexth->allTexts[694];
  2402. case Res::SULFUR: return CGI->generaltexth->allTexts[695];
  2403. case Res::CRYSTAL: return CGI->generaltexth->allTexts[692];
  2404. case Res::GEMS: return CGI->generaltexth->allTexts[693];
  2405. case 127: return CGI->generaltexth->allTexts[89]; //At the start of the game, 5-10 wood and 5-10 ore are added to your Kingdom's resource pool
  2406. }
  2407. }
  2408. }
  2409. }
  2410. }
  2411. return "";
  2412. }
  2413. std::string OptionsTab::CPlayerSettingsHelper::getDescription()
  2414. {
  2415. switch(type)
  2416. {
  2417. case TOWN: return CGI->generaltexth->allTexts[104];
  2418. case HERO: return CGI->generaltexth->allTexts[102];
  2419. case BONUS:
  2420. {
  2421. switch(settings.bonus)
  2422. {
  2423. case PlayerSettings::RANDOM: return CGI->generaltexth->allTexts[94]; //Gold, wood and ore, or an artifact is randomly chosen as your starting bonus
  2424. case PlayerSettings::ARTIFACT: return CGI->generaltexth->allTexts[90]; //An artifact is randomly chosen and equipped to your starting hero
  2425. case PlayerSettings::GOLD: return CGI->generaltexth->allTexts[92]; //At the start of the game, 500-1000 gold is added to your Kingdom's resource pool
  2426. case PlayerSettings::RESOURCE:
  2427. {
  2428. switch(CGI->townh->towns[settings.castle].primaryRes)
  2429. {
  2430. case Res::MERCURY: return CGI->generaltexth->allTexts[690];
  2431. case Res::SULFUR: return CGI->generaltexth->allTexts[691];
  2432. case Res::CRYSTAL: return CGI->generaltexth->allTexts[688];
  2433. case Res::GEMS: return CGI->generaltexth->allTexts[689];
  2434. case 127: return CGI->generaltexth->allTexts[93]; //At the start of the game, 5-10 wood and 5-10 ore are added to your Kingdom's resource pool
  2435. }
  2436. }
  2437. }
  2438. }
  2439. }
  2440. return "";
  2441. }
  2442. OptionsTab::CPregameTooltipBox::CPregameTooltipBox(CPlayerSettingsHelper & helper):
  2443. CWindowObject(BORDERED | RCLICK_POPUP),
  2444. CPlayerSettingsHelper(helper)
  2445. {
  2446. OBJ_CONSTRUCTION_CAPTURING_ALL;
  2447. int value = PlayerSettings::NONE;
  2448. switch(CPlayerSettingsHelper::type)
  2449. {
  2450. break; case TOWN:
  2451. value = settings.castle;
  2452. break; case HERO:
  2453. value = settings.hero;
  2454. break; case BONUS:
  2455. value = settings.bonus;
  2456. }
  2457. if (value == PlayerSettings::RANDOM)
  2458. genBonusWindow();
  2459. else if (CPlayerSettingsHelper::type == BONUS)
  2460. genBonusWindow();
  2461. else if (CPlayerSettingsHelper::type == HERO)
  2462. genHeroWindow();
  2463. else if (CPlayerSettingsHelper::type == TOWN)
  2464. genTownWindow();
  2465. center();
  2466. }
  2467. void OptionsTab::CPregameTooltipBox::genHeader()
  2468. {
  2469. new CFilledTexture("DIBOXBCK", pos);
  2470. updateShadow();
  2471. new CLabel(pos.w / 2 + 8, 21, FONT_MEDIUM, CENTER, Colors::YELLOW, getTitle());
  2472. new CLabel(pos.w / 2, 88, FONT_SMALL, CENTER, Colors::WHITE, getSubtitle());
  2473. new CAnimImage(getImageName(), getImageIndex(), 0, pos.w / 2 - 24, 45);
  2474. }
  2475. void OptionsTab::CPregameTooltipBox::genTownWindow()
  2476. {
  2477. pos = Rect(0, 0, 228, 290);
  2478. genHeader();
  2479. new CLabel(pos.w / 2 + 8, 122, FONT_MEDIUM, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[79]);
  2480. std::vector<CComponent *> components;
  2481. const CTown & town = CGI->townh->towns[settings.castle];
  2482. for (size_t i=0; i< town.creatures.size(); i++)
  2483. components.push_back(new CComponent(CComponent::creature, town.creatures[i].front(), 0, CComponent::tiny));
  2484. new CComponentBox(components, Rect(0, 140, pos.w, 140));
  2485. }
  2486. void OptionsTab::CPregameTooltipBox::genHeroWindow()
  2487. {
  2488. pos = Rect(0, 0, 292, 226);
  2489. genHeader();
  2490. // speciality
  2491. new CAnimImage("UN44", CGI->heroh->heroes[settings.hero]->imageIndex, 0, pos.w / 2 - 22, 134);
  2492. new CLabel(pos.w / 2 + 4, 117, FONT_MEDIUM, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[78]);
  2493. new CLabel(pos.w / 2, 188, FONT_SMALL, CENTER, Colors::WHITE, CGI->heroh->heroes[settings.hero]->specName);
  2494. }
  2495. void OptionsTab::CPregameTooltipBox::genBonusWindow()
  2496. {
  2497. pos = Rect(0, 0, 228, 162);
  2498. genHeader();
  2499. new CTextBox(getDescription(), Rect(10, 88, pos.w - 20, 70), 0, FONT_SMALL, CENTER, Colors::WHITE );
  2500. }
  2501. OptionsTab::SelectedBox::SelectedBox(Point position, PlayerSettings & settings, SelType type)
  2502. :CIntObject(RCLICK, position),
  2503. CPlayerSettingsHelper(settings, type)
  2504. {
  2505. OBJ_CONSTRUCTION_CAPTURING_ALL;
  2506. image = new CAnimImage(getImageName(), getImageIndex());
  2507. subtitle = new CLabel(23, 39, FONT_TINY, CENTER, Colors::WHITE, getName());
  2508. pos = image->pos;
  2509. }
  2510. void OptionsTab::SelectedBox::update()
  2511. {
  2512. image->setFrame(getImageIndex());
  2513. subtitle->setTxt(getName());
  2514. }
  2515. void OptionsTab::SelectedBox::clickRight( tribool down, bool previousState )
  2516. {
  2517. if (down)
  2518. {
  2519. // cases when we do not need to display a message
  2520. if (settings.castle == -2 && CPlayerSettingsHelper::type == TOWN )
  2521. return;
  2522. if (settings.hero == -2 && SEL->current->mapHeader->players[settings.color].customHeroID == -1 && CPlayerSettingsHelper::type == HERO)
  2523. return;
  2524. GH.pushInt(new CPregameTooltipBox(*this));
  2525. }
  2526. }
  2527. CScenarioInfo::CScenarioInfo(const CMapHeader *mapHeader, const StartInfo *startInfo)
  2528. {
  2529. OBJ_CONSTRUCTION_CAPTURING_ALL;
  2530. for(auto it = startInfo->playerInfos.cbegin(); it != startInfo->playerInfos.cend(); ++it)
  2531. {
  2532. if(it->second.playerID)
  2533. {
  2534. playerColor = it->first;
  2535. }
  2536. }
  2537. pos.w = 762;
  2538. pos.h = 584;
  2539. center(pos);
  2540. assert(LOCPLINT);
  2541. sInfo = *LOCPLINT->cb->getStartInfo();
  2542. assert(!SEL->current);
  2543. current = mapInfoFromGame();
  2544. setPlayersFromGame();
  2545. screenType = CMenuScreen::scenarioInfo;
  2546. card = new InfoCard();
  2547. opt = new OptionsTab();
  2548. opt->recreate();
  2549. card->changeSelection(current);
  2550. card->difficulty->select(startInfo->difficulty, 0);
  2551. back = new CAdventureMapButton("", CGI->generaltexth->zelp[105].second, bind(&CGuiHandler::popIntTotally, &GH, this), 584, 535, "SCNRBACK.DEF", SDLK_ESCAPE);
  2552. }
  2553. CScenarioInfo::~CScenarioInfo()
  2554. {
  2555. delete current;
  2556. }
  2557. bool mapSorter::operator()(const CMapInfo *aaa, const CMapInfo *bbb)
  2558. {
  2559. const CMapHeader * a = aaa->mapHeader.get(),
  2560. * b = bbb->mapHeader.get();
  2561. if(a && b) //if we are sorting scenarios
  2562. {
  2563. switch (sortBy)
  2564. {
  2565. case _format: //by map format (RoE, WoG, etc)
  2566. return (a->version<b->version);
  2567. break;
  2568. case _loscon: //by loss conditions
  2569. return (a->lossCondition.typeOfLossCon<b->lossCondition.typeOfLossCon);
  2570. break;
  2571. case _playerAm: //by player amount
  2572. int playerAmntB,humenPlayersB,playerAmntA,humenPlayersA;
  2573. playerAmntB=humenPlayersB=playerAmntA=humenPlayersA=0;
  2574. for (int i=0;i<8;i++)
  2575. {
  2576. if (a->players[i].canHumanPlay) {playerAmntA++;humenPlayersA++;}
  2577. else if (a->players[i].canComputerPlay) {playerAmntA++;}
  2578. if (b->players[i].canHumanPlay) {playerAmntB++;humenPlayersB++;}
  2579. else if (b->players[i].canComputerPlay) {playerAmntB++;}
  2580. }
  2581. if (playerAmntB!=playerAmntA)
  2582. return (playerAmntA<playerAmntB);
  2583. else
  2584. return (humenPlayersA<humenPlayersB);
  2585. break;
  2586. case _size: //by size of map
  2587. return (a->width<b->width);
  2588. break;
  2589. case _viccon: //by victory conditions
  2590. return (a->victoryCondition.condition < b->victoryCondition.condition);
  2591. break;
  2592. case _name: //by name
  2593. return boost::ilexicographical_compare(a->name, b->name);
  2594. default:
  2595. return boost::ilexicographical_compare(a->name, b->name);
  2596. }
  2597. }
  2598. else //if we are sorting campaigns
  2599. {
  2600. switch(sortBy)
  2601. {
  2602. case _numOfMaps: //by number of maps in campaign
  2603. return CGI->generaltexth->campaignRegionNames[ aaa->campaignHeader->mapVersion ].size() <
  2604. CGI->generaltexth->campaignRegionNames[ bbb->campaignHeader->mapVersion ].size();
  2605. break;
  2606. case _name: //by name
  2607. return boost::ilexicographical_compare(aaa->campaignHeader->name, bbb->campaignHeader->name);
  2608. default:
  2609. return boost::ilexicographical_compare(aaa->campaignHeader->name, bbb->campaignHeader->name);
  2610. }
  2611. }
  2612. }
  2613. CMultiMode::CMultiMode()
  2614. {
  2615. OBJ_CONSTRUCTION_CAPTURING_ALL;
  2616. bg = new CPicture("MUPOPUP.bmp");
  2617. bg->convertToScreenBPP(); //so we could draw without problems
  2618. blitAt(CPicture("MUMAP.bmp"), 16, 77, *bg); //blit img
  2619. pos = bg->center(); //center, window has size of bg graphic
  2620. bar = new CGStatusBar(new CPicture(Rect(7, 465, 440, 18), 0));//226, 472
  2621. txt = new CTextInput(Rect(19, 436, 334, 16), *bg);
  2622. txt->setTxt(settings["general"]["playerName"].String()); //Player
  2623. btns[0] = new CAdventureMapButton(CGI->generaltexth->zelp[266], bind(&CMultiMode::openHotseat, this), 373, 78, "MUBHOT.DEF");
  2624. btns[1] = new CAdventureMapButton("Host TCP/IP game", "", bind(&CMultiMode::hostTCP, this), 373, 78 + 57*1, "MUBHOST.DEF");
  2625. btns[2] = new CAdventureMapButton("Join TCP/IP game", "", bind(&CMultiMode::joinTCP, this), 373, 78 + 57*2, "MUBJOIN.DEF");
  2626. btns[6] = new CAdventureMapButton(CGI->generaltexth->zelp[288], bind(&CGuiHandler::popIntTotally, ref(GH), this), 373, 424, "MUBCANC.DEF", SDLK_ESCAPE);
  2627. }
  2628. void CMultiMode::openHotseat()
  2629. {
  2630. GH.pushInt(new CHotSeatPlayers(txt->text));
  2631. }
  2632. void CMultiMode::hostTCP()
  2633. {
  2634. Settings name = settings.write["general"]["playerName"];
  2635. name->String() = txt->text;
  2636. GH.popIntTotally(this);
  2637. GH.pushInt(new CSelectionScreen(CMenuScreen::newGame, CMenuScreen::MULTI_NETWORK_HOST));
  2638. }
  2639. void CMultiMode::joinTCP()
  2640. {
  2641. Settings name = settings.write["general"]["playerName"];
  2642. name->String() = txt->text;
  2643. GH.popIntTotally(this);
  2644. GH.pushInt(new CSelectionScreen(CMenuScreen::newGame, CMenuScreen::MULTI_NETWORK_GUEST));
  2645. }
  2646. CHotSeatPlayers::CHotSeatPlayers(const std::string &firstPlayer)
  2647. {
  2648. OBJ_CONSTRUCTION_CAPTURING_ALL;
  2649. bg = new CPicture("MUHOTSEA.bmp");
  2650. pos = bg->center(); //center, window has size of bg graphic
  2651. std::string text = CGI->generaltexth->allTexts[446];
  2652. boost::replace_all(text, "\t","\n");
  2653. Rect boxRect(25, 20, 315, 50);
  2654. title = new CTextBox(text, boxRect, 0, FONT_BIG, CENTER, Colors::WHITE);//HOTSEAT Please enter names
  2655. for(int i = 0; i < ARRAY_COUNT(txt); i++)
  2656. {
  2657. txt[i] = new CTextInput(Rect(60, 85 + i*30, 280, 16), *bg);
  2658. txt[i]->cb += boost::bind(&CHotSeatPlayers::onChange, this, _1);
  2659. }
  2660. ok = new CAdventureMapButton(CGI->generaltexth->zelp[560], bind(&CHotSeatPlayers::enterSelectionScreen, this), 95, 338, "MUBCHCK.DEF", SDLK_RETURN);
  2661. cancel = new CAdventureMapButton(CGI->generaltexth->zelp[561], bind(&CGuiHandler::popIntTotally, ref(GH), this), 205, 338, "MUBCANC.DEF", SDLK_ESCAPE);
  2662. bar = new CGStatusBar(new CPicture(Rect(7, 381, 348, 18), 0));//226, 472
  2663. txt[0]->setTxt(firstPlayer, true);
  2664. txt[0]->giveFocus();
  2665. }
  2666. void CHotSeatPlayers::onChange(std::string newText)
  2667. {
  2668. size_t namesCount = 0;
  2669. for(int i = 0; i < ARRAY_COUNT(txt); i++)
  2670. if(!txt[i]->text.empty())
  2671. namesCount++;
  2672. ok->block(namesCount < 2);
  2673. }
  2674. void CHotSeatPlayers::enterSelectionScreen()
  2675. {
  2676. std::map<TPlayerColor, std::string> names;
  2677. for(int i = 0, j = 1; i < ARRAY_COUNT(txt); i++)
  2678. if(txt[i]->text.length())
  2679. names[j++] = txt[i]->text;
  2680. Settings name = settings.write["general"]["playerName"];
  2681. name->String() = names.begin()->second;
  2682. GH.popInts(2); //pop MP mode window and this
  2683. GH.pushInt(new CSelectionScreen(CMenuScreen::newGame, CMenuScreen::MULTI_HOT_SEAT, &names));
  2684. }
  2685. void CBonusSelection::init()
  2686. {
  2687. highlightedRegion = nullptr;
  2688. ourHeader = nullptr;
  2689. diffLb = nullptr;
  2690. diffRb = nullptr;
  2691. bonuses = nullptr;
  2692. OBJ_CONSTRUCTION_CAPTURING_ALL;
  2693. static const std::string bgNames [] = {"E1_BG.BMP", "G2_BG.BMP", "E2_BG.BMP", "G1_BG.BMP", "G3_BG.BMP", "N1_BG.BMP",
  2694. "S1_BG.BMP", "BR_BG.BMP", "IS_BG.BMP", "KR_BG.BMP", "NI_BG.BMP", "TA_BG.BMP", "AR_BG.BMP", "HS_BG.BMP",
  2695. "BB_BG.BMP", "NB_BG.BMP", "EL_BG.BMP", "RN_BG.BMP", "UA_BG.BMP", "SP_BG.BMP"};
  2696. loadPositionsOfGraphics();
  2697. background = BitmapHandler::loadBitmap(bgNames[ourCampaign->camp->header.mapVersion]);
  2698. pos.h = background->h;
  2699. pos.w = background->w;
  2700. center();
  2701. SDL_Surface * panel = BitmapHandler::loadBitmap("CAMPBRF.BMP");
  2702. blitAt(panel, 456, 6, background);
  2703. startB = new CAdventureMapButton("", "", bind(&CBonusSelection::startMap, this), 475, 536, "CBBEGIB.DEF", SDLK_RETURN);
  2704. backB = new CAdventureMapButton("", "", bind(&CBonusSelection::goBack, this), 624, 536, "CBCANCB.DEF", SDLK_ESCAPE);
  2705. //campaign name
  2706. if (ourCampaign->camp->header.name.length())
  2707. CSDL_Ext::printAt(ourCampaign->camp->header.name, 481, 28, FONT_BIG, Colors::YELLOW, background);
  2708. else
  2709. CSDL_Ext::printAt("Unnamed", 481, 28, FONT_BIG, Colors::YELLOW, background);
  2710. //map size icon
  2711. sizes = CDefHandler::giveDef("SCNRMPSZ.DEF");
  2712. //campaign description
  2713. CSDL_Ext::printAt(CGI->generaltexth->allTexts[38], 481, 63, FONT_SMALL, Colors::YELLOW, background);
  2714. cmpgDesc = new CTextBox(ourCampaign->camp->header.description, Rect(480, 86, 286, 117), 1);
  2715. //cmpgDesc->showAll(background);
  2716. //map description
  2717. mapDesc = new CTextBox("", Rect(480, 280, 286, 117), 1);
  2718. //bonus choosing
  2719. CSDL_Ext::printAt(CGI->generaltexth->allTexts[71], 511, 432, FONT_MEDIUM, Colors::WHITE, background); //Choose a bonus:
  2720. bonuses = new CHighlightableButtonsGroup(bind(&CBonusSelection::selectBonus, this, _1));
  2721. //set left part of window
  2722. for (int g=0; g<ourCampaign->camp->scenarios.size(); ++g)
  2723. {
  2724. if(ourCampaign->camp->conquerable(g))
  2725. {
  2726. regions.push_back(new CRegion(this, true, true, g));
  2727. regions[regions.size()-1]->rclickText = ourCampaign->camp->scenarios[g].regionText;
  2728. if (highlightedRegion == NULL)
  2729. {
  2730. highlightedRegion = regions.back();
  2731. selectMap(g);
  2732. }
  2733. }
  2734. else if (ourCampaign->camp->scenarios[g].conquered) //display as striped
  2735. {
  2736. regions.push_back(new CRegion(this, false, false, g));
  2737. regions[regions.size()-1]->rclickText = ourCampaign->camp->scenarios[g].regionText;
  2738. }
  2739. }
  2740. //unlock if no bonuses -- it's acceptable
  2741. // //init campaign state if necessary
  2742. // if (ourCampaign->campaignName.size() == 0)
  2743. // {
  2744. // ourCampaign->initNewCampaign(sInfo);
  2745. // }
  2746. //allies / enemies
  2747. CSDL_Ext::printAt(CGI->generaltexth->allTexts[390] + ":", 486, 407, FONT_SMALL, Colors::WHITE, background); //Allies
  2748. CSDL_Ext::printAt(CGI->generaltexth->allTexts[391] + ":", 619, 407, FONT_SMALL, Colors::WHITE, background); //Enemies
  2749. SDL_FreeSurface(panel);
  2750. //difficulty
  2751. std::vector<std::string> difficulty;
  2752. boost::split(difficulty, CGI->generaltexth->allTexts[492], boost::is_any_of(" "));
  2753. CSDL_Ext::printAt(difficulty.back(), 689, 432, FONT_MEDIUM, Colors::WHITE, background); //Difficulty
  2754. //difficulty pics
  2755. for (int b=0; b<ARRAY_COUNT(diffPics); ++b)
  2756. {
  2757. CDefEssential * cde = CDefHandler::giveDefEss("GSPBUT" + boost::lexical_cast<std::string>(b+3) + ".DEF");
  2758. SDL_Surface * surfToDuplicate = cde->ourImages[0].bitmap;
  2759. diffPics[b] = SDL_ConvertSurface(surfToDuplicate, surfToDuplicate->format,
  2760. surfToDuplicate->flags);
  2761. delete cde;
  2762. }
  2763. //difficulty selection buttons
  2764. if (ourCampaign->camp->header.difficultyChoosenByPlayer)
  2765. {
  2766. diffLb = new CAdventureMapButton("", "", bind(&CBonusSelection::changeDiff, this, false), 694, 508, "SCNRBLF.DEF");
  2767. diffRb = new CAdventureMapButton("", "", bind(&CBonusSelection::changeDiff, this, true), 738, 508, "SCNRBRT.DEF");
  2768. }
  2769. //load miniflags
  2770. sFlags = CDefHandler::giveDef("ITGFLAGS.DEF");
  2771. }
  2772. CBonusSelection::CBonusSelection(shared_ptr<CCampaignState> _ourCampaign)
  2773. : ourCampaign(std::move(_ourCampaign))
  2774. {
  2775. init();
  2776. }
  2777. CBonusSelection::CBonusSelection( std::string campaignFName )
  2778. {
  2779. ourCampaign = make_shared<CCampaignState>(CCampaignHandler::getCampaign(campaignFName));
  2780. sInfo.campState = ourCampaign;
  2781. init();
  2782. }
  2783. CBonusSelection::~CBonusSelection()
  2784. {
  2785. SDL_FreeSurface(background);
  2786. delete sizes;
  2787. delete ourHeader;
  2788. delete sFlags;
  2789. for (int b=0; b<ARRAY_COUNT(diffPics); ++b)
  2790. {
  2791. SDL_FreeSurface(diffPics[b]);
  2792. }
  2793. }
  2794. void CBonusSelection::goBack()
  2795. {
  2796. GH.popIntTotally(this);
  2797. }
  2798. void CBonusSelection::showAll(SDL_Surface * to)
  2799. {
  2800. blitAt(background, pos.x, pos.y, to);
  2801. CIntObject::showAll(to);
  2802. show(to);
  2803. if (pos.h != to->h || pos.w != to->w)
  2804. CMessage::drawBorder(1, to, pos.w+28, pos.h+30, pos.x-14, pos.y-15);
  2805. }
  2806. void CBonusSelection::loadPositionsOfGraphics()
  2807. {
  2808. const JsonNode config(ResourceID("config/campaign_regions.json"));
  2809. int idx = 0;
  2810. BOOST_FOREACH(const JsonNode &campaign, config["campaign_regions"].Vector())
  2811. {
  2812. SCampPositions sc;
  2813. sc.campPrefix = campaign["prefix"].String();
  2814. sc.colorSuffixLength = campaign["color_suffix_length"].Float();
  2815. BOOST_FOREACH(const JsonNode &desc, campaign["desc"].Vector())
  2816. {
  2817. SCampPositions::SRegionDesc rd;
  2818. rd.infix = desc["infix"].String();
  2819. rd.xpos = desc["x"].Float();
  2820. rd.ypos = desc["y"].Float();
  2821. sc.regions.push_back(rd);
  2822. }
  2823. campDescriptions.push_back(sc);
  2824. idx++;
  2825. }
  2826. assert(idx == CGI->generaltexth->campaignMapNames.size());
  2827. }
  2828. void CBonusSelection::selectMap( int whichOne )
  2829. {
  2830. sInfo.difficulty = ourCampaign->camp->scenarios[whichOne].difficulty;
  2831. sInfo.mapname = ourCampaign->camp->header.filename;
  2832. sInfo.mode = StartInfo::CAMPAIGN;
  2833. sInfo.campState = ourCampaign;
  2834. ourCampaign->currentMap = whichOne;
  2835. //get header
  2836. delete ourHeader;
  2837. std::string & headerStr = ourCampaign->camp->mapPieces.find(whichOne)->second;
  2838. auto buffer = reinterpret_cast<const ui8 *>(headerStr.data());
  2839. ourHeader = CMapService::loadMapHeader(buffer, headerStr.size()).release();
  2840. std::map<TPlayerColor, std::string> names;
  2841. names[1] = settings["general"]["playerName"].String();
  2842. updateStartInfo(ourCampaign->camp->header.filename, sInfo, ourHeader, names);
  2843. sInfo.turnTime = 0;
  2844. sInfo.difficulty = ourCampaign->camp->scenarios[whichOne].difficulty;
  2845. mapDesc->setTxt(ourHeader->description);
  2846. updateBonusSelection();
  2847. }
  2848. void CBonusSelection::show(SDL_Surface * to)
  2849. {
  2850. //blitAt(background, pos.x, pos.y, to);
  2851. //map name
  2852. std::string mapName = ourHeader->name;
  2853. if (mapName.length())
  2854. printAtLoc(mapName, 481, 219, FONT_BIG, Colors::YELLOW, to);
  2855. else
  2856. printAtLoc("Unnamed", 481, 219, FONT_BIG, Colors::YELLOW, to);
  2857. //map description
  2858. printAtLoc(CGI->generaltexth->allTexts[496], 481, 253, FONT_SMALL, Colors::YELLOW, to);
  2859. mapDesc->showAll(to); //showAll because CTextBox has no show()
  2860. //map size icon
  2861. int temp;
  2862. switch (ourHeader->width)
  2863. {
  2864. case 36:
  2865. temp=0;
  2866. break;
  2867. case 72:
  2868. temp=1;
  2869. break;
  2870. case 108:
  2871. temp=2;
  2872. break;
  2873. case 144:
  2874. temp=3;
  2875. break;
  2876. default:
  2877. temp=4;
  2878. break;
  2879. }
  2880. blitAtLoc(sizes->ourImages[temp].bitmap, 735, 26, to);
  2881. //flags
  2882. int fx = 496 + graphics->fonts[FONT_SMALL]->getWidth(CGI->generaltexth->allTexts[390].c_str());
  2883. int ex = 629 + graphics->fonts[FONT_SMALL]->getWidth(CGI->generaltexth->allTexts[391].c_str());
  2884. int myT;
  2885. myT = ourHeader->players[playerColor].team;
  2886. for (auto i = sInfo.playerInfos.cbegin(); i != sInfo.playerInfos.cend(); i++)
  2887. {
  2888. int *myx = ((i->first == playerColor || ourHeader->players[i->first].team == myT) ? &fx : &ex);
  2889. blitAtLoc(sFlags->ourImages[i->first].bitmap, pos.x + *myx, pos.y + 405, to);
  2890. *myx += sFlags->ourImages[i->first].bitmap->w;
  2891. }
  2892. //difficulty
  2893. blitAtLoc(diffPics[sInfo.difficulty], 709, 455, to);
  2894. CIntObject::show(to);
  2895. }
  2896. void CBonusSelection::updateBonusSelection()
  2897. {
  2898. OBJ_CONSTRUCTION_CAPTURING_ALL;
  2899. //graphics:
  2900. //spell - SPELLBON.DEF
  2901. //monster - TWCRPORT.DEF
  2902. //building - BO*.BMP graphics
  2903. //artifact - ARTIFBON.DEF
  2904. //spell scroll - SPELLBON.DEF
  2905. //prim skill - PSKILBON.DEF
  2906. //sec skill - SSKILBON.DEF
  2907. //resource - BORES.DEF
  2908. //player - CREST58.DEF
  2909. //hero - PORTRAITSLARGE (HPL###.BMPs)
  2910. const CCampaignScenario &scenario = ourCampaign->camp->scenarios[sInfo.campState->currentMap];
  2911. const std::vector<CScenarioTravel::STravelBonus> & bonDescs = scenario.travelOptions.bonusesToChoose;
  2912. updateStartButtonState(-1);
  2913. for (size_t i=0; i<bonuses->buttons.size(); i++)
  2914. {
  2915. if (bonuses->buttons[i]->active)
  2916. bonuses->buttons[i]->deactivate();
  2917. delete bonuses->buttons[i];
  2918. }
  2919. bonuses->buttons.clear();
  2920. static const char *bonusPics[] = {"SPELLBON.DEF", "TWCRPORT.DEF", "", "ARTIFBON.DEF", "SPELLBON.DEF",
  2921. "PSKILBON.DEF", "SSKILBON.DEF", "BORES.DEF", "CREST58.DEF", "PORTRAITSLARGE"};
  2922. for(int i = 0; i < bonDescs.size(); i++)
  2923. {
  2924. std::string picName=bonusPics[bonDescs[i].type];
  2925. size_t picNumber=bonDescs[i].info2;
  2926. std::string desc;
  2927. switch(bonDescs[i].type)
  2928. {
  2929. case CScenarioTravel::STravelBonus::SPELL:
  2930. desc = CGI->generaltexth->allTexts[715];
  2931. boost::algorithm::replace_first(desc, "%s", CGI->spellh->spells[bonDescs[i].info2]->name);
  2932. break;
  2933. case CScenarioTravel::STravelBonus::MONSTER:
  2934. picNumber = bonDescs[i].info2 + 2;
  2935. desc = CGI->generaltexth->allTexts[717];
  2936. boost::algorithm::replace_first(desc, "%d", boost::lexical_cast<std::string>(bonDescs[i].info3));
  2937. boost::algorithm::replace_first(desc, "%s", CGI->creh->creatures[bonDescs[i].info2]->namePl);
  2938. break;
  2939. case CScenarioTravel::STravelBonus::BUILDING:
  2940. {
  2941. int faction = -1;
  2942. for(auto it = sInfo.playerInfos.begin(); it != sInfo.playerInfos.end(); ++it)
  2943. {
  2944. if (it->second.playerID)
  2945. {
  2946. faction = it->second.castle;
  2947. break;
  2948. }
  2949. }
  2950. assert(faction != -1);
  2951. int buildID = CBuildingHandler::campToERMU(bonDescs[i].info1, faction, std::set<si32>());
  2952. picName = graphics->ERMUtoPicture[faction][buildID];
  2953. picNumber = -1;
  2954. if (vstd::contains(CGI->townh->towns[faction].buildings, buildID))
  2955. desc = CGI->townh->towns[faction].buildings.find(buildID)->second->Description();
  2956. }
  2957. break;
  2958. case CScenarioTravel::STravelBonus::ARTIFACT:
  2959. desc = CGI->generaltexth->allTexts[715];
  2960. boost::algorithm::replace_first(desc, "%s", CGI->arth->artifacts[bonDescs[i].info2]->Name());
  2961. break;
  2962. case CScenarioTravel::STravelBonus::SPELL_SCROLL:
  2963. desc = CGI->generaltexth->allTexts[716];
  2964. boost::algorithm::replace_first(desc, "%s", CGI->spellh->spells[bonDescs[i].info2]->name);
  2965. break;
  2966. case CScenarioTravel::STravelBonus::PRIMARY_SKILL:
  2967. {
  2968. int leadingSkill = -1;
  2969. std::vector<std::pair<int, int> > toPrint; //primary skills to be listed <num, val>
  2970. const ui8* ptr = reinterpret_cast<const ui8*>(&bonDescs[i].info2);
  2971. for (int g=0; g<GameConstants::PRIMARY_SKILLS; ++g)
  2972. {
  2973. if (leadingSkill == -1 || ptr[g] > ptr[leadingSkill])
  2974. {
  2975. leadingSkill = g;
  2976. }
  2977. if (ptr[g] != 0)
  2978. {
  2979. toPrint.push_back(std::make_pair(g, ptr[g]));
  2980. }
  2981. }
  2982. picNumber = leadingSkill;
  2983. desc = CGI->generaltexth->allTexts[715];
  2984. std::string substitute; //text to be printed instead of %s
  2985. for (int v=0; v<toPrint.size(); ++v)
  2986. {
  2987. substitute += boost::lexical_cast<std::string>(toPrint[v].second);
  2988. substitute += " " + CGI->generaltexth->primarySkillNames[toPrint[v].first];
  2989. if(v != toPrint.size() - 1)
  2990. {
  2991. substitute += ", ";
  2992. }
  2993. }
  2994. boost::algorithm::replace_first(desc, "%s", substitute);
  2995. break;
  2996. }
  2997. case CScenarioTravel::STravelBonus::SECONDARY_SKILL:
  2998. desc = CGI->generaltexth->allTexts[718];
  2999. boost::algorithm::replace_first(desc, "%s", CGI->generaltexth->levels[bonDescs[i].info3]); //skill level
  3000. boost::algorithm::replace_first(desc, "%s", CGI->generaltexth->skillName[bonDescs[i].info2]); //skill name
  3001. break;
  3002. case CScenarioTravel::STravelBonus::RESOURCE:
  3003. {
  3004. int serialResID = 0;
  3005. switch(bonDescs[i].info1)
  3006. {
  3007. case 0: case 1: case 2: case 3: case 4: case 5: case 6:
  3008. serialResID = bonDescs[i].info1;
  3009. break;
  3010. case 0xFD: //wood + ore
  3011. serialResID = 7;
  3012. break;
  3013. case 0xFE: //rare resources
  3014. serialResID = 8;
  3015. break;
  3016. }
  3017. picNumber = serialResID;
  3018. desc = CGI->generaltexth->allTexts[717];
  3019. boost::algorithm::replace_first(desc, "%d", boost::lexical_cast<std::string>(bonDescs[i].info2));
  3020. std::string replacement;
  3021. if (serialResID <= 6)
  3022. {
  3023. replacement = CGI->generaltexth->restypes[serialResID];
  3024. }
  3025. else
  3026. {
  3027. replacement = CGI->generaltexth->allTexts[714 + serialResID];
  3028. }
  3029. boost::algorithm::replace_first(desc, "%s", replacement);
  3030. }
  3031. break;
  3032. case CScenarioTravel::STravelBonus::PLAYER_PREV_SCENARIO:
  3033. picNumber = bonDescs[i].info1;
  3034. desc = CGI->generaltexth->allTexts[718];
  3035. boost::algorithm::replace_first(desc, "%s", CGI->generaltexth->capColors[bonDescs[i].info1]); //player color
  3036. boost::algorithm::replace_first(desc, "%s", ourCampaign->camp->scenarios[bonDescs[i].info2].mapName); //scenario
  3037. break;
  3038. case CScenarioTravel::STravelBonus::HERO:
  3039. desc = CGI->generaltexth->allTexts[718];
  3040. boost::algorithm::replace_first(desc, "%s", CGI->generaltexth->capColors[bonDescs[i].info1]); //hero's color
  3041. if (bonDescs[i].info2 == 0xFFFF)
  3042. {
  3043. boost::algorithm::replace_first(desc, "%s", CGI->generaltexth->allTexts[101]); //hero's name
  3044. picNumber = -1;
  3045. picName = "CBONN1A3.BMP";
  3046. }
  3047. else
  3048. {
  3049. boost::algorithm::replace_first(desc, "%s", CGI->heroh->heroes[bonDescs[i].info2]->name); //hero's name
  3050. }
  3051. break;
  3052. }
  3053. CHighlightableButton *bonusButton = new CHighlightableButton(desc, desc, 0, 475 + i*68, 455, "", i);
  3054. if (picNumber != -1)
  3055. picName += ":" + boost::lexical_cast<std::string>(picNumber);
  3056. CAnimation * anim = new CAnimation();
  3057. anim->setCustom(picName, 0);
  3058. bonusButton->setImage(anim);
  3059. const SDL_Color brightYellow = { 242, 226, 110, 0 };
  3060. bonusButton->borderColor = brightYellow;
  3061. bonuses->addButton(bonusButton);
  3062. }
  3063. }
  3064. void CBonusSelection::startMap()
  3065. {
  3066. StartInfo *si = new StartInfo(sInfo);
  3067. if (ourCampaign->mapsConquered.size())
  3068. {
  3069. GH.popInts(1);
  3070. }
  3071. else
  3072. {
  3073. CGP->removeFromGui();
  3074. }
  3075. ::startGame(si);
  3076. }
  3077. void CBonusSelection::selectBonus( int id )
  3078. {
  3079. // Total redraw is needed because the border around the bonus images
  3080. // have to be undrawn/drawn.
  3081. if (id != sInfo.campState->currentBonusID())
  3082. {
  3083. sInfo.campState->chosenCampaignBonuses[sInfo.campState->currentMap] = id;
  3084. GH.totalRedraw();
  3085. updateStartButtonState(id);
  3086. }
  3087. const CCampaignScenario &scenario = ourCampaign->camp->scenarios[sInfo.campState->currentMap];
  3088. const std::vector<CScenarioTravel::STravelBonus> & bonDescs = scenario.travelOptions.bonusesToChoose;
  3089. if (bonDescs[id].type == CScenarioTravel::STravelBonus::HERO)
  3090. {
  3091. std::map<TPlayerColor, std::string> names;
  3092. names[1] = settings["general"]["playerName"].String();
  3093. for(auto it = sInfo.playerInfos.begin(); it != sInfo.playerInfos.end(); ++it)
  3094. {
  3095. if(it->first == bonDescs[id].info1)
  3096. ::setPlayer(it->second, 1, names);
  3097. else
  3098. ::setPlayer(it->second, 0, names);
  3099. }
  3100. }
  3101. }
  3102. void CBonusSelection::changeDiff( bool increase )
  3103. {
  3104. if (increase)
  3105. {
  3106. sInfo.difficulty = std::min(sInfo.difficulty + 1, 4);
  3107. }
  3108. else
  3109. {
  3110. sInfo.difficulty = std::max(sInfo.difficulty - 1, 0);
  3111. }
  3112. }
  3113. void CBonusSelection::updateStartButtonState( int selected /*= -1*/ )
  3114. {
  3115. if(selected == -1)
  3116. startB->setState( ourCampaign->getCurrentScenario().travelOptions.bonusesToChoose.size() ? CButtonBase::BLOCKED : CButtonBase::NORMAL);
  3117. else if(startB->getState() == CButtonBase::BLOCKED)
  3118. startB->setState(CButtonBase::NORMAL);
  3119. }
  3120. CBonusSelection::CRegion::CRegion( CBonusSelection * _owner, bool _accessible, bool _selectable, int _myNumber )
  3121. : owner(_owner), accessible(_accessible), selectable(_selectable), myNumber(_myNumber)
  3122. {
  3123. OBJ_CONSTRUCTION;
  3124. addUsedEvents(LCLICK | RCLICK);
  3125. static const std::string colors[2][8] = {
  3126. {"R", "B", "N", "G", "O", "V", "T", "P"},
  3127. {"Re", "Bl", "Br", "Gr", "Or", "Vi", "Te", "Pi"}};
  3128. const SCampPositions & campDsc = owner->campDescriptions[owner->ourCampaign->camp->header.mapVersion];
  3129. const SCampPositions::SRegionDesc & desc = campDsc.regions[myNumber];
  3130. pos.x += desc.xpos;
  3131. pos.y += desc.ypos;
  3132. //loading of graphics
  3133. std::string prefix = campDsc.campPrefix + desc.infix + "_";
  3134. std::string suffix = colors[campDsc.colorSuffixLength - 1][owner->ourCampaign->camp->scenarios[myNumber].regionColor];
  3135. static const std::string infix [] = {"En", "Se", "Co"};
  3136. for (int g = 0; g < ARRAY_COUNT(infix); g++)
  3137. {
  3138. graphics[g] = BitmapHandler::loadBitmap(prefix + infix[g] + suffix + ".BMP");
  3139. }
  3140. pos.w = graphics[0]->w;
  3141. pos.h = graphics[0]->h;
  3142. }
  3143. CBonusSelection::CRegion::~CRegion()
  3144. {
  3145. for (int g=0; g<ARRAY_COUNT(graphics); ++g)
  3146. {
  3147. SDL_FreeSurface(graphics[g]);
  3148. }
  3149. }
  3150. void CBonusSelection::CRegion::clickLeft( tribool down, bool previousState )
  3151. {
  3152. //select if selectable & clicked inside our graphic
  3153. if ( indeterminate(down) )
  3154. {
  3155. return;
  3156. }
  3157. if( !down && selectable && !CSDL_Ext::isTransparent(graphics[0], GH.current->motion.x-pos.x, GH.current->motion.y-pos.y) )
  3158. {
  3159. owner->selectMap(myNumber);
  3160. owner->highlightedRegion = this;
  3161. parent->showAll(screen);
  3162. }
  3163. }
  3164. void CBonusSelection::CRegion::clickRight( tribool down, bool previousState )
  3165. {
  3166. //show r-click text
  3167. if( down && !CSDL_Ext::isTransparent(graphics[0], GH.current->motion.x-pos.x, GH.current->motion.y-pos.y) &&
  3168. rclickText.size() )
  3169. {
  3170. CRClickPopup::createAndPush(rclickText);
  3171. }
  3172. }
  3173. void CBonusSelection::CRegion::show(SDL_Surface * to)
  3174. {
  3175. //const SCampPositions::SRegionDesc & desc = owner->campDescriptions[owner->ourCampaign->camp->header.mapVersion].regions[myNumber];
  3176. if (!accessible)
  3177. {
  3178. //show as striped
  3179. blitAtLoc(graphics[2], 0, 0, to);
  3180. }
  3181. else if (this == owner->highlightedRegion)
  3182. {
  3183. //show as selected
  3184. blitAtLoc(graphics[1], 0, 0, to);
  3185. }
  3186. else
  3187. {
  3188. //show as not selected selected
  3189. blitAtLoc(graphics[0], 0, 0, to);
  3190. }
  3191. }
  3192. CSavingScreen::CSavingScreen(bool hotseat)
  3193. : CSelectionScreen(CMenuScreen::saveGame, hotseat ? CMenuScreen::MULTI_HOT_SEAT : CMenuScreen::SINGLE_PLAYER)
  3194. {
  3195. ourGame = mapInfoFromGame();
  3196. sInfo = *LOCPLINT->cb->getStartInfo();
  3197. setPlayersFromGame();
  3198. }
  3199. CSavingScreen::~CSavingScreen()
  3200. {
  3201. }
  3202. ISelectionScreenInfo::ISelectionScreenInfo(const std::map<TPlayerColor, std::string> *Names /*= NULL*/)
  3203. {
  3204. multiPlayer = CMenuScreen::SINGLE_PLAYER;
  3205. assert(!SEL);
  3206. SEL = this;
  3207. current = NULL;
  3208. if(Names && Names->size()) //if have custom set of player names - use it
  3209. playerNames = *Names;
  3210. else
  3211. playerNames[1] = settings["general"]["playerName"].String(); //by default we have only one player and his name is "Player" (or whatever the last used name was)
  3212. }
  3213. ISelectionScreenInfo::~ISelectionScreenInfo()
  3214. {
  3215. assert(SEL == this);
  3216. SEL = NULL;
  3217. }
  3218. void ISelectionScreenInfo::updateStartInfo(std::string filename, StartInfo & sInfo, const CMapHeader * mapHeader)
  3219. {
  3220. ::updateStartInfo(filename, sInfo, mapHeader, playerNames);
  3221. }
  3222. void ISelectionScreenInfo::setPlayer(PlayerSettings &pset, TPlayerColor player)
  3223. {
  3224. ::setPlayer(pset, player, playerNames);
  3225. }
  3226. int ISelectionScreenInfo::getIdOfFirstUnallocatedPlayer()
  3227. {
  3228. for(auto i = playerNames.cbegin(); i != playerNames.cend(); i++)
  3229. if(!sInfo.getPlayersSettings(i->first)) //
  3230. return i->first;
  3231. return 0;
  3232. }
  3233. bool ISelectionScreenInfo::isGuest() const
  3234. {
  3235. return multiPlayer == CMenuScreen::MULTI_NETWORK_GUEST;
  3236. }
  3237. bool ISelectionScreenInfo::isHost() const
  3238. {
  3239. return multiPlayer == CMenuScreen::MULTI_NETWORK_HOST;
  3240. }
  3241. void ChatMessage::apply(CSelectionScreen *selScreen)
  3242. {
  3243. selScreen->card->chat->addNewMessage(playerName + ": " + message);
  3244. GH.totalRedraw();
  3245. }
  3246. void QuitMenuWithoutStarting::apply(CSelectionScreen *selScreen)
  3247. {
  3248. if(!selScreen->ongoingClosing)
  3249. {
  3250. *selScreen->serv << this; //resend to confirm
  3251. GH.popIntTotally(selScreen); //will wait with deleting us before this thread ends
  3252. }
  3253. vstd::clear_pointer(selScreen->serv);
  3254. }
  3255. void PlayerJoined::apply(CSelectionScreen *selScreen)
  3256. {
  3257. //assert(SEL->playerNames.size() == connectionID); //temporary, TODO when player exits
  3258. SEL->playerNames[connectionID] = playerName;
  3259. //put new player in first slot with AI
  3260. for(auto i = SEL->sInfo.playerInfos.begin(); i != SEL->sInfo.playerInfos.end(); i++)
  3261. {
  3262. if(!i->second.playerID)
  3263. {
  3264. selScreen->setPlayer(i->second, connectionID);
  3265. selScreen->opt->entries[i->second.color]->selectButtons();
  3266. break;
  3267. }
  3268. }
  3269. selScreen->propagateNames();
  3270. selScreen->propagateOptions();
  3271. GH.totalRedraw();
  3272. }
  3273. void SelectMap::apply(CSelectionScreen *selScreen)
  3274. {
  3275. if(selScreen->multiPlayer == CMenuScreen::MULTI_NETWORK_GUEST)
  3276. {
  3277. free = false;
  3278. selScreen->changeSelection(mapInfo);
  3279. }
  3280. }
  3281. void UpdateStartOptions::apply(CSelectionScreen *selScreen)
  3282. {
  3283. if(!selScreen->isGuest())
  3284. return;
  3285. selScreen->setSInfo(*options);
  3286. }
  3287. void PregameGuiAction::apply(CSelectionScreen *selScreen)
  3288. {
  3289. if(!selScreen->isGuest())
  3290. return;
  3291. switch(action)
  3292. {
  3293. case NO_TAB:
  3294. selScreen->toggleTab(selScreen->curTab);
  3295. break;
  3296. case OPEN_OPTIONS:
  3297. selScreen->toggleTab(selScreen->opt);
  3298. break;
  3299. case OPEN_SCENARIO_LIST:
  3300. selScreen->toggleTab(selScreen->sel);
  3301. break;
  3302. case OPEN_RANDOM_MAP_OPTIONS:
  3303. selScreen->toggleTab(selScreen->randMapTab);
  3304. break;
  3305. }
  3306. }
  3307. void RequestOptionsChange::apply(CSelectionScreen *selScreen)
  3308. {
  3309. if(!selScreen->isHost())
  3310. return;
  3311. ui8 color = selScreen->sInfo.getPlayersSettings(playerID)->color;
  3312. switch(what)
  3313. {
  3314. case TOWN:
  3315. selScreen->opt->nextCastle(color, direction);
  3316. break;
  3317. case HERO:
  3318. selScreen->opt->nextHero(color, direction);
  3319. break;
  3320. case BONUS:
  3321. selScreen->opt->nextBonus(color, direction);
  3322. break;
  3323. }
  3324. }
  3325. void PlayerLeft::apply(CSelectionScreen *selScreen)
  3326. {
  3327. if(selScreen->isGuest())
  3328. return;
  3329. SEL->playerNames.erase(playerID);
  3330. if(PlayerSettings *s = selScreen->sInfo.getPlayersSettings(playerID)) //it's possible that player was unallocated
  3331. {
  3332. selScreen->setPlayer(*s, 0);
  3333. selScreen->opt->entries[s->color]->selectButtons();
  3334. }
  3335. selScreen->propagateNames();
  3336. selScreen->propagateOptions();
  3337. GH.totalRedraw();
  3338. }
  3339. void PlayersNames::apply(CSelectionScreen *selScreen)
  3340. {
  3341. if(selScreen->isGuest())
  3342. selScreen->playerNames = playerNames;
  3343. }
  3344. void StartWithCurrentSettings::apply(CSelectionScreen *selScreen)
  3345. {
  3346. startingInfo.reset();
  3347. startingInfo.serv = selScreen->serv;
  3348. startingInfo.sInfo = new StartInfo(selScreen->sInfo);
  3349. if(!selScreen->ongoingClosing)
  3350. {
  3351. *selScreen->serv << this; //resend to confirm
  3352. }
  3353. selScreen->serv = NULL; //hide it so it won't be deleted
  3354. vstd::clear_pointer(selScreen->serverHandlingThread); //detach us
  3355. saveGameName.clear();
  3356. CGP->removeFromGui();
  3357. ::startGame(startingInfo.sInfo, startingInfo.serv);
  3358. throw 666; //EVIL, EVIL, EVIL workaround to kill thread (does "goto catch" outside listening loop)
  3359. }
  3360. CCampaignScreen::CCampaignButton::CCampaignButton(const JsonNode &config )
  3361. {
  3362. pos.x += config["x"].Float();
  3363. pos.y += config["y"].Float();
  3364. pos.w = 200;
  3365. pos.h = 116;
  3366. campFile = config["file"].String();
  3367. video = config["video"].String();
  3368. //On linux we can only play *.mjpg videos from LOKI release
  3369. #ifdef _WIN32
  3370. std::transform(video.begin(), video.end(), video.begin(), toupper);
  3371. video += ".BIK";
  3372. #else
  3373. std::transform(video.begin(), video.end(), video.begin(), tolower);
  3374. video += ".mjpg";
  3375. #endif
  3376. OBJ_CONSTRUCTION_CAPTURING_ALL;
  3377. status = config["open"].Bool() ? CCampaignScreen::ENABLED : CCampaignScreen::DISABLED;
  3378. CCampaignHeader header = CCampaignHandler::getHeader(campFile);
  3379. hoverText = header.name;
  3380. if (status != CCampaignScreen::DISABLED)
  3381. {
  3382. addUsedEvents(LCLICK | HOVER);
  3383. image = new CPicture(config["image"].String());
  3384. hoverLabel = new CLabel(pos.w / 2, pos.h + 20, FONT_MEDIUM, CENTER, Colors::YELLOW, "");
  3385. parent->addChild(hoverLabel);
  3386. }
  3387. if (status == CCampaignScreen::COMPLETED)
  3388. checkMark = new CPicture("CAMPCHK");
  3389. }
  3390. void CCampaignScreen::CCampaignButton::clickLeft(tribool down, bool previousState)
  3391. {
  3392. if (down)
  3393. {
  3394. // Close running video and open the selected campaign
  3395. CCS->videoh->close();
  3396. GH.pushInt( new CBonusSelection(campFile) );
  3397. }
  3398. }
  3399. void CCampaignScreen::CCampaignButton::hover(bool on)
  3400. {
  3401. if (on)
  3402. hoverLabel->setTxt(hoverText); // Shows the name of the campaign when you get into the bounds of the button
  3403. else
  3404. hoverLabel->setTxt(" ");
  3405. }
  3406. void CCampaignScreen::CCampaignButton::show(SDL_Surface * to)
  3407. {
  3408. if (status == CCampaignScreen::DISABLED)
  3409. return;
  3410. CIntObject::show(to);
  3411. // Play the campaign button video when the mouse cursor is placed over the button
  3412. if (hovered)
  3413. {
  3414. if (CCS->videoh->fname != video)
  3415. CCS->videoh->open(video);
  3416. CCS->videoh->update(pos.x, pos.y, to, true, false); // plays sequentially frame by frame, starts at the beginning when the video is over
  3417. }
  3418. else if (CCS->videoh->fname == video) // When you got out of the bounds of the button then close the video
  3419. {
  3420. CCS->videoh->close();
  3421. redraw();
  3422. }
  3423. }
  3424. CAdventureMapButton* CCampaignScreen::createExitButton(const JsonNode& button)
  3425. {
  3426. std::pair<std::string, std::string> help;
  3427. if (!button["help"].isNull() && button["help"].Float() > 0)
  3428. help = CGI->generaltexth->zelp[button["help"].Float()];
  3429. boost::function<void()> close = boost::bind(&CGuiHandler::popIntTotally, &GH, this);
  3430. return new CAdventureMapButton(help, close, button["x"].Float(), button["y"].Float(), button["name"].String(), button["hotkey"].Float());
  3431. }
  3432. CCampaignScreen::CCampaignScreen(const JsonNode &config)
  3433. {
  3434. OBJ_CONSTRUCTION_CAPTURING_ALL;
  3435. BOOST_FOREACH(const JsonNode& node, config["images"].Vector())
  3436. images.push_back(createPicture(node));
  3437. if (!images.empty())
  3438. {
  3439. images[0]->center(); // move background to center
  3440. moveTo(images[0]->pos.topLeft()); // move everything else to center
  3441. images[0]->moveTo(pos.topLeft()); // restore moved twice background
  3442. pos = images[0]->pos; // fix height\width of this window
  3443. }
  3444. if (!config["exitbutton"].isNull())
  3445. {
  3446. back = createExitButton(config["exitbutton"]);
  3447. back->hoverable = true;
  3448. }
  3449. BOOST_FOREACH(const JsonNode& node, config["items"].Vector())
  3450. campButtons.push_back(new CCampaignButton(node));
  3451. }
  3452. void CCampaignScreen::showAll(SDL_Surface *to)
  3453. {
  3454. CIntObject::showAll(to);
  3455. if (pos.h != to->h || pos.w != to->w)
  3456. CMessage::drawBorder(1, to, pos.w+28, pos.h+30, pos.x-14, pos.y-15);
  3457. }