Client.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  1. /*
  2. * Client.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "Client.h"
  12. #include <SDL.h>
  13. #include "CMusicHandler.h"
  14. #include "../lib/mapping/CCampaignHandler.h"
  15. #include "../CCallback.h"
  16. #include "../lib/CConsoleHandler.h"
  17. #include "CGameInfo.h"
  18. #include "../lib/CGameState.h"
  19. #include "CPlayerInterface.h"
  20. #include "../lib/StartInfo.h"
  21. #include "../lib/battle/BattleInfo.h"
  22. #include "../lib/CModHandler.h"
  23. #include "../lib/CArtHandler.h"
  24. #include "../lib/CGeneralTextHandler.h"
  25. #include "../lib/CHeroHandler.h"
  26. #include "../lib/CTownHandler.h"
  27. #include "../lib/CBuildingHandler.h"
  28. #include "../lib/spells/CSpellHandler.h"
  29. #include "../lib/serializer/CTypeList.h"
  30. #include "../lib/serializer/Connection.h"
  31. #include "../lib/serializer/CLoadIntegrityValidator.h"
  32. #include "../lib/NetPacks.h"
  33. #include "../lib/VCMI_Lib.h"
  34. #include "../lib/VCMIDirs.h"
  35. #include "../lib/mapping/CMap.h"
  36. #include "../lib/mapping/CMapService.h"
  37. #include "../lib/JsonNode.h"
  38. #include "mapHandler.h"
  39. #include "../lib/CConfigHandler.h"
  40. #include "mainmenu/CMainMenu.h"
  41. #include "mainmenu/CCampaignScreen.h"
  42. #include "lobby/CBonusSelection.h"
  43. #include "battle/CBattleInterface.h"
  44. #include "../lib/CThreadHelper.h"
  45. #include "../lib/registerTypes/RegisterTypes.h"
  46. #include "gui/CGuiHandler.h"
  47. #include "CMT.h"
  48. #include "CServerHandler.h"
  49. #include "../lib/ScriptHandler.h"
  50. #include <vcmi/events/EventBus.h>
  51. #ifdef VCMI_ANDROID
  52. #include "lib/CAndroidVMHelper.h"
  53. #endif
  54. #ifdef VCMI_ANDROID
  55. std::atomic_bool androidTestServerReadyFlag;
  56. #endif
  57. ThreadSafeVector<int> CClient::waitingRequest;
  58. template<typename T> class CApplyOnCL;
  59. class CBaseForCLApply
  60. {
  61. public:
  62. virtual void applyOnClAfter(CClient * cl, void * pack) const =0;
  63. virtual void applyOnClBefore(CClient * cl, void * pack) const =0;
  64. virtual ~CBaseForCLApply(){}
  65. template<typename U> static CBaseForCLApply * getApplier(const U * t = nullptr)
  66. {
  67. return new CApplyOnCL<U>();
  68. }
  69. };
  70. template<typename T> class CApplyOnCL : public CBaseForCLApply
  71. {
  72. public:
  73. void applyOnClAfter(CClient * cl, void * pack) const override
  74. {
  75. T * ptr = static_cast<T *>(pack);
  76. ptr->applyCl(cl);
  77. }
  78. void applyOnClBefore(CClient * cl, void * pack) const override
  79. {
  80. T * ptr = static_cast<T *>(pack);
  81. ptr->applyFirstCl(cl);
  82. }
  83. };
  84. template<> class CApplyOnCL<CPack>: public CBaseForCLApply
  85. {
  86. public:
  87. void applyOnClAfter(CClient * cl, void * pack) const override
  88. {
  89. logGlobal->error("Cannot apply on CL plain CPack!");
  90. assert(0);
  91. }
  92. void applyOnClBefore(CClient * cl, void * pack) const override
  93. {
  94. logGlobal->error("Cannot apply on CL plain CPack!");
  95. assert(0);
  96. }
  97. };
  98. CPlayerEnvironment::CPlayerEnvironment(PlayerColor player_, CClient * cl_, std::shared_ptr<CCallback> mainCallback_)
  99. : player(player_),
  100. cl(cl_),
  101. mainCallback(mainCallback_)
  102. {
  103. }
  104. const Services * CPlayerEnvironment::services() const
  105. {
  106. return VLC;
  107. }
  108. vstd::CLoggerBase * CPlayerEnvironment::logger() const
  109. {
  110. return logGlobal;
  111. }
  112. events::EventBus * CPlayerEnvironment::eventBus() const
  113. {
  114. return cl->eventBus();//always get actual value
  115. }
  116. const CPlayerEnvironment::BattleCb * CPlayerEnvironment::battle() const
  117. {
  118. return mainCallback.get();
  119. }
  120. const CPlayerEnvironment::GameCb * CPlayerEnvironment::game() const
  121. {
  122. return mainCallback.get();
  123. }
  124. CClient::CClient()
  125. {
  126. waitingRequest.clear();
  127. applier = std::make_shared<CApplier<CBaseForCLApply>>();
  128. registerTypesClientPacks1(*applier);
  129. registerTypesClientPacks2(*applier);
  130. IObjectInterface::cb = this;
  131. gs = nullptr;
  132. }
  133. CClient::~CClient()
  134. {
  135. IObjectInterface::cb = nullptr;
  136. }
  137. const Services * CClient::services() const
  138. {
  139. return VLC; //todo: this should be CGI
  140. }
  141. const CClient::BattleCb * CClient::battle() const
  142. {
  143. return this;
  144. }
  145. const CClient::GameCb * CClient::game() const
  146. {
  147. return this;
  148. }
  149. vstd::CLoggerBase * CClient::logger() const
  150. {
  151. return logGlobal;
  152. }
  153. events::EventBus * CClient::eventBus() const
  154. {
  155. return clientEventBus.get();
  156. }
  157. void CClient::newGame(CGameState * initializedGameState)
  158. {
  159. CSH->th->update();
  160. CMapService mapService;
  161. gs = initializedGameState ? initializedGameState : new CGameState();
  162. gs->preInit(VLC);
  163. logNetwork->trace("\tCreating gamestate: %i", CSH->th->getDiff());
  164. if(!initializedGameState)
  165. gs->init(&mapService, CSH->si.get(), settings["general"]["saveRandomMaps"].Bool());
  166. logNetwork->trace("Initializing GameState (together): %d ms", CSH->th->getDiff());
  167. initMapHandler();
  168. reinitScripting();
  169. initPlayerEnvironments();
  170. initPlayerInterfaces();
  171. }
  172. void CClient::loadGame(CGameState * initializedGameState)
  173. {
  174. logNetwork->info("Loading procedure started!");
  175. std::unique_ptr<CLoadFile> loader;
  176. if(initializedGameState)
  177. {
  178. logNetwork->info("Game state was transferred over network, loading.");
  179. gs = initializedGameState;
  180. }
  181. else
  182. {
  183. try
  184. {
  185. boost::filesystem::path clientSaveName = *CResourceHandler::get("local")->getResourceName(ResourceID(CSH->si->mapname, EResType::CLIENT_SAVEGAME));
  186. boost::filesystem::path controlServerSaveName;
  187. if(CResourceHandler::get("local")->existsResource(ResourceID(CSH->si->mapname, EResType::SERVER_SAVEGAME)))
  188. {
  189. controlServerSaveName = *CResourceHandler::get("local")->getResourceName(ResourceID(CSH->si->mapname, EResType::SERVER_SAVEGAME));
  190. }
  191. else // create entry for server savegame. Triggered if save was made after launch and not yet present in res handler
  192. {
  193. controlServerSaveName = boost::filesystem::path(clientSaveName).replace_extension(".vsgm1");
  194. CResourceHandler::get("local")->createResource(controlServerSaveName.string(), true);
  195. }
  196. if(clientSaveName.empty())
  197. throw std::runtime_error("Cannot open client part of " + CSH->si->mapname);
  198. if(controlServerSaveName.empty() || !boost::filesystem::exists(controlServerSaveName))
  199. throw std::runtime_error("Cannot open server part of " + CSH->si->mapname);
  200. {
  201. CLoadIntegrityValidator checkingLoader(clientSaveName, controlServerSaveName, MINIMAL_SERIALIZATION_VERSION);
  202. loadCommonState(checkingLoader);
  203. loader = checkingLoader.decay();
  204. }
  205. }
  206. catch(std::exception & e)
  207. {
  208. logGlobal->error("Cannot load game %s. Error: %s", CSH->si->mapname, e.what());
  209. throw; //obviously we cannot continue here
  210. }
  211. logNetwork->trace("Loaded common part of save %d ms", CSH->th->getDiff());
  212. }
  213. gs->preInit(VLC);
  214. gs->updateOnLoad(CSH->si.get());
  215. logNetwork->info("Game loaded, initialize interfaces.");
  216. initMapHandler();
  217. reinitScripting();
  218. initPlayerEnvironments();
  219. if(loader)
  220. serialize(loader->serializer, loader->serializer.fileVersion);
  221. initPlayerInterfaces();
  222. }
  223. void CClient::serialize(BinarySerializer & h, const int version)
  224. {
  225. assert(h.saving);
  226. ui8 players = static_cast<ui8>(playerint.size());
  227. h & players;
  228. for(auto i = playerint.begin(); i != playerint.end(); i++)
  229. {
  230. logGlobal->trace("Saving player %s interface", i->first);
  231. assert(i->first == i->second->playerID);
  232. h & i->first;
  233. h & i->second->dllName;
  234. h & i->second->human;
  235. i->second->saveGame(h, version);
  236. }
  237. #if SCRIPTING_ENABLED
  238. if(version >= 800)
  239. {
  240. JsonNode scriptsState;
  241. clientScripts->serializeState(h.saving, scriptsState);
  242. h & scriptsState;
  243. }
  244. #endif
  245. }
  246. void CClient::serialize(BinaryDeserializer & h, const int version)
  247. {
  248. assert(!h.saving);
  249. ui8 players = 0;
  250. h & players;
  251. for(int i = 0; i < players; i++)
  252. {
  253. std::string dllname;
  254. PlayerColor pid;
  255. bool isHuman = false;
  256. auto prevInt = LOCPLINT;
  257. h & pid;
  258. h & dllname;
  259. h & isHuman;
  260. assert(dllname.length() == 0 || !isHuman);
  261. if(pid == PlayerColor::NEUTRAL)
  262. {
  263. logGlobal->trace("Neutral battle interfaces are not serialized.");
  264. continue;
  265. }
  266. logGlobal->trace("Loading player %s interface", pid);
  267. std::shared_ptr<CGameInterface> nInt;
  268. if(dllname.length())
  269. nInt = CDynLibHandler::getNewAI(dllname);
  270. else
  271. nInt = std::make_shared<CPlayerInterface>(pid);
  272. nInt->dllName = dllname;
  273. nInt->human = isHuman;
  274. nInt->playerID = pid;
  275. nInt->loadGame(h, version);
  276. // Client no longer handle this player at all
  277. if(!vstd::contains(CSH->getAllClientPlayers(CSH->c->connectionID), pid))
  278. {
  279. logGlobal->trace("Player %s is not belong to this client. Destroying interface", pid);
  280. }
  281. else if(isHuman && !vstd::contains(CSH->getHumanColors(), pid))
  282. {
  283. logGlobal->trace("Player %s is no longer controlled by human. Destroying interface", pid);
  284. }
  285. else if(!isHuman && vstd::contains(CSH->getHumanColors(), pid))
  286. {
  287. logGlobal->trace("Player %s is no longer controlled by AI. Destroying interface", pid);
  288. }
  289. else
  290. {
  291. installNewPlayerInterface(nInt, pid);
  292. continue;
  293. }
  294. nInt.reset();
  295. LOCPLINT = prevInt;
  296. }
  297. #if SCRIPTING_ENABLED
  298. {
  299. JsonNode scriptsState;
  300. h & scriptsState;
  301. clientScripts->serializeState(h.saving, scriptsState);
  302. }
  303. #endif
  304. logNetwork->trace("Loaded client part of save %d ms", CSH->th->getDiff());
  305. }
  306. void CClient::save(const std::string & fname)
  307. {
  308. if(gs->curB)
  309. {
  310. logNetwork->error("Game cannot be saved during battle!");
  311. return;
  312. }
  313. SaveGame save_game(fname);
  314. sendRequest(&save_game, PlayerColor::NEUTRAL);
  315. }
  316. void CClient::endGame()
  317. {
  318. #if SCRIPTING_ENABLED
  319. clientScripts.reset();
  320. #endif
  321. //suggest interfaces to finish their stuff (AI should interrupt any bg working threads)
  322. for(auto & i : playerint)
  323. i.second->finish();
  324. GH.curInt = nullptr;
  325. {
  326. boost::unique_lock<boost::recursive_mutex> un(*CPlayerInterface::pim);
  327. logNetwork->info("Ending current game!");
  328. if(GH.topInt())
  329. {
  330. GH.topInt()->deactivate();
  331. }
  332. GH.listInt.clear();
  333. GH.objsToBlit.clear();
  334. GH.statusbar = nullptr;
  335. logNetwork->info("Removed GUI.");
  336. vstd::clear_pointer(const_cast<CGameInfo *>(CGI)->mh);
  337. vstd::clear_pointer(gs);
  338. logNetwork->info("Deleted mapHandler and gameState.");
  339. LOCPLINT = nullptr;
  340. }
  341. playerint.clear();
  342. battleints.clear();
  343. battleCallbacks.clear();
  344. playerEnvironments.clear();
  345. logNetwork->info("Deleted playerInts.");
  346. logNetwork->info("Client stopped.");
  347. }
  348. void CClient::initMapHandler()
  349. {
  350. // TODO: CMapHandler initialization can probably go somewhere else
  351. // It's can't be before initialization of interfaces
  352. // During loading CPlayerInterface from serialized state it's depend on MH
  353. if(!settings["session"]["headless"].Bool())
  354. {
  355. const_cast<CGameInfo *>(CGI)->mh = new CMapHandler();
  356. CGI->mh->map = gs->map;
  357. logNetwork->trace("Creating mapHandler: %d ms", CSH->th->getDiff());
  358. CGI->mh->init();
  359. logNetwork->trace("Initializing mapHandler (together): %d ms", CSH->th->getDiff());
  360. }
  361. pathCache.clear();
  362. }
  363. void CClient::initPlayerEnvironments()
  364. {
  365. playerEnvironments.clear();
  366. auto allPlayers = CSH->getAllClientPlayers(CSH->c->connectionID);
  367. for(auto & color : allPlayers)
  368. {
  369. logNetwork->info("Preparing environment for player %s", color.getStr());
  370. playerEnvironments[color] = std::make_shared<CPlayerEnvironment>(color, this, std::make_shared<CCallback>(gs, color, this));
  371. }
  372. if(settings["session"]["spectate"].Bool())
  373. {
  374. playerEnvironments[PlayerColor::SPECTATOR] = std::make_shared<CPlayerEnvironment>(PlayerColor::SPECTATOR, this, std::make_shared<CCallback>(gs, boost::none, this));
  375. }
  376. }
  377. void CClient::initPlayerInterfaces()
  378. {
  379. for(auto & elem : gs->scenarioOps->playerInfos)
  380. {
  381. PlayerColor color = elem.first;
  382. if(!vstd::contains(CSH->getAllClientPlayers(CSH->c->connectionID), color))
  383. continue;
  384. if(!vstd::contains(playerint, color))
  385. {
  386. logNetwork->info("Preparing interface for player %s", color.getStr());
  387. if(elem.second.isControlledByAI())
  388. {
  389. auto AiToGive = aiNameForPlayer(elem.second, false);
  390. logNetwork->info("Player %s will be lead by %s", color.getStr(), AiToGive);
  391. installNewPlayerInterface(CDynLibHandler::getNewAI(AiToGive), color);
  392. }
  393. else
  394. {
  395. logNetwork->info("Player %s will be lead by human", color.getStr());
  396. installNewPlayerInterface(std::make_shared<CPlayerInterface>(color), color);
  397. }
  398. }
  399. }
  400. if(settings["session"]["spectate"].Bool())
  401. {
  402. installNewPlayerInterface(std::make_shared<CPlayerInterface>(PlayerColor::SPECTATOR), PlayerColor::SPECTATOR, true);
  403. }
  404. if(CSH->getAllClientPlayers(CSH->c->connectionID).count(PlayerColor::NEUTRAL))
  405. installNewBattleInterface(CDynLibHandler::getNewBattleAI(settings["server"]["neutralAI"].String()), PlayerColor::NEUTRAL);
  406. logNetwork->trace("Initialized player interfaces %d ms", CSH->th->getDiff());
  407. }
  408. std::string CClient::aiNameForPlayer(const PlayerSettings & ps, bool battleAI)
  409. {
  410. if(ps.name.size())
  411. {
  412. const boost::filesystem::path aiPath = VCMIDirs::get().fullLibraryPath("AI", ps.name);
  413. if(boost::filesystem::exists(aiPath))
  414. return ps.name;
  415. }
  416. return aiNameForPlayer(battleAI);
  417. }
  418. std::string CClient::aiNameForPlayer(bool battleAI)
  419. {
  420. const int sensibleAILimit = settings["session"]["oneGoodAI"].Bool() ? 1 : PlayerColor::PLAYER_LIMIT_I;
  421. std::string goodAI = battleAI ? settings["server"]["neutralAI"].String() : settings["server"]["playerAI"].String();
  422. std::string badAI = battleAI ? "StupidAI" : "EmptyAI";
  423. //TODO what about human players
  424. if(battleints.size() >= sensibleAILimit)
  425. return badAI;
  426. return goodAI;
  427. }
  428. void CClient::installNewPlayerInterface(std::shared_ptr<CGameInterface> gameInterface, PlayerColor color, bool battlecb)
  429. {
  430. boost::unique_lock<boost::recursive_mutex> un(*CPlayerInterface::pim);
  431. playerint[color] = gameInterface;
  432. logGlobal->trace("\tInitializing the interface for player %s", color.getStr());
  433. auto cb = std::make_shared<CCallback>(gs, color, this);
  434. battleCallbacks[color] = cb;
  435. gameInterface->init(playerEnvironments.at(color), cb);
  436. installNewBattleInterface(gameInterface, color, battlecb);
  437. }
  438. void CClient::installNewBattleInterface(std::shared_ptr<CBattleGameInterface> battleInterface, PlayerColor color, bool needCallback)
  439. {
  440. boost::unique_lock<boost::recursive_mutex> un(*CPlayerInterface::pim);
  441. battleints[color] = battleInterface;
  442. if(needCallback)
  443. {
  444. logGlobal->trace("\tInitializing the battle interface for player %s", color.getStr());
  445. auto cbc = std::make_shared<CBattleCallback>(color, this);
  446. battleCallbacks[color] = cbc;
  447. battleInterface->init(playerEnvironments.at(color), cbc);
  448. }
  449. }
  450. void CClient::handlePack(CPack * pack)
  451. {
  452. CBaseForCLApply * apply = applier->getApplier(typeList.getTypeID(pack)); //find the applier
  453. if(apply)
  454. {
  455. boost::unique_lock<boost::recursive_mutex> guiLock(*CPlayerInterface::pim);
  456. apply->applyOnClBefore(this, pack);
  457. logNetwork->trace("\tMade first apply on cl: %s", typeList.getTypeInfo(pack)->name());
  458. gs->apply(pack);
  459. logNetwork->trace("\tApplied on gs: %s", typeList.getTypeInfo(pack)->name());
  460. apply->applyOnClAfter(this, pack);
  461. logNetwork->trace("\tMade second apply on cl: %s", typeList.getTypeInfo(pack)->name());
  462. }
  463. else
  464. {
  465. logNetwork->error("Message %s cannot be applied, cannot find applier!", typeList.getTypeInfo(pack)->name());
  466. }
  467. delete pack;
  468. }
  469. int CClient::sendRequest(const CPackForServer * request, PlayerColor player)
  470. {
  471. static ui32 requestCounter = 0;
  472. ui32 requestID = requestCounter++;
  473. logNetwork->trace("Sending a request \"%s\". It'll have an ID=%d.", typeid(*request).name(), requestID);
  474. waitingRequest.pushBack(requestID);
  475. request->requestID = requestID;
  476. request->player = player;
  477. CSH->c->sendPack(request);
  478. if(vstd::contains(playerint, player))
  479. playerint[player]->requestSent(request, requestID);
  480. return requestID;
  481. }
  482. void CClient::battleStarted(const BattleInfo * info)
  483. {
  484. setBattle(info);
  485. for(auto & battleCb : battleCallbacks)
  486. {
  487. if(vstd::contains_if(info->sides, [&](const SideInBattle& side) {return side.color == battleCb.first; })
  488. || battleCb.first >= PlayerColor::PLAYER_LIMIT)
  489. {
  490. battleCb.second->setBattle(info);
  491. }
  492. }
  493. std::shared_ptr<CPlayerInterface> att, def;
  494. auto & leftSide = info->sides[0], & rightSide = info->sides[1];
  495. //If quick combat is not, do not prepare interfaces for battleint
  496. if(!settings["adventure"]["quickCombat"].Bool())
  497. {
  498. if(vstd::contains(playerint, leftSide.color) && playerint[leftSide.color]->human)
  499. att = std::dynamic_pointer_cast<CPlayerInterface>(playerint[leftSide.color]);
  500. if(vstd::contains(playerint, rightSide.color) && playerint[rightSide.color]->human)
  501. def = std::dynamic_pointer_cast<CPlayerInterface>(playerint[rightSide.color]);
  502. }
  503. if(!settings["session"]["headless"].Bool())
  504. {
  505. Rect battleIntRect((screen->w - 800)/2, (screen->h - 600)/2, 800, 600);
  506. if(!!att || !!def)
  507. {
  508. boost::unique_lock<boost::recursive_mutex> un(*CPlayerInterface::pim);
  509. GH.pushIntT<BattleInterface>(leftSide.armyObject, rightSide.armyObject, leftSide.hero, rightSide.hero, battleIntRect, att, def);
  510. }
  511. else if(settings["session"]["spectate"].Bool() && !settings["session"]["spectate-skip-battle"].Bool())
  512. {
  513. //TODO: This certainly need improvement
  514. auto spectratorInt = std::dynamic_pointer_cast<CPlayerInterface>(playerint[PlayerColor::SPECTATOR]);
  515. spectratorInt->cb->setBattle(info);
  516. boost::unique_lock<boost::recursive_mutex> un(*CPlayerInterface::pim);
  517. GH.pushIntT<BattleInterface>(leftSide.armyObject, rightSide.armyObject, leftSide.hero, rightSide.hero, battleIntRect, att, def, spectratorInt);
  518. }
  519. }
  520. auto callBattleStart = [&](PlayerColor color, ui8 side)
  521. {
  522. if(vstd::contains(battleints, color))
  523. battleints[color]->battleStart(leftSide.armyObject, rightSide.armyObject, info->tile, leftSide.hero, rightSide.hero, side);
  524. };
  525. callBattleStart(leftSide.color, 0);
  526. callBattleStart(rightSide.color, 1);
  527. callBattleStart(PlayerColor::UNFLAGGABLE, 1);
  528. if(settings["session"]["spectate"].Bool() && !settings["session"]["spectate-skip-battle"].Bool())
  529. callBattleStart(PlayerColor::SPECTATOR, 1);
  530. if(info->tacticDistance && vstd::contains(battleints, info->sides[info->tacticsSide].color))
  531. {
  532. boost::thread(&CClient::commenceTacticPhaseForInt, this, battleints[info->sides[info->tacticsSide].color]);
  533. }
  534. }
  535. void CClient::commenceTacticPhaseForInt(std::shared_ptr<CBattleGameInterface> battleInt)
  536. {
  537. setThreadName("CClient::commenceTacticPhaseForInt");
  538. try
  539. {
  540. battleInt->yourTacticPhase(gs->curB->tacticDistance);
  541. if(gs && !!gs->curB && gs->curB->tacticDistance) //while awaiting for end of tactics phase, many things can happen (end of battle... or game)
  542. {
  543. MakeAction ma(BattleAction::makeEndOFTacticPhase(gs->curB->playerToSide(battleInt->playerID).get()));
  544. sendRequest(&ma, battleInt->playerID);
  545. }
  546. }
  547. catch(...)
  548. {
  549. handleException();
  550. }
  551. }
  552. void CClient::battleFinished()
  553. {
  554. stopAllBattleActions();
  555. for(auto & side : gs->curB->sides)
  556. if(battleCallbacks.count(side.color))
  557. battleCallbacks[side.color]->setBattle(nullptr);
  558. if(settings["session"]["spectate"].Bool() && !settings["session"]["spectate-skip-battle"].Bool())
  559. battleCallbacks[PlayerColor::SPECTATOR]->setBattle(nullptr);
  560. setBattle(nullptr);
  561. }
  562. void CClient::startPlayerBattleAction(PlayerColor color)
  563. {
  564. stopPlayerBattleAction(color);
  565. if(vstd::contains(battleints, color))
  566. {
  567. auto thread = std::make_shared<boost::thread>(std::bind(&CClient::waitForMoveAndSend, this, color));
  568. playerActionThreads[color] = thread;
  569. }
  570. }
  571. void CClient::stopPlayerBattleAction(PlayerColor color)
  572. {
  573. if(vstd::contains(playerActionThreads, color))
  574. {
  575. auto thread = playerActionThreads.at(color);
  576. if(thread->joinable())
  577. {
  578. thread->interrupt();
  579. thread->join();
  580. }
  581. playerActionThreads.erase(color);
  582. }
  583. }
  584. void CClient::stopAllBattleActions()
  585. {
  586. while(!playerActionThreads.empty())
  587. stopPlayerBattleAction(playerActionThreads.begin()->first);
  588. }
  589. void CClient::waitForMoveAndSend(PlayerColor color)
  590. {
  591. try
  592. {
  593. setThreadName("CClient::waitForMoveAndSend");
  594. assert(vstd::contains(battleints, color));
  595. BattleAction ba = battleints[color]->activeStack(gs->curB->battleGetStackByID(gs->curB->activeStack, false));
  596. if(ba.actionType != EActionType::CANCEL)
  597. {
  598. logNetwork->trace("Send battle action to server: %s", ba.toString());
  599. MakeAction temp_action(ba);
  600. sendRequest(&temp_action, color);
  601. }
  602. }
  603. catch(boost::thread_interrupted &)
  604. {
  605. logNetwork->debug("Wait for move thread was interrupted and no action will be send. Was a battle ended by spell?");
  606. }
  607. catch(...)
  608. {
  609. handleException();
  610. }
  611. }
  612. void CClient::invalidatePaths()
  613. {
  614. boost::unique_lock<boost::mutex> pathLock(pathCacheMutex);
  615. pathCache.clear();
  616. }
  617. std::shared_ptr<const CPathsInfo> CClient::getPathsInfo(const CGHeroInstance * h)
  618. {
  619. assert(h);
  620. boost::unique_lock<boost::mutex> pathLock(pathCacheMutex);
  621. auto iter = pathCache.find(h);
  622. if(iter == std::end(pathCache))
  623. {
  624. std::shared_ptr<CPathsInfo> paths = std::make_shared<CPathsInfo>(getMapSize(), h);
  625. gs->calculatePaths(h, *paths.get());
  626. pathCache[h] = paths;
  627. return paths;
  628. }
  629. else
  630. {
  631. return iter->second;
  632. }
  633. }
  634. PlayerColor CClient::getLocalPlayer() const
  635. {
  636. if(LOCPLINT)
  637. return LOCPLINT->playerID;
  638. return getCurrentPlayer();
  639. }
  640. #if SCRIPTING_ENABLED
  641. scripting::Pool * CClient::getGlobalContextPool() const
  642. {
  643. return clientScripts.get();
  644. }
  645. scripting::Pool * CClient::getContextPool() const
  646. {
  647. return clientScripts.get();
  648. }
  649. #endif
  650. void CClient::reinitScripting()
  651. {
  652. clientEventBus = make_unique<events::EventBus>();
  653. #if SCRIPTING_ENABLED
  654. clientScripts.reset(new scripting::PoolImpl(this));
  655. #endif
  656. }
  657. #ifdef VCMI_ANDROID
  658. extern "C" JNIEXPORT void JNICALL Java_eu_vcmi_vcmi_NativeMethods_notifyServerClosed(JNIEnv * env, jobject cls)
  659. {
  660. logNetwork->info("Received server closed signal");
  661. if (CSH) {
  662. CSH->campaignServerRestartLock.setn(false);
  663. }
  664. }
  665. extern "C" JNIEXPORT void JNICALL Java_eu_vcmi_vcmi_NativeMethods_notifyServerReady(JNIEnv * env, jobject cls)
  666. {
  667. logNetwork->info("Received server ready signal");
  668. androidTestServerReadyFlag.store(true);
  669. }
  670. extern "C" JNIEXPORT bool JNICALL Java_eu_vcmi_vcmi_NativeMethods_tryToSaveTheGame(JNIEnv * env, jobject cls)
  671. {
  672. logGlobal->info("Received emergency save game request");
  673. if(!LOCPLINT || !LOCPLINT->cb)
  674. {
  675. return false;
  676. }
  677. LOCPLINT->cb->save("Saves/_Android_Autosave");
  678. return true;
  679. }
  680. #endif