CPlayerInterface.cpp 53 KB

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