CPlayerInterface.cpp 66 KB

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