2
0

CPlayerInterface.cpp 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790
  1. #include "StdInc.h"
  2. #include "windows/CAdvmapInterface.h"
  3. #include "battle/CBattleInterface.h"
  4. #include "battle/CBattleInterfaceClasses.h"
  5. #include "../CCallback.h"
  6. #include "windows/CCastleInterface.h"
  7. #include "gui/CCursorHandler.h"
  8. #include "windows/CKingdomInterface.h"
  9. #include "CGameInfo.h"
  10. #include "windows/CHeroWindow.h"
  11. #include "windows/CCreatureWindow.h"
  12. #include "windows/CQuestLog.h"
  13. #include "CMessage.h"
  14. #include "CPlayerInterface.h"
  15. #include "gui/SDL_Extensions.h"
  16. #include "widgets/CComponent.h"
  17. #include "windows/CTradeWindow.h"
  18. #include "../lib/CConfigHandler.h"
  19. #include "battle/CCreatureAnimation.h"
  20. #include "Graphics.h"
  21. #include "windows/GUIClasses.h"
  22. #include "../lib/CArtHandler.h"
  23. #include "../lib/CGeneralTextHandler.h"
  24. #include "../lib/CHeroHandler.h"
  25. #include "../lib/Connection.h"
  26. #include "../lib/spells/CSpellHandler.h"
  27. #include "../lib/CTownHandler.h"
  28. #include "../lib/mapObjects/CObjectClassesHandler.h" // For displaying correct UI when interacting with objects
  29. #include "../lib/BattleState.h"
  30. #include "../lib/JsonNode.h"
  31. #include "CMusicHandler.h"
  32. #include "../lib/CondSh.h"
  33. #include "../lib/NetPacks.h"
  34. #include "../lib/mapping/CMap.h"
  35. #include "../lib/VCMIDirs.h"
  36. #include "mapHandler.h"
  37. #include "../lib/CStopWatch.h"
  38. #include "../lib/StartInfo.h"
  39. #include "../lib/CGameState.h"
  40. #include "../lib/CPlayerState.h"
  41. #include "../lib/GameConstants.h"
  42. #include "gui/CGuiHandler.h"
  43. #include "windows/InfoWindows.h"
  44. #include "../lib/UnlockGuard.h"
  45. #include <SDL.h>
  46. /*
  47. * CPlayerInterface.cpp, part of VCMI engine
  48. *
  49. * Authors: listed in file AUTHORS in main folder
  50. *
  51. * License: GNU General Public License v2.0 or later
  52. * Full text of license available in license.txt file, in main folder
  53. *
  54. */
  55. // The macro below is used to mark functions that are called by client when game state changes.
  56. // They all assume that CPlayerInterface::pim mutex is locked.
  57. #define EVENT_HANDLER_CALLED_BY_CLIENT
  58. // The macro marks functions that are run on a new thread by client.
  59. // They do not own any mutexes intiially.
  60. #define THREAD_CREATED_BY_CLIENT
  61. #define RETURN_IF_QUICK_COMBAT \
  62. if(isAutoFightOn && !battleInt) \
  63. return;
  64. #define BATTLE_EVENT_POSSIBLE_RETURN\
  65. if(LOCPLINT != this) \
  66. return; \
  67. RETURN_IF_QUICK_COMBAT
  68. using namespace CSDL_Ext;
  69. void processCommand(const std::string &message, CClient *&client);
  70. extern std::queue<SDL_Event> events;
  71. extern boost::mutex eventsM;
  72. boost::recursive_mutex * CPlayerInterface::pim = new boost::recursive_mutex;
  73. CPlayerInterface * LOCPLINT;
  74. CBattleInterface * CPlayerInterface::battleInt;
  75. enum EMoveState {STOP_MOVE, WAITING_MOVE, CONTINUE_MOVE, DURING_MOVE};
  76. CondSh<EMoveState> stillMoveHero; //used during hero movement
  77. int CPlayerInterface::howManyPeople = 0;
  78. static bool objectBlitOrderSorter(const TerrainTileObject & a, const TerrainTileObject & b)
  79. {
  80. return CMapHandler::compareObjectBlitOrder(a.obj, b.obj);
  81. }
  82. CPlayerInterface::CPlayerInterface(PlayerColor Player)
  83. {
  84. logGlobal->traceStream() << "\tHuman player interface for player " << Player << " being constructed";
  85. destinationTeleport = ObjectInstanceID();
  86. destinationTeleportPos = int3(-1);
  87. observerInDuelMode = false;
  88. howManyPeople++;
  89. GH.defActionsDef = 0;
  90. LOCPLINT = this;
  91. curAction = nullptr;
  92. playerID=Player;
  93. human=true;
  94. currentSelection = nullptr;
  95. castleInt = nullptr;
  96. battleInt = nullptr;
  97. //pim = new boost::recursive_mutex;
  98. makingTurn = false;
  99. showingDialog = new CondSh<bool>(false);
  100. cingconsole = new CInGameConsole;
  101. GH.terminate_cond.set(false);
  102. firstCall = 1; //if loading will be overwritten in serialize
  103. autosaveCount = 0;
  104. isAutoFightOn = false;
  105. duringMovement = false;
  106. ignoreEvents = false;
  107. }
  108. CPlayerInterface::~CPlayerInterface()
  109. {
  110. logGlobal->traceStream() << "\tHuman player interface for player " << playerID << " being destructed";
  111. //howManyPeople--;
  112. //delete pim;
  113. //vstd::clear_pointer(pim);
  114. delete showingDialog;
  115. delete cingconsole;
  116. if(LOCPLINT == this)
  117. LOCPLINT = nullptr;
  118. }
  119. void CPlayerInterface::init(std::shared_ptr<CCallback> CB)
  120. {
  121. cb = CB;
  122. if(observerInDuelMode)
  123. return;
  124. if(!towns.size() && !wanderingHeroes.size())
  125. initializeHeroTownList();
  126. // always recreate advmap interface to avoid possible memory-corruption bugs
  127. if(adventureInt)
  128. delete adventureInt;
  129. adventureInt = new CAdvMapInt();
  130. }
  131. void CPlayerInterface::yourTurn()
  132. {
  133. EVENT_HANDLER_CALLED_BY_CLIENT;
  134. {
  135. boost::unique_lock<boost::mutex> lock(eventsM); //block handling events until interface is ready
  136. LOCPLINT = this;
  137. GH.curInt = this;
  138. adventureInt->selection = nullptr;
  139. std::string prefix = "";
  140. if(settings["testing"]["enabled"].Bool())
  141. {
  142. prefix = settings["testing"]["prefix"].String();
  143. }
  144. if(firstCall)
  145. {
  146. if(howManyPeople == 1)
  147. adventureInt->setPlayer(playerID);
  148. autosaveCount = getLastIndex(prefix + "Autosave_");
  149. if(firstCall > 0) //new game, not loaded
  150. {
  151. int index = getLastIndex(prefix + "Newgame_");
  152. index %= SAVES_COUNT;
  153. cb->save("Saves/" + prefix + "Newgame_Autosave_" + boost::lexical_cast<std::string>(index + 1));
  154. }
  155. firstCall = 0;
  156. }
  157. else
  158. {
  159. LOCPLINT->cb->save("Saves/" + prefix + "Autosave_" + boost::lexical_cast<std::string>(autosaveCount++ + 1));
  160. autosaveCount %= 5;
  161. }
  162. if(adventureInt->player != playerID)
  163. adventureInt->setPlayer(playerID);
  164. if(howManyPeople > 1) //hot seat message
  165. {
  166. adventureInt->startHotSeatWait(playerID);
  167. makingTurn = true;
  168. std::string msg = CGI->generaltexth->allTexts[13];
  169. boost::replace_first(msg, "%s", cb->getStartInfo()->playerInfos.find(playerID)->second.name);
  170. std::vector<CComponent*> cmp;
  171. cmp.push_back(new CComponent(CComponent::flag, playerID.getNum(), 0));
  172. showInfoDialog(msg, cmp);
  173. }
  174. else
  175. {
  176. makingTurn = true;
  177. adventureInt->startTurn();
  178. }
  179. }
  180. acceptTurn();
  181. }
  182. STRONG_INLINE void subRect(const int & x, const int & y, const int & z, const SDL_Rect & r, const ObjectInstanceID & hid)
  183. {
  184. TerrainTile2 & hlp = CGI->mh->ttiles[x][y][z];
  185. for(auto & elem : hlp.objects)
  186. if(elem.obj && elem.obj->id == hid)
  187. {
  188. elem.rect = r;
  189. return;
  190. }
  191. }
  192. STRONG_INLINE void delObjRect(const int & x, const int & y, const int & z, const ObjectInstanceID & hid)
  193. {
  194. TerrainTile2 & hlp = CGI->mh->ttiles[x][y][z];
  195. for(int h=0; h<hlp.objects.size(); ++h)
  196. if(hlp.objects[h].obj && hlp.objects[h].obj->id == hid)
  197. {
  198. hlp.objects.erase(hlp.objects.begin()+h);
  199. return;
  200. }
  201. }
  202. void CPlayerInterface::heroMoved(const TryMoveHero & details)
  203. {
  204. EVENT_HANDLER_CALLED_BY_CLIENT;
  205. waitWhileDialog();
  206. if(LOCPLINT != this)
  207. return;
  208. const CGHeroInstance * hero = cb->getHero(details.id); //object representing this hero
  209. int3 hp = details.start;
  210. if(!hero)
  211. {
  212. //AI hero left the visible area (we can't obtain info)
  213. //TODO very evil workaround -> retrieve pointer to hero so we could animate it
  214. // TODO -> we should not need full CGHeroInstance structure to display animation or it should not be handled by playerint (but by the client itself)
  215. const TerrainTile2 &tile = CGI->mh->ttiles[hp.x-1][hp.y][hp.z];
  216. for(auto & elem : tile.objects)
  217. if(elem.obj && elem.obj->id == details.id)
  218. hero = dynamic_cast<const CGHeroInstance *>(elem.obj);
  219. if(!hero) //still nothing...
  220. return;
  221. }
  222. bool directlyAttackingCreature =
  223. details.attackedFrom
  224. && adventureInt->terrain.currentPath //in case if movement has been canceled in the meantime and path was already erased
  225. && adventureInt->terrain.currentPath->nodes.size() == 3;//FIXME should be 2 but works nevertheless...
  226. if(makingTurn && hero->tempOwner == playerID) //we are moving our hero - we may need to update assigned path
  227. {
  228. //We may need to change music - select new track, music handler will change it if needed
  229. CCS->musich->playMusicFromSet("terrain", LOCPLINT->cb->getTile(hero->visitablePos())->terType, true);
  230. if(details.result == TryMoveHero::TELEPORTATION)
  231. {
  232. if(adventureInt->terrain.currentPath)
  233. {
  234. assert(adventureInt->terrain.currentPath->nodes.size() >= 2);
  235. std::vector<CGPathNode>::const_iterator nodesIt = adventureInt->terrain.currentPath->nodes.end() - 1;
  236. if((nodesIt)->coord == CGHeroInstance::convertPosition(details.start, false)
  237. && (nodesIt-1)->coord == CGHeroInstance::convertPosition(details.end, false))
  238. {
  239. //path was between entrance and exit of teleport -> OK, erase node as usual
  240. removeLastNodeFromPath(hero);
  241. }
  242. else
  243. {
  244. //teleport was not along current path, it'll now be invalid (hero is somewhere else)
  245. eraseCurrentPathOf(hero);
  246. }
  247. }
  248. adventureInt->centerOn(hero, true); //actualizing screen pos
  249. adventureInt->minimap.redraw();
  250. adventureInt->heroList.update(hero);
  251. return; //teleport - no fancy moving animation
  252. //TODO: smooth disappear / appear effect
  253. }
  254. if (hero->pos != details.end //hero didn't change tile but visit succeeded
  255. || directlyAttackingCreature) // or creature was attacked from endangering tile.
  256. {
  257. eraseCurrentPathOf(hero, false);
  258. }
  259. else if(adventureInt->terrain.currentPath && hero->pos == details.end) //&& hero is moving
  260. {
  261. if(details.start != details.end) //so we don't touch path when revisiting with spacebar
  262. removeLastNodeFromPath(hero);
  263. }
  264. }
  265. if (details.result != TryMoveHero::SUCCESS) //hero failed to move
  266. {
  267. hero->isStanding = true;
  268. stillMoveHero.setn(STOP_MOVE);
  269. GH.totalRedraw();
  270. adventureInt->heroList.update(hero);
  271. return;
  272. }
  273. ui32 speed;
  274. if (makingTurn) // our turn, our hero moves
  275. speed = settings["adventure"]["heroSpeed"].Float();
  276. else
  277. speed = settings["adventure"]["enemySpeed"].Float();
  278. if (speed == 0)
  279. {
  280. //FIXME: is this a proper solution?
  281. CGI->mh->hideObject(hero);
  282. CGI->mh->printObject(hero);
  283. return; // no animation
  284. }
  285. adventureInt->centerOn(hero); //actualizing screen pos
  286. adventureInt->minimap.redraw();
  287. adventureInt->heroList.redraw();
  288. initMovement(details, hero, hp);
  289. //first initializing done
  290. GH.mainFPSmng->framerateDelay(); // after first move
  291. //main moving
  292. for(int i=1; i<32; i+=2*speed)
  293. {
  294. movementPxStep(details, i, hp, hero);
  295. adventureInt->updateScreen = true;
  296. adventureInt->show(screen);
  297. {
  298. //evil returns here ...
  299. //todo: get rid of it
  300. logGlobal->traceStream() << "before [un]locks in " << __FUNCTION__;
  301. auto unlockPim = vstd::makeUnlockGuard(*pim); //let frame to be rendered
  302. GH.mainFPSmng->framerateDelay(); //for animation purposes
  303. logGlobal->traceStream() << "after [un]locks in " << __FUNCTION__;
  304. }
  305. //CSDL_Ext::update(screen);
  306. } //for(int i=1; i<32; i+=4)
  307. //main moving done
  308. //finishing move
  309. finishMovement(details, hp, hero);
  310. hero->isStanding = true;
  311. //move finished
  312. adventureInt->minimap.redraw();
  313. adventureInt->heroList.update(hero);
  314. //check if user cancelled movement
  315. {
  316. boost::unique_lock<boost::mutex> un(eventsM);
  317. while(!events.empty())
  318. {
  319. SDL_Event ev = events.front();
  320. events.pop();
  321. switch(ev.type)
  322. {
  323. case SDL_MOUSEBUTTONDOWN:
  324. stillMoveHero.setn(STOP_MOVE);
  325. break;
  326. case SDL_KEYDOWN:
  327. if(ev.key.keysym.sym < SDLK_F1 || ev.key.keysym.sym > SDLK_F15)
  328. stillMoveHero.setn(STOP_MOVE);
  329. break;
  330. }
  331. }
  332. }
  333. if(stillMoveHero.get() == WAITING_MOVE)
  334. stillMoveHero.setn(DURING_MOVE);
  335. // Hero attacked creature directly, set direction to face it.
  336. if (directlyAttackingCreature) {
  337. // Get direction to attacker.
  338. int3 posOffset = *details.attackedFrom - details.end + int3(2, 1, 0);
  339. static const ui8 dirLookup[3][3] = {
  340. { 1, 2, 3 },
  341. { 8, 0, 4 },
  342. { 7, 6, 5 }
  343. };
  344. // FIXME: Avoid const_cast, make moveDir mutable in some other way?
  345. const_cast<CGHeroInstance *>(hero)->moveDir = dirLookup[posOffset.y][posOffset.x];
  346. }
  347. }
  348. void CPlayerInterface::heroKilled(const CGHeroInstance* hero)
  349. {
  350. EVENT_HANDLER_CALLED_BY_CLIENT;
  351. LOG_TRACE_PARAMS(logGlobal, "Hero %s killed handler for player %s", hero->name % playerID);
  352. const CArmedInstance *newSelection = nullptr;
  353. if (makingTurn)
  354. {
  355. //find new object for selection: either hero
  356. int next = adventureInt->getNextHeroIndex(vstd::find_pos(wanderingHeroes, hero));
  357. if (next >= 0)
  358. newSelection = wanderingHeroes[next];
  359. //or town
  360. if (!newSelection || newSelection == hero)
  361. {
  362. if (towns.empty())
  363. newSelection = nullptr;
  364. else
  365. newSelection = towns.front();
  366. }
  367. }
  368. wanderingHeroes -= hero;
  369. if(vstd::contains(paths, hero))
  370. paths.erase(hero);
  371. adventureInt->heroList.update(hero);
  372. if (makingTurn && newSelection)
  373. adventureInt->select(newSelection, true);
  374. else if(adventureInt->selection == hero)
  375. adventureInt->selection = nullptr;
  376. }
  377. void CPlayerInterface::heroCreated(const CGHeroInstance * hero)
  378. {
  379. EVENT_HANDLER_CALLED_BY_CLIENT;
  380. wanderingHeroes.push_back(hero);
  381. adventureInt->heroList.update(hero);
  382. }
  383. void CPlayerInterface::openTownWindow(const CGTownInstance * town)
  384. {
  385. if (castleInt)
  386. castleInt->close();
  387. castleInt = new CCastleInterface(town);
  388. GH.pushInt(castleInt);
  389. }
  390. int3 CPlayerInterface::repairScreenPos(int3 pos)
  391. {
  392. if(pos.x<-CGI->mh->frameW)
  393. pos.x = -CGI->mh->frameW;
  394. if(pos.y<-CGI->mh->frameH)
  395. pos.y = -CGI->mh->frameH;
  396. if(pos.x>CGI->mh->sizes.x - adventureInt->terrain.tilesw + CGI->mh->frameW)
  397. pos.x = CGI->mh->sizes.x - adventureInt->terrain.tilesw + CGI->mh->frameW;
  398. if(pos.y>CGI->mh->sizes.y - adventureInt->terrain.tilesh + CGI->mh->frameH)
  399. pos.y = CGI->mh->sizes.y - adventureInt->terrain.tilesh + CGI->mh->frameH;
  400. return pos;
  401. }
  402. void CPlayerInterface::heroPrimarySkillChanged(const CGHeroInstance * hero, int which, si64 val)
  403. {
  404. EVENT_HANDLER_CALLED_BY_CLIENT;
  405. if(which == 4)
  406. {
  407. if(CAltarWindow *ctw = dynamic_cast<CAltarWindow *>(GH.topInt()))
  408. ctw->setExpToLevel();
  409. }
  410. else if(which < GameConstants::PRIMARY_SKILLS) //no need to redraw infowin if this is experience (exp is treated as prim skill with id==4)
  411. updateInfo(hero);
  412. }
  413. void CPlayerInterface::heroSecondarySkillChanged(const CGHeroInstance * hero, int which, int val)
  414. {
  415. EVENT_HANDLER_CALLED_BY_CLIENT;
  416. CUniversityWindow* cuw = dynamic_cast<CUniversityWindow*>(GH.topInt());
  417. if(cuw) //university window is open
  418. {
  419. GH.totalRedraw();
  420. }
  421. }
  422. void CPlayerInterface::heroManaPointsChanged(const CGHeroInstance * hero)
  423. {
  424. EVENT_HANDLER_CALLED_BY_CLIENT;
  425. updateInfo(hero);
  426. if(makingTurn && hero->tempOwner == playerID)
  427. adventureInt->heroList.update(hero);
  428. }
  429. void CPlayerInterface::heroMovePointsChanged(const CGHeroInstance * hero)
  430. {
  431. EVENT_HANDLER_CALLED_BY_CLIENT;
  432. if(makingTurn && hero->tempOwner == playerID)
  433. adventureInt->heroList.update(hero);
  434. }
  435. void CPlayerInterface::receivedResource(int type, int val)
  436. {
  437. EVENT_HANDLER_CALLED_BY_CLIENT;
  438. if(CMarketplaceWindow *mw = dynamic_cast<CMarketplaceWindow *>(GH.topInt()))
  439. mw->resourceChanged(type, val);
  440. GH.totalRedraw();
  441. }
  442. void CPlayerInterface::heroGotLevel(const CGHeroInstance *hero, PrimarySkill::PrimarySkill pskill, std::vector<SecondarySkill>& skills, QueryID queryID)
  443. {
  444. EVENT_HANDLER_CALLED_BY_CLIENT;
  445. waitWhileDialog();
  446. CCS->soundh->playSound(soundBase::heroNewLevel);
  447. CLevelWindow *lw = new CLevelWindow(hero,pskill,skills,
  448. [=](ui32 selection){ cb->selectionMade(selection, queryID); });
  449. GH.pushInt(lw);
  450. }
  451. void CPlayerInterface::commanderGotLevel (const CCommanderInstance * commander, std::vector<ui32> skills, QueryID queryID)
  452. {
  453. EVENT_HANDLER_CALLED_BY_CLIENT;
  454. waitWhileDialog();
  455. CCS->soundh->playSound(soundBase::heroNewLevel);
  456. GH.pushInt(new CStackWindow(commander, skills, [=](ui32 selection)
  457. {
  458. cb->selectionMade(selection, queryID);
  459. }));
  460. }
  461. void CPlayerInterface::heroInGarrisonChange(const CGTownInstance *town)
  462. {
  463. EVENT_HANDLER_CALLED_BY_CLIENT;
  464. updateInfo(town);
  465. if(town->garrisonHero && vstd::contains(wanderingHeroes,town->garrisonHero)) //wandering hero moved to the garrison
  466. {
  467. CGI->mh->hideObject(town->garrisonHero);
  468. if (town->garrisonHero->tempOwner == playerID) // our hero
  469. wanderingHeroes -= town->garrisonHero;
  470. }
  471. if(town->visitingHero && !vstd::contains(wanderingHeroes,town->visitingHero)) //hero leaves garrison
  472. {
  473. CGI->mh->printObject(town->visitingHero);
  474. if (town->visitingHero->tempOwner == playerID) // our hero
  475. wanderingHeroes.push_back(town->visitingHero);
  476. }
  477. adventureInt->heroList.update();
  478. adventureInt->updateNextHero(nullptr);
  479. if(CCastleInterface *c = castleInt)
  480. {
  481. c->garr->selectSlot(nullptr);
  482. c->garr->setArmy(town->getUpperArmy(), 0);
  483. c->garr->setArmy(town->visitingHero, 1);
  484. c->garr->recreateSlots();
  485. c->heroes->update();
  486. }
  487. for(IShowActivatable *isa : GH.listInt)
  488. {
  489. CKingdomInterface *ki = dynamic_cast<CKingdomInterface*>(isa);
  490. if (ki)
  491. {
  492. ki->townChanged(town);
  493. ki->updateGarrisons();
  494. }
  495. }
  496. GH.totalRedraw();
  497. }
  498. void CPlayerInterface::heroVisitsTown(const CGHeroInstance* hero, const CGTownInstance * town)
  499. {
  500. EVENT_HANDLER_CALLED_BY_CLIENT;
  501. if(hero->tempOwner != playerID )
  502. return;
  503. waitWhileDialog();
  504. openTownWindow(town);
  505. }
  506. void CPlayerInterface::garrisonsChanged(std::vector<const CGObjectInstance *> objs)
  507. {
  508. boost::unique_lock<boost::recursive_mutex> un(*pim);
  509. for(auto object : objs)
  510. updateInfo(object);
  511. for(auto & elem : GH.listInt)
  512. {
  513. CGarrisonHolder *cgh = dynamic_cast<CGarrisonHolder*>(elem);
  514. if (cgh)
  515. cgh->updateGarrisons();
  516. if(CTradeWindow *cmw = dynamic_cast<CTradeWindow*>(elem))
  517. {
  518. if(vstd::contains(objs, cmw->hero))
  519. cmw->garrisonChanged();
  520. }
  521. }
  522. GH.totalRedraw();
  523. }
  524. void CPlayerInterface::garrisonChanged( const CGObjectInstance * obj)
  525. {
  526. garrisonsChanged(std::vector<const CGObjectInstance *>(1, obj));
  527. }
  528. void CPlayerInterface::buildChanged(const CGTownInstance *town, BuildingID buildingID, int what) //what: 1 - built, 2 - demolished
  529. {
  530. EVENT_HANDLER_CALLED_BY_CLIENT;
  531. switch (buildingID)
  532. {
  533. case BuildingID::FORT: case BuildingID::CITADEL: case BuildingID::CASTLE:
  534. case BuildingID::VILLAGE_HALL: case BuildingID::TOWN_HALL: case BuildingID::CITY_HALL: case BuildingID::CAPITOL:
  535. case BuildingID::RESOURCE_SILO:
  536. updateInfo(town);
  537. break;
  538. }
  539. if(!castleInt)
  540. return;
  541. if(castleInt->town!=town)
  542. return;
  543. switch(what)
  544. {
  545. case 1:
  546. CCS->soundh->playSound(soundBase::newBuilding);
  547. castleInt->addBuilding(buildingID);
  548. break;
  549. case 2:
  550. castleInt->removeBuilding(buildingID);
  551. break;
  552. }
  553. adventureInt->townList.update(town);
  554. castleInt->townlist->update(town);
  555. }
  556. void CPlayerInterface::battleStartBefore(const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2)
  557. {
  558. //Don't wait for dialogs when we are non-active hot-seat player
  559. if(LOCPLINT == this)
  560. waitForAllDialogs();
  561. }
  562. void CPlayerInterface::battleStart(const CCreatureSet *army1, const CCreatureSet *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool side)
  563. {
  564. EVENT_HANDLER_CALLED_BY_CLIENT;
  565. if(settings["adventure"]["quickCombat"].Bool())
  566. {
  567. autofightingAI = CDynLibHandler::getNewBattleAI(settings["server"]["neutralAI"].String());
  568. autofightingAI->init(cb);
  569. autofightingAI->battleStart(army1, army2, int3(0,0,0), hero1, hero2, side);
  570. isAutoFightOn = true;
  571. cb->registerBattleInterface(autofightingAI);
  572. // Player shouldn't be able to move on adventure map if quick combat is going
  573. adventureInt->quickCombatLock();
  574. }
  575. //Don't wait for dialogs when we are non-active hot-seat player
  576. if(LOCPLINT == this)
  577. waitForAllDialogs();
  578. BATTLE_EVENT_POSSIBLE_RETURN;
  579. }
  580. void CPlayerInterface::battleStacksHealedRes(const std::vector<std::pair<ui32, ui32> > & healedStacks, bool lifeDrain, bool tentHeal, si32 lifeDrainFrom)
  581. {
  582. EVENT_HANDLER_CALLED_BY_CLIENT;
  583. BATTLE_EVENT_POSSIBLE_RETURN;
  584. for(auto & healedStack : healedStacks)
  585. {
  586. const CStack * healed = cb->battleGetStackByID(healedStack.first);
  587. if(battleInt->creAnims[healed->ID]->isDead())
  588. {
  589. //stack has been resurrected
  590. battleInt->creAnims[healed->ID]->setType(CCreatureAnim::HOLDING);
  591. }
  592. }
  593. if (lifeDrain)
  594. {
  595. const CStack *attacker = cb->battleGetStackByID(healedStacks[0].first, false);
  596. const CStack *defender = cb->battleGetStackByID(lifeDrainFrom, false);
  597. int textOff = 0;
  598. if (attacker)
  599. {
  600. battleInt->displayEffect(52, attacker->position); //TODO: transparency
  601. if (attacker->count > 1)
  602. {
  603. textOff += 1;
  604. }
  605. CCS->soundh->playSound(soundBase::DRAINLIF);
  606. //print info about life drain
  607. auto txt = boost::format (CGI->generaltexth->allTexts[361 + textOff]) % attacker->getCreature()->nameSing % healedStacks[0].second % defender->getCreature()->namePl;
  608. battleInt->console->addText(boost::to_string(txt));
  609. }
  610. }
  611. if (tentHeal)
  612. {
  613. std::string text = CGI->generaltexth->allTexts[414];
  614. boost::algorithm::replace_first(text, "%s", cb->battleGetStackByID(lifeDrainFrom, false)->getCreature()->nameSing);
  615. boost::algorithm::replace_first(text, "%s", cb->battleGetStackByID(healedStacks[0].first, false)->getCreature()->nameSing);
  616. boost::algorithm::replace_first(text, "%d", boost::lexical_cast<std::string>(healedStacks[0].second));
  617. battleInt->console->addText(text);
  618. }
  619. }
  620. void CPlayerInterface::battleNewStackAppeared(const CStack * stack)
  621. {
  622. EVENT_HANDLER_CALLED_BY_CLIENT;
  623. BATTLE_EVENT_POSSIBLE_RETURN;
  624. battleInt->newStack(stack);
  625. }
  626. void CPlayerInterface::battleObstaclesRemoved(const std::set<si32> & removedObstacles)
  627. {
  628. EVENT_HANDLER_CALLED_BY_CLIENT;
  629. BATTLE_EVENT_POSSIBLE_RETURN;
  630. // for(std::set<si32>::const_iterator it = removedObstacles.begin(); it != removedObstacles.end(); ++it)
  631. // {
  632. // for(std::map< int, CDefHandler * >::iterator itBat = battleInt->idToObstacle.begin(); itBat != battleInt->idToObstacle.end(); ++itBat)
  633. // {
  634. // if(itBat->first == *it) //remove this obstacle
  635. // {
  636. // battleInt->idToObstacle.erase(itBat);
  637. // break;
  638. // }
  639. // }
  640. // }
  641. //update accessible hexes
  642. battleInt->redrawBackgroundWithHexes(battleInt->activeStack);
  643. }
  644. void CPlayerInterface::battleCatapultAttacked(const CatapultAttack & ca)
  645. {
  646. EVENT_HANDLER_CALLED_BY_CLIENT;
  647. BATTLE_EVENT_POSSIBLE_RETURN;
  648. battleInt->stackIsCatapulting(ca);
  649. }
  650. void CPlayerInterface::battleStacksRemoved(const BattleStacksRemoved & bsr)
  651. {
  652. EVENT_HANDLER_CALLED_BY_CLIENT;
  653. BATTLE_EVENT_POSSIBLE_RETURN;
  654. for(auto & elem : bsr.stackIDs) //for each removed stack
  655. {
  656. battleInt->stackRemoved(elem);
  657. }
  658. }
  659. 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
  660. {
  661. EVENT_HANDLER_CALLED_BY_CLIENT;
  662. BATTLE_EVENT_POSSIBLE_RETURN;
  663. battleInt->newRound(round);
  664. }
  665. void CPlayerInterface::actionStarted(const BattleAction &action)
  666. {
  667. EVENT_HANDLER_CALLED_BY_CLIENT;
  668. BATTLE_EVENT_POSSIBLE_RETURN;
  669. curAction = new BattleAction(action);
  670. battleInt->startAction(curAction);
  671. }
  672. void CPlayerInterface::actionFinished(const BattleAction &action)
  673. {
  674. EVENT_HANDLER_CALLED_BY_CLIENT;
  675. BATTLE_EVENT_POSSIBLE_RETURN;
  676. battleInt->endAction(curAction);
  677. delete curAction;
  678. curAction = nullptr;
  679. }
  680. BattleAction CPlayerInterface::activeStack(const CStack * stack) //called when it's turn of that stack
  681. {
  682. THREAD_CREATED_BY_CLIENT;
  683. logGlobal->traceStream() << "Awaiting command for " << stack->nodeName();
  684. auto stackId = stack->ID;
  685. auto stackName = stack->nodeName();
  686. if(autofightingAI)
  687. {
  688. if(isAutoFightOn)
  689. {
  690. auto ret = autofightingAI->activeStack(stack);
  691. if(isAutoFightOn)
  692. {
  693. return ret;
  694. }
  695. }
  696. cb->unregisterBattleInterface(autofightingAI);
  697. autofightingAI.reset();
  698. }
  699. CBattleInterface *b = battleInt;
  700. if (b->givenCommand->get())
  701. {
  702. logGlobal->errorStream() << "Command buffer must be clean! (we don't want to use old command)";
  703. vstd::clear_pointer(b->givenCommand->data);
  704. }
  705. {
  706. boost::unique_lock<boost::recursive_mutex> un(*pim);
  707. b->stackActivated(stack);
  708. //Regeneration & mana drain go there
  709. }
  710. //wait till BattleInterface sets its command
  711. boost::unique_lock<boost::mutex> lock(b->givenCommand->mx);
  712. while(!b->givenCommand->data)
  713. {
  714. b->givenCommand->cond.wait(lock);
  715. if(!battleInt) //battle ended while we were waiting for movement (eg. because of spell)
  716. throw boost::thread_interrupted(); //will shut the thread peacefully
  717. }
  718. //tidy up
  719. BattleAction ret = *(b->givenCommand->data);
  720. vstd::clear_pointer(b->givenCommand->data);
  721. if(ret.actionType == Battle::CANCEL)
  722. {
  723. if(stackId != ret.stackNumber)
  724. logGlobal->error("Not current active stack action canceled");
  725. logGlobal->traceStream() << "Canceled command for " << stackName;
  726. }
  727. else
  728. logGlobal->traceStream() << "Giving command for " << stackName;
  729. return ret;
  730. }
  731. void CPlayerInterface::battleEnd(const BattleResult *br)
  732. {
  733. EVENT_HANDLER_CALLED_BY_CLIENT;
  734. if(isAutoFightOn)
  735. {
  736. isAutoFightOn = false;
  737. cb->unregisterBattleInterface(autofightingAI);
  738. autofightingAI.reset();
  739. adventureInt->quickCombatUnlock();
  740. if(!battleInt)
  741. {
  742. SDL_Rect temp_rect = genRect(561, 470, (screen->w - 800)/2 + 165, (screen->h - 600)/2 + 19);
  743. auto resWindow = new CBattleResultWindow(*br, temp_rect, *this);
  744. GH.pushInt(resWindow);
  745. // #1490 - during AI turn when quick combat is on, we need to display the message and wait for user to close it.
  746. // Otherwise NewTurn causes freeze.
  747. waitWhileDialog();
  748. return;
  749. }
  750. }
  751. BATTLE_EVENT_POSSIBLE_RETURN;
  752. battleInt->battleFinished(*br);
  753. }
  754. void CPlayerInterface::battleStackMoved(const CStack * stack, std::vector<BattleHex> dest, int distance)
  755. {
  756. EVENT_HANDLER_CALLED_BY_CLIENT;
  757. BATTLE_EVENT_POSSIBLE_RETURN;
  758. battleInt->stackMoved(stack, dest, distance);
  759. }
  760. void CPlayerInterface::battleSpellCast( const BattleSpellCast *sc )
  761. {
  762. EVENT_HANDLER_CALLED_BY_CLIENT;
  763. BATTLE_EVENT_POSSIBLE_RETURN;
  764. battleInt->spellCast(sc);
  765. }
  766. void CPlayerInterface::battleStacksEffectsSet( const SetStackEffect & sse )
  767. {
  768. EVENT_HANDLER_CALLED_BY_CLIENT;
  769. BATTLE_EVENT_POSSIBLE_RETURN;
  770. battleInt->battleStacksEffectsSet(sse);
  771. }
  772. void CPlayerInterface::battleTriggerEffect (const BattleTriggerEffect & bte)
  773. {
  774. EVENT_HANDLER_CALLED_BY_CLIENT;
  775. //TODO why is this different (no return on LOPLINT != this) ?
  776. RETURN_IF_QUICK_COMBAT;
  777. battleInt->battleTriggerEffect(bte);
  778. }
  779. void CPlayerInterface::battleStacksAttacked(const std::vector<BattleStackAttacked> & bsa)
  780. {
  781. EVENT_HANDLER_CALLED_BY_CLIENT;
  782. BATTLE_EVENT_POSSIBLE_RETURN;
  783. std::vector<StackAttackedInfo> arg;
  784. for(auto & elem : bsa)
  785. {
  786. const CStack *defender = cb->battleGetStackByID(elem.stackAttacked, false);
  787. const CStack *attacker = cb->battleGetStackByID(elem.attackerID, false);
  788. if(elem.isEffect())
  789. {
  790. if (defender && !elem.isSecondary())
  791. battleInt->displayEffect(elem.effect, defender->position);
  792. }
  793. if(elem.isSpell())
  794. {
  795. if (defender)
  796. battleInt->displaySpellEffect(elem.spellID, defender->position);
  797. }
  798. //FIXME: why action is deleted during enchanter cast?
  799. bool remoteAttack = false;
  800. if (LOCPLINT->curAction)
  801. remoteAttack |= LOCPLINT->curAction->actionType != Battle::WALK_AND_ATTACK;
  802. StackAttackedInfo to_put = {defender, elem.damageAmount, elem.killedAmount, attacker, remoteAttack, elem.killed(), elem.willRebirth(), elem.cloneKilled()};
  803. arg.push_back(to_put);
  804. }
  805. battleInt->stacksAreAttacked(arg);
  806. }
  807. void CPlayerInterface::battleAttack(const BattleAttack *ba)
  808. {
  809. EVENT_HANDLER_CALLED_BY_CLIENT;
  810. BATTLE_EVENT_POSSIBLE_RETURN;
  811. assert(curAction);
  812. if(ba->lucky()) //lucky hit
  813. {
  814. const CStack *stack = cb->battleGetStackByID(ba->stackAttacking);
  815. std::string hlp = CGI->generaltexth->allTexts[45];
  816. boost::algorithm::replace_first(hlp,"%s", (stack->count != 1) ? stack->getCreature()->namePl.c_str() : stack->getCreature()->nameSing.c_str());
  817. battleInt->console->addText(hlp);
  818. battleInt->displayEffect(18, stack->position);
  819. CCS->soundh->playSound(soundBase::GOODLUCK);
  820. }
  821. if(ba->unlucky()) //unlucky hit
  822. {
  823. const CStack *stack = cb->battleGetStackByID(ba->stackAttacking);
  824. std::string hlp = CGI->generaltexth->allTexts[44];
  825. boost::algorithm::replace_first(hlp,"%s", (stack->count != 1) ? stack->getCreature()->namePl.c_str() : stack->getCreature()->nameSing.c_str());
  826. battleInt->console->addText(hlp);
  827. battleInt->displayEffect(48, stack->position);
  828. CCS->soundh->playSound(soundBase::BADLUCK);
  829. }
  830. if (ba->deathBlow())
  831. {
  832. const CStack *stack = cb->battleGetStackByID(ba->stackAttacking);
  833. std::string hlp = CGI->generaltexth->allTexts[(stack->count != 1) ? 366 : 365];
  834. boost::algorithm::replace_first(hlp,"%s", (stack->count != 1) ? stack->getCreature()->namePl.c_str() : stack->getCreature()->nameSing.c_str());
  835. battleInt->console->addText(hlp);
  836. for (auto & elem : ba->bsa)
  837. {
  838. const CStack * attacked = cb->battleGetStackByID(elem.stackAttacked);
  839. battleInt->displayEffect(73, attacked->position);
  840. }
  841. CCS->soundh->playSound(soundBase::deathBlow);
  842. }
  843. battleInt->waitForAnims();
  844. const CStack * attacker = cb->battleGetStackByID(ba->stackAttacking);
  845. if(ba->shot())
  846. {
  847. for(auto & elem : ba->bsa)
  848. {
  849. if (!elem.isSecondary()) //display projectile only for primary target
  850. {
  851. const CStack * attacked = cb->battleGetStackByID(elem.stackAttacked);
  852. battleInt->stackAttacking(attacker, attacked->position, attacked, true);
  853. }
  854. }
  855. }
  856. else
  857. {
  858. int shift = 0;
  859. if(ba->counter() && BattleHex::mutualPosition(curAction->destinationTile, attacker->position) < 0)
  860. {
  861. int distp = BattleHex::getDistance(curAction->destinationTile + 1, attacker->position);
  862. int distm = BattleHex::getDistance(curAction->destinationTile - 1, attacker->position);
  863. if( distp < distm )
  864. shift = 1;
  865. else
  866. shift = -1;
  867. }
  868. const CStack * attacked = cb->battleGetStackByID(ba->bsa.begin()->stackAttacked);
  869. battleInt->stackAttacking( attacker, ba->counter() ? curAction->destinationTile + shift : curAction->additionalInfo, attacked, false);
  870. }
  871. //battleInt->waitForAnims(); //FIXME: freeze
  872. if(ba->spellLike())
  873. {
  874. //display hit animation
  875. SpellID spellID = ba->spellID;
  876. battleInt->displaySpellHit(spellID,curAction->destinationTile);
  877. }
  878. }
  879. void CPlayerInterface::battleObstaclePlaced(const CObstacleInstance &obstacle)
  880. {
  881. EVENT_HANDLER_CALLED_BY_CLIENT;
  882. BATTLE_EVENT_POSSIBLE_RETURN;
  883. battleInt->obstaclePlaced(obstacle);
  884. }
  885. void CPlayerInterface::yourTacticPhase(int distance)
  886. {
  887. THREAD_CREATED_BY_CLIENT;
  888. while(battleInt && battleInt->tacticsMode)
  889. boost::this_thread::sleep(boost::posix_time::millisec(1));
  890. }
  891. void CPlayerInterface::showComp(const Component &comp, std::string message)
  892. {
  893. EVENT_HANDLER_CALLED_BY_CLIENT;
  894. waitWhileDialog(); //Fix for mantis #98
  895. CCS->soundh->playSoundFromSet(CCS->soundh->pickupSounds);
  896. adventureInt->infoBar.showComponent(comp, message);
  897. }
  898. void CPlayerInterface::showInfoDialog(const std::string &text, const std::vector<Component*> &components, int soundID)
  899. {
  900. EVENT_HANDLER_CALLED_BY_CLIENT;
  901. if (settings["session"]["autoSkip"].Bool() && !LOCPLINT->shiftPressed())
  902. {
  903. return;
  904. }
  905. std::vector<CComponent*> intComps;
  906. for(auto & component : components)
  907. intComps.push_back(new CComponent(*component));
  908. showInfoDialog(text,intComps,soundID);
  909. }
  910. void CPlayerInterface::showInfoDialog(const std::string &text, CComponent * component)
  911. {
  912. std::vector<CComponent*> intComps;
  913. intComps.push_back(component);
  914. showInfoDialog(text, intComps, soundBase::sound_todo, true);
  915. }
  916. void CPlayerInterface::showInfoDialog(const std::string &text, const std::vector<CComponent*> & components, int soundID, bool delComps)
  917. {
  918. LOG_TRACE_PARAMS(logGlobal, "player=%s, text=%s, is LOCPLINT=%d", playerID % text % (this==LOCPLINT));
  919. waitWhileDialog();
  920. if (settings["session"]["autoSkip"].Bool() && !LOCPLINT->shiftPressed())
  921. {
  922. return;
  923. }
  924. CInfoWindow *temp = CInfoWindow::create(text, playerID, &components);
  925. temp->setDelComps(delComps);
  926. if(makingTurn && GH.listInt.size() && LOCPLINT == this)
  927. {
  928. CCS->soundh->playSound(static_cast<soundBase::soundID>(soundID));
  929. showingDialog->set(true);
  930. stopMovement(); // interrupt movement to show dialog
  931. GH.pushInt(temp);
  932. }
  933. else
  934. {
  935. dialogs.push_back(temp);
  936. }
  937. }
  938. void CPlayerInterface::showInfoDialogAndWait(std::vector<Component> & components, const MetaString & text)
  939. {
  940. EVENT_HANDLER_CALLED_BY_CLIENT;
  941. std::vector<Component*> comps;
  942. for(auto & elem : components)
  943. {
  944. comps.push_back(&elem);
  945. }
  946. std::string str;
  947. text.toString(str);
  948. showInfoDialog(str,comps, 0);
  949. waitWhileDialog();
  950. }
  951. void CPlayerInterface::showYesNoDialog(const std::string &text, CFunctionList<void()> onYes, CFunctionList<void()> onNo, bool DelComps, const std::vector<CComponent*> & components)
  952. {
  953. boost::unique_lock<boost::recursive_mutex> un(*pim);
  954. stopMovement();
  955. LOCPLINT->showingDialog->setn(true);
  956. CInfoWindow::showYesNoDialog(text, &components, onYes, onNo, DelComps, playerID);
  957. }
  958. void CPlayerInterface::showOkDialog(std::vector<Component> & components, const MetaString & text, const std::function<void()> & onOk)
  959. {
  960. boost::unique_lock<boost::recursive_mutex> un(*pim);
  961. std::vector<Component*> comps;
  962. for(auto & elem : components)
  963. {
  964. comps.push_back(&elem);
  965. }
  966. std::string str;
  967. text.toString(str);
  968. stopMovement();
  969. showingDialog->setn(true);
  970. std::vector<CComponent*> intComps;
  971. for(auto & component : comps)
  972. intComps.push_back(new CComponent(*component));
  973. CInfoWindow::showOkDialog(str, &intComps, onOk, true, playerID);
  974. }
  975. void CPlayerInterface::showBlockingDialog( const std::string &text, const std::vector<Component> &components, QueryID askID, int soundID, bool selection, bool cancel )
  976. {
  977. EVENT_HANDLER_CALLED_BY_CLIENT;
  978. waitWhileDialog();
  979. stopMovement();
  980. CCS->soundh->playSound(static_cast<soundBase::soundID>(soundID));
  981. if(!selection && cancel) //simple yes/no dialog
  982. {
  983. std::vector<CComponent*> intComps;
  984. for(auto & component : components)
  985. intComps.push_back(new CComponent(component)); //will be deleted by close in window
  986. showYesNoDialog(text, [=]{ cb->selectionMade(1, askID); }, [=]{ cb->selectionMade(0, askID); }, true, intComps);
  987. }
  988. else if(selection)
  989. {
  990. std::vector<CSelectableComponent*> intComps;
  991. for(auto & component : components)
  992. intComps.push_back(new CSelectableComponent(component)); //will be deleted by CSelWindow::close
  993. std::vector<std::pair<std::string,CFunctionList<void()> > > pom;
  994. pom.push_back(std::pair<std::string,CFunctionList<void()> >("IOKAY.DEF",0));
  995. if(cancel)
  996. {
  997. pom.push_back(std::pair<std::string,CFunctionList<void()> >("ICANCEL.DEF",0));
  998. }
  999. int charperline = 35;
  1000. if (pom.size() > 1)
  1001. charperline = 50;
  1002. auto temp = new CSelWindow(text, playerID, charperline, intComps, pom, askID);
  1003. GH.pushInt(temp);
  1004. intComps[0]->clickLeft(true, false);
  1005. }
  1006. }
  1007. void CPlayerInterface::showTeleportDialog(TeleportChannelID channel, TTeleportExitsList exits, bool impassable, QueryID askID)
  1008. {
  1009. EVENT_HANDLER_CALLED_BY_CLIENT;
  1010. int choosenExit = -1;
  1011. auto neededExit = std::make_pair(destinationTeleport, destinationTeleportPos);
  1012. if(destinationTeleport != ObjectInstanceID() && vstd::contains(exits, neededExit))
  1013. choosenExit = vstd::find_pos(exits, neededExit);
  1014. cb->selectionMade(choosenExit, askID);
  1015. }
  1016. void CPlayerInterface::tileRevealed(const std::unordered_set<int3, ShashInt3> &pos)
  1017. {
  1018. EVENT_HANDLER_CALLED_BY_CLIENT;
  1019. //FIXME: wait for dialog? Magi hut/eye would benefit from this but may break other areas
  1020. for(auto & po : pos)
  1021. adventureInt->minimap.showTile(po);
  1022. if(!pos.empty())
  1023. GH.totalRedraw();
  1024. }
  1025. void CPlayerInterface::tileHidden(const std::unordered_set<int3, ShashInt3> &pos)
  1026. {
  1027. EVENT_HANDLER_CALLED_BY_CLIENT;
  1028. for(auto & po : pos)
  1029. adventureInt->minimap.hideTile(po);
  1030. if(!pos.empty())
  1031. GH.totalRedraw();
  1032. }
  1033. void CPlayerInterface::openHeroWindow(const CGHeroInstance *hero)
  1034. {
  1035. boost::unique_lock<boost::recursive_mutex> un(*pim);
  1036. GH.pushInt(new CHeroWindow(hero));
  1037. }
  1038. /*
  1039. void CPlayerInterface::heroArtifactSetChanged(const CGHeroInstance*hero)
  1040. {
  1041. boost::unique_lock<boost::recursive_mutex> un(*pim);
  1042. if(adventureInt->heroWindow->curHero && adventureInt->heroWindow->curHero->id == hero->id) //hero window is opened
  1043. {
  1044. adventureInt->heroWindow->deactivate();
  1045. adventureInt->heroWindow->setHero(hero);
  1046. adventureInt->heroWindow->activate();
  1047. }
  1048. else if(CExchangeWindow* cew = dynamic_cast<CExchangeWindow*>(GH.topInt())) //exchange window is open
  1049. {
  1050. cew->deactivate();
  1051. for(int g=0; g<ARRAY_COUNT(cew->heroInst); ++g)
  1052. {
  1053. if(cew->heroInst[g]->id == hero->id)
  1054. {
  1055. cew->heroInst[g] = hero;
  1056. cew->artifs[g]->updateState = true;
  1057. cew->artifs[g]->setHero(hero);
  1058. cew->artifs[g]->updateState = false;
  1059. }
  1060. }
  1061. cew->prepareBackground();
  1062. cew->activate();
  1063. }
  1064. else if(CTradeWindow *caw = dynamic_cast<CTradeWindow*>(GH.topInt()))
  1065. {
  1066. if(caw->arts)
  1067. {
  1068. caw->deactivate();
  1069. caw->arts->updateState = true;
  1070. caw->arts->setHero(hero);
  1071. caw->arts->updateState = false;
  1072. caw->activate();
  1073. }
  1074. }
  1075. updateInfo(hero);
  1076. }*/
  1077. void CPlayerInterface::availableCreaturesChanged( const CGDwelling *town )
  1078. {
  1079. EVENT_HANDLER_CALLED_BY_CLIENT;
  1080. if(const CGTownInstance * townObj = dynamic_cast<const CGTownInstance*>(town))
  1081. {
  1082. CFortScreen *fs = dynamic_cast<CFortScreen*>(GH.topInt());
  1083. if(fs)
  1084. fs->creaturesChanged();
  1085. for(IShowActivatable *isa : GH.listInt)
  1086. {
  1087. CKingdomInterface *ki = dynamic_cast<CKingdomInterface*>(isa);
  1088. if (ki && townObj)
  1089. ki->townChanged(townObj);
  1090. }
  1091. }
  1092. else if(GH.listInt.size() && (town->ID == Obj::CREATURE_GENERATOR1
  1093. || town->ID == Obj::CREATURE_GENERATOR4 || town->ID == Obj::WAR_MACHINE_FACTORY))
  1094. {
  1095. CRecruitmentWindow *crw = dynamic_cast<CRecruitmentWindow*>(GH.topInt());
  1096. if(crw && crw->dwelling == town)
  1097. crw->availableCreaturesChanged();
  1098. }
  1099. }
  1100. void CPlayerInterface::heroBonusChanged( const CGHeroInstance *hero, const Bonus &bonus, bool gain )
  1101. {
  1102. EVENT_HANDLER_CALLED_BY_CLIENT;
  1103. if(bonus.type == Bonus::NONE)
  1104. return;
  1105. updateInfo(hero);
  1106. if ((bonus.type == Bonus::FLYING_MOVEMENT || bonus.type == Bonus::WATER_WALKING) && !gain)
  1107. {
  1108. //recalculate paths because hero has lost bonus influencing pathfinding
  1109. eraseCurrentPathOf(hero, false);
  1110. }
  1111. }
  1112. template <typename Handler> void CPlayerInterface::serializeTempl( Handler &h, const int version )
  1113. {
  1114. h & observerInDuelMode;
  1115. h & wanderingHeroes & towns & sleepingHeroes;
  1116. std::map<const CGHeroInstance *, int3> pathsMap; //hero -> dest
  1117. if(h.saving)
  1118. {
  1119. for(auto &p : paths)
  1120. {
  1121. if(p.second.nodes.size())
  1122. pathsMap[p.first] = p.second.endPos();
  1123. else
  1124. logGlobal->errorStream() << p.first->name << " has assigned an empty path! Ignoring it...";
  1125. }
  1126. h & pathsMap;
  1127. }
  1128. else
  1129. {
  1130. h & pathsMap;
  1131. if(cb)
  1132. for(auto &p : pathsMap)
  1133. {
  1134. CGPath path;
  1135. cb->getPathsInfo(p.first)->getPath(path, p.second);
  1136. paths[p.first] = path;
  1137. logGlobal->traceStream() << boost::format("Restored path for hero %s leading to %s with %d nodes")
  1138. % p.first->nodeName() % p.second % path.nodes.size();
  1139. }
  1140. }
  1141. h & spellbookSettings;
  1142. }
  1143. void CPlayerInterface::saveGame( COSer & h, const int version )
  1144. {
  1145. EVENT_HANDLER_CALLED_BY_CLIENT;
  1146. serializeTempl(h,version);
  1147. }
  1148. void CPlayerInterface::loadGame( CISer & h, const int version )
  1149. {
  1150. EVENT_HANDLER_CALLED_BY_CLIENT;
  1151. serializeTempl(h,version);
  1152. firstCall = -1;
  1153. }
  1154. void CPlayerInterface::moveHero( const CGHeroInstance *h, CGPath path )
  1155. {
  1156. logGlobal->traceStream() << __FUNCTION__;
  1157. if(!LOCPLINT->makingTurn)
  1158. return;
  1159. if (!h)
  1160. return; //can't find hero
  1161. //It shouldn't be possible to move hero with open dialog (or dialog waiting in bg)
  1162. if(showingDialog->get() || !dialogs.empty())
  1163. return;
  1164. duringMovement = true;
  1165. if (adventureInt && adventureInt->isHeroSleeping(h))
  1166. {
  1167. adventureInt->sleepWake->clickLeft(true, false);
  1168. adventureInt->sleepWake->clickLeft(false, true);
  1169. //could've just called
  1170. //adventureInt->fsleepWake();
  1171. //but no authentic button click/sound ;-)
  1172. }
  1173. boost::thread moveHeroTask(std::bind(&CPlayerInterface::doMoveHero,this,h,path));
  1174. }
  1175. bool CPlayerInterface::shiftPressed() const
  1176. {
  1177. return isShiftKeyDown();
  1178. }
  1179. bool CPlayerInterface::altPressed() const
  1180. {
  1181. return isAltKeyDown();
  1182. }
  1183. void CPlayerInterface::showGarrisonDialog( const CArmedInstance *up, const CGHeroInstance *down, bool removableUnits, QueryID queryID)
  1184. {
  1185. EVENT_HANDLER_CALLED_BY_CLIENT;
  1186. auto onEnd = [=]{ cb->selectionMade(0, queryID); };
  1187. if(stillMoveHero.get() == DURING_MOVE && adventureInt->terrain.currentPath && adventureInt->terrain.currentPath->nodes.size() > 1) //to ignore calls on passing through garrisons
  1188. {
  1189. onEnd();
  1190. return;
  1191. }
  1192. waitForAllDialogs();
  1193. auto cgw = new CGarrisonWindow(up,down,removableUnits);
  1194. cgw->quit->addCallback(onEnd);
  1195. GH.pushInt(cgw);
  1196. }
  1197. /**
  1198. * Shows the dialog that appears when right-clicking an artifact that can be assembled
  1199. * into a combinational one on an artifact screen. Does not require the combination of
  1200. * artifacts to be legal.
  1201. * @param artifactID ID of a constituent artifact.
  1202. * @param assembleTo ID of artifact to assemble a constituent into, not used when assemble
  1203. * is false.
  1204. * @param assemble True if the artifact is to be assembled, false if it is to be disassembled.
  1205. */
  1206. void CPlayerInterface::showArtifactAssemblyDialog (ui32 artifactID, ui32 assembleTo, bool assemble, CFunctionList<bool()> onYes, CFunctionList<bool()> onNo)
  1207. {
  1208. const CArtifact &artifact = *CGI->arth->artifacts[artifactID];
  1209. std::string text = artifact.Description();
  1210. text += "\n\n";
  1211. std::vector<CComponent*> scs;
  1212. if (assemble) {
  1213. const CArtifact &assembledArtifact = *CGI->arth->artifacts[assembleTo];
  1214. // You possess all of the components to...
  1215. text += boost::str(boost::format(CGI->generaltexth->allTexts[732]) % assembledArtifact.Name());
  1216. // Picture of assembled artifact at bottom.
  1217. auto sc = new CComponent(CComponent::artifact, assembledArtifact.id, 0);
  1218. //sc->description = assembledArtifact.Description();
  1219. //sc->subtitle = assembledArtifact.Name();
  1220. scs.push_back(sc);
  1221. } else {
  1222. // Do you wish to disassemble this artifact?
  1223. text += CGI->generaltexth->allTexts[733];
  1224. }
  1225. showYesNoDialog(text, onYes, onNo, true, scs);
  1226. }
  1227. void CPlayerInterface::requestRealized( PackageApplied *pa )
  1228. {
  1229. EVENT_HANDLER_CALLED_BY_CLIENT;
  1230. if(pa->packType == typeList.getTypeID<MoveHero>() && stillMoveHero.get() == DURING_MOVE
  1231. && destinationTeleport == ObjectInstanceID())
  1232. stillMoveHero.setn(CONTINUE_MOVE);
  1233. if(destinationTeleport != ObjectInstanceID()
  1234. && pa->packType == typeList.getTypeID<QueryReply>()
  1235. && stillMoveHero.get() == DURING_MOVE)
  1236. { // After teleportation via CGTeleport object is finished
  1237. destinationTeleport = ObjectInstanceID();
  1238. destinationTeleportPos = int3(-1);
  1239. stillMoveHero.setn(CONTINUE_MOVE);
  1240. }
  1241. }
  1242. void CPlayerInterface::heroExchangeStarted(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID query)
  1243. {
  1244. EVENT_HANDLER_CALLED_BY_CLIENT;
  1245. GH.pushInt(new CExchangeWindow(hero1, hero2, query));
  1246. }
  1247. void CPlayerInterface::objectPropertyChanged(const SetObjectProperty * sop)
  1248. {
  1249. EVENT_HANDLER_CALLED_BY_CLIENT;
  1250. //redraw minimap if owner changed
  1251. if(sop->what == ObjProperty::OWNER)
  1252. {
  1253. const CGObjectInstance * obj = cb->getObj(sop->id);
  1254. std::set<int3> pos = obj->getBlockedPos();
  1255. for(auto & po : pos)
  1256. {
  1257. if(cb->isVisible(po))
  1258. adventureInt->minimap.showTile(po);
  1259. }
  1260. if(obj->ID == Obj::TOWN)
  1261. {
  1262. if(obj->tempOwner == playerID)
  1263. towns.push_back(static_cast<const CGTownInstance *>(obj));
  1264. else
  1265. towns -= obj;
  1266. adventureInt->townList.update();
  1267. }
  1268. assert(cb->getTownsInfo().size() == towns.size());
  1269. }
  1270. }
  1271. void CPlayerInterface::initializeHeroTownList()
  1272. {
  1273. std::vector<const CGHeroInstance*> allHeroes = cb->getHeroesInfo();
  1274. /*
  1275. std::vector <const CGHeroInstance *> newWanderingHeroes;
  1276. //applying current heroes order to new heroes info
  1277. int j;
  1278. for (int i = 0; i < wanderingHeroes.size(); i++)
  1279. if ((j = vstd::find_pos(allHeroes, wanderingHeroes[i])) >= 0)
  1280. if (!allHeroes[j]->inTownGarrison)
  1281. {
  1282. newWanderingHeroes += allHeroes[j];
  1283. allHeroes -= allHeroes[j];
  1284. }
  1285. //all the rest of new heroes go the end of the list
  1286. wanderingHeroes.clear();
  1287. wanderingHeroes = newWanderingHeroes;
  1288. newWanderingHeroes.clear();*/
  1289. for (auto & allHeroe : allHeroes)
  1290. if (!allHeroe->inTownGarrison)
  1291. wanderingHeroes.push_back(allHeroe);
  1292. std::vector<const CGTownInstance*> allTowns = cb->getTownsInfo();
  1293. /*
  1294. std::vector<const CGTownInstance*> newTowns;
  1295. for (int i = 0; i < towns.size(); i++)
  1296. if ((j = vstd::find_pos(allTowns, towns[i])) >= 0)
  1297. {
  1298. newTowns += allTowns[j];
  1299. allTowns -= allTowns[j];
  1300. }
  1301. towns.clear();
  1302. towns = newTowns;
  1303. newTowns.clear();*/
  1304. for(auto & allTown : allTowns)
  1305. towns.push_back(allTown);
  1306. if (adventureInt)
  1307. adventureInt->updateNextHero(nullptr);
  1308. }
  1309. void CPlayerInterface::showRecruitmentDialog(const CGDwelling *dwelling, const CArmedInstance *dst, int level)
  1310. {
  1311. EVENT_HANDLER_CALLED_BY_CLIENT;
  1312. waitWhileDialog();
  1313. auto recruitCb = [=](CreatureID id, int count){ LOCPLINT->cb->recruitCreatures(dwelling, dst, id, count, -1); };
  1314. CRecruitmentWindow *cr = new CRecruitmentWindow(dwelling, level, dst, recruitCb);
  1315. GH.pushInt(cr);
  1316. }
  1317. void CPlayerInterface::waitWhileDialog(bool unlockPim /*= true*/)
  1318. {
  1319. if(GH.amIGuiThread())
  1320. {
  1321. logGlobal->warnStream() << "Cannot wait for dialogs in gui thread (deadlock risk)!";
  1322. return;
  1323. }
  1324. auto unlock = vstd::makeUnlockGuardIf(*pim, unlockPim);
  1325. boost::unique_lock<boost::mutex> un(showingDialog->mx);
  1326. while(showingDialog->data)
  1327. showingDialog->cond.wait(un);
  1328. }
  1329. void CPlayerInterface::showShipyardDialog(const IShipyard *obj)
  1330. {
  1331. EVENT_HANDLER_CALLED_BY_CLIENT;
  1332. auto state = obj->shipyardStatus();
  1333. std::vector<si32> cost;
  1334. obj->getBoatCost(cost);
  1335. CShipyardWindow *csw = new CShipyardWindow(cost, state, obj->getBoatType(), [=]{ cb->buildBoat(obj); });
  1336. GH.pushInt(csw);
  1337. }
  1338. void CPlayerInterface::newObject( const CGObjectInstance * obj )
  1339. {
  1340. EVENT_HANDLER_CALLED_BY_CLIENT;
  1341. //we might have built a boat in shipyard in opened town screen
  1342. if(obj->ID == Obj::BOAT
  1343. && LOCPLINT->castleInt
  1344. && obj->pos-obj->getVisitableOffset() == LOCPLINT->castleInt->town->bestLocation())
  1345. {
  1346. CCS->soundh->playSound(soundBase::newBuilding);
  1347. LOCPLINT->castleInt->addBuilding(BuildingID::SHIP);
  1348. }
  1349. }
  1350. void CPlayerInterface::centerView (int3 pos, int focusTime)
  1351. {
  1352. EVENT_HANDLER_CALLED_BY_CLIENT;
  1353. waitWhileDialog();
  1354. adventureInt->centerOn (pos);
  1355. if(focusTime)
  1356. {
  1357. GH.totalRedraw();
  1358. {
  1359. auto unlockPim = vstd::makeUnlockGuard(*pim);
  1360. IgnoreEvents ignore(*this);
  1361. SDL_Delay(focusTime);
  1362. }
  1363. }
  1364. }
  1365. void CPlayerInterface::objectRemoved( const CGObjectInstance *obj )
  1366. {
  1367. EVENT_HANDLER_CALLED_BY_CLIENT;
  1368. if (LOCPLINT->cb->getCurrentPlayer() == playerID) {
  1369. std::string handlerName = VLC->objtypeh->getObjectHandlerName(obj->ID);
  1370. if ((handlerName == "pickable") || (handlerName == "scholar") || (handlerName== "artifact") || (handlerName == "pandora")) {
  1371. waitWhileDialog();
  1372. CCS->soundh->playSoundFromSet(CCS->soundh->pickupSounds);
  1373. } else if ((handlerName == "monster") || (handlerName == "hero")) {
  1374. waitWhileDialog();
  1375. CCS->soundh->playSound(soundBase::KillFade);
  1376. }
  1377. }
  1378. if(obj->ID == Obj::HERO && obj->tempOwner == playerID)
  1379. {
  1380. const CGHeroInstance *h = static_cast<const CGHeroInstance*>(obj);
  1381. heroKilled(h);
  1382. }
  1383. }
  1384. bool CPlayerInterface::ctrlPressed() const
  1385. {
  1386. return isCtrlKeyDown();
  1387. }
  1388. const CArmedInstance * CPlayerInterface::getSelection()
  1389. {
  1390. return currentSelection;
  1391. }
  1392. void CPlayerInterface::setSelection(const CArmedInstance * obj)
  1393. {
  1394. currentSelection = obj;
  1395. }
  1396. void CPlayerInterface::update()
  1397. {
  1398. // Make sure that gamestate won't change when GUI objects may obtain its parts on event processing or drawing request
  1399. boost::shared_lock<boost::shared_mutex> gsLock(cb->getGsMutex());
  1400. // While mutexes were locked away we may be have stopped being the active interface
  1401. if(LOCPLINT != this)
  1402. return;
  1403. //if there are any waiting dialogs, show them
  1404. if((howManyPeople <= 1 || makingTurn) && !dialogs.empty() && !showingDialog->get())
  1405. {
  1406. showingDialog->set(true);
  1407. GH.pushInt(dialogs.front());
  1408. dialogs.pop_front();
  1409. }
  1410. //in some conditions we may receive calls before selection is initialized - we must ignore them
  1411. if(adventureInt && !adventureInt->selection && GH.topInt() == adventureInt)
  1412. {
  1413. return;
  1414. }
  1415. // Handles mouse and key input
  1416. GH.updateTime();
  1417. GH.handleEvents();
  1418. if(adventureInt && !adventureInt->isActive() && adventureInt->scrollingDir) //player forces map scrolling though interface is disabled
  1419. GH.totalRedraw();
  1420. else
  1421. GH.simpleRedraw();
  1422. }
  1423. int CPlayerInterface::getLastIndex( std::string namePrefix)
  1424. {
  1425. using namespace boost::filesystem;
  1426. using namespace boost::algorithm;
  1427. path gamesDir = VCMIDirs::get().userSavePath();
  1428. std::map<std::time_t, int> dates; //save number => datestamp
  1429. const directory_iterator enddir;
  1430. if(!exists(gamesDir))
  1431. create_directory(gamesDir);
  1432. else
  1433. for (directory_iterator dir(gamesDir); dir != enddir; ++dir)
  1434. {
  1435. if(is_regular(dir->status()))
  1436. {
  1437. std::string name = dir->path().filename().string();
  1438. if(starts_with(name, namePrefix) && ends_with(name, ".vcgm1"))
  1439. {
  1440. char nr = name[namePrefix.size()];
  1441. if(std::isdigit(nr))
  1442. dates[last_write_time(dir->path())] = boost::lexical_cast<int>(nr);
  1443. }
  1444. }
  1445. }
  1446. if(!dates.empty())
  1447. return (--dates.end())->second; //return latest file number
  1448. return 0;
  1449. }
  1450. void CPlayerInterface::initMovement( const TryMoveHero &details, const CGHeroInstance * ho, const int3 &hp )
  1451. {
  1452. if(details.end.x+1 == details.start.x && details.end.y+1 == details.start.y) //tl
  1453. {
  1454. //ho->moveDir = 1;
  1455. ho->isStanding = false;
  1456. CGI->mh->ttiles[hp.x-3][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -31, -31)));
  1457. CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 1, -31)));
  1458. CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 33, -31)));
  1459. CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 65, -31)));
  1460. CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -31, 1)));
  1461. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1, 1), ho->id);
  1462. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33, 1), ho->id);
  1463. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65, 1), ho->id);
  1464. CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -31, 33)));
  1465. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1, 33), ho->id);
  1466. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33, 33), ho->id);
  1467. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65, 33), ho->id);
  1468. std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1469. std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1470. std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1471. std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1472. std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), objectBlitOrderSorter);
  1473. std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), objectBlitOrderSorter);
  1474. }
  1475. else if(details.end.x == details.start.x && details.end.y+1 == details.start.y) //t
  1476. {
  1477. //ho->moveDir = 2;
  1478. ho->isStanding = false;
  1479. CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 0, -31)));
  1480. CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 32, -31)));
  1481. CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 64, -31)));
  1482. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 0, 1), ho->id);
  1483. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 32, 1), ho->id);
  1484. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 64, 1), ho->id);
  1485. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 0, 33), ho->id);
  1486. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 32, 33), ho->id);
  1487. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 64, 33), ho->id);
  1488. std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1489. std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1490. std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1491. }
  1492. else if(details.end.x-1 == details.start.x && details.end.y+1 == details.start.y) //tr
  1493. {
  1494. //ho->moveDir = 3;
  1495. ho->isStanding = false;
  1496. CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -1, -31)));
  1497. CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 31, -31)));
  1498. CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 63, -31)));
  1499. CGI->mh->ttiles[hp.x+1][hp.y-2][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 95, -31)));
  1500. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1, 1), ho->id);
  1501. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31, 1), ho->id);
  1502. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63, 1), ho->id);
  1503. CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 95, 1)));
  1504. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1, 33), ho->id);
  1505. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31, 33), ho->id);
  1506. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63, 33), ho->id);
  1507. CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 95, 33)));
  1508. std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1509. std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1510. std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1511. std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-2][hp.z].objects.end(), objectBlitOrderSorter);
  1512. std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), objectBlitOrderSorter);
  1513. std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), objectBlitOrderSorter);
  1514. }
  1515. else if(details.end.x-1 == details.start.x && details.end.y == details.start.y) //r
  1516. {
  1517. //ho->moveDir = 4;
  1518. ho->isStanding = false;
  1519. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1, 0), ho->id);
  1520. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31, 0), ho->id);
  1521. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63, 0), ho->id);
  1522. CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 95, 0)));
  1523. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1, 32), ho->id);
  1524. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31, 32), ho->id);
  1525. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63, 32), ho->id);
  1526. CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 95, 32)));
  1527. std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), objectBlitOrderSorter);
  1528. std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), objectBlitOrderSorter);
  1529. }
  1530. else if(details.end.x-1 == details.start.x && details.end.y-1 == details.start.y) //br
  1531. {
  1532. //ho->moveDir = 5;
  1533. ho->isStanding = false;
  1534. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1, -1), ho->id);
  1535. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31, -1), ho->id);
  1536. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63, -1), ho->id);
  1537. CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 95, -1)));
  1538. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1, 31), ho->id);
  1539. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31, 31), ho->id);
  1540. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63, 31), ho->id);
  1541. CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 95, 31)));
  1542. CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -1, 63)));
  1543. CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 31, 63)));
  1544. CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 63, 63)));
  1545. CGI->mh->ttiles[hp.x+1][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 95, 63)));
  1546. std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), objectBlitOrderSorter);
  1547. std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), objectBlitOrderSorter);
  1548. std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1549. std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1550. std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1551. std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1552. }
  1553. else if(details.end.x == details.start.x && details.end.y-1 == details.start.y) //b
  1554. {
  1555. //ho->moveDir = 6;
  1556. ho->isStanding = false;
  1557. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 0, -1), ho->id);
  1558. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 32, -1), ho->id);
  1559. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 64, -1), ho->id);
  1560. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 0, 31), ho->id);
  1561. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 32, 31), ho->id);
  1562. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 64, 31), ho->id);
  1563. CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 0, 63)));
  1564. CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 32, 63)));
  1565. CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 64, 63)));
  1566. std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1567. std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1568. std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1569. }
  1570. else if(details.end.x+1 == details.start.x && details.end.y-1 == details.start.y) //bl
  1571. {
  1572. //ho->moveDir = 7;
  1573. ho->isStanding = false;
  1574. CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -31, -1)));
  1575. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1, -1), ho->id);
  1576. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33, -1), ho->id);
  1577. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65, -1), ho->id);
  1578. CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -31, 31)));
  1579. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1, 31), ho->id);
  1580. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33, 31), ho->id);
  1581. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65, 31), ho->id);
  1582. CGI->mh->ttiles[hp.x-3][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -31, 63)));
  1583. CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 1, 63)));
  1584. CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 33, 63)));
  1585. CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, 65, 63)));
  1586. std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), objectBlitOrderSorter);
  1587. std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), objectBlitOrderSorter);
  1588. std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1589. std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1590. std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1591. std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), objectBlitOrderSorter);
  1592. }
  1593. else if(details.end.x+1 == details.start.x && details.end.y == details.start.y) //l
  1594. {
  1595. //ho->moveDir = 8;
  1596. ho->isStanding = false;
  1597. CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -31, 0)));
  1598. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1, 0), ho->id);
  1599. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33, 0), ho->id);
  1600. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65, 0), ho->id);
  1601. CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.push_back(TerrainTileObject(ho, genRect(32, 32, -31, 32)));
  1602. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1, 32), ho->id);
  1603. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33, 32), ho->id);
  1604. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65, 32), ho->id);
  1605. std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), objectBlitOrderSorter);
  1606. std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), objectBlitOrderSorter);
  1607. }
  1608. }
  1609. void CPlayerInterface::movementPxStep( const TryMoveHero &details, int i, const int3 &hp, const CGHeroInstance * ho )
  1610. {
  1611. if(details.end.x+1 == details.start.x && details.end.y+1 == details.start.y) //tl
  1612. {
  1613. //setting advmap shift
  1614. adventureInt->terrain.moveX = i-32;
  1615. adventureInt->terrain.moveY = i-32;
  1616. subRect(hp.x-3, hp.y-2, hp.z, genRect(32, 32, -31+i, -31+i), ho->id);
  1617. subRect(hp.x-2, hp.y-2, hp.z, genRect(32, 32, 1+i, -31+i), ho->id);
  1618. subRect(hp.x-1, hp.y-2, hp.z, genRect(32, 32, 33+i, -31+i), ho->id);
  1619. subRect(hp.x, hp.y-2, hp.z, genRect(32, 32, 65+i, -31+i), ho->id);
  1620. subRect(hp.x-3, hp.y-1, hp.z, genRect(32, 32, -31+i, 1+i), ho->id);
  1621. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1+i, 1+i), ho->id);
  1622. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33+i, 1+i), ho->id);
  1623. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65+i, 1+i), ho->id);
  1624. subRect(hp.x-3, hp.y, hp.z, genRect(32, 32, -31+i, 33+i), ho->id);
  1625. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1+i, 33+i), ho->id);
  1626. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33+i, 33+i), ho->id);
  1627. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65+i, 33+i), ho->id);
  1628. }
  1629. else if(details.end.x == details.start.x && details.end.y+1 == details.start.y) //t
  1630. {
  1631. //setting advmap shift
  1632. adventureInt->terrain.moveY = i-32;
  1633. subRect(hp.x-2, hp.y-2, hp.z, genRect(32, 32, 0, -31+i), ho->id);
  1634. subRect(hp.x-1, hp.y-2, hp.z, genRect(32, 32, 32, -31+i), ho->id);
  1635. subRect(hp.x, hp.y-2, hp.z, genRect(32, 32, 64, -31+i), ho->id);
  1636. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 0, 1+i), ho->id);
  1637. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 32, 1+i), ho->id);
  1638. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 64, 1+i), ho->id);
  1639. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 0, 33+i), ho->id);
  1640. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 32, 33+i), ho->id);
  1641. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 64, 33+i), ho->id);
  1642. }
  1643. else if(details.end.x-1 == details.start.x && details.end.y+1 == details.start.y) //tr
  1644. {
  1645. //setting advmap shift
  1646. adventureInt->terrain.moveX = -i+32;
  1647. adventureInt->terrain.moveY = i-32;
  1648. subRect(hp.x-2, hp.y-2, hp.z, genRect(32, 32, -1-i, -31+i), ho->id);
  1649. subRect(hp.x-1, hp.y-2, hp.z, genRect(32, 32, 31-i, -31+i), ho->id);
  1650. subRect(hp.x, hp.y-2, hp.z, genRect(32, 32, 63-i, -31+i), ho->id);
  1651. subRect(hp.x+1, hp.y-2, hp.z, genRect(32, 32, 95-i, -31+i), ho->id);
  1652. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1-i, 1+i), ho->id);
  1653. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31-i, 1+i), ho->id);
  1654. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63-i, 1+i), ho->id);
  1655. subRect(hp.x+1, hp.y-1, hp.z, genRect(32, 32, 95-i, 1+i), ho->id);
  1656. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1-i, 33+i), ho->id);
  1657. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31-i, 33+i), ho->id);
  1658. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63-i, 33+i), ho->id);
  1659. subRect(hp.x+1, hp.y, hp.z, genRect(32, 32, 95-i, 33+i), ho->id);
  1660. }
  1661. else if(details.end.x-1 == details.start.x && details.end.y == details.start.y) //r
  1662. {
  1663. //setting advmap shift
  1664. adventureInt->terrain.moveX = -i+32;
  1665. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1-i, 0), ho->id);
  1666. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31-i, 0), ho->id);
  1667. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63-i, 0), ho->id);
  1668. subRect(hp.x+1, hp.y-1, hp.z, genRect(32, 32, 95-i, 0), ho->id);
  1669. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1-i, 32), ho->id);
  1670. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31-i, 32), ho->id);
  1671. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63-i, 32), ho->id);
  1672. subRect(hp.x+1, hp.y, hp.z, genRect(32, 32, 95-i, 32), ho->id);
  1673. }
  1674. else if(details.end.x-1 == details.start.x && details.end.y-1 == details.start.y) //br
  1675. {
  1676. //setting advmap shift
  1677. adventureInt->terrain.moveX = -i+32;
  1678. adventureInt->terrain.moveY = -i+32;
  1679. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1-i, -1-i), ho->id);
  1680. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31-i, -1-i), ho->id);
  1681. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63-i, -1-i), ho->id);
  1682. subRect(hp.x+1, hp.y-1, hp.z, genRect(32, 32, 95-i, -1-i), ho->id);
  1683. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1-i, 31-i), ho->id);
  1684. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31-i, 31-i), ho->id);
  1685. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63-i, 31-i), ho->id);
  1686. subRect(hp.x+1, hp.y, hp.z, genRect(32, 32, 95-i, 31-i), ho->id);
  1687. subRect(hp.x-2, hp.y+1, hp.z, genRect(32, 32, -1-i, 63-i), ho->id);
  1688. subRect(hp.x-1, hp.y+1, hp.z, genRect(32, 32, 31-i, 63-i), ho->id);
  1689. subRect(hp.x, hp.y+1, hp.z, genRect(32, 32, 63-i, 63-i), ho->id);
  1690. subRect(hp.x+1, hp.y+1, hp.z, genRect(32, 32, 95-i, 63-i), ho->id);
  1691. }
  1692. else if(details.end.x == details.start.x && details.end.y-1 == details.start.y) //b
  1693. {
  1694. //setting advmap shift
  1695. adventureInt->terrain.moveY = -i+32;
  1696. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 0, -1-i), ho->id);
  1697. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 32, -1-i), ho->id);
  1698. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 64, -1-i), ho->id);
  1699. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 0, 31-i), ho->id);
  1700. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 32, 31-i), ho->id);
  1701. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 64, 31-i), ho->id);
  1702. subRect(hp.x-2, hp.y+1, hp.z, genRect(32, 32, 0, 63-i), ho->id);
  1703. subRect(hp.x-1, hp.y+1, hp.z, genRect(32, 32, 32, 63-i), ho->id);
  1704. subRect(hp.x, hp.y+1, hp.z, genRect(32, 32, 64, 63-i), ho->id);
  1705. }
  1706. else if(details.end.x+1 == details.start.x && details.end.y-1 == details.start.y) //bl
  1707. {
  1708. //setting advmap shift
  1709. adventureInt->terrain.moveX = i-32;
  1710. adventureInt->terrain.moveY = -i+32;
  1711. subRect(hp.x-3, hp.y-1, hp.z, genRect(32, 32, -31+i, -1-i), ho->id);
  1712. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1+i, -1-i), ho->id);
  1713. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33+i, -1-i), ho->id);
  1714. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65+i, -1-i), ho->id);
  1715. subRect(hp.x-3, hp.y, hp.z, genRect(32, 32, -31+i, 31-i), ho->id);
  1716. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1+i, 31-i), ho->id);
  1717. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33+i, 31-i), ho->id);
  1718. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65+i, 31-i), ho->id);
  1719. subRect(hp.x-3, hp.y+1, hp.z, genRect(32, 32, -31+i, 63-i), ho->id);
  1720. subRect(hp.x-2, hp.y+1, hp.z, genRect(32, 32, 1+i, 63-i), ho->id);
  1721. subRect(hp.x-1, hp.y+1, hp.z, genRect(32, 32, 33+i, 63-i), ho->id);
  1722. subRect(hp.x, hp.y+1, hp.z, genRect(32, 32, 65+i, 63-i), ho->id);
  1723. }
  1724. else if(details.end.x+1 == details.start.x && details.end.y == details.start.y) //l
  1725. {
  1726. //setting advmap shift
  1727. adventureInt->terrain.moveX = i-32;
  1728. subRect(hp.x-3, hp.y-1, hp.z, genRect(32, 32, -31+i, 0), ho->id);
  1729. subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1+i, 0), ho->id);
  1730. subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33+i, 0), ho->id);
  1731. subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65+i, 0), ho->id);
  1732. subRect(hp.x-3, hp.y, hp.z, genRect(32, 32, -31+i, 32), ho->id);
  1733. subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1+i, 32), ho->id);
  1734. subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33+i, 32), ho->id);
  1735. subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65+i, 32), ho->id);
  1736. }
  1737. }
  1738. void CPlayerInterface::finishMovement( const TryMoveHero &details, const int3 &hp, const CGHeroInstance * ho )
  1739. {
  1740. adventureInt->terrain.moveX = adventureInt->terrain.moveY = 0;
  1741. if(details.end.x+1 == details.start.x && details.end.y+1 == details.start.y) //tl
  1742. {
  1743. delObjRect(hp.x, hp.y-2, hp.z, ho->id);
  1744. delObjRect(hp.x, hp.y-1, hp.z, ho->id);
  1745. delObjRect(hp.x, hp.y, hp.z, ho->id);
  1746. delObjRect(hp.x-1, hp.y, hp.z, ho->id);
  1747. delObjRect(hp.x-2, hp.y, hp.z, ho->id);
  1748. delObjRect(hp.x-3, hp.y, hp.z, ho->id);
  1749. }
  1750. else if(details.end.x == details.start.x && details.end.y+1 == details.start.y) //t
  1751. {
  1752. delObjRect(hp.x, hp.y, hp.z, ho->id);
  1753. delObjRect(hp.x-1, hp.y, hp.z, ho->id);
  1754. delObjRect(hp.x-2, hp.y, hp.z, ho->id);
  1755. }
  1756. else if(details.end.x-1 == details.start.x && details.end.y+1 == details.start.y) //tr
  1757. {
  1758. delObjRect(hp.x-2, hp.y-2, hp.z, ho->id);
  1759. delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
  1760. delObjRect(hp.x+1, hp.y, hp.z, ho->id);
  1761. delObjRect(hp.x, hp.y, hp.z, ho->id);
  1762. delObjRect(hp.x-1, hp.y, hp.z, ho->id);
  1763. delObjRect(hp.x-2, hp.y, hp.z, ho->id);
  1764. }
  1765. else if(details.end.x-1 == details.start.x && details.end.y == details.start.y) //r
  1766. {
  1767. delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
  1768. delObjRect(hp.x-2, hp.y, hp.z, ho->id);
  1769. }
  1770. else if(details.end.x-1 == details.start.x && details.end.y-1 == details.start.y) //br
  1771. {
  1772. delObjRect(hp.x-2, hp.y+1, hp.z, ho->id);
  1773. delObjRect(hp.x-2, hp.y, hp.z, ho->id);
  1774. delObjRect(hp.x+1, hp.y-1, hp.z, ho->id);
  1775. delObjRect(hp.x, hp.y-1, hp.z, ho->id);
  1776. delObjRect(hp.x-1, hp.y-1, hp.z, ho->id);
  1777. delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
  1778. }
  1779. else if(details.end.x == details.start.x && details.end.y-1 == details.start.y) //b
  1780. {
  1781. delObjRect(hp.x, hp.y-1, hp.z, ho->id);
  1782. delObjRect(hp.x-1, hp.y-1, hp.z, ho->id);
  1783. delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
  1784. }
  1785. else if(details.end.x+1 == details.start.x && details.end.y-1 == details.start.y) //bl
  1786. {
  1787. delObjRect(hp.x, hp.y-1, hp.z, ho->id);
  1788. delObjRect(hp.x-1, hp.y-1, hp.z, ho->id);
  1789. delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
  1790. delObjRect(hp.x-3, hp.y-1, hp.z, ho->id);
  1791. delObjRect(hp.x, hp.y, hp.z, ho->id);
  1792. delObjRect(hp.x, hp.y+1, hp.z, ho->id);
  1793. }
  1794. else if(details.end.x+1 == details.start.x && details.end.y == details.start.y) //l
  1795. {
  1796. delObjRect(hp.x, hp.y-1, hp.z, ho->id);
  1797. delObjRect(hp.x, hp.y, hp.z, ho->id);
  1798. }
  1799. //restoring good rects
  1800. subRect(details.end.x-2, details.end.y-1, details.end.z, genRect(32, 32, 0, 0), ho->id);
  1801. subRect(details.end.x-1, details.end.y-1, details.end.z, genRect(32, 32, 32, 0), ho->id);
  1802. subRect(details.end.x, details.end.y-1, details.end.z, genRect(32, 32, 64, 0), ho->id);
  1803. subRect(details.end.x-2, details.end.y, details.end.z, genRect(32, 32, 0, 32), ho->id);
  1804. subRect(details.end.x-1, details.end.y, details.end.z, genRect(32, 32, 32, 32), ho->id);
  1805. subRect(details.end.x, details.end.y, details.end.z, genRect(32, 32, 64, 32), ho->id);
  1806. //restoring good order of objects
  1807. std::stable_sort(CGI->mh->ttiles[details.end.x-2][details.end.y-1][details.end.z].objects.begin(), CGI->mh->ttiles[details.end.x-2][details.end.y-1][details.end.z].objects.end(), objectBlitOrderSorter);
  1808. std::stable_sort(CGI->mh->ttiles[details.end.x-1][details.end.y-1][details.end.z].objects.begin(), CGI->mh->ttiles[details.end.x-1][details.end.y-1][details.end.z].objects.end(), objectBlitOrderSorter);
  1809. std::stable_sort(CGI->mh->ttiles[details.end.x][details.end.y-1][details.end.z].objects.begin(), CGI->mh->ttiles[details.end.x][details.end.y-1][details.end.z].objects.end(), objectBlitOrderSorter);
  1810. std::stable_sort(CGI->mh->ttiles[details.end.x-2][details.end.y][details.end.z].objects.begin(), CGI->mh->ttiles[details.end.x-2][details.end.y][details.end.z].objects.end(), objectBlitOrderSorter);
  1811. std::stable_sort(CGI->mh->ttiles[details.end.x-1][details.end.y][details.end.z].objects.begin(), CGI->mh->ttiles[details.end.x-1][details.end.y][details.end.z].objects.end(), objectBlitOrderSorter);
  1812. std::stable_sort(CGI->mh->ttiles[details.end.x][details.end.y][details.end.z].objects.begin(), CGI->mh->ttiles[details.end.x][details.end.y][details.end.z].objects.end(), objectBlitOrderSorter);
  1813. }
  1814. void CPlayerInterface::gameOver(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult )
  1815. {
  1816. EVENT_HANDLER_CALLED_BY_CLIENT;
  1817. if(player == playerID)
  1818. {
  1819. if(victoryLossCheckResult.loss())
  1820. showInfoDialog(CGI->generaltexth->allTexts[95]);
  1821. if(LOCPLINT == this)
  1822. {
  1823. GH.curInt = this; //waiting for dialogs requires this to get events
  1824. waitForAllDialogs(); //wait till all dialogs are displayed and closed
  1825. }
  1826. --howManyPeople;
  1827. if(howManyPeople == 0) //all human players eliminated
  1828. {
  1829. if(adventureInt)
  1830. {
  1831. GH.terminate_cond.setn(true);
  1832. adventureInt->deactivate();
  1833. if(GH.topInt() == adventureInt)
  1834. GH.popInt(adventureInt);
  1835. delete adventureInt;
  1836. adventureInt = nullptr;
  1837. }
  1838. }
  1839. if(cb->getStartInfo()->mode == StartInfo::CAMPAIGN)
  1840. {
  1841. // if you lose the campaign go back to the main menu
  1842. // campaign wins are handled in proposeNextMission
  1843. if(victoryLossCheckResult.loss()) requestReturningToMainMenu();
  1844. }
  1845. else
  1846. {
  1847. if(howManyPeople == 0) //all human players eliminated
  1848. {
  1849. requestReturningToMainMenu();
  1850. }
  1851. else if(victoryLossCheckResult.victory() && LOCPLINT == this) // end game if current human player has won
  1852. {
  1853. requestReturningToMainMenu();
  1854. }
  1855. }
  1856. if(GH.curInt == this) GH.curInt = nullptr;
  1857. }
  1858. else
  1859. {
  1860. if(victoryLossCheckResult.loss() && cb->getPlayerStatus(playerID) == EPlayerStatus::INGAME) //enemy has lost
  1861. {
  1862. std::string str = victoryLossCheckResult.messageToSelf;
  1863. boost::algorithm::replace_first(str, "%s", CGI->generaltexth->capColors[player.getNum()]);
  1864. showInfoDialog(str, std::vector<CComponent*>(1, new CComponent(CComponent::flag, player.getNum(), 0)));
  1865. }
  1866. }
  1867. }
  1868. void CPlayerInterface::playerBonusChanged( const Bonus &bonus, bool gain )
  1869. {
  1870. EVENT_HANDLER_CALLED_BY_CLIENT;
  1871. }
  1872. void CPlayerInterface::showPuzzleMap()
  1873. {
  1874. EVENT_HANDLER_CALLED_BY_CLIENT;
  1875. waitWhileDialog();
  1876. //TODO: interface should not know the real position of Grail...
  1877. double ratio = 0;
  1878. int3 grailPos = cb->getGrailPos(&ratio);
  1879. GH.pushInt(new CPuzzleWindow(grailPos, ratio));
  1880. }
  1881. void CPlayerInterface::viewWorldMap()
  1882. {
  1883. adventureInt->changeMode(EAdvMapMode::WORLD_VIEW);
  1884. }
  1885. void CPlayerInterface::advmapSpellCast(const CGHeroInstance * caster, int spellID)
  1886. {
  1887. EVENT_HANDLER_CALLED_BY_CLIENT;
  1888. if (spellID == SpellID::FLY || spellID == SpellID::WATER_WALK)
  1889. {
  1890. eraseCurrentPathOf(caster, false);
  1891. }
  1892. const CSpell * spell = CGI->spellh->objects[spellID];
  1893. if(spellID == SpellID::VIEW_EARTH)
  1894. {
  1895. //TODO: implement on server side
  1896. int level = caster->getSpellSchoolLevel(spell);
  1897. adventureInt->worldViewOptions.showAllTerrain = (level>2);
  1898. }
  1899. auto castSoundPath = spell->getCastSound();
  1900. if (!castSoundPath.empty())
  1901. CCS->soundh->playSound(castSoundPath);
  1902. }
  1903. void CPlayerInterface::eraseCurrentPathOf( const CGHeroInstance * ho, bool checkForExistanceOfPath /*= true */ )
  1904. {
  1905. if(checkForExistanceOfPath)
  1906. {
  1907. assert(vstd::contains(paths, ho));
  1908. }
  1909. else if (!vstd::contains(paths, ho))
  1910. {
  1911. return;
  1912. }
  1913. assert(ho == adventureInt->selection);
  1914. paths.erase(ho);
  1915. adventureInt->terrain.currentPath = nullptr;
  1916. adventureInt->updateMoveHero(ho, false);
  1917. }
  1918. void CPlayerInterface::removeLastNodeFromPath(const CGHeroInstance *ho)
  1919. {
  1920. adventureInt->terrain.currentPath->nodes.erase(adventureInt->terrain.currentPath->nodes.end()-1);
  1921. if(adventureInt->terrain.currentPath->nodes.size() < 2) //if it was the last one, remove entire path and path with only one tile is not a real path
  1922. eraseCurrentPathOf(ho);
  1923. }
  1924. CGPath * CPlayerInterface::getAndVerifyPath(const CGHeroInstance * h)
  1925. {
  1926. if(vstd::contains(paths,h)) //hero has assigned path
  1927. {
  1928. CGPath &path = paths[h];
  1929. if(!path.nodes.size())
  1930. {
  1931. logGlobal->warnStream() << "Warning: empty path found...";
  1932. paths.erase(h);
  1933. }
  1934. else
  1935. {
  1936. assert(h->getPosition(false) == path.startPos());
  1937. //update the hero path in case of something has changed on map
  1938. if(LOCPLINT->cb->getPathsInfo(h)->getPath(path, path.endPos()))
  1939. return &path;
  1940. else
  1941. paths.erase(h);
  1942. }
  1943. }
  1944. return nullptr;
  1945. }
  1946. void CPlayerInterface::acceptTurn()
  1947. {
  1948. bool centerView = true;
  1949. if(settings["session"]["autoSkip"].Bool())
  1950. {
  1951. centerView = false;
  1952. while(CInfoWindow *iw = dynamic_cast<CInfoWindow *>(GH.topInt()))
  1953. iw->close();
  1954. }
  1955. waitWhileDialog();
  1956. if(howManyPeople > 1)
  1957. adventureInt->startTurn();
  1958. adventureInt->heroList.update();
  1959. adventureInt->townList.update();
  1960. const CGHeroInstance * heroToSelect = nullptr;
  1961. // find first non-sleeping hero
  1962. for (auto hero : wanderingHeroes)
  1963. {
  1964. if (boost::range::find(sleepingHeroes, hero) == sleepingHeroes.end())
  1965. {
  1966. heroToSelect = hero;
  1967. break;
  1968. }
  1969. }
  1970. //select first hero if available.
  1971. if(heroToSelect != nullptr)
  1972. {
  1973. adventureInt->select(heroToSelect, centerView);
  1974. }
  1975. else
  1976. adventureInt->select(towns.front(), centerView);
  1977. //show new day animation and sound on infobar
  1978. adventureInt->infoBar.showDate();
  1979. adventureInt->updateNextHero(nullptr);
  1980. adventureInt->showAll(screen);
  1981. if(settings["session"]["autoSkip"].Bool() && !LOCPLINT->shiftPressed())
  1982. {
  1983. if(CInfoWindow *iw = dynamic_cast<CInfoWindow *>(GH.topInt()))
  1984. iw->close();
  1985. adventureInt->fendTurn();
  1986. }
  1987. // warn player if he has no town
  1988. if(cb->howManyTowns() == 0)
  1989. {
  1990. auto playerColor = *cb->getPlayerID();
  1991. std::vector<Component> components;
  1992. components.push_back(Component(Component::FLAG, playerColor.getNum(), 0, 0));
  1993. MetaString text;
  1994. auto daysWithoutCastle = *cb->getPlayer(playerColor)->daysWithoutCastle;
  1995. if (daysWithoutCastle < 6)
  1996. {
  1997. 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.
  1998. text.addReplacement(MetaString::COLOR, playerColor.getNum());
  1999. text.addReplacement(7 - daysWithoutCastle);
  2000. }
  2001. else if(daysWithoutCastle == 6)
  2002. {
  2003. text.addTxt(MetaString::ARRAY_TXT,129); //%s, this is your last day to capture a town or you will be banished from this land.
  2004. text.addReplacement(MetaString::COLOR, playerColor.getNum());
  2005. }
  2006. showInfoDialogAndWait(components, text);
  2007. }
  2008. }
  2009. void CPlayerInterface::tryDiggging(const CGHeroInstance *h)
  2010. {
  2011. std::string hlp;
  2012. CGI->mh->getTerrainDescr(h->getPosition(false), hlp, false);
  2013. auto isDiggingPossible = h->diggingStatus();
  2014. if(hlp.length())
  2015. isDiggingPossible = EDiggingStatus::TILE_OCCUPIED; //TODO integrate with canDig
  2016. int msgToShow = -1;
  2017. switch(isDiggingPossible)
  2018. {
  2019. case EDiggingStatus::CAN_DIG:
  2020. break;
  2021. case EDiggingStatus::LACK_OF_MOVEMENT:
  2022. msgToShow = 56; //"Digging for artifacts requires a whole day, try again tomorrow."
  2023. break;
  2024. case EDiggingStatus::TILE_OCCUPIED:
  2025. msgToShow = 97; //Try searching on clear ground.
  2026. break;
  2027. case EDiggingStatus::WRONG_TERRAIN:
  2028. msgToShow = 60; ////Try looking on land!
  2029. break;
  2030. default:
  2031. assert(0);
  2032. }
  2033. if(msgToShow < 0)
  2034. cb->dig(h);
  2035. else
  2036. showInfoDialog(CGI->generaltexth->allTexts[msgToShow]);
  2037. }
  2038. void CPlayerInterface::updateInfo(const CGObjectInstance * specific)
  2039. {
  2040. adventureInt->infoBar.showSelection();
  2041. }
  2042. void CPlayerInterface::battleNewRoundFirst( int round )
  2043. {
  2044. EVENT_HANDLER_CALLED_BY_CLIENT;
  2045. BATTLE_EVENT_POSSIBLE_RETURN;
  2046. battleInt->newRoundFirst(round);
  2047. }
  2048. void CPlayerInterface::stopMovement()
  2049. {
  2050. if(stillMoveHero.get() == DURING_MOVE)//if we are in the middle of hero movement
  2051. stillMoveHero.setn(STOP_MOVE); //after showing dialog movement will be stopped
  2052. }
  2053. void CPlayerInterface::showMarketWindow(const IMarket *market, const CGHeroInstance *visitor)
  2054. {
  2055. EVENT_HANDLER_CALLED_BY_CLIENT;
  2056. if(market->o->ID == Obj::ALTAR_OF_SACRIFICE)
  2057. {
  2058. //EEMarketMode mode = market->availableModes().front();
  2059. if(market->allowsTrade(EMarketMode::ARTIFACT_EXP) && visitor->getAlignment() != EAlignment::EVIL)
  2060. GH.pushInt(new CAltarWindow(market, visitor, EMarketMode::ARTIFACT_EXP));
  2061. else if(market->allowsTrade(EMarketMode::CREATURE_EXP) && visitor->getAlignment() != EAlignment::GOOD)
  2062. GH.pushInt(new CAltarWindow(market, visitor, EMarketMode::CREATURE_EXP));
  2063. }
  2064. else
  2065. GH.pushInt(new CMarketplaceWindow(market, visitor, market->availableModes().front()));
  2066. }
  2067. void CPlayerInterface::showUniversityWindow(const IMarket *market, const CGHeroInstance *visitor)
  2068. {
  2069. EVENT_HANDLER_CALLED_BY_CLIENT;
  2070. auto cuw = new CUniversityWindow(visitor, market);
  2071. GH.pushInt(cuw);
  2072. }
  2073. void CPlayerInterface::showHillFortWindow(const CGObjectInstance *object, const CGHeroInstance *visitor)
  2074. {
  2075. EVENT_HANDLER_CALLED_BY_CLIENT;
  2076. auto chfw = new CHillFortWindow(visitor, object);
  2077. GH.pushInt(chfw);
  2078. }
  2079. void CPlayerInterface::availableArtifactsChanged(const CGBlackMarket *bm /*= nullptr*/)
  2080. {
  2081. EVENT_HANDLER_CALLED_BY_CLIENT;
  2082. if(CMarketplaceWindow *cmw = dynamic_cast<CMarketplaceWindow*>(GH.topInt()))
  2083. cmw->artifactsChanged(false);
  2084. }
  2085. void CPlayerInterface::showTavernWindow(const CGObjectInstance *townOrTavern)
  2086. {
  2087. EVENT_HANDLER_CALLED_BY_CLIENT;
  2088. auto tv = new CTavernWindow(townOrTavern);
  2089. GH.pushInt(tv);
  2090. }
  2091. void CPlayerInterface::showThievesGuildWindow (const CGObjectInstance * obj)
  2092. {
  2093. EVENT_HANDLER_CALLED_BY_CLIENT;
  2094. auto tgw = new CThievesGuildWindow(obj);
  2095. GH.pushInt(tgw);
  2096. }
  2097. void CPlayerInterface::showQuestLog()
  2098. {
  2099. EVENT_HANDLER_CALLED_BY_CLIENT;
  2100. CQuestLog * ql = new CQuestLog (LOCPLINT->cb->getMyQuests());
  2101. GH.pushInt (ql);
  2102. }
  2103. void CPlayerInterface::showShipyardDialogOrProblemPopup(const IShipyard *obj)
  2104. {
  2105. if(obj->shipyardStatus() != IBoatGenerator::GOOD)
  2106. {
  2107. MetaString txt;
  2108. obj->getProblemText(txt);
  2109. showInfoDialog(txt.toString());
  2110. }
  2111. else
  2112. showShipyardDialog(obj);
  2113. }
  2114. void CPlayerInterface::requestReturningToMainMenu()
  2115. {
  2116. sendCustomEvent(RETURN_TO_MAIN_MENU);
  2117. cb->unregisterAllInterfaces();
  2118. }
  2119. void CPlayerInterface::requestStoppingClient()
  2120. {
  2121. sendCustomEvent(STOP_CLIENT);
  2122. }
  2123. void CPlayerInterface::sendCustomEvent( int code )
  2124. {
  2125. CGuiHandler::pushSDLEvent(SDL_USEREVENT, code);
  2126. }
  2127. void CPlayerInterface::stackChagedCount(const StackLocation &location, const TQuantity &change, bool isAbsolute)
  2128. {
  2129. EVENT_HANDLER_CALLED_BY_CLIENT;
  2130. garrisonChanged(location.army);
  2131. }
  2132. void CPlayerInterface::stackChangedType(const StackLocation &location, const CCreature &newType)
  2133. {
  2134. EVENT_HANDLER_CALLED_BY_CLIENT;
  2135. garrisonChanged(location.army);
  2136. }
  2137. void CPlayerInterface::stacksErased(const StackLocation &location)
  2138. {
  2139. EVENT_HANDLER_CALLED_BY_CLIENT;
  2140. garrisonChanged(location.army);
  2141. }
  2142. void CPlayerInterface::stacksSwapped(const StackLocation &loc1, const StackLocation &loc2)
  2143. {
  2144. EVENT_HANDLER_CALLED_BY_CLIENT;
  2145. std::vector<const CGObjectInstance *> objects;
  2146. objects.push_back(loc1.army);
  2147. if(loc2.army != loc1.army)
  2148. objects.push_back(loc2.army);
  2149. garrisonsChanged(objects);
  2150. }
  2151. void CPlayerInterface::newStackInserted(const StackLocation &location, const CStackInstance &stack)
  2152. {
  2153. EVENT_HANDLER_CALLED_BY_CLIENT;
  2154. garrisonChanged(location.army);
  2155. }
  2156. void CPlayerInterface::stacksRebalanced(const StackLocation &src, const StackLocation &dst, TQuantity count)
  2157. {
  2158. EVENT_HANDLER_CALLED_BY_CLIENT;
  2159. std::vector<const CGObjectInstance *> objects;
  2160. objects.push_back(src.army);
  2161. if(src.army != dst.army)
  2162. objects.push_back(dst.army);
  2163. garrisonsChanged(objects);
  2164. }
  2165. void CPlayerInterface::artifactPut(const ArtifactLocation &al)
  2166. {
  2167. EVENT_HANDLER_CALLED_BY_CLIENT;
  2168. }
  2169. void CPlayerInterface::artifactRemoved(const ArtifactLocation &al)
  2170. {
  2171. EVENT_HANDLER_CALLED_BY_CLIENT;
  2172. adventureInt->infoBar.showSelection();
  2173. for(IShowActivatable *isa : GH.listInt)
  2174. {
  2175. auto artWin = dynamic_cast<CArtifactHolder*>(isa);
  2176. if(artWin)
  2177. artWin->artifactRemoved(al);
  2178. }
  2179. }
  2180. void CPlayerInterface::artifactMoved(const ArtifactLocation &src, const ArtifactLocation &dst)
  2181. {
  2182. EVENT_HANDLER_CALLED_BY_CLIENT;
  2183. adventureInt->infoBar.showSelection();
  2184. for(IShowActivatable *isa : GH.listInt)
  2185. {
  2186. auto artWin = dynamic_cast<CArtifactHolder*>(isa);
  2187. if(artWin)
  2188. artWin->artifactMoved(src, dst);
  2189. }
  2190. }
  2191. void CPlayerInterface::artifactAssembled(const ArtifactLocation &al)
  2192. {
  2193. EVENT_HANDLER_CALLED_BY_CLIENT;
  2194. adventureInt->infoBar.showSelection();
  2195. for(IShowActivatable *isa : GH.listInt)
  2196. {
  2197. auto artWin = dynamic_cast<CArtifactHolder*>(isa);
  2198. if(artWin)
  2199. artWin->artifactAssembled(al);
  2200. }
  2201. }
  2202. void CPlayerInterface::artifactDisassembled(const ArtifactLocation &al)
  2203. {
  2204. EVENT_HANDLER_CALLED_BY_CLIENT;
  2205. adventureInt->infoBar.showSelection();
  2206. for(IShowActivatable *isa : GH.listInt)
  2207. {
  2208. auto artWin = dynamic_cast<CArtifactHolder*>(isa);
  2209. if(artWin)
  2210. artWin->artifactDisassembled(al);
  2211. }
  2212. }
  2213. void CPlayerInterface::playerStartsTurn(PlayerColor player)
  2214. {
  2215. EVENT_HANDLER_CALLED_BY_CLIENT;
  2216. adventureInt->infoBar.showSelection();
  2217. if (!vstd::contains (GH.listInt, adventureInt))
  2218. {
  2219. GH.popInts (GH.listInt.size()); //after map load - remove everything else
  2220. GH.pushInt (adventureInt);
  2221. }
  2222. else
  2223. {
  2224. while (GH.listInt.front() != adventureInt && !dynamic_cast<CInfoWindow*>(GH.listInt.front())) //don't remove dialogs that expect query answer
  2225. GH.popInts(1);
  2226. }
  2227. if(howManyPeople == 1)
  2228. {
  2229. GH.curInt = this;
  2230. adventureInt->startTurn();
  2231. }
  2232. if(player != playerID && this == LOCPLINT)
  2233. {
  2234. waitWhileDialog();
  2235. adventureInt->aiTurnStarted();
  2236. }
  2237. }
  2238. void CPlayerInterface::waitForAllDialogs(bool unlockPim /*= true*/)
  2239. {
  2240. while(!dialogs.empty())
  2241. {
  2242. auto unlock = vstd::makeUnlockGuardIf(*pim, unlockPim);
  2243. SDL_Delay(5);
  2244. }
  2245. waitWhileDialog(unlockPim);
  2246. }
  2247. void CPlayerInterface::proposeLoadingGame()
  2248. {
  2249. showYesNoDialog(CGI->generaltexth->allTexts[68], [this] { sendCustomEvent(RETURN_TO_MENU_LOAD); }, 0, false);
  2250. }
  2251. CPlayerInterface::SpellbookLastSetting::SpellbookLastSetting()
  2252. {
  2253. spellbookLastPageBattle = spellbokLastPageAdvmap = 0;
  2254. spellbookLastTabBattle = spellbookLastTabAdvmap = 4;
  2255. }
  2256. bool CPlayerInterface::capturedAllEvents()
  2257. {
  2258. if(duringMovement)
  2259. {
  2260. //just inform that we are capturing events. they will be processed by heroMoved() in client thread.
  2261. return true;
  2262. }
  2263. if(ignoreEvents)
  2264. {
  2265. boost::unique_lock<boost::mutex> un(eventsM);
  2266. while(!events.empty())
  2267. {
  2268. events.pop();
  2269. }
  2270. return true;
  2271. }
  2272. return false;
  2273. }
  2274. void CPlayerInterface::doMoveHero(const CGHeroInstance * h, CGPath path)
  2275. {
  2276. int i = 1;
  2277. auto getObj = [&](int3 coord, bool ignoreHero)
  2278. {
  2279. return cb->getTile(CGHeroInstance::convertPosition(coord,false))->topVisitableObj(ignoreHero);
  2280. };
  2281. auto isTeleportAction = [&](CGPathNode::ENodeAction action) -> bool
  2282. {
  2283. if(action != CGPathNode::TELEPORT_NORMAL &&
  2284. action != CGPathNode::TELEPORT_BLOCKING_VISIT &&
  2285. action != CGPathNode::TELEPORT_BATTLE)
  2286. {
  2287. return false;
  2288. }
  2289. return true;
  2290. };
  2291. auto getDestTeleportObj = [&](const CGObjectInstance * currentObject, const CGObjectInstance * nextObjectTop, const CGObjectInstance * nextObject) -> const CGObjectInstance *
  2292. {
  2293. if(CGTeleport::isConnected(currentObject, nextObjectTop))
  2294. return nextObjectTop;
  2295. if(nextObjectTop && nextObjectTop->ID == Obj::HERO &&
  2296. CGTeleport::isConnected(currentObject, nextObject))
  2297. {
  2298. return nextObject;
  2299. }
  2300. return nullptr;
  2301. };
  2302. boost::unique_lock<boost::mutex> un(stillMoveHero.mx);
  2303. stillMoveHero.data = CONTINUE_MOVE;
  2304. auto doMovement = [&](int3 dst, bool transit)
  2305. {
  2306. stillMoveHero.data = WAITING_MOVE;
  2307. cb->moveHero(h, dst, transit);
  2308. while(stillMoveHero.data != STOP_MOVE && stillMoveHero.data != CONTINUE_MOVE)
  2309. stillMoveHero.cond.wait(un);
  2310. };
  2311. {
  2312. path.convert(0);
  2313. ETerrainType currentTerrain = ETerrainType::BORDER; // not init yet
  2314. ETerrainType newTerrain;
  2315. int sh = -1;
  2316. auto canStop = [&](CGPathNode * node) -> bool
  2317. {
  2318. if(node->layer == EPathfindingLayer::LAND || node->layer == EPathfindingLayer::SAIL)
  2319. return true;
  2320. if(node->accessible == CGPathNode::ACCESSIBLE)
  2321. return true;
  2322. return false;
  2323. };
  2324. for(i=path.nodes.size()-1; i>0 && (stillMoveHero.data == CONTINUE_MOVE || !canStop(&path.nodes[i])); i--)
  2325. {
  2326. int3 currentCoord = path.nodes[i].coord;
  2327. int3 nextCoord = path.nodes[i-1].coord;
  2328. auto currentObject = getObj(currentCoord, currentCoord == h->pos);
  2329. auto nextObjectTop = getObj(nextCoord, false);
  2330. auto nextObject = getObj(nextCoord, true);
  2331. auto destTeleportObj = getDestTeleportObj(currentObject, nextObjectTop, nextObject);
  2332. if(isTeleportAction(path.nodes[i-1].action) && destTeleportObj != nullptr)
  2333. {
  2334. CCS->soundh->stopSound(sh);
  2335. destinationTeleport = destTeleportObj->id;
  2336. destinationTeleportPos = nextCoord;
  2337. doMovement(h->pos, false);
  2338. if(path.nodes[i-1].action == CGPathNode::TELEPORT_BLOCKING_VISIT)
  2339. {
  2340. destinationTeleport = ObjectInstanceID();
  2341. destinationTeleportPos = int3(-1);
  2342. }
  2343. sh = CCS->soundh->playSound(CCS->soundh->horseSounds[currentTerrain], -1);
  2344. continue;
  2345. }
  2346. if(path.nodes[i-1].turns)
  2347. { //stop sending move requests if the next node can't be reached at the current turn (hero exhausted his move points)
  2348. stillMoveHero.data = STOP_MOVE;
  2349. break;
  2350. }
  2351. // Start a new sound for the hero movement or let the existing one carry on.
  2352. #if 0
  2353. // TODO
  2354. if(hero is flying && sh == -1)
  2355. sh = CCS->soundh->playSound(soundBase::horseFlying, -1);
  2356. #endif
  2357. {
  2358. newTerrain = cb->getTile(CGHeroInstance::convertPosition(currentCoord, false))->terType;
  2359. if(newTerrain != currentTerrain)
  2360. {
  2361. CCS->soundh->stopSound(sh);
  2362. sh = CCS->soundh->playSound(CCS->soundh->horseSounds[newTerrain], -1);
  2363. currentTerrain = newTerrain;
  2364. }
  2365. }
  2366. 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
  2367. int3 endpos(nextCoord.x, nextCoord.y, h->pos.z);
  2368. logGlobal->traceStream() << "Requesting hero movement to " << endpos;
  2369. bool useTransit = false;
  2370. if((i-2 >= 0) // Check there is node after next one; otherwise transit is pointless
  2371. && (CGTeleport::isConnected(nextObjectTop, getObj(path.nodes[i-2].coord, false))
  2372. || CGTeleport::isTeleport(nextObjectTop)))
  2373. { // Hero should be able to go through object if it's allow transit
  2374. useTransit = true;
  2375. }
  2376. else if(path.nodes[i-1].layer == EPathfindingLayer::AIR)
  2377. useTransit = true;
  2378. doMovement(endpos, useTransit);
  2379. logGlobal->traceStream() << "Resuming " << __FUNCTION__;
  2380. bool guarded = cb->isInTheMap(cb->getGuardingCreaturePosition(endpos - int3(1, 0, 0)));
  2381. if((!useTransit && guarded) || showingDialog->get() == true) // Abort movement if a guard was fought or there is a dialog to display (Mantis #1136)
  2382. break;
  2383. }
  2384. CCS->soundh->stopSound(sh);
  2385. }
  2386. //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
  2387. if(!showingDialog->get())
  2388. GH.fakeMouseMove();
  2389. //todo: this should be in main thread
  2390. if(adventureInt)
  2391. {
  2392. // (i == 0) means hero went through all the path
  2393. adventureInt->updateMoveHero(h, (i != 0));
  2394. adventureInt->updateNextHero(h);
  2395. }
  2396. duringMovement = false;
  2397. }
  2398. void CPlayerInterface::showWorldViewEx(const std::vector<ObjectPosInfo>& objectPositions)
  2399. {
  2400. EVENT_HANDLER_CALLED_BY_CLIENT;
  2401. //TODO: showWorldViewEx
  2402. std::copy(objectPositions.begin(), objectPositions.end(), std::back_inserter(adventureInt->worldViewOptions.iconPositions));
  2403. viewWorldMap();
  2404. }