CPlayerInterface.cpp 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. /*
  2. * CPlayerInterface.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "CPlayerInterface.h"
  12. #include <vcmi/Artifact.h>
  13. #include "CGameInfo.h"
  14. #include "CMT.h"
  15. #include "CMusicHandler.h"
  16. #include "CServerHandler.h"
  17. #include "HeroMovementController.h"
  18. #include "PlayerLocalState.h"
  19. #include "adventureMap/AdventureMapInterface.h"
  20. #include "adventureMap/CInGameConsole.h"
  21. #include "adventureMap/CList.h"
  22. #include "battle/BattleEffectsController.h"
  23. #include "battle/BattleFieldController.h"
  24. #include "battle/BattleInterface.h"
  25. #include "battle/BattleInterfaceClasses.h"
  26. #include "battle/BattleWindow.h"
  27. #include "eventsSDL/InputHandler.h"
  28. #include "eventsSDL/NotificationHandler.h"
  29. #include "gui/CGuiHandler.h"
  30. #include "gui/CursorHandler.h"
  31. #include "gui/WindowHandler.h"
  32. #include "mainmenu/CMainMenu.h"
  33. #include "mainmenu/CHighScoreScreen.h"
  34. #include "mapView/mapHandler.h"
  35. #include "render/CAnimation.h"
  36. #include "render/IImage.h"
  37. #include "render/IRenderHandler.h"
  38. #include "widgets/Buttons.h"
  39. #include "widgets/CComponent.h"
  40. #include "widgets/CGarrisonInt.h"
  41. #include "windows/CCastleInterface.h"
  42. #include "windows/CCreatureWindow.h"
  43. #include "windows/CExchangeWindow.h"
  44. #include "windows/CHeroWindow.h"
  45. #include "windows/CKingdomInterface.h"
  46. #include "windows/CMarketWindow.h"
  47. #include "windows/CPuzzleWindow.h"
  48. #include "windows/CQuestLog.h"
  49. #include "windows/CSpellWindow.h"
  50. #include "windows/CTutorialWindow.h"
  51. #include "windows/GUIClasses.h"
  52. #include "windows/InfoWindows.h"
  53. #include "../CCallback.h"
  54. #include "../lib/CArtHandler.h"
  55. #include "../lib/CConfigHandler.h"
  56. #include "../lib/CGeneralTextHandler.h"
  57. #include "../lib/CHeroHandler.h"
  58. #include "../lib/CPlayerState.h"
  59. #include "../lib/CStack.h"
  60. #include "../lib/CStopWatch.h"
  61. #include "../lib/CThreadHelper.h"
  62. #include "../lib/CTownHandler.h"
  63. #include "../lib/GameConstants.h"
  64. #include "../lib/RoadHandler.h"
  65. #include "../lib/StartInfo.h"
  66. #include "../lib/TerrainHandler.h"
  67. #include "../lib/TextOperations.h"
  68. #include "../lib/UnlockGuard.h"
  69. #include "../lib/VCMIDirs.h"
  70. #include "../lib/bonuses/Limiters.h"
  71. #include "../lib/bonuses/Propagators.h"
  72. #include "../lib/bonuses/Updaters.h"
  73. #include "../lib/gameState/CGameState.h"
  74. #include "../lib/mapObjects/CGMarket.h"
  75. #include "../lib/mapObjects/CGTownInstance.h"
  76. #include "../lib/mapObjects/MiscObjects.h"
  77. #include "../lib/mapObjects/ObjectTemplate.h"
  78. #include "../lib/mapping/CMapHeader.h"
  79. #include "../lib/networkPacks/PacksForClient.h"
  80. #include "../lib/networkPacks/PacksForClientBattle.h"
  81. #include "../lib/networkPacks/PacksForServer.h"
  82. #include "../lib/pathfinder/CGPathNode.h"
  83. #include "../lib/serializer/BinaryDeserializer.h"
  84. #include "../lib/serializer/BinarySerializer.h"
  85. #include "../lib/serializer/CTypeList.h"
  86. #include "../lib/spells/CSpellHandler.h"
  87. // The macro below is used to mark functions that are called by client when game state changes.
  88. // They all assume that interface mutex is locked.
  89. #define EVENT_HANDLER_CALLED_BY_CLIENT
  90. #define BATTLE_EVENT_POSSIBLE_RETURN if (LOCPLINT != this) return; if (isAutoFightOn && !battleInt) return
  91. CPlayerInterface * LOCPLINT;
  92. std::shared_ptr<BattleInterface> CPlayerInterface::battleInt;
  93. struct HeroObjectRetriever
  94. {
  95. const CGHeroInstance * operator()(const ConstTransitivePtr<CGHeroInstance> &h) const
  96. {
  97. return h;
  98. }
  99. const CGHeroInstance * operator()(const ConstTransitivePtr<CStackInstance> &s) const
  100. {
  101. return nullptr;
  102. }
  103. };
  104. CPlayerInterface::CPlayerInterface(PlayerColor Player):
  105. localState(std::make_unique<PlayerLocalState>(*this)),
  106. movementController(std::make_unique<HeroMovementController>())
  107. {
  108. logGlobal->trace("\tHuman player interface for player %s being constructed", Player.toString());
  109. GH.defActionsDef = 0;
  110. LOCPLINT = this;
  111. playerID=Player;
  112. human=true;
  113. battleInt.reset();
  114. castleInt = nullptr;
  115. makingTurn = false;
  116. showingDialog = new ConditionalWait();
  117. cingconsole = new CInGameConsole();
  118. firstCall = 1; //if loading will be overwritten in serialize
  119. autosaveCount = 0;
  120. isAutoFightOn = false;
  121. isAutoFightEndBattle = false;
  122. ignoreEvents = false;
  123. numOfMovedArts = 0;
  124. }
  125. CPlayerInterface::~CPlayerInterface()
  126. {
  127. logGlobal->trace("\tHuman player interface for player %s being destructed", playerID.toString());
  128. delete showingDialog;
  129. delete cingconsole;
  130. if (LOCPLINT == this)
  131. LOCPLINT = nullptr;
  132. }
  133. void CPlayerInterface::initGameInterface(std::shared_ptr<Environment> ENV, std::shared_ptr<CCallback> CB)
  134. {
  135. cb = CB;
  136. env = ENV;
  137. CCS->musich->loadTerrainMusicThemes();
  138. initializeHeroTownList();
  139. adventureInt.reset(new AdventureMapInterface());
  140. }
  141. void CPlayerInterface::playerEndsTurn(PlayerColor player)
  142. {
  143. EVENT_HANDLER_CALLED_BY_CLIENT;
  144. if (player == playerID)
  145. {
  146. makingTurn = false;
  147. // remove all active dialogs that do not expect query answer
  148. for (;;)
  149. {
  150. auto adventureWindow = GH.windows().topWindow<AdventureMapInterface>();
  151. auto infoWindow = GH.windows().topWindow<CInfoWindow>();
  152. if(adventureWindow != nullptr)
  153. break;
  154. if(infoWindow && infoWindow->ID != QueryID::NONE)
  155. break;
  156. if (infoWindow)
  157. infoWindow->close();
  158. else
  159. GH.windows().popWindows(1);
  160. }
  161. if(castleInt)
  162. castleInt->close();
  163. castleInt = nullptr;
  164. // remove all pending dialogs that do not expect query answer
  165. vstd::erase_if(dialogs, [](const std::shared_ptr<CInfoWindow> & window){
  166. return window->ID == QueryID::NONE;
  167. });
  168. }
  169. }
  170. void CPlayerInterface::playerStartsTurn(PlayerColor player)
  171. {
  172. if(GH.windows().findWindows<AdventureMapInterface>().empty())
  173. {
  174. // after map load - remove all active windows and replace them with adventure map
  175. GH.windows().clear();
  176. GH.windows().pushWindow(adventureInt);
  177. }
  178. EVENT_HANDLER_CALLED_BY_CLIENT;
  179. if (player != playerID && LOCPLINT == this)
  180. {
  181. waitWhileDialog();
  182. bool isHuman = cb->getStartInfo()->playerInfos.count(player) && cb->getStartInfo()->playerInfos.at(player).isControlledByHuman();
  183. if (makingTurn == false)
  184. adventureInt->onEnemyTurnStarted(player, isHuman);
  185. }
  186. }
  187. void CPlayerInterface::performAutosave()
  188. {
  189. int frequency = static_cast<int>(settings["general"]["saveFrequency"].Integer());
  190. if(frequency > 0 && cb->getDate() % frequency == 0)
  191. {
  192. bool usePrefix = settings["general"]["useSavePrefix"].Bool();
  193. std::string prefix = std::string();
  194. if(usePrefix)
  195. {
  196. prefix = settings["general"]["savePrefix"].String();
  197. if(prefix.empty())
  198. {
  199. std::string name = cb->getMapHeader()->name.toString();
  200. int txtlen = TextOperations::getUnicodeCharactersCount(name);
  201. TextOperations::trimRightUnicode(name, std::max(0, txtlen - 15));
  202. auto const & isSymbolIllegal = [&](char c) {
  203. static const std::string forbiddenChars("\\/:*?\"<>| ");
  204. bool charForbidden = forbiddenChars.find(c) != std::string::npos;
  205. bool charNonprintable = static_cast<unsigned char>(c) < static_cast<unsigned char>(' ');
  206. return charForbidden || charNonprintable;
  207. };
  208. std::replace_if(name.begin(), name.end(), isSymbolIllegal, '_' );
  209. prefix = name + "_" + cb->getStartInfo()->startTimeIso8601 + "/";
  210. }
  211. }
  212. autosaveCount++;
  213. int autosaveCountLimit = settings["general"]["autosaveCountLimit"].Integer();
  214. if(autosaveCountLimit > 0)
  215. {
  216. cb->save("Saves/Autosave/" + prefix + std::to_string(autosaveCount));
  217. autosaveCount %= autosaveCountLimit;
  218. }
  219. else
  220. {
  221. std::string stringifiedDate = std::to_string(cb->getDate(Date::MONTH))
  222. + std::to_string(cb->getDate(Date::WEEK))
  223. + std::to_string(cb->getDate(Date::DAY_OF_WEEK));
  224. cb->save("Saves/Autosave/" + prefix + stringifiedDate);
  225. }
  226. }
  227. }
  228. void CPlayerInterface::gamePause(bool pause)
  229. {
  230. cb->gamePause(pause);
  231. }
  232. void CPlayerInterface::yourTurn(QueryID queryID)
  233. {
  234. CTutorialWindow::openWindowFirstTime(TutorialMode::TOUCH_ADVENTUREMAP);
  235. EVENT_HANDLER_CALLED_BY_CLIENT;
  236. int humanPlayersCount = 0;
  237. for(const auto & info : cb->getStartInfo()->playerInfos)
  238. if (info.second.isControlledByHuman())
  239. humanPlayersCount++;
  240. bool hotseatWait = humanPlayersCount > 1;
  241. LOCPLINT = this;
  242. GH.curInt = this;
  243. NotificationHandler::notify("Your turn");
  244. if(settings["general"]["startTurnAutosave"].Bool())
  245. {
  246. performAutosave();
  247. }
  248. if (hotseatWait) //hot seat or MP message
  249. {
  250. adventureInt->onHotseatWaitStarted(playerID);
  251. makingTurn = true;
  252. std::string msg = CGI->generaltexth->allTexts[13];
  253. boost::replace_first(msg, "%s", cb->getStartInfo()->playerInfos.find(playerID)->second.name);
  254. std::vector<std::shared_ptr<CComponent>> cmp;
  255. cmp.push_back(std::make_shared<CComponent>(ComponentType::FLAG, playerID));
  256. showInfoDialog(msg, cmp);
  257. }
  258. else
  259. {
  260. makingTurn = true;
  261. adventureInt->onPlayerTurnStarted(playerID);
  262. }
  263. acceptTurn(queryID, hotseatWait);
  264. }
  265. void CPlayerInterface::acceptTurn(QueryID queryID, bool hotseatWait)
  266. {
  267. if (settings["session"]["autoSkip"].Bool())
  268. {
  269. while(auto iw = GH.windows().topWindow<CInfoWindow>())
  270. iw->close();
  271. }
  272. if(hotseatWait)
  273. {
  274. waitWhileDialog(); // wait for player to accept turn in hot-seat mode
  275. adventureInt->onPlayerTurnStarted(playerID);
  276. }
  277. // warn player if he has no town
  278. if (cb->howManyTowns() == 0)
  279. {
  280. auto playerColor = *cb->getPlayerID();
  281. std::vector<Component> components;
  282. components.emplace_back(ComponentType::FLAG, playerColor);
  283. MetaString text;
  284. const auto & optDaysWithoutCastle = cb->getPlayerState(playerColor)->daysWithoutCastle;
  285. if(optDaysWithoutCastle)
  286. {
  287. auto daysWithoutCastle = optDaysWithoutCastle.value();
  288. if (daysWithoutCastle < 6)
  289. {
  290. text.appendLocalString(EMetaText::ARRAY_TXT,128); //%s, you only have %d days left to capture a town or you will be banished from this land.
  291. text.replaceName(playerColor);
  292. text.replaceNumber(7 - daysWithoutCastle);
  293. }
  294. else if (daysWithoutCastle == 6)
  295. {
  296. text.appendLocalString(EMetaText::ARRAY_TXT,129); //%s, this is your last day to capture a town or you will be banished from this land.
  297. text.replaceName(playerColor);
  298. }
  299. showInfoDialogAndWait(components, text);
  300. }
  301. else
  302. logGlobal->warn("Player has no towns, but daysWithoutCastle is not set");
  303. }
  304. cb->selectionMade(0, queryID);
  305. movementController->onPlayerTurnStarted();
  306. }
  307. void CPlayerInterface::heroMoved(const TryMoveHero & details, bool verbose)
  308. {
  309. EVENT_HANDLER_CALLED_BY_CLIENT;
  310. waitWhileDialog();
  311. if(LOCPLINT != this)
  312. return;
  313. //FIXME: read once and store
  314. if(settings["session"]["spectate"].Bool() && settings["session"]["spectate-ignore-hero"].Bool())
  315. return;
  316. const CGHeroInstance * hero = cb->getHero(details.id); //object representing this hero
  317. if (!hero)
  318. return;
  319. movementController->onTryMoveHero(hero, details);
  320. }
  321. void CPlayerInterface::heroKilled(const CGHeroInstance* hero)
  322. {
  323. EVENT_HANDLER_CALLED_BY_CLIENT;
  324. LOG_TRACE_PARAMS(logGlobal, "Hero %s killed handler for player %s", hero->getNameTranslated() % playerID);
  325. // if hero is not in town garrison
  326. if (vstd::contains(localState->getWanderingHeroes(), hero))
  327. localState->removeWanderingHero(hero);
  328. adventureInt->onHeroChanged(hero);
  329. localState->erasePath(hero);
  330. }
  331. void CPlayerInterface::heroVisit(const CGHeroInstance * visitor, const CGObjectInstance * visitedObj, bool start)
  332. {
  333. EVENT_HANDLER_CALLED_BY_CLIENT;
  334. if(start && visitedObj)
  335. {
  336. if(visitedObj->getVisitSound())
  337. CCS->soundh->playSound(visitedObj->getVisitSound().value());
  338. }
  339. }
  340. void CPlayerInterface::heroCreated(const CGHeroInstance * hero)
  341. {
  342. EVENT_HANDLER_CALLED_BY_CLIENT;
  343. localState->addWanderingHero(hero);
  344. adventureInt->onHeroChanged(hero);
  345. }
  346. void CPlayerInterface::openTownWindow(const CGTownInstance * town)
  347. {
  348. if(castleInt)
  349. castleInt->close();
  350. castleInt = nullptr;
  351. auto newCastleInt = std::make_shared<CCastleInterface>(town);
  352. GH.windows().pushWindow(newCastleInt);
  353. }
  354. void CPlayerInterface::heroPrimarySkillChanged(const CGHeroInstance * hero, PrimarySkill which, si64 val)
  355. {
  356. EVENT_HANDLER_CALLED_BY_CLIENT;
  357. if (which == PrimarySkill::EXPERIENCE)
  358. {
  359. for(auto ctw : GH.windows().findWindows<CMarketWindow>())
  360. ctw->updateHero();
  361. }
  362. else
  363. adventureInt->onHeroChanged(hero);
  364. }
  365. void CPlayerInterface::heroSecondarySkillChanged(const CGHeroInstance * hero, int which, int val)
  366. {
  367. EVENT_HANDLER_CALLED_BY_CLIENT;
  368. for (auto cuw : GH.windows().findWindows<CUniversityWindow>())
  369. cuw->redraw();
  370. }
  371. void CPlayerInterface::heroManaPointsChanged(const CGHeroInstance * hero)
  372. {
  373. EVENT_HANDLER_CALLED_BY_CLIENT;
  374. adventureInt->onHeroChanged(hero);
  375. if (makingTurn && hero->tempOwner == playerID)
  376. adventureInt->onHeroChanged(hero);
  377. }
  378. void CPlayerInterface::heroMovePointsChanged(const CGHeroInstance * hero)
  379. {
  380. EVENT_HANDLER_CALLED_BY_CLIENT;
  381. if (makingTurn && hero->tempOwner == playerID)
  382. adventureInt->onHeroChanged(hero);
  383. }
  384. void CPlayerInterface::receivedResource()
  385. {
  386. EVENT_HANDLER_CALLED_BY_CLIENT;
  387. for (auto mw : GH.windows().findWindows<CMarketWindow>())
  388. mw->updateResource();
  389. GH.windows().totalRedraw();
  390. }
  391. void CPlayerInterface::heroGotLevel(const CGHeroInstance *hero, PrimarySkill pskill, std::vector<SecondarySkill>& skills, QueryID queryID)
  392. {
  393. EVENT_HANDLER_CALLED_BY_CLIENT;
  394. waitWhileDialog();
  395. CCS->soundh->playSound(soundBase::heroNewLevel);
  396. GH.windows().createAndPushWindow<CLevelWindow>(hero, pskill, skills, [=](ui32 selection)
  397. {
  398. cb->selectionMade(selection, queryID);
  399. });
  400. }
  401. void CPlayerInterface::commanderGotLevel (const CCommanderInstance * commander, std::vector<ui32> skills, QueryID queryID)
  402. {
  403. EVENT_HANDLER_CALLED_BY_CLIENT;
  404. waitWhileDialog();
  405. CCS->soundh->playSound(soundBase::heroNewLevel);
  406. GH.windows().createAndPushWindow<CStackWindow>(commander, skills, [=](ui32 selection)
  407. {
  408. cb->selectionMade(selection, queryID);
  409. });
  410. }
  411. void CPlayerInterface::heroInGarrisonChange(const CGTownInstance *town)
  412. {
  413. EVENT_HANDLER_CALLED_BY_CLIENT;
  414. if(town->garrisonHero) //wandering hero moved to the garrison
  415. {
  416. // This method also gets called on hero recruitment -> garrisoned hero is already in garrison
  417. if(town->garrisonHero->tempOwner == playerID && vstd::contains(localState->getWanderingHeroes(), town->garrisonHero))
  418. localState->removeWanderingHero(town->garrisonHero);
  419. }
  420. if(town->visitingHero) //hero leaves garrison
  421. {
  422. // This method also gets called on hero recruitment -> wandering heroes already contains new hero
  423. if(town->visitingHero->tempOwner == playerID && !vstd::contains(localState->getWanderingHeroes(), town->visitingHero))
  424. localState->addWanderingHero(town->visitingHero);
  425. }
  426. adventureInt->onHeroChanged(nullptr);
  427. adventureInt->onTownChanged(town);
  428. for (auto cgh : GH.windows().findWindows<IGarrisonHolder>())
  429. if (cgh->holdsGarrison(town))
  430. cgh->updateGarrisons();
  431. for (auto ki : GH.windows().findWindows<CKingdomInterface>())
  432. ki->townChanged(town);
  433. // Perform totalRedraw to update hero list on adventure map, if any dialogs are open
  434. GH.windows().totalRedraw();
  435. }
  436. void CPlayerInterface::heroVisitsTown(const CGHeroInstance* hero, const CGTownInstance * town)
  437. {
  438. EVENT_HANDLER_CALLED_BY_CLIENT;
  439. if (hero->tempOwner != playerID )
  440. return;
  441. waitWhileDialog();
  442. openTownWindow(town);
  443. }
  444. void CPlayerInterface::garrisonsChanged(ObjectInstanceID id1, ObjectInstanceID id2)
  445. {
  446. std::vector<const CArmedInstance *> instances;
  447. if(auto obj = dynamic_cast<const CArmedInstance *>(cb->getObjInstance(id1)))
  448. instances.push_back(obj);
  449. if(id2 != ObjectInstanceID() && id2 != id1)
  450. {
  451. if(auto obj = dynamic_cast<const CArmedInstance *>(cb->getObjInstance(id2)))
  452. instances.push_back(obj);
  453. }
  454. garrisonsChanged(instances);
  455. }
  456. void CPlayerInterface::garrisonsChanged(std::vector<const CArmedInstance *> objs)
  457. {
  458. for (auto object : objs)
  459. {
  460. auto * hero = dynamic_cast<const CGHeroInstance*>(object);
  461. auto * town = dynamic_cast<const CGTownInstance*>(object);
  462. if (town)
  463. adventureInt->onTownChanged(town);
  464. if (hero)
  465. {
  466. adventureInt->onHeroChanged(hero);
  467. if(hero->inTownGarrison && hero->visitedTown != town)
  468. adventureInt->onTownChanged(hero->visitedTown);
  469. }
  470. }
  471. for (auto cgh : GH.windows().findWindows<IGarrisonHolder>())
  472. if (cgh->holdsGarrisons(objs))
  473. cgh->updateGarrisons();
  474. GH.windows().totalRedraw();
  475. }
  476. void CPlayerInterface::buildChanged(const CGTownInstance *town, BuildingID buildingID, int what) //what: 1 - built, 2 - demolished
  477. {
  478. EVENT_HANDLER_CALLED_BY_CLIENT;
  479. adventureInt->onTownChanged(town);
  480. if (castleInt)
  481. {
  482. castleInt->townlist->updateElement(town);
  483. if (castleInt->town == town)
  484. {
  485. switch(what)
  486. {
  487. case 1:
  488. CCS->soundh->playSound(soundBase::newBuilding);
  489. castleInt->addBuilding(buildingID);
  490. break;
  491. case 2:
  492. castleInt->removeBuilding(buildingID);
  493. break;
  494. }
  495. }
  496. // Perform totalRedraw in order to force redraw of updated town list icon from adventure map
  497. GH.windows().totalRedraw();
  498. }
  499. for (auto cgh : GH.windows().findWindows<ITownHolder>())
  500. cgh->buildChanged();
  501. }
  502. void CPlayerInterface::battleStartBefore(const BattleID & battleID, const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2)
  503. {
  504. movementController->onBattleStarted();
  505. //Don't wait for dialogs when we are non-active hot-seat player
  506. if (LOCPLINT == this)
  507. waitForAllDialogs();
  508. }
  509. void CPlayerInterface::battleStart(const BattleID & battleID, const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool side, bool replayAllowed)
  510. {
  511. EVENT_HANDLER_CALLED_BY_CLIENT;
  512. bool useQuickCombat = settings["adventure"]["quickCombat"].Bool();
  513. bool forceQuickCombat = settings["adventure"]["forceQuickCombat"].Bool();
  514. if ((replayAllowed && useQuickCombat) || forceQuickCombat)
  515. {
  516. autofightingAI = CDynLibHandler::getNewBattleAI(settings["server"]["friendlyAI"].String());
  517. AutocombatPreferences autocombatPreferences = AutocombatPreferences();
  518. autocombatPreferences.enableSpellsUsage = settings["battle"]["enableAutocombatSpells"].Bool();
  519. autofightingAI->initBattleInterface(env, cb, autocombatPreferences);
  520. autofightingAI->battleStart(battleID, army1, army2, tile, hero1, hero2, side, false);
  521. isAutoFightOn = true;
  522. cb->registerBattleInterface(autofightingAI);
  523. }
  524. //Don't wait for dialogs when we are non-active hot-seat player
  525. if (LOCPLINT == this)
  526. waitForAllDialogs();
  527. BATTLE_EVENT_POSSIBLE_RETURN;
  528. }
  529. void CPlayerInterface::battleUnitsChanged(const BattleID & battleID, const std::vector<UnitChanges> & units)
  530. {
  531. EVENT_HANDLER_CALLED_BY_CLIENT;
  532. BATTLE_EVENT_POSSIBLE_RETURN;
  533. for(auto & info : units)
  534. {
  535. switch(info.operation)
  536. {
  537. case UnitChanges::EOperation::RESET_STATE:
  538. {
  539. const CStack * stack = cb->getBattle(battleID)->battleGetStackByID(info.id );
  540. if(!stack)
  541. {
  542. logGlobal->error("Invalid unit ID %d", info.id);
  543. continue;
  544. }
  545. battleInt->stackReset(stack);
  546. }
  547. break;
  548. case UnitChanges::EOperation::REMOVE:
  549. battleInt->stackRemoved(info.id);
  550. break;
  551. case UnitChanges::EOperation::ADD:
  552. {
  553. const CStack * unit = cb->getBattle(battleID)->battleGetStackByID(info.id);
  554. if(!unit)
  555. {
  556. logGlobal->error("Invalid unit ID %d", info.id);
  557. continue;
  558. }
  559. battleInt->stackAdded(unit);
  560. }
  561. break;
  562. default:
  563. logGlobal->error("Unknown unit operation %d", (int)info.operation);
  564. break;
  565. }
  566. }
  567. }
  568. void CPlayerInterface::battleObstaclesChanged(const BattleID & battleID, const std::vector<ObstacleChanges> & obstacles)
  569. {
  570. EVENT_HANDLER_CALLED_BY_CLIENT;
  571. BATTLE_EVENT_POSSIBLE_RETURN;
  572. std::vector<std::shared_ptr<const CObstacleInstance>> newObstacles;
  573. std::vector<ObstacleChanges> removedObstacles;
  574. for(auto & change : obstacles)
  575. {
  576. if(change.operation == BattleChanges::EOperation::ADD)
  577. {
  578. auto instance = cb->getBattle(battleID)->battleGetObstacleByID(change.id);
  579. if(instance)
  580. newObstacles.push_back(instance);
  581. else
  582. logNetwork->error("Invalid obstacle instance %d", change.id);
  583. }
  584. if(change.operation == BattleChanges::EOperation::REMOVE)
  585. removedObstacles.push_back(change); //Obstacles are already removed, so, show animation based on json struct
  586. }
  587. if (!newObstacles.empty())
  588. battleInt->obstaclePlaced(newObstacles);
  589. if (!removedObstacles.empty())
  590. battleInt->obstacleRemoved(removedObstacles);
  591. battleInt->fieldController->redrawBackgroundWithHexes();
  592. }
  593. void CPlayerInterface::battleCatapultAttacked(const BattleID & battleID, const CatapultAttack & ca)
  594. {
  595. EVENT_HANDLER_CALLED_BY_CLIENT;
  596. BATTLE_EVENT_POSSIBLE_RETURN;
  597. battleInt->stackIsCatapulting(ca);
  598. }
  599. void CPlayerInterface::battleNewRound(const BattleID & battleID) //called at the beginning of each turn, round=-1 is the tactic phase, round=0 is the first "normal" turn
  600. {
  601. EVENT_HANDLER_CALLED_BY_CLIENT;
  602. BATTLE_EVENT_POSSIBLE_RETURN;
  603. battleInt->newRound();
  604. }
  605. void CPlayerInterface::actionStarted(const BattleID & battleID, const BattleAction &action)
  606. {
  607. EVENT_HANDLER_CALLED_BY_CLIENT;
  608. BATTLE_EVENT_POSSIBLE_RETURN;
  609. battleInt->startAction(action);
  610. }
  611. void CPlayerInterface::actionFinished(const BattleID & battleID, const BattleAction &action)
  612. {
  613. EVENT_HANDLER_CALLED_BY_CLIENT;
  614. BATTLE_EVENT_POSSIBLE_RETURN;
  615. battleInt->endAction(action);
  616. }
  617. void CPlayerInterface::activeStack(const BattleID & battleID, const CStack * stack) //called when it's turn of that stack
  618. {
  619. EVENT_HANDLER_CALLED_BY_CLIENT;
  620. logGlobal->trace("Awaiting command for %s", stack->nodeName());
  621. assert(!cb->getBattle(battleID)->battleIsFinished());
  622. if (cb->getBattle(battleID)->battleIsFinished())
  623. {
  624. logGlobal->error("Received CPlayerInterface::activeStack after battle is finished!");
  625. cb->battleMakeUnitAction(battleID, BattleAction::makeDefend(stack));
  626. return ;
  627. }
  628. if (autofightingAI)
  629. {
  630. if (isAutoFightOn)
  631. {
  632. //FIXME: we want client rendering to proceed while AI is making actions
  633. // so unlock mutex while AI is busy since this might take quite a while, especially if hero has many spells
  634. auto unlockInterface = vstd::makeUnlockGuard(GH.interfaceMutex);
  635. autofightingAI->activeStack(battleID, stack);
  636. return;
  637. }
  638. cb->unregisterBattleInterface(autofightingAI);
  639. autofightingAI.reset();
  640. }
  641. assert(battleInt);
  642. if(!battleInt)
  643. {
  644. // probably battle is finished already
  645. cb->battleMakeUnitAction(battleID, BattleAction::makeDefend(stack));
  646. }
  647. battleInt->stackActivated(stack);
  648. }
  649. void CPlayerInterface::battleEnd(const BattleID & battleID, const BattleResult *br, QueryID queryID)
  650. {
  651. EVENT_HANDLER_CALLED_BY_CLIENT;
  652. if(isAutoFightOn || autofightingAI)
  653. {
  654. isAutoFightOn = false;
  655. cb->unregisterBattleInterface(autofightingAI);
  656. autofightingAI.reset();
  657. if(!battleInt)
  658. {
  659. bool allowManualReplay = queryID != QueryID::NONE && !isAutoFightEndBattle;
  660. auto wnd = std::make_shared<BattleResultWindow>(*br, *this, allowManualReplay);
  661. if (allowManualReplay || isAutoFightEndBattle)
  662. {
  663. wnd->resultCallback = [=](ui32 selection)
  664. {
  665. cb->selectionMade(selection, queryID);
  666. };
  667. }
  668. isAutoFightEndBattle = false;
  669. GH.windows().pushWindow(wnd);
  670. // #1490 - during AI turn when quick combat is on, we need to display the message and wait for user to close it.
  671. // Otherwise NewTurn causes freeze.
  672. waitWhileDialog();
  673. return;
  674. }
  675. }
  676. BATTLE_EVENT_POSSIBLE_RETURN;
  677. battleInt->battleFinished(*br, queryID);
  678. }
  679. void CPlayerInterface::battleLogMessage(const BattleID & battleID, const std::vector<MetaString> & lines)
  680. {
  681. EVENT_HANDLER_CALLED_BY_CLIENT;
  682. BATTLE_EVENT_POSSIBLE_RETURN;
  683. battleInt->displayBattleLog(lines);
  684. }
  685. void CPlayerInterface::battleStackMoved(const BattleID & battleID, const CStack * stack, std::vector<BattleHex> dest, int distance, bool teleport)
  686. {
  687. EVENT_HANDLER_CALLED_BY_CLIENT;
  688. BATTLE_EVENT_POSSIBLE_RETURN;
  689. battleInt->stackMoved(stack, dest, distance, teleport);
  690. }
  691. void CPlayerInterface::battleSpellCast(const BattleID & battleID, const BattleSpellCast * sc)
  692. {
  693. EVENT_HANDLER_CALLED_BY_CLIENT;
  694. BATTLE_EVENT_POSSIBLE_RETURN;
  695. battleInt->spellCast(sc);
  696. }
  697. void CPlayerInterface::battleStacksEffectsSet(const BattleID & battleID, const SetStackEffect & sse)
  698. {
  699. EVENT_HANDLER_CALLED_BY_CLIENT;
  700. BATTLE_EVENT_POSSIBLE_RETURN;
  701. battleInt->battleStacksEffectsSet(sse);
  702. }
  703. void CPlayerInterface::battleTriggerEffect(const BattleID & battleID, const BattleTriggerEffect & bte)
  704. {
  705. EVENT_HANDLER_CALLED_BY_CLIENT;
  706. BATTLE_EVENT_POSSIBLE_RETURN;
  707. battleInt->effectsController->battleTriggerEffect(bte);
  708. if(bte.effect == vstd::to_underlying(BonusType::MANA_DRAIN))
  709. {
  710. const CGHeroInstance * manaDrainedHero = LOCPLINT->cb->getHero(ObjectInstanceID(bte.additionalInfo));
  711. battleInt->windowObject->heroManaPointsChanged(manaDrainedHero);
  712. }
  713. }
  714. void CPlayerInterface::battleStacksAttacked(const BattleID & battleID, const std::vector<BattleStackAttacked> & bsa, bool ranged)
  715. {
  716. EVENT_HANDLER_CALLED_BY_CLIENT;
  717. BATTLE_EVENT_POSSIBLE_RETURN;
  718. std::vector<StackAttackedInfo> arg;
  719. for(auto & elem : bsa)
  720. {
  721. const CStack * defender = cb->getBattle(battleID)->battleGetStackByID(elem.stackAttacked, false);
  722. const CStack * attacker = cb->getBattle(battleID)->battleGetStackByID(elem.attackerID, false);
  723. assert(defender);
  724. StackAttackedInfo info;
  725. info.defender = defender;
  726. info.attacker = attacker;
  727. info.damageDealt = elem.damageAmount;
  728. info.amountKilled = elem.killedAmount;
  729. info.spellEffect = SpellID::NONE;
  730. info.indirectAttack = ranged;
  731. info.killed = elem.killed();
  732. info.rebirth = elem.willRebirth();
  733. info.cloneKilled = elem.cloneKilled();
  734. info.fireShield = elem.fireShield();
  735. if (elem.isSpell())
  736. info.spellEffect = elem.spellID;
  737. arg.push_back(info);
  738. }
  739. battleInt->stacksAreAttacked(arg);
  740. }
  741. void CPlayerInterface::battleAttack(const BattleID & battleID, const BattleAttack * ba)
  742. {
  743. EVENT_HANDLER_CALLED_BY_CLIENT;
  744. BATTLE_EVENT_POSSIBLE_RETURN;
  745. StackAttackInfo info;
  746. info.attacker = cb->getBattle(battleID)->battleGetStackByID(ba->stackAttacking);
  747. info.defender = nullptr;
  748. info.indirectAttack = ba->shot();
  749. info.lucky = ba->lucky();
  750. info.unlucky = ba->unlucky();
  751. info.deathBlow = ba->deathBlow();
  752. info.lifeDrain = ba->lifeDrain();
  753. info.tile = ba->tile;
  754. info.spellEffect = SpellID::NONE;
  755. if (ba->spellLike())
  756. info.spellEffect = ba->spellID;
  757. for(auto & elem : ba->bsa)
  758. {
  759. if(!elem.isSecondary())
  760. {
  761. assert(info.defender == nullptr);
  762. info.defender = cb->getBattle(battleID)->battleGetStackByID(elem.stackAttacked);
  763. }
  764. else
  765. {
  766. info.secondaryDefender.push_back(cb->getBattle(battleID)->battleGetStackByID(elem.stackAttacked));
  767. }
  768. }
  769. assert(info.defender != nullptr);
  770. assert(info.attacker != nullptr);
  771. battleInt->stackAttacking(info);
  772. }
  773. void CPlayerInterface::battleGateStateChanged(const BattleID & battleID, const EGateState state)
  774. {
  775. EVENT_HANDLER_CALLED_BY_CLIENT;
  776. BATTLE_EVENT_POSSIBLE_RETURN;
  777. battleInt->gateStateChanged(state);
  778. }
  779. void CPlayerInterface::yourTacticPhase(const BattleID & battleID, int distance)
  780. {
  781. EVENT_HANDLER_CALLED_BY_CLIENT;
  782. }
  783. void CPlayerInterface::showInfoDialog(EInfoWindowMode type, const std::string &text, const std::vector<Component> & components, int soundID)
  784. {
  785. EVENT_HANDLER_CALLED_BY_CLIENT;
  786. bool autoTryHover = settings["gameTweaks"]["infoBarPick"].Bool() && type == EInfoWindowMode::AUTO;
  787. auto timer = type == EInfoWindowMode::INFO ? 3000 : 4500; //Implement long info windows like in HD mod
  788. if(autoTryHover || type == EInfoWindowMode::INFO)
  789. {
  790. waitWhileDialog(); //Fix for mantis #98
  791. adventureInt->showInfoBoxMessage(components, text, timer);
  792. // abort movement, if any. Strictly speaking unnecessary, but prevents some edge cases, like movement sound on visiting Magi Hut with "show messages in status window" on
  793. movementController->requestMovementAbort();
  794. if (makingTurn && GH.windows().count() > 0 && LOCPLINT == this)
  795. CCS->soundh->playSound(static_cast<soundBase::soundID>(soundID));
  796. return;
  797. }
  798. if (settings["session"]["autoSkip"].Bool() && !GH.isKeyboardShiftDown())
  799. {
  800. return;
  801. }
  802. std::vector<Component> vect = components; //I do not know currently how to avoid copy here
  803. do
  804. {
  805. std::vector<Component> sender = {vect.begin(), vect.begin() + std::min(vect.size(), static_cast<size_t>(8))};
  806. std::vector<std::shared_ptr<CComponent>> intComps;
  807. for (auto & component : sender)
  808. intComps.push_back(std::make_shared<CComponent>(component));
  809. showInfoDialog(text,intComps,soundID);
  810. vect.erase(vect.begin(), vect.begin() + std::min(vect.size(), static_cast<size_t>(8)));
  811. }
  812. while(!vect.empty());
  813. }
  814. void CPlayerInterface::showInfoDialog(const std::string & text, std::shared_ptr<CComponent> component)
  815. {
  816. std::vector<std::shared_ptr<CComponent>> intComps;
  817. intComps.push_back(component);
  818. showInfoDialog(text, intComps, soundBase::sound_todo);
  819. }
  820. void CPlayerInterface::showInfoDialog(const std::string &text, const std::vector<std::shared_ptr<CComponent>> & components, int soundID)
  821. {
  822. LOG_TRACE_PARAMS(logGlobal, "player=%s, text=%s, is LOCPLINT=%d", playerID % text % (this==LOCPLINT));
  823. waitWhileDialog();
  824. if (settings["session"]["autoSkip"].Bool() && !GH.isKeyboardShiftDown())
  825. {
  826. return;
  827. }
  828. std::shared_ptr<CInfoWindow> temp = CInfoWindow::create(text, playerID, components);
  829. if (makingTurn && GH.windows().count() > 0 && LOCPLINT == this)
  830. {
  831. CCS->soundh->playSound(static_cast<soundBase::soundID>(soundID));
  832. showingDialog->setBusy();
  833. movementController->requestMovementAbort(); // interrupt movement to show dialog
  834. GH.windows().pushWindow(temp);
  835. }
  836. else
  837. {
  838. dialogs.push_back(temp);
  839. }
  840. }
  841. void CPlayerInterface::showInfoDialogAndWait(std::vector<Component> & components, const MetaString & text)
  842. {
  843. EVENT_HANDLER_CALLED_BY_CLIENT;
  844. std::string str = text.toString();
  845. showInfoDialog(EInfoWindowMode::MODAL, str, components, 0);
  846. waitWhileDialog();
  847. }
  848. void CPlayerInterface::showYesNoDialog(const std::string &text, CFunctionList<void()> onYes, CFunctionList<void()> onNo, const std::vector<std::shared_ptr<CComponent>> & components)
  849. {
  850. movementController->requestMovementAbort();
  851. LOCPLINT->showingDialog->setBusy();
  852. CInfoWindow::showYesNoDialog(text, components, onYes, onNo, playerID);
  853. }
  854. void CPlayerInterface::showBlockingDialog(const std::string &text, const std::vector<Component> &components, QueryID askID, const int soundID, bool selection, bool cancel, bool safeToAutoaccept)
  855. {
  856. EVENT_HANDLER_CALLED_BY_CLIENT;
  857. waitWhileDialog();
  858. movementController->requestMovementAbort();
  859. CCS->soundh->playSound(static_cast<soundBase::soundID>(soundID));
  860. if (!selection && cancel) //simple yes/no dialog
  861. {
  862. if(settings["general"]["enableUiEnhancements"].Bool() && safeToAutoaccept)
  863. {
  864. cb->selectionMade(1, askID); //as in HD mod, we try to skip dialogs that server considers visual fluff which does not affect gamestate
  865. return;
  866. }
  867. std::vector<std::shared_ptr<CComponent>> intComps;
  868. for (auto & component : components)
  869. intComps.push_back(std::make_shared<CComponent>(component)); //will be deleted by close in window
  870. showYesNoDialog(text, [=](){ cb->selectionMade(1, askID); }, [=](){ cb->selectionMade(0, askID); }, intComps);
  871. }
  872. else if (selection)
  873. {
  874. std::vector<std::shared_ptr<CSelectableComponent>> intComps;
  875. for (auto & component : components)
  876. intComps.push_back(std::make_shared<CSelectableComponent>(component)); //will be deleted by CSelWindow::close
  877. std::vector<std::pair<AnimationPath,CFunctionList<void()> > > pom;
  878. pom.push_back({ AnimationPath::builtin("IOKAY.DEF"),0});
  879. if (cancel)
  880. {
  881. pom.push_back({AnimationPath::builtin("ICANCEL.DEF"),0});
  882. }
  883. int charperline = 35;
  884. if (pom.size() > 1)
  885. charperline = 50;
  886. GH.windows().createAndPushWindow<CSelWindow>(text, playerID, charperline, intComps, pom, askID);
  887. intComps[0]->clickPressed(GH.getCursorPosition());
  888. intComps[0]->clickReleased(GH.getCursorPosition());
  889. }
  890. }
  891. void CPlayerInterface::showTeleportDialog(const CGHeroInstance * hero, TeleportChannelID channel, TTeleportExitsList exits, bool impassable, QueryID askID)
  892. {
  893. EVENT_HANDLER_CALLED_BY_CLIENT;
  894. movementController->showTeleportDialog(hero, channel, exits, impassable, askID);
  895. }
  896. void CPlayerInterface::showMapObjectSelectDialog(QueryID askID, const Component & icon, const MetaString & title, const MetaString & description, const std::vector<ObjectInstanceID> & objects)
  897. {
  898. EVENT_HANDLER_CALLED_BY_CLIENT;
  899. std::vector<ObjectInstanceID> objectGuiOrdered = objects;
  900. std::map<ObjectInstanceID, int> townOrder;
  901. auto ownedTowns = localState->getOwnedTowns();
  902. for (int i = 0; i < ownedTowns.size(); ++i)
  903. townOrder[ownedTowns[i]->id] = i;
  904. auto townComparator = [&townOrder](const ObjectInstanceID & left, const ObjectInstanceID & right){
  905. uint32_t leftIndex= townOrder.count(left) ? townOrder.at(left) : std::numeric_limits<uint32_t>::max();
  906. uint32_t rightIndex = townOrder.count(right) ? townOrder.at(right) : std::numeric_limits<uint32_t>::max();
  907. return leftIndex < rightIndex;
  908. };
  909. std::stable_sort(objectGuiOrdered.begin(), objectGuiOrdered.end(), townComparator);
  910. auto selectCallback = [=](int selection)
  911. {
  912. cb->sendQueryReply(selection, askID);
  913. };
  914. auto cancelCallback = [=]()
  915. {
  916. cb->sendQueryReply(std::nullopt, askID);
  917. };
  918. const std::string localTitle = title.toString();
  919. const std::string localDescription = description.toString();
  920. std::vector<int> tempList;
  921. tempList.reserve(objectGuiOrdered.size());
  922. for(auto item : objectGuiOrdered)
  923. tempList.push_back(item.getNum());
  924. CComponent localIconC(icon);
  925. std::shared_ptr<CIntObject> localIcon = localIconC.image;
  926. localIconC.removeChild(localIcon.get(), false);
  927. std::vector<std::shared_ptr<IImage>> images;
  928. for(auto & obj : objectGuiOrdered)
  929. {
  930. if(!settings["general"]["enableUiEnhancements"].Bool())
  931. break;
  932. const CGTownInstance * t = dynamic_cast<const CGTownInstance *>(cb->getObj(obj));
  933. if(t)
  934. {
  935. std::shared_ptr<CAnimation> a = GH.renderHandler().loadAnimation(AnimationPath::builtin("ITPA"));
  936. a->preload();
  937. images.push_back(a->getImage(t->town->clientInfo.icons[t->hasFort()][false] + 2)->scaleFast(Point(35, 23)));
  938. }
  939. }
  940. auto wnd = std::make_shared<CObjectListWindow>(tempList, localIcon, localTitle, localDescription, selectCallback, 0, images);
  941. wnd->onExit = cancelCallback;
  942. wnd->onPopup = [this, objectGuiOrdered](int index) { CRClickPopup::createAndPush(cb->getObj(objectGuiOrdered[index]), GH.getCursorPosition()); };
  943. wnd->onClicked = [this, objectGuiOrdered](int index) { adventureInt->centerOnObject(cb->getObj(objectGuiOrdered[index])); GH.windows().totalRedraw(); };
  944. GH.windows().pushWindow(wnd);
  945. }
  946. void CPlayerInterface::tileRevealed(const std::unordered_set<int3> &pos)
  947. {
  948. EVENT_HANDLER_CALLED_BY_CLIENT;
  949. //FIXME: wait for dialog? Magi hut/eye would benefit from this but may break other areas
  950. adventureInt->onMapTilesChanged(pos);
  951. }
  952. void CPlayerInterface::tileHidden(const std::unordered_set<int3> &pos)
  953. {
  954. EVENT_HANDLER_CALLED_BY_CLIENT;
  955. adventureInt->onMapTilesChanged(pos);
  956. }
  957. void CPlayerInterface::openHeroWindow(const CGHeroInstance *hero)
  958. {
  959. GH.windows().createAndPushWindow<CHeroWindow>(hero);
  960. }
  961. void CPlayerInterface::availableCreaturesChanged( const CGDwelling *town )
  962. {
  963. EVENT_HANDLER_CALLED_BY_CLIENT;
  964. if (const CGTownInstance * townObj = dynamic_cast<const CGTownInstance*>(town))
  965. {
  966. for (auto fortScreen : GH.windows().findWindows<CFortScreen>())
  967. fortScreen->creaturesChangedEventHandler();
  968. for (auto castleInterface : GH.windows().findWindows<CCastleInterface>())
  969. if(castleInterface->town == town)
  970. castleInterface->creaturesChangedEventHandler();
  971. if (townObj)
  972. for (auto ki : GH.windows().findWindows<CKingdomInterface>())
  973. ki->townChanged(townObj);
  974. }
  975. else if(town && GH.windows().count() > 0 && (town->ID == Obj::CREATURE_GENERATOR1
  976. || town->ID == Obj::CREATURE_GENERATOR4 || town->ID == Obj::WAR_MACHINE_FACTORY))
  977. {
  978. for (auto crw : GH.windows().findWindows<CRecruitmentWindow>())
  979. if (crw->dwelling == town)
  980. crw->availableCreaturesChanged();
  981. }
  982. }
  983. void CPlayerInterface::heroBonusChanged( const CGHeroInstance *hero, const Bonus &bonus, bool gain )
  984. {
  985. EVENT_HANDLER_CALLED_BY_CLIENT;
  986. if (bonus.type == BonusType::NONE)
  987. return;
  988. adventureInt->onHeroChanged(hero);
  989. if ((bonus.type == BonusType::FLYING_MOVEMENT || bonus.type == BonusType::WATER_WALKING) && !gain)
  990. {
  991. //recalculate paths because hero has lost bonus influencing pathfinding
  992. localState->erasePath(hero);
  993. }
  994. }
  995. void CPlayerInterface::saveGame( BinarySerializer & h )
  996. {
  997. EVENT_HANDLER_CALLED_BY_CLIENT;
  998. localState->serialize(h);
  999. }
  1000. void CPlayerInterface::loadGame( BinaryDeserializer & h )
  1001. {
  1002. EVENT_HANDLER_CALLED_BY_CLIENT;
  1003. localState->serialize(h);
  1004. firstCall = -1;
  1005. }
  1006. void CPlayerInterface::moveHero( const CGHeroInstance *h, const CGPath& path )
  1007. {
  1008. assert(h);
  1009. assert(!showingDialog->isBusy());
  1010. assert(dialogs.empty());
  1011. LOG_TRACE(logGlobal);
  1012. if (!LOCPLINT->makingTurn)
  1013. return;
  1014. if (!h)
  1015. return; //can't find hero
  1016. //It shouldn't be possible to move hero with open dialog (or dialog waiting in bg)
  1017. if (showingDialog->isBusy() || !dialogs.empty())
  1018. return;
  1019. if (localState->isHeroSleeping(h))
  1020. localState->setHeroAwaken(h);
  1021. movementController->requestMovementStart(h, path);
  1022. }
  1023. void CPlayerInterface::showGarrisonDialog( const CArmedInstance *up, const CGHeroInstance *down, bool removableUnits, QueryID queryID)
  1024. {
  1025. EVENT_HANDLER_CALLED_BY_CLIENT;
  1026. auto onEnd = [=](){ cb->selectionMade(0, queryID); };
  1027. if (movementController->isHeroMovingThroughGarrison(down, up))
  1028. {
  1029. onEnd();
  1030. return;
  1031. }
  1032. waitForAllDialogs();
  1033. auto cgw = std::make_shared<CGarrisonWindow>(up, down, removableUnits);
  1034. cgw->quit->addCallback(onEnd);
  1035. GH.windows().pushWindow(cgw);
  1036. }
  1037. /**
  1038. * Shows the dialog that appears when right-clicking an artifact that can be assembled
  1039. * into a combinational one on an artifact screen. Does not require the combination of
  1040. * artifacts to be legal.
  1041. */
  1042. void CPlayerInterface::showArtifactAssemblyDialog(const Artifact * artifact, const Artifact * assembledArtifact, CFunctionList<void()> onYes)
  1043. {
  1044. std::string text = artifact->getDescriptionTranslated();
  1045. text += "\n\n";
  1046. std::vector<std::shared_ptr<CComponent>> scs;
  1047. if(assembledArtifact)
  1048. {
  1049. // You possess all of the components to...
  1050. text += boost::str(boost::format(CGI->generaltexth->allTexts[732]) % assembledArtifact->getNameTranslated());
  1051. // Picture of assembled artifact at bottom.
  1052. auto sc = std::make_shared<CComponent>(ComponentType::ARTIFACT, assembledArtifact->getId());
  1053. scs.push_back(sc);
  1054. }
  1055. else
  1056. {
  1057. // Do you wish to disassemble this artifact?
  1058. text += CGI->generaltexth->allTexts[733];
  1059. }
  1060. showYesNoDialog(text, onYes, nullptr, scs);
  1061. }
  1062. void CPlayerInterface::requestRealized( PackageApplied *pa )
  1063. {
  1064. if(pa->packType == CTypeList::getInstance().getTypeID<MoveHero>(nullptr))
  1065. movementController->onMoveHeroApplied();
  1066. if(pa->packType == CTypeList::getInstance().getTypeID<QueryReply>(nullptr))
  1067. movementController->onQueryReplyApplied();
  1068. }
  1069. void CPlayerInterface::showHeroExchange(ObjectInstanceID hero1, ObjectInstanceID hero2)
  1070. {
  1071. heroExchangeStarted(hero1, hero2, QueryID(-1));
  1072. }
  1073. void CPlayerInterface::heroExchangeStarted(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID query)
  1074. {
  1075. EVENT_HANDLER_CALLED_BY_CLIENT;
  1076. GH.windows().createAndPushWindow<CExchangeWindow>(hero1, hero2, query);
  1077. }
  1078. void CPlayerInterface::beforeObjectPropertyChanged(const SetObjectProperty * sop)
  1079. {
  1080. if (sop->what == ObjProperty::OWNER)
  1081. {
  1082. const CGObjectInstance * obj = cb->getObj(sop->id);
  1083. if(obj->ID == Obj::TOWN)
  1084. {
  1085. auto town = static_cast<const CGTownInstance *>(obj);
  1086. if(obj->tempOwner == playerID)
  1087. {
  1088. localState->removeOwnedTown(town);
  1089. adventureInt->onTownChanged(town);
  1090. }
  1091. }
  1092. }
  1093. }
  1094. void CPlayerInterface::objectPropertyChanged(const SetObjectProperty * sop)
  1095. {
  1096. EVENT_HANDLER_CALLED_BY_CLIENT;
  1097. if (sop->what == ObjProperty::OWNER)
  1098. {
  1099. const CGObjectInstance * obj = cb->getObj(sop->id);
  1100. if(obj->ID == Obj::TOWN)
  1101. {
  1102. auto town = static_cast<const CGTownInstance *>(obj);
  1103. if(obj->tempOwner == playerID)
  1104. {
  1105. localState->addOwnedTown(town);
  1106. adventureInt->onTownChanged(town);
  1107. }
  1108. }
  1109. //redraw minimap if owner changed
  1110. std::set<int3> pos = obj->getBlockedPos();
  1111. std::unordered_set<int3> upos(pos.begin(), pos.end());
  1112. adventureInt->onMapTilesChanged(upos);
  1113. assert(cb->getTownsInfo().size() == localState->getOwnedTowns().size());
  1114. }
  1115. }
  1116. void CPlayerInterface::initializeHeroTownList()
  1117. {
  1118. if(localState->getWanderingHeroes().empty())
  1119. {
  1120. for(auto & hero : cb->getHeroesInfo())
  1121. {
  1122. if(!hero->inTownGarrison)
  1123. localState->addWanderingHero(hero);
  1124. }
  1125. }
  1126. if(localState->getOwnedTowns().empty())
  1127. {
  1128. for(auto & town : cb->getTownsInfo())
  1129. localState->addOwnedTown(town);
  1130. }
  1131. if(adventureInt)
  1132. adventureInt->onHeroChanged(nullptr);
  1133. }
  1134. void CPlayerInterface::showRecruitmentDialog(const CGDwelling *dwelling, const CArmedInstance *dst, int level, QueryID queryID)
  1135. {
  1136. EVENT_HANDLER_CALLED_BY_CLIENT;
  1137. waitWhileDialog();
  1138. auto recruitCb = [=](CreatureID id, int count)
  1139. {
  1140. cb->recruitCreatures(dwelling, dst, id, count, -1);
  1141. };
  1142. auto closeCb = [=]()
  1143. {
  1144. cb->selectionMade(0, queryID);
  1145. };
  1146. GH.windows().createAndPushWindow<CRecruitmentWindow>(dwelling, level, dst, recruitCb, closeCb);
  1147. }
  1148. void CPlayerInterface::waitWhileDialog()
  1149. {
  1150. if (GH.amIGuiThread())
  1151. {
  1152. logGlobal->warn("Cannot wait for dialogs in gui thread (deadlock risk)!");
  1153. return;
  1154. }
  1155. auto unlockInterface = vstd::makeUnlockGuard(GH.interfaceMutex);
  1156. showingDialog->waitWhileBusy();
  1157. }
  1158. void CPlayerInterface::showShipyardDialog(const IShipyard *obj)
  1159. {
  1160. EVENT_HANDLER_CALLED_BY_CLIENT;
  1161. auto state = obj->shipyardStatus();
  1162. TResources cost;
  1163. obj->getBoatCost(cost);
  1164. GH.windows().createAndPushWindow<CShipyardWindow>(cost, state, obj->getBoatType(), [=](){ cb->buildBoat(obj); });
  1165. }
  1166. void CPlayerInterface::newObject( const CGObjectInstance * obj )
  1167. {
  1168. EVENT_HANDLER_CALLED_BY_CLIENT;
  1169. //we might have built a boat in shipyard in opened town screen
  1170. if (obj->ID == Obj::BOAT
  1171. && LOCPLINT->castleInt
  1172. && obj->visitablePos() == LOCPLINT->castleInt->town->bestLocation())
  1173. {
  1174. CCS->soundh->playSound(soundBase::newBuilding);
  1175. LOCPLINT->castleInt->addBuilding(BuildingID::SHIP);
  1176. }
  1177. }
  1178. void CPlayerInterface::centerView (int3 pos, int focusTime)
  1179. {
  1180. EVENT_HANDLER_CALLED_BY_CLIENT;
  1181. waitWhileDialog();
  1182. CCS->curh->hide();
  1183. adventureInt->centerOnTile(pos);
  1184. if (focusTime)
  1185. {
  1186. GH.windows().totalRedraw();
  1187. {
  1188. IgnoreEvents ignore(*this);
  1189. auto unlockInterface = vstd::makeUnlockGuard(GH.interfaceMutex);
  1190. boost::this_thread::sleep_for(boost::chrono::milliseconds(focusTime));
  1191. }
  1192. }
  1193. CCS->curh->show();
  1194. }
  1195. void CPlayerInterface::objectRemoved(const CGObjectInstance * obj, const PlayerColor & initiator)
  1196. {
  1197. EVENT_HANDLER_CALLED_BY_CLIENT;
  1198. if(playerID == initiator && obj->getRemovalSound())
  1199. {
  1200. waitWhileDialog();
  1201. CCS->soundh->playSound(obj->getRemovalSound().value());
  1202. }
  1203. CGI->mh->waitForOngoingAnimations();
  1204. if(obj->ID == Obj::HERO && obj->tempOwner == playerID)
  1205. {
  1206. const CGHeroInstance * h = static_cast<const CGHeroInstance *>(obj);
  1207. heroKilled(h);
  1208. }
  1209. GH.fakeMouseMove();
  1210. }
  1211. void CPlayerInterface::objectRemovedAfter()
  1212. {
  1213. EVENT_HANDLER_CALLED_BY_CLIENT;
  1214. adventureInt->onMapTilesChanged(boost::none);
  1215. // visiting or garrisoned hero removed - update window
  1216. if (castleInt)
  1217. castleInt->updateGarrisons();
  1218. for (auto ki : GH.windows().findWindows<CKingdomInterface>())
  1219. ki->heroRemoved();
  1220. }
  1221. void CPlayerInterface::playerBlocked(int reason, bool start)
  1222. {
  1223. if(reason == PlayerBlocked::EReason::UPCOMING_BATTLE)
  1224. {
  1225. if(CSH->howManyPlayerInterfaces() > 1 && LOCPLINT != this && LOCPLINT->makingTurn == false)
  1226. {
  1227. //one of our players who isn't last in order got attacked not by our another player (happens for example in hotseat mode)
  1228. LOCPLINT = this;
  1229. GH.curInt = this;
  1230. adventureInt->onCurrentPlayerChanged(playerID);
  1231. std::string msg = CGI->generaltexth->translate("vcmi.adventureMap.playerAttacked");
  1232. boost::replace_first(msg, "%s", cb->getStartInfo()->playerInfos.find(playerID)->second.name);
  1233. std::vector<std::shared_ptr<CComponent>> cmp;
  1234. cmp.push_back(std::make_shared<CComponent>(ComponentType::FLAG, playerID));
  1235. makingTurn = true; //workaround for stiff showInfoDialog implementation
  1236. showInfoDialog(msg, cmp);
  1237. makingTurn = false;
  1238. }
  1239. }
  1240. }
  1241. void CPlayerInterface::update()
  1242. {
  1243. // Make sure that gamestate won't change when GUI objects may obtain its parts on event processing or drawing request
  1244. boost::shared_lock<boost::shared_mutex> gsLock(CGameState::mutex);
  1245. // While mutexes were locked away we may be have stopped being the active interface
  1246. if (LOCPLINT != this)
  1247. return;
  1248. //if there are any waiting dialogs, show them
  1249. if ((CSH->howManyPlayerInterfaces() <= 1 || makingTurn) && !dialogs.empty() && !showingDialog->isBusy())
  1250. {
  1251. showingDialog->setBusy();
  1252. GH.windows().pushWindow(dialogs.front());
  1253. dialogs.pop_front();
  1254. }
  1255. assert(adventureInt);
  1256. // Handles mouse and key input
  1257. GH.handleEvents();
  1258. GH.windows().simpleRedraw();
  1259. }
  1260. void CPlayerInterface::endNetwork()
  1261. {
  1262. showingDialog->requestTermination();
  1263. }
  1264. int CPlayerInterface::getLastIndex( std::string namePrefix)
  1265. {
  1266. using namespace boost::filesystem;
  1267. using namespace boost::algorithm;
  1268. path gamesDir = VCMIDirs::get().userSavePath();
  1269. std::map<std::time_t, int> dates; //save number => datestamp
  1270. const directory_iterator enddir;
  1271. if (!exists(gamesDir))
  1272. create_directory(gamesDir);
  1273. else
  1274. for (directory_iterator dir(gamesDir); dir != enddir; ++dir)
  1275. {
  1276. if (is_regular_file(dir->status()))
  1277. {
  1278. std::string name = dir->path().filename().string();
  1279. if (starts_with(name, namePrefix) && ends_with(name, ".vcgm1"))
  1280. {
  1281. char nr = name[namePrefix.size()];
  1282. if (std::isdigit(nr))
  1283. dates[last_write_time(dir->path())] = boost::lexical_cast<int>(nr);
  1284. }
  1285. }
  1286. }
  1287. if (!dates.empty())
  1288. return (--dates.end())->second; //return latest file number
  1289. return 0;
  1290. }
  1291. void CPlayerInterface::gameOver(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult )
  1292. {
  1293. EVENT_HANDLER_CALLED_BY_CLIENT;
  1294. if (player == playerID)
  1295. {
  1296. if (victoryLossCheckResult.loss())
  1297. showInfoDialog(CGI->generaltexth->allTexts[95]);
  1298. assert(GH.curInt == LOCPLINT);
  1299. auto previousInterface = LOCPLINT; //without multiple player interfaces some of lines below are useless, but for hotseat we wanna swap player interface temporarily
  1300. LOCPLINT = this; //this is needed for dialog to show and avoid freeze, dialog showing logic should be reworked someday
  1301. GH.curInt = this; //waiting for dialogs requires this to get events
  1302. if(!makingTurn)
  1303. {
  1304. makingTurn = true; //also needed for dialog to show with current implementation
  1305. waitForAllDialogs();
  1306. makingTurn = false;
  1307. }
  1308. else
  1309. waitForAllDialogs();
  1310. GH.curInt = previousInterface;
  1311. LOCPLINT = previousInterface;
  1312. }
  1313. }
  1314. void CPlayerInterface::playerBonusChanged( const Bonus &bonus, bool gain )
  1315. {
  1316. EVENT_HANDLER_CALLED_BY_CLIENT;
  1317. }
  1318. void CPlayerInterface::showPuzzleMap()
  1319. {
  1320. EVENT_HANDLER_CALLED_BY_CLIENT;
  1321. waitWhileDialog();
  1322. //TODO: interface should not know the real position of Grail...
  1323. double ratio = 0;
  1324. int3 grailPos = cb->getGrailPos(&ratio);
  1325. GH.windows().createAndPushWindow<CPuzzleWindow>(grailPos, ratio);
  1326. }
  1327. void CPlayerInterface::viewWorldMap()
  1328. {
  1329. adventureInt->openWorldView();
  1330. }
  1331. void CPlayerInterface::advmapSpellCast(const CGHeroInstance * caster, SpellID spellID)
  1332. {
  1333. EVENT_HANDLER_CALLED_BY_CLIENT;
  1334. if(GH.windows().topWindow<CSpellWindow>())
  1335. GH.windows().popWindows(1);
  1336. if(spellID == SpellID::FLY || spellID == SpellID::WATER_WALK)
  1337. localState->erasePath(caster);
  1338. auto castSoundPath = spellID.toSpell()->getCastSound();
  1339. if(!castSoundPath.empty())
  1340. CCS->soundh->playSound(castSoundPath);
  1341. }
  1342. void CPlayerInterface::tryDigging(const CGHeroInstance * h)
  1343. {
  1344. int msgToShow = -1;
  1345. const auto diggingStatus = h->diggingStatus();
  1346. switch(diggingStatus)
  1347. {
  1348. case EDiggingStatus::CAN_DIG:
  1349. break;
  1350. case EDiggingStatus::LACK_OF_MOVEMENT:
  1351. msgToShow = 56; //"Digging for artifacts requires a whole day, try again tomorrow."
  1352. break;
  1353. case EDiggingStatus::TILE_OCCUPIED:
  1354. msgToShow = 97; //Try searching on clear ground.
  1355. break;
  1356. case EDiggingStatus::WRONG_TERRAIN:
  1357. msgToShow = 60; ////Try looking on land!
  1358. break;
  1359. case EDiggingStatus::BACKPACK_IS_FULL:
  1360. msgToShow = 247; //Searching for the Grail is fruitless...
  1361. break;
  1362. default:
  1363. assert(0);
  1364. }
  1365. if(msgToShow < 0)
  1366. cb->dig(h);
  1367. else
  1368. showInfoDialog(CGI->generaltexth->allTexts[msgToShow]);
  1369. }
  1370. void CPlayerInterface::battleNewRoundFirst(const BattleID & battleID)
  1371. {
  1372. EVENT_HANDLER_CALLED_BY_CLIENT;
  1373. BATTLE_EVENT_POSSIBLE_RETURN;
  1374. battleInt->newRoundFirst();
  1375. }
  1376. void CPlayerInterface::showMarketWindow(const IMarket *market, const CGHeroInstance *visitor, QueryID queryID)
  1377. {
  1378. EVENT_HANDLER_CALLED_BY_CLIENT;
  1379. auto onWindowClosed = [this, queryID](){
  1380. cb->selectionMade(0, queryID);
  1381. };
  1382. if (market->allowsTrade(EMarketMode::ARTIFACT_EXP) && dynamic_cast<const CGArtifactsAltar*>(market) == nullptr)
  1383. {
  1384. // compatibility check, safe to remove for 1.6
  1385. // 1.4 saves loaded in 1.5 will not be able to visit Altar of Sacrifice due to Altar now requiring different map object class
  1386. static_assert(ESerializationVersion::RELEASE_143 < ESerializationVersion::CURRENT, "Please remove this compatibility check once it no longer needed");
  1387. onWindowClosed();
  1388. return;
  1389. }
  1390. if(market->allowsTrade(EMarketMode::ARTIFACT_EXP) && visitor->getAlignment() != EAlignment::EVIL)
  1391. GH.windows().createAndPushWindow<CMarketWindow>(market, visitor, onWindowClosed, EMarketMode::ARTIFACT_EXP);
  1392. else if(market->allowsTrade(EMarketMode::CREATURE_EXP) && visitor->getAlignment() != EAlignment::GOOD)
  1393. GH.windows().createAndPushWindow<CMarketWindow>(market, visitor, onWindowClosed, EMarketMode::CREATURE_EXP);
  1394. else if(market->allowsTrade(EMarketMode::CREATURE_UNDEAD))
  1395. GH.windows().createAndPushWindow<CTransformerWindow>(market, visitor, onWindowClosed);
  1396. else if(!market->availableModes().empty())
  1397. GH.windows().createAndPushWindow<CMarketWindow>(market, visitor, onWindowClosed, market->availableModes().front());
  1398. }
  1399. void CPlayerInterface::showUniversityWindow(const IMarket *market, const CGHeroInstance *visitor, QueryID queryID)
  1400. {
  1401. EVENT_HANDLER_CALLED_BY_CLIENT;
  1402. auto onWindowClosed = [this, queryID](){
  1403. cb->selectionMade(0, queryID);
  1404. };
  1405. GH.windows().createAndPushWindow<CUniversityWindow>(visitor, market, onWindowClosed);
  1406. }
  1407. void CPlayerInterface::showHillFortWindow(const CGObjectInstance *object, const CGHeroInstance *visitor)
  1408. {
  1409. EVENT_HANDLER_CALLED_BY_CLIENT;
  1410. GH.windows().createAndPushWindow<CHillFortWindow>(visitor, object);
  1411. }
  1412. void CPlayerInterface::availableArtifactsChanged(const CGBlackMarket * bm)
  1413. {
  1414. EVENT_HANDLER_CALLED_BY_CLIENT;
  1415. for (auto cmw : GH.windows().findWindows<CMarketWindow>())
  1416. cmw->updateArtifacts();
  1417. }
  1418. void CPlayerInterface::showTavernWindow(const CGObjectInstance * object, const CGHeroInstance * visitor, QueryID queryID)
  1419. {
  1420. EVENT_HANDLER_CALLED_BY_CLIENT;
  1421. auto onWindowClosed = [this, queryID](){
  1422. if (queryID != QueryID::NONE)
  1423. cb->selectionMade(0, queryID);
  1424. };
  1425. GH.windows().createAndPushWindow<CTavernWindow>(object, onWindowClosed);
  1426. }
  1427. void CPlayerInterface::showThievesGuildWindow (const CGObjectInstance * obj)
  1428. {
  1429. EVENT_HANDLER_CALLED_BY_CLIENT;
  1430. GH.windows().createAndPushWindow<CThievesGuildWindow>(obj);
  1431. }
  1432. void CPlayerInterface::showQuestLog()
  1433. {
  1434. EVENT_HANDLER_CALLED_BY_CLIENT;
  1435. GH.windows().createAndPushWindow<CQuestLog>(LOCPLINT->cb->getMyQuests());
  1436. }
  1437. void CPlayerInterface::showShipyardDialogOrProblemPopup(const IShipyard *obj)
  1438. {
  1439. if (obj->shipyardStatus() != IBoatGenerator::GOOD)
  1440. {
  1441. MetaString txt;
  1442. obj->getProblemText(txt);
  1443. showInfoDialog(txt.toString());
  1444. }
  1445. else
  1446. showShipyardDialog(obj);
  1447. }
  1448. void CPlayerInterface::askToAssembleArtifact(const ArtifactLocation &al)
  1449. {
  1450. if(auto hero = cb->getHero(al.artHolder))
  1451. {
  1452. auto art = hero->getArt(al.slot);
  1453. if(art == nullptr)
  1454. {
  1455. logGlobal->error("artifact location %d points to nothing",
  1456. al.slot.num);
  1457. return;
  1458. }
  1459. ArtifactUtilsClient::askToAssemble(hero, al.slot);
  1460. }
  1461. }
  1462. void CPlayerInterface::artifactPut(const ArtifactLocation &al)
  1463. {
  1464. EVENT_HANDLER_CALLED_BY_CLIENT;
  1465. adventureInt->onHeroChanged(cb->getHero(al.artHolder));
  1466. }
  1467. void CPlayerInterface::artifactRemoved(const ArtifactLocation &al)
  1468. {
  1469. EVENT_HANDLER_CALLED_BY_CLIENT;
  1470. adventureInt->onHeroChanged(cb->getHero(al.artHolder));
  1471. for(auto artWin : GH.windows().findWindows<CWindowWithArtifacts>())
  1472. artWin->artifactRemoved(al);
  1473. waitWhileDialog();
  1474. }
  1475. void CPlayerInterface::artifactMoved(const ArtifactLocation &src, const ArtifactLocation &dst)
  1476. {
  1477. EVENT_HANDLER_CALLED_BY_CLIENT;
  1478. adventureInt->onHeroChanged(cb->getHero(dst.artHolder));
  1479. bool redraw = true;
  1480. // If a bulk transfer has arrived, then redrawing only the last art movement.
  1481. if(numOfMovedArts != 0)
  1482. {
  1483. numOfMovedArts--;
  1484. if(numOfMovedArts != 0)
  1485. redraw = false;
  1486. }
  1487. for(auto artWin : GH.windows().findWindows<CWindowWithArtifacts>())
  1488. artWin->artifactMoved(src, dst, redraw);
  1489. waitWhileDialog();
  1490. }
  1491. void CPlayerInterface::bulkArtMovementStart(size_t numOfArts)
  1492. {
  1493. numOfMovedArts = numOfArts;
  1494. }
  1495. void CPlayerInterface::artifactAssembled(const ArtifactLocation &al)
  1496. {
  1497. EVENT_HANDLER_CALLED_BY_CLIENT;
  1498. adventureInt->onHeroChanged(cb->getHero(al.artHolder));
  1499. for(auto artWin : GH.windows().findWindows<CWindowWithArtifacts>())
  1500. artWin->artifactAssembled(al);
  1501. }
  1502. void CPlayerInterface::artifactDisassembled(const ArtifactLocation &al)
  1503. {
  1504. EVENT_HANDLER_CALLED_BY_CLIENT;
  1505. adventureInt->onHeroChanged(cb->getHero(al.artHolder));
  1506. for(auto artWin : GH.windows().findWindows<CWindowWithArtifacts>())
  1507. artWin->artifactDisassembled(al);
  1508. }
  1509. void CPlayerInterface::waitForAllDialogs()
  1510. {
  1511. while(!dialogs.empty())
  1512. {
  1513. auto unlockInterface = vstd::makeUnlockGuard(GH.interfaceMutex);
  1514. boost::this_thread::sleep_for(boost::chrono::milliseconds(5));
  1515. }
  1516. waitWhileDialog();
  1517. }
  1518. void CPlayerInterface::proposeLoadingGame()
  1519. {
  1520. showYesNoDialog(
  1521. CGI->generaltexth->allTexts[68],
  1522. []()
  1523. {
  1524. CSH->endGameplay();
  1525. GH.defActionsDef = 63;
  1526. CMM->menu->switchToTab("load");
  1527. },
  1528. nullptr
  1529. );
  1530. }
  1531. bool CPlayerInterface::capturedAllEvents()
  1532. {
  1533. if(movementController->isHeroMoving())
  1534. {
  1535. //just inform that we are capturing events. they will be processed by heroMoved() in client thread.
  1536. return true;
  1537. }
  1538. bool needToLockAdventureMap = adventureInt && adventureInt->isActive() && CGI->mh->hasOngoingAnimations();
  1539. bool quickCombatOngoing = isAutoFightOn && !battleInt;
  1540. if (ignoreEvents || needToLockAdventureMap || quickCombatOngoing )
  1541. {
  1542. GH.input().ignoreEventsUntilInput();
  1543. return true;
  1544. }
  1545. return false;
  1546. }
  1547. void CPlayerInterface::showWorldViewEx(const std::vector<ObjectPosInfo>& objectPositions, bool showTerrain)
  1548. {
  1549. EVENT_HANDLER_CALLED_BY_CLIENT;
  1550. adventureInt->openWorldView(objectPositions, showTerrain );
  1551. }
  1552. std::optional<BattleAction> CPlayerInterface::makeSurrenderRetreatDecision(const BattleID & battleID, const BattleStateInfoForRetreat & battleState)
  1553. {
  1554. return std::nullopt;
  1555. }