CPreGame.cpp 117 KB

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