CServerHandler.cpp 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032
  1. /*
  2. * CServerHandler.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 "CServerHandler.h"
  12. #include "Client.h"
  13. #include "CGameInfo.h"
  14. #include "CPlayerInterface.h"
  15. #include "gui/CGuiHandler.h"
  16. #include "gui/WindowHandler.h"
  17. #include "lobby/CSelectionBase.h"
  18. #include "lobby/CLobbyScreen.h"
  19. #include "windows/InfoWindows.h"
  20. #include "mainmenu/CMainMenu.h"
  21. #include "mainmenu/CPrologEpilogVideo.h"
  22. #include "mainmenu/CHighScoreScreen.h"
  23. #ifdef VCMI_ANDROID
  24. #include "../lib/CAndroidVMHelper.h"
  25. #elif defined(VCMI_IOS)
  26. #include "ios/utils.h"
  27. #include <dispatch/dispatch.h>
  28. #endif
  29. #ifdef SINGLE_PROCESS_APP
  30. #include "../server/CVCMIServer.h"
  31. #endif
  32. #include "../lib/CConfigHandler.h"
  33. #include "../lib/CGeneralTextHandler.h"
  34. #include "../lib/CThreadHelper.h"
  35. #include "../lib/NetPackVisitor.h"
  36. #include "../lib/StartInfo.h"
  37. #include "../lib/TurnTimerInfo.h"
  38. #include "../lib/VCMIDirs.h"
  39. #include "../lib/campaign/CampaignState.h"
  40. #include "../lib/mapping/CMapInfo.h"
  41. #include "../lib/mapObjects/MiscObjects.h"
  42. #include "../lib/modding/ModIncompatibility.h"
  43. #include "../lib/rmg/CMapGenOptions.h"
  44. #include "../lib/filesystem/Filesystem.h"
  45. #include "../lib/registerTypes/RegisterTypes.h"
  46. #include "../lib/serializer/Connection.h"
  47. #include "../lib/serializer/CMemorySerializer.h"
  48. #include <boost/uuid/uuid.hpp>
  49. #include <boost/uuid/uuid_io.hpp>
  50. #include <boost/uuid/uuid_generators.hpp>
  51. #include <boost/asio.hpp>
  52. #include "../lib/serializer/Cast.h"
  53. #include "LobbyClientNetPackVisitors.h"
  54. #include <vcmi/events/EventBus.h>
  55. #ifdef VCMI_WINDOWS
  56. #include <windows.h>
  57. #endif
  58. template<typename T> class CApplyOnLobby;
  59. const std::string CServerHandler::localhostAddress{"127.0.0.1"};
  60. #if defined(VCMI_ANDROID) && !defined(SINGLE_PROCESS_APP)
  61. extern std::atomic_bool androidTestServerReadyFlag;
  62. #endif
  63. class CBaseForLobbyApply
  64. {
  65. public:
  66. virtual bool applyOnLobbyHandler(CServerHandler * handler, void * pack) const = 0;
  67. virtual void applyOnLobbyScreen(CLobbyScreen * lobby, CServerHandler * handler, void * pack) const = 0;
  68. virtual ~CBaseForLobbyApply(){};
  69. template<typename U> static CBaseForLobbyApply * getApplier(const U * t = nullptr)
  70. {
  71. return new CApplyOnLobby<U>();
  72. }
  73. };
  74. template<typename T> class CApplyOnLobby : public CBaseForLobbyApply
  75. {
  76. public:
  77. bool applyOnLobbyHandler(CServerHandler * handler, void * pack) const override
  78. {
  79. boost::mutex::scoped_lock interfaceLock(GH.interfaceMutex);
  80. T * ptr = static_cast<T *>(pack);
  81. ApplyOnLobbyHandlerNetPackVisitor visitor(*handler);
  82. logNetwork->trace("\tImmediately apply on lobby: %s", typeList.getTypeInfo(ptr)->name());
  83. ptr->visit(visitor);
  84. return visitor.getResult();
  85. }
  86. void applyOnLobbyScreen(CLobbyScreen * lobby, CServerHandler * handler, void * pack) const override
  87. {
  88. T * ptr = static_cast<T *>(pack);
  89. ApplyOnLobbyScreenNetPackVisitor visitor(*handler, lobby);
  90. logNetwork->trace("\tApply on lobby from queue: %s", typeList.getTypeInfo(ptr)->name());
  91. ptr->visit(visitor);
  92. }
  93. };
  94. template<> class CApplyOnLobby<CPack>: public CBaseForLobbyApply
  95. {
  96. public:
  97. bool applyOnLobbyHandler(CServerHandler * handler, void * pack) const override
  98. {
  99. logGlobal->error("Cannot apply plain CPack!");
  100. assert(0);
  101. return false;
  102. }
  103. void applyOnLobbyScreen(CLobbyScreen * lobby, CServerHandler * handler, void * pack) const override
  104. {
  105. logGlobal->error("Cannot apply plain CPack!");
  106. assert(0);
  107. }
  108. };
  109. static const std::string NAME_AFFIX = "client";
  110. static const std::string NAME = GameConstants::VCMI_VERSION + std::string(" (") + NAME_AFFIX + ')'; //application name
  111. CServerHandler::CServerHandler()
  112. : state(EClientState::NONE), mx(std::make_shared<boost::recursive_mutex>()), client(nullptr), loadMode(0), campaignStateToSend(nullptr), campaignServerRestartLock(false)
  113. {
  114. uuid = boost::uuids::to_string(boost::uuids::random_generator()());
  115. //read from file to restore last session
  116. if(!settings["server"]["uuid"].isNull() && !settings["server"]["uuid"].String().empty())
  117. uuid = settings["server"]["uuid"].String();
  118. applier = std::make_shared<CApplier<CBaseForLobbyApply>>();
  119. registerTypesLobbyPacks(*applier);
  120. }
  121. void CServerHandler::resetStateForLobby(const StartInfo::EMode mode, const std::vector<std::string> * names)
  122. {
  123. hostClientId = -1;
  124. state = EClientState::NONE;
  125. mapToStart = nullptr;
  126. th = std::make_unique<CStopWatch>();
  127. packsForLobbyScreen.clear();
  128. c.reset();
  129. si = std::make_shared<StartInfo>();
  130. playerNames.clear();
  131. si->difficulty = 1;
  132. si->mode = mode;
  133. myNames.clear();
  134. if(names && !names->empty()) //if have custom set of player names - use it
  135. myNames = *names;
  136. else
  137. myNames.push_back(settings["general"]["playerName"].String());
  138. }
  139. void CServerHandler::startLocalServerAndConnect()
  140. {
  141. if(threadRunLocalServer)
  142. threadRunLocalServer->join();
  143. th->update();
  144. auto errorMsg = CGI->generaltexth->translate("vcmi.server.errors.existingProcess");
  145. try
  146. {
  147. CConnection testConnection(localhostAddress, getDefaultPort(), NAME, uuid);
  148. logNetwork->error("Port is busy, check if another instance of vcmiserver is working");
  149. CInfoWindow::showInfoDialog(errorMsg, {});
  150. return;
  151. }
  152. catch(std::runtime_error & error)
  153. {
  154. //no connection means that port is not busy and we can start local server
  155. }
  156. #if defined(SINGLE_PROCESS_APP)
  157. boost::condition_variable cond;
  158. std::vector<std::string> args{"--uuid=" + uuid, "--port=" + std::to_string(getHostPort())};
  159. if(settings["session"]["lobby"].Bool() && settings["session"]["host"].Bool())
  160. {
  161. args.push_back("--lobby=" + settings["session"]["address"].String());
  162. args.push_back("--connections=" + settings["session"]["hostConnections"].String());
  163. args.push_back("--lobby-port=" + std::to_string(settings["session"]["port"].Integer()));
  164. args.push_back("--lobby-uuid=" + settings["session"]["hostUuid"].String());
  165. }
  166. threadRunLocalServer = std::make_shared<boost::thread>([&cond, args, this] {
  167. setThreadName("CVCMIServer");
  168. CVCMIServer::create(&cond, args);
  169. onServerFinished();
  170. });
  171. threadRunLocalServer->detach();
  172. #elif defined(VCMI_ANDROID)
  173. {
  174. CAndroidVMHelper envHelper;
  175. envHelper.callStaticVoidMethod(CAndroidVMHelper::NATIVE_METHODS_DEFAULT_CLASS, "startServer", true);
  176. }
  177. #else
  178. threadRunLocalServer = std::make_shared<boost::thread>(&CServerHandler::threadRunServer, this); //runs server executable;
  179. #endif
  180. logNetwork->trace("Setting up thread calling server: %d ms", th->getDiff());
  181. th->update();
  182. #ifdef SINGLE_PROCESS_APP
  183. {
  184. #ifdef VCMI_IOS
  185. dispatch_sync(dispatch_get_main_queue(), ^{
  186. iOS_utils::showLoadingIndicator();
  187. });
  188. #endif
  189. boost::mutex m;
  190. boost::unique_lock<boost::mutex> lock{m};
  191. logNetwork->info("waiting for server");
  192. cond.wait(lock);
  193. logNetwork->info("server is ready");
  194. #ifdef VCMI_IOS
  195. dispatch_sync(dispatch_get_main_queue(), ^{
  196. iOS_utils::hideLoadingIndicator();
  197. });
  198. #endif
  199. }
  200. #elif defined(VCMI_ANDROID)
  201. logNetwork->info("waiting for server");
  202. while(!androidTestServerReadyFlag.load())
  203. {
  204. logNetwork->info("still waiting...");
  205. boost::this_thread::sleep_for(boost::chrono::milliseconds(1000));
  206. }
  207. logNetwork->info("waiting for server finished...");
  208. androidTestServerReadyFlag = false;
  209. #endif
  210. logNetwork->trace("Waiting for server: %d ms", th->getDiff());
  211. th->update(); //put breakpoint here to attach to server before it does something stupid
  212. justConnectToServer(localhostAddress, 0);
  213. logNetwork->trace("\tConnecting to the server: %d ms", th->getDiff());
  214. }
  215. void CServerHandler::justConnectToServer(const std::string & addr, const ui16 port)
  216. {
  217. state = EClientState::CONNECTING;
  218. while(!c && state != EClientState::CONNECTION_CANCELLED)
  219. {
  220. try
  221. {
  222. logNetwork->info("Establishing connection...");
  223. c = std::make_shared<CConnection>(
  224. addr.size() ? addr : getHostAddress(),
  225. port ? port : getHostPort(),
  226. NAME, uuid);
  227. }
  228. catch(std::runtime_error & error)
  229. {
  230. logNetwork->warn("\nCannot establish connection. %s Retrying in 1 second", error.what());
  231. boost::this_thread::sleep_for(boost::chrono::milliseconds(1000));
  232. }
  233. }
  234. if(state == EClientState::CONNECTION_CANCELLED)
  235. {
  236. logNetwork->info("Connection aborted by player!");
  237. return;
  238. }
  239. c->handler = std::make_shared<boost::thread>(&CServerHandler::threadHandleConnection, this);
  240. if(!addr.empty() && addr != getHostAddress())
  241. {
  242. Settings serverAddress = settings.write["server"]["server"];
  243. serverAddress->String() = addr;
  244. }
  245. if(port && port != getHostPort())
  246. {
  247. Settings serverPort = settings.write["server"]["port"];
  248. serverPort->Integer() = port;
  249. }
  250. }
  251. void CServerHandler::applyPacksOnLobbyScreen()
  252. {
  253. if(!c || !c->handler)
  254. return;
  255. boost::unique_lock<boost::recursive_mutex> lock(*mx);
  256. while(!packsForLobbyScreen.empty())
  257. {
  258. boost::mutex::scoped_lock interfaceLock(GH.interfaceMutex);
  259. CPackForLobby * pack = packsForLobbyScreen.front();
  260. packsForLobbyScreen.pop_front();
  261. CBaseForLobbyApply * apply = applier->getApplier(typeList.getTypeID(pack)); //find the applier
  262. apply->applyOnLobbyScreen(dynamic_cast<CLobbyScreen *>(SEL), this, pack);
  263. GH.windows().totalRedraw();
  264. delete pack;
  265. }
  266. }
  267. void CServerHandler::stopServerConnection()
  268. {
  269. if(c->handler)
  270. {
  271. while(!c->handler->timed_join(boost::chrono::milliseconds(50)))
  272. applyPacksOnLobbyScreen();
  273. c->handler->join();
  274. }
  275. }
  276. std::set<PlayerColor> CServerHandler::getHumanColors()
  277. {
  278. return clientHumanColors(c->connectionID);
  279. }
  280. PlayerColor CServerHandler::myFirstColor() const
  281. {
  282. return clientFirstColor(c->connectionID);
  283. }
  284. bool CServerHandler::isMyColor(PlayerColor color) const
  285. {
  286. return isClientColor(c->connectionID, color);
  287. }
  288. ui8 CServerHandler::myFirstId() const
  289. {
  290. return clientFirstId(c->connectionID);
  291. }
  292. bool CServerHandler::isServerLocal() const
  293. {
  294. if(threadRunLocalServer)
  295. return true;
  296. return false;
  297. }
  298. bool CServerHandler::isHost() const
  299. {
  300. return c && hostClientId == c->connectionID;
  301. }
  302. bool CServerHandler::isGuest() const
  303. {
  304. return !c || hostClientId != c->connectionID;
  305. }
  306. ui16 CServerHandler::getDefaultPort()
  307. {
  308. return static_cast<ui16>(settings["server"]["port"].Integer());
  309. }
  310. std::string CServerHandler::getDefaultPortStr()
  311. {
  312. return std::to_string(getDefaultPort());
  313. }
  314. std::string CServerHandler::getHostAddress() const
  315. {
  316. if(settings["session"]["lobby"].isNull() || !settings["session"]["lobby"].Bool())
  317. return settings["server"]["server"].String();
  318. if(settings["session"]["host"].Bool())
  319. return localhostAddress;
  320. return settings["session"]["address"].String();
  321. }
  322. ui16 CServerHandler::getHostPort() const
  323. {
  324. if(settings["session"]["lobby"].isNull() || !settings["session"]["lobby"].Bool())
  325. return getDefaultPort();
  326. if(settings["session"]["host"].Bool())
  327. return getDefaultPort();
  328. return settings["session"]["port"].Integer();
  329. }
  330. void CServerHandler::sendClientConnecting() const
  331. {
  332. LobbyClientConnected lcc;
  333. lcc.uuid = uuid;
  334. lcc.names = myNames;
  335. lcc.mode = si->mode;
  336. sendLobbyPack(lcc);
  337. }
  338. void CServerHandler::sendClientDisconnecting()
  339. {
  340. // FIXME: This is workaround needed to make sure client not trying to sent anything to non existed server
  341. if(state == EClientState::DISCONNECTING)
  342. return;
  343. state = EClientState::DISCONNECTING;
  344. mapToStart = nullptr;
  345. LobbyClientDisconnected lcd;
  346. lcd.clientId = c->connectionID;
  347. logNetwork->info("Connection has been requested to be closed.");
  348. if(isServerLocal())
  349. {
  350. lcd.shutdownServer = true;
  351. logNetwork->info("Sent closing signal to the server");
  352. }
  353. else
  354. {
  355. logNetwork->info("Sent leaving signal to the server");
  356. }
  357. sendLobbyPack(lcd);
  358. c->close();
  359. c.reset();
  360. }
  361. void CServerHandler::setCampaignState(std::shared_ptr<CampaignState> newCampaign)
  362. {
  363. state = EClientState::LOBBY_CAMPAIGN;
  364. LobbySetCampaign lsc;
  365. lsc.ourCampaign = newCampaign;
  366. sendLobbyPack(lsc);
  367. }
  368. void CServerHandler::setCampaignMap(CampaignScenarioID mapId) const
  369. {
  370. if(state == EClientState::GAMEPLAY) // FIXME: UI shouldn't sent commands in first place
  371. return;
  372. LobbySetCampaignMap lscm;
  373. lscm.mapId = mapId;
  374. sendLobbyPack(lscm);
  375. }
  376. void CServerHandler::setCampaignBonus(int bonusId) const
  377. {
  378. if(state == EClientState::GAMEPLAY) // FIXME: UI shouldn't sent commands in first place
  379. return;
  380. LobbySetCampaignBonus lscb;
  381. lscb.bonusId = bonusId;
  382. sendLobbyPack(lscb);
  383. }
  384. void CServerHandler::setMapInfo(std::shared_ptr<CMapInfo> to, std::shared_ptr<CMapGenOptions> mapGenOpts) const
  385. {
  386. LobbySetMap lsm;
  387. lsm.mapInfo = to;
  388. lsm.mapGenOpts = mapGenOpts;
  389. sendLobbyPack(lsm);
  390. }
  391. void CServerHandler::setPlayer(PlayerColor color) const
  392. {
  393. LobbySetPlayer lsp;
  394. lsp.clickedColor = color;
  395. sendLobbyPack(lsp);
  396. }
  397. void CServerHandler::setPlayerName(PlayerColor color, const std::string & name) const
  398. {
  399. LobbySetPlayerName lspn;
  400. lspn.color = color;
  401. lspn.name = name;
  402. sendLobbyPack(lspn);
  403. }
  404. void CServerHandler::setPlayerOption(ui8 what, int32_t value, PlayerColor player) const
  405. {
  406. LobbyChangePlayerOption lcpo;
  407. lcpo.what = what;
  408. lcpo.value = value;
  409. lcpo.color = player;
  410. sendLobbyPack(lcpo);
  411. }
  412. void CServerHandler::setDifficulty(int to) const
  413. {
  414. LobbySetDifficulty lsd;
  415. lsd.difficulty = to;
  416. sendLobbyPack(lsd);
  417. }
  418. void CServerHandler::setSimturnsInfo(const SimturnsInfo & info) const
  419. {
  420. LobbySetSimturns pack;
  421. pack.simturnsInfo = info;
  422. sendLobbyPack(pack);
  423. }
  424. void CServerHandler::setTurnTimerInfo(const TurnTimerInfo & info) const
  425. {
  426. LobbySetTurnTime lstt;
  427. lstt.turnTimerInfo = info;
  428. sendLobbyPack(lstt);
  429. }
  430. void CServerHandler::sendMessage(const std::string & txt) const
  431. {
  432. std::istringstream readed;
  433. readed.str(txt);
  434. std::string command;
  435. readed >> command;
  436. if(command == "!passhost")
  437. {
  438. std::string id;
  439. readed >> id;
  440. if(id.length())
  441. {
  442. LobbyChangeHost lch;
  443. lch.newHostConnectionId = boost::lexical_cast<int>(id);
  444. sendLobbyPack(lch);
  445. }
  446. }
  447. else if(command == "!forcep")
  448. {
  449. std::string connectedId, playerColorId;
  450. readed >> connectedId;
  451. readed >> playerColorId;
  452. if(connectedId.length() && playerColorId.length())
  453. {
  454. ui8 connected = boost::lexical_cast<int>(connectedId);
  455. auto color = PlayerColor(boost::lexical_cast<int>(playerColorId));
  456. if(color.isValidPlayer() && playerNames.find(connected) != playerNames.end())
  457. {
  458. LobbyForceSetPlayer lfsp;
  459. lfsp.targetConnectedPlayer = connected;
  460. lfsp.targetPlayerColor = color;
  461. sendLobbyPack(lfsp);
  462. }
  463. }
  464. }
  465. else
  466. {
  467. LobbyChatMessage lcm;
  468. lcm.message = txt;
  469. lcm.playerName = playerNames.find(myFirstId())->second.name;
  470. sendLobbyPack(lcm);
  471. }
  472. }
  473. void CServerHandler::sendGuiAction(ui8 action) const
  474. {
  475. LobbyGuiAction lga;
  476. lga.action = static_cast<LobbyGuiAction::EAction>(action);
  477. sendLobbyPack(lga);
  478. }
  479. void CServerHandler::sendRestartGame() const
  480. {
  481. GH.windows().createAndPushWindow<CLoadingScreen>();
  482. LobbyEndGame endGame;
  483. endGame.closeConnection = false;
  484. endGame.restart = true;
  485. sendLobbyPack(endGame);
  486. }
  487. bool CServerHandler::validateGameStart(bool allowOnlyAI) const
  488. {
  489. try
  490. {
  491. verifyStateBeforeStart(allowOnlyAI ? true : settings["session"]["onlyai"].Bool());
  492. }
  493. catch(ModIncompatibility & e)
  494. {
  495. logGlobal->warn("Incompatibility exception during start scenario: %s", e.what());
  496. std::string errorMsg;
  497. if(!e.whatMissing().empty())
  498. {
  499. errorMsg += VLC->generaltexth->translate("vcmi.server.errors.modsToEnable") + '\n';
  500. errorMsg += e.whatMissing();
  501. }
  502. if(!e.whatExcessive().empty())
  503. {
  504. errorMsg += VLC->generaltexth->translate("vcmi.server.errors.modsToDisable") + '\n';
  505. errorMsg += e.whatExcessive();
  506. }
  507. showServerError(errorMsg);
  508. return false;
  509. }
  510. catch(std::exception & e)
  511. {
  512. logGlobal->error("Exception during startScenario: %s", e.what());
  513. showServerError( std::string("Unable to start map! Reason: ") + e.what());
  514. return false;
  515. }
  516. return true;
  517. }
  518. void CServerHandler::sendStartGame(bool allowOnlyAI) const
  519. {
  520. verifyStateBeforeStart(allowOnlyAI ? true : settings["session"]["onlyai"].Bool());
  521. GH.windows().createAndPushWindow<CLoadingScreen>();
  522. LobbyStartGame lsg;
  523. if(client)
  524. {
  525. lsg.initializedStartInfo = std::make_shared<StartInfo>(* const_cast<StartInfo *>(client->getStartInfo(true)));
  526. lsg.initializedStartInfo->mode = StartInfo::NEW_GAME;
  527. lsg.initializedStartInfo->seedToBeUsed = lsg.initializedStartInfo->seedPostInit = 0;
  528. * si = * lsg.initializedStartInfo;
  529. }
  530. sendLobbyPack(lsg);
  531. c->enterLobbyConnectionMode();
  532. c->disableStackSendingByID();
  533. }
  534. void CServerHandler::startMapAfterConnection(std::shared_ptr<CMapInfo> to)
  535. {
  536. mapToStart = to;
  537. }
  538. void CServerHandler::startGameplay(VCMI_LIB_WRAP_NAMESPACE(CGameState) * gameState)
  539. {
  540. if(CMM)
  541. CMM->disable();
  542. client = new CClient();
  543. highScoreCalc = nullptr;
  544. switch(si->mode)
  545. {
  546. case StartInfo::NEW_GAME:
  547. client->newGame(gameState);
  548. break;
  549. case StartInfo::CAMPAIGN:
  550. client->newGame(gameState);
  551. break;
  552. case StartInfo::LOAD_GAME:
  553. client->loadGame(gameState);
  554. break;
  555. default:
  556. throw std::runtime_error("Invalid mode");
  557. }
  558. // After everything initialized we can accept CPackToClient netpacks
  559. c->enterGameplayConnectionMode(client->gameState());
  560. state = EClientState::GAMEPLAY;
  561. //store settings to continue game
  562. if(!isServerLocal() && isGuest())
  563. {
  564. Settings saveSession = settings.write["server"]["reconnect"];
  565. saveSession->Bool() = true;
  566. Settings saveUuid = settings.write["server"]["uuid"];
  567. saveUuid->String() = uuid;
  568. Settings saveNames = settings.write["server"]["names"];
  569. saveNames->Vector().clear();
  570. for(auto & name : myNames)
  571. {
  572. JsonNode jsonName;
  573. jsonName.String() = name;
  574. saveNames->Vector().push_back(jsonName);
  575. }
  576. }
  577. }
  578. void CServerHandler::endGameplay(bool closeConnection, bool restart)
  579. {
  580. client->endGame();
  581. vstd::clear_pointer(client);
  582. if(closeConnection)
  583. {
  584. // Game is ending
  585. // Tell the network thread to reach a stable state
  586. CSH->sendClientDisconnecting();
  587. logNetwork->info("Closed connection.");
  588. }
  589. if(!restart)
  590. {
  591. if(CMM)
  592. {
  593. GH.curInt = CMM.get();
  594. CMM->enable();
  595. }
  596. else
  597. {
  598. GH.curInt = CMainMenu::create().get();
  599. }
  600. }
  601. if(c)
  602. {
  603. c->enterLobbyConnectionMode();
  604. c->disableStackSendingByID();
  605. }
  606. //reset settings
  607. Settings saveSession = settings.write["server"]["reconnect"];
  608. saveSession->Bool() = false;
  609. }
  610. void CServerHandler::startCampaignScenario(HighScoreParameter param, std::shared_ptr<CampaignState> cs)
  611. {
  612. std::shared_ptr<CampaignState> ourCampaign = cs;
  613. if (!cs)
  614. ourCampaign = si->campState;
  615. if(highScoreCalc == nullptr)
  616. {
  617. highScoreCalc = std::make_shared<HighScoreCalculation>();
  618. highScoreCalc->isCampaign = true;
  619. highScoreCalc->parameters.clear();
  620. }
  621. param.campaignName = cs->getNameTranslated();
  622. highScoreCalc->parameters.push_back(param);
  623. GH.dispatchMainThread([ourCampaign, this]()
  624. {
  625. CSH->campaignServerRestartLock.set(true);
  626. CSH->endGameplay();
  627. auto & epilogue = ourCampaign->scenario(*ourCampaign->lastScenario()).epilog;
  628. auto finisher = [=]()
  629. {
  630. if(ourCampaign->campaignSet != "")
  631. {
  632. Settings entry = persistentStorage.write["completedCampaigns"][ourCampaign->getFilename()];
  633. entry->Bool() = true;
  634. }
  635. GH.windows().pushWindow(CMM);
  636. GH.windows().pushWindow(CMM->menu);
  637. if(!ourCampaign->isCampaignFinished())
  638. CMM->openCampaignLobby(ourCampaign);
  639. else
  640. {
  641. CMM->openCampaignScreen(ourCampaign->campaignSet);
  642. GH.windows().createAndPushWindow<CHighScoreInputScreen>(true, *highScoreCalc);
  643. }
  644. };
  645. if(epilogue.hasPrologEpilog)
  646. {
  647. GH.windows().createAndPushWindow<CPrologEpilogVideo>(epilogue, finisher);
  648. }
  649. else
  650. {
  651. CSH->campaignServerRestartLock.waitUntil(false);
  652. finisher();
  653. }
  654. });
  655. }
  656. void CServerHandler::showServerError(const std::string & txt) const
  657. {
  658. if(auto w = GH.windows().topWindow<CLoadingScreen>())
  659. GH.windows().popWindow(w);
  660. CInfoWindow::showInfoDialog(txt, {});
  661. }
  662. int CServerHandler::howManyPlayerInterfaces()
  663. {
  664. int playerInts = 0;
  665. for(auto pint : client->playerint)
  666. {
  667. if(dynamic_cast<CPlayerInterface *>(pint.second.get()))
  668. playerInts++;
  669. }
  670. return playerInts;
  671. }
  672. ui8 CServerHandler::getLoadMode()
  673. {
  674. if(loadMode != ELoadMode::TUTORIAL && state == EClientState::GAMEPLAY)
  675. {
  676. if(si->campState)
  677. return ELoadMode::CAMPAIGN;
  678. for(auto pn : playerNames)
  679. {
  680. if(pn.second.connection != c->connectionID)
  681. return ELoadMode::MULTI;
  682. }
  683. if(howManyPlayerInterfaces() > 1) //this condition will work for hotseat mode OR multiplayer with allowed more than 1 color per player to control
  684. return ELoadMode::MULTI;
  685. return ELoadMode::SINGLE;
  686. }
  687. return loadMode;
  688. }
  689. void CServerHandler::restoreLastSession()
  690. {
  691. auto loadSession = [this]()
  692. {
  693. uuid = settings["server"]["uuid"].String();
  694. for(auto & name : settings["server"]["names"].Vector())
  695. myNames.push_back(name.String());
  696. resetStateForLobby(StartInfo::LOAD_GAME, &myNames);
  697. screenType = ESelectionScreen::loadGame;
  698. justConnectToServer(settings["server"]["server"].String(), settings["server"]["port"].Integer());
  699. };
  700. auto cleanUpSession = []()
  701. {
  702. //reset settings
  703. Settings saveSession = settings.write["server"]["reconnect"];
  704. saveSession->Bool() = false;
  705. };
  706. CInfoWindow::showYesNoDialog(VLC->generaltexth->translate("vcmi.server.confirmReconnect"), {}, loadSession, cleanUpSession);
  707. }
  708. void CServerHandler::debugStartTest(std::string filename, bool save)
  709. {
  710. logGlobal->info("Starting debug test with file: %s", filename);
  711. auto mapInfo = std::make_shared<CMapInfo>();
  712. if(save)
  713. {
  714. resetStateForLobby(StartInfo::LOAD_GAME);
  715. mapInfo->saveInit(ResourcePath(filename, EResType::SAVEGAME));
  716. screenType = ESelectionScreen::loadGame;
  717. }
  718. else
  719. {
  720. resetStateForLobby(StartInfo::NEW_GAME);
  721. mapInfo->mapInit(filename);
  722. screenType = ESelectionScreen::newGame;
  723. }
  724. if(settings["session"]["donotstartserver"].Bool())
  725. justConnectToServer(localhostAddress, 3030);
  726. else
  727. startLocalServerAndConnect();
  728. boost::this_thread::sleep_for(boost::chrono::milliseconds(100));
  729. while(!settings["session"]["headless"].Bool() && !GH.windows().topWindow<CLobbyScreen>())
  730. boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
  731. while(!mi || mapInfo->fileURI != CSH->mi->fileURI)
  732. {
  733. setMapInfo(mapInfo);
  734. boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
  735. }
  736. // "Click" on color to remove us from it
  737. setPlayer(myFirstColor());
  738. while(myFirstColor() != PlayerColor::CANNOT_DETERMINE)
  739. boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
  740. while(true)
  741. {
  742. try
  743. {
  744. sendStartGame();
  745. break;
  746. }
  747. catch(...)
  748. {
  749. }
  750. boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
  751. }
  752. }
  753. class ServerHandlerCPackVisitor : public VCMI_LIB_WRAP_NAMESPACE(ICPackVisitor)
  754. {
  755. private:
  756. CServerHandler & handler;
  757. public:
  758. ServerHandlerCPackVisitor(CServerHandler & handler)
  759. :handler(handler)
  760. {
  761. }
  762. virtual bool callTyped() override { return false; }
  763. virtual void visitForLobby(CPackForLobby & lobbyPack) override
  764. {
  765. handler.visitForLobby(lobbyPack);
  766. }
  767. virtual void visitForClient(CPackForClient & clientPack) override
  768. {
  769. handler.visitForClient(clientPack);
  770. }
  771. };
  772. void CServerHandler::threadHandleConnection()
  773. {
  774. setThreadName("handleConnection");
  775. c->enterLobbyConnectionMode();
  776. try
  777. {
  778. sendClientConnecting();
  779. while(c && c->connected)
  780. {
  781. while(state == EClientState::STARTING)
  782. boost::this_thread::sleep_for(boost::chrono::milliseconds(10));
  783. CPack * pack = c->retrievePack();
  784. if(state == EClientState::DISCONNECTING)
  785. {
  786. // FIXME: server shouldn't really send netpacks after it's tells client to disconnect
  787. // Though currently they'll be delivered and might cause crash.
  788. vstd::clear_pointer(pack);
  789. }
  790. else
  791. {
  792. ServerHandlerCPackVisitor visitor(*this);
  793. pack->visit(visitor);
  794. }
  795. }
  796. }
  797. //catch only asio exceptions
  798. catch(const boost::system::system_error & e)
  799. {
  800. if(state == EClientState::DISCONNECTING)
  801. {
  802. logNetwork->info("Successfully closed connection to server, ending listening thread!");
  803. }
  804. else
  805. {
  806. if (e.code() == boost::asio::error::eof)
  807. logNetwork->error("Lost connection to server, ending listening thread! Connection has been closed");
  808. else
  809. logNetwork->error("Lost connection to server, ending listening thread! Reason: %s", e.what());
  810. if(client)
  811. {
  812. state = EClientState::DISCONNECTING;
  813. GH.dispatchMainThread([]()
  814. {
  815. CSH->endGameplay();
  816. GH.defActionsDef = 63;
  817. CMM->menu->switchToTab("main");
  818. });
  819. }
  820. else
  821. {
  822. auto lcd = new LobbyClientDisconnected();
  823. lcd->clientId = c->connectionID;
  824. boost::unique_lock<boost::recursive_mutex> lock(*mx);
  825. packsForLobbyScreen.push_back(lcd);
  826. }
  827. }
  828. }
  829. }
  830. void CServerHandler::visitForLobby(CPackForLobby & lobbyPack)
  831. {
  832. if(applier->getApplier(typeList.getTypeID(&lobbyPack))->applyOnLobbyHandler(this, &lobbyPack))
  833. {
  834. if(!settings["session"]["headless"].Bool())
  835. {
  836. boost::unique_lock<boost::recursive_mutex> lock(*mx);
  837. packsForLobbyScreen.push_back(&lobbyPack);
  838. }
  839. }
  840. }
  841. void CServerHandler::visitForClient(CPackForClient & clientPack)
  842. {
  843. client->handlePack(&clientPack);
  844. }
  845. void CServerHandler::threadRunServer()
  846. {
  847. #if !defined(VCMI_MOBILE)
  848. setThreadName("runServer");
  849. const std::string logName = (VCMIDirs::get().userLogsPath() / "server_log.txt").string();
  850. std::string comm = VCMIDirs::get().serverPath().string()
  851. + " --port=" + std::to_string(getHostPort())
  852. + " --run-by-client"
  853. + " --uuid=" + uuid;
  854. if(settings["session"]["lobby"].Bool() && settings["session"]["host"].Bool())
  855. {
  856. comm += " --lobby=" + settings["session"]["address"].String();
  857. comm += " --connections=" + settings["session"]["hostConnections"].String();
  858. comm += " --lobby-port=" + std::to_string(settings["session"]["port"].Integer());
  859. comm += " --lobby-uuid=" + settings["session"]["hostUuid"].String();
  860. }
  861. comm += " > \"" + logName + '\"';
  862. logGlobal->info("Server command line: %s", comm);
  863. #ifdef VCMI_WINDOWS
  864. int result = -1;
  865. const auto bufSize = ::MultiByteToWideChar(CP_UTF8, 0, comm.c_str(), comm.size(), nullptr, 0);
  866. if(bufSize > 0)
  867. {
  868. std::wstring wComm(bufSize, {});
  869. const auto convertResult = ::MultiByteToWideChar(CP_UTF8, 0, comm.c_str(), comm.size(), &wComm[0], bufSize);
  870. if(convertResult > 0)
  871. result = ::_wsystem(wComm.c_str());
  872. else
  873. logNetwork->error("Error " + std::to_string(GetLastError()) + ": failed to convert server launch command to wide string: " + comm);
  874. }
  875. else
  876. logNetwork->error("Error " + std::to_string(GetLastError()) + ": failed to obtain buffer length to convert server launch command to wide string : " + comm);
  877. #else
  878. int result = std::system(comm.c_str());
  879. #endif
  880. if (result == 0)
  881. {
  882. logNetwork->info("Server closed correctly");
  883. }
  884. else
  885. {
  886. logNetwork->error("Error: server failed to close correctly or crashed!");
  887. logNetwork->error("Check %s for more info", logName);
  888. }
  889. onServerFinished();
  890. #endif
  891. }
  892. void CServerHandler::onServerFinished()
  893. {
  894. threadRunLocalServer.reset();
  895. CSH->campaignServerRestartLock.setn(false);
  896. }
  897. void CServerHandler::sendLobbyPack(const CPackForLobby & pack) const
  898. {
  899. if(state != EClientState::STARTING)
  900. c->sendPack(&pack);
  901. }