CPreGame.cpp 109 KB

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