CPlayerInterface.cpp 63 KB

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