2
0

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