CPreGame.cpp 101 KB

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