CPreGame.cpp 123 KB

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