CServerHandler.cpp 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058
  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::unique_lock<boost::recursive_mutex> un(*CPlayerInterface::pim);
  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. logNetwork->info("justConnectToServer(%s, %d)", addr, port);
  219. std::string hostAddressFromSettings = getHostAddressFromSettings();
  220. ui16 hostPortFromSettings = getHostPortFromSettings();
  221. logNetwork->info("Host settings %s:%d", hostAddressFromSettings, hostPortFromSettings);
  222. std::string connectionAddress = addr.size() ? addr : hostAddressFromSettings;
  223. ui16 connectionPort = port ? port : hostPortFromSettings;
  224. boost::chrono::duration<long, boost::ratio<1, 1000>> sleepDuration{};
  225. int maxConnectionAttempts;
  226. if(connectionAddress == "127.0.0.1" || connectionAddress == "localhost")
  227. {
  228. logNetwork->info("Local server");
  229. sleepDuration = boost::chrono::milliseconds(10);
  230. maxConnectionAttempts = 1000;
  231. }
  232. else
  233. {
  234. logNetwork->info("Remote server");
  235. sleepDuration = boost::chrono::seconds(2);
  236. maxConnectionAttempts = 10;
  237. }
  238. logNetwork->info("Waiting for %d ms between each of the %d attempts to connect", sleepDuration.count(), maxConnectionAttempts);
  239. ui16 connectionAttemptCount = 0;
  240. while(!c && state != EClientState::CONNECTION_CANCELLED)
  241. {
  242. connectionAttemptCount++;
  243. if(connectionAttemptCount > maxConnectionAttempts)
  244. {
  245. logNetwork->error("\nExceeded maximum of %d connection attempts", maxConnectionAttempts);
  246. return;
  247. }
  248. try
  249. {
  250. c = std::make_shared<CConnection>(
  251. connectionAddress,
  252. connectionPort,
  253. NAME, uuid);
  254. }
  255. catch(std::runtime_error & error)
  256. {
  257. boost::this_thread::sleep_for(sleepDuration);
  258. }
  259. }
  260. if(state == EClientState::CONNECTION_CANCELLED)
  261. {
  262. logNetwork->info("Connection aborted by player!");
  263. return;
  264. }
  265. c->handler = std::make_shared<boost::thread>(&CServerHandler::threadHandleConnection, this);
  266. if(!addr.empty() && addr != getHostAddressFromSettings())
  267. {
  268. Settings serverAddress = settings.write["server"]["server"];
  269. serverAddress->String() = addr;
  270. }
  271. if(port && port != getHostPortFromSettings())
  272. {
  273. Settings serverPort = settings.write["server"]["port"];
  274. serverPort->Integer() = port;
  275. }
  276. }
  277. void CServerHandler::applyPacksOnLobbyScreen()
  278. {
  279. if(!c || !c->handler)
  280. return;
  281. boost::unique_lock<boost::recursive_mutex> lock(*mx);
  282. while(!packsForLobbyScreen.empty())
  283. {
  284. boost::unique_lock<boost::recursive_mutex> guiLock(*CPlayerInterface::pim);
  285. CPackForLobby * pack = packsForLobbyScreen.front();
  286. packsForLobbyScreen.pop_front();
  287. CBaseForLobbyApply * apply = applier->getApplier(typeList.getTypeID(pack)); //find the applier
  288. apply->applyOnLobbyScreen(static_cast<CLobbyScreen *>(SEL), this, pack);
  289. GH.windows().totalRedraw();
  290. delete pack;
  291. }
  292. }
  293. void CServerHandler::stopServerConnection()
  294. {
  295. if(c->handler)
  296. {
  297. while(!c->handler->timed_join(boost::chrono::milliseconds(50)))
  298. applyPacksOnLobbyScreen();
  299. c->handler->join();
  300. }
  301. }
  302. std::set<PlayerColor> CServerHandler::getHumanColors()
  303. {
  304. return clientHumanColors(c->connectionID);
  305. }
  306. PlayerColor CServerHandler::myFirstColor() const
  307. {
  308. return clientFirstColor(c->connectionID);
  309. }
  310. bool CServerHandler::isMyColor(PlayerColor color) const
  311. {
  312. return isClientColor(c->connectionID, color);
  313. }
  314. ui8 CServerHandler::myFirstId() const
  315. {
  316. return clientFirstId(c->connectionID);
  317. }
  318. bool CServerHandler::isServerLocal() const
  319. {
  320. if(threadRunLocalServer)
  321. return true;
  322. return false;
  323. }
  324. bool CServerHandler::isHost() const
  325. {
  326. return c && hostClientId == c->connectionID;
  327. }
  328. bool CServerHandler::isGuest() const
  329. {
  330. return !c || hostClientId != c->connectionID;
  331. }
  332. ui16 CServerHandler::getDefaultPort()
  333. {
  334. return static_cast<ui16>(settings["server"]["port"].Integer());
  335. }
  336. std::string CServerHandler::getDefaultPortStr()
  337. {
  338. return std::to_string(getDefaultPort());
  339. }
  340. std::string CServerHandler::getHostAddressFromSettings() const
  341. {
  342. if(settings["session"]["lobby"].isNull() || !settings["session"]["lobby"].Bool())
  343. return settings["server"]["server"].String();
  344. if(settings["session"]["host"].Bool())
  345. return localhostAddress;
  346. return settings["session"]["address"].String();
  347. }
  348. ui16 CServerHandler::getHostPortFromSettings() const
  349. {
  350. if(settings["session"]["lobby"].isNull() || !settings["session"]["lobby"].Bool())
  351. return getDefaultPort();
  352. if(settings["session"]["host"].Bool())
  353. return getDefaultPort();
  354. return settings["session"]["port"].Integer();
  355. }
  356. void CServerHandler::sendClientConnecting() const
  357. {
  358. LobbyClientConnected lcc;
  359. lcc.uuid = uuid;
  360. lcc.names = myNames;
  361. lcc.mode = si->mode;
  362. sendLobbyPack(lcc);
  363. }
  364. void CServerHandler::sendClientDisconnecting()
  365. {
  366. // FIXME: This is workaround needed to make sure client not trying to sent anything to non existed server
  367. if(state == EClientState::DISCONNECTING)
  368. return;
  369. state = EClientState::DISCONNECTING;
  370. mapToStart = nullptr;
  371. LobbyClientDisconnected lcd;
  372. lcd.clientId = c->connectionID;
  373. logNetwork->info("Connection has been requested to be closed.");
  374. if(isServerLocal())
  375. {
  376. lcd.shutdownServer = true;
  377. logNetwork->info("Sent closing signal to the server");
  378. }
  379. else
  380. {
  381. logNetwork->info("Sent leaving signal to the server");
  382. }
  383. sendLobbyPack(lcd);
  384. c->close();
  385. c.reset();
  386. }
  387. void CServerHandler::setCampaignState(std::shared_ptr<CampaignState> newCampaign)
  388. {
  389. state = EClientState::LOBBY_CAMPAIGN;
  390. LobbySetCampaign lsc;
  391. lsc.ourCampaign = newCampaign;
  392. sendLobbyPack(lsc);
  393. }
  394. void CServerHandler::setCampaignMap(CampaignScenarioID mapId) const
  395. {
  396. if(state == EClientState::GAMEPLAY) // FIXME: UI shouldn't sent commands in first place
  397. return;
  398. LobbySetCampaignMap lscm;
  399. lscm.mapId = mapId;
  400. sendLobbyPack(lscm);
  401. }
  402. void CServerHandler::setCampaignBonus(int bonusId) const
  403. {
  404. if(state == EClientState::GAMEPLAY) // FIXME: UI shouldn't sent commands in first place
  405. return;
  406. LobbySetCampaignBonus lscb;
  407. lscb.bonusId = bonusId;
  408. sendLobbyPack(lscb);
  409. }
  410. void CServerHandler::setMapInfo(std::shared_ptr<CMapInfo> to, std::shared_ptr<CMapGenOptions> mapGenOpts) const
  411. {
  412. LobbySetMap lsm;
  413. lsm.mapInfo = to;
  414. lsm.mapGenOpts = mapGenOpts;
  415. sendLobbyPack(lsm);
  416. }
  417. void CServerHandler::setPlayer(PlayerColor color) const
  418. {
  419. LobbySetPlayer lsp;
  420. lsp.clickedColor = color;
  421. sendLobbyPack(lsp);
  422. }
  423. void CServerHandler::setPlayerOption(ui8 what, int32_t value, PlayerColor player) const
  424. {
  425. LobbyChangePlayerOption lcpo;
  426. lcpo.what = what;
  427. lcpo.value = value;
  428. lcpo.color = player;
  429. sendLobbyPack(lcpo);
  430. }
  431. void CServerHandler::setDifficulty(int to) const
  432. {
  433. LobbySetDifficulty lsd;
  434. lsd.difficulty = to;
  435. sendLobbyPack(lsd);
  436. }
  437. void CServerHandler::setSimturnsInfo(const SimturnsInfo & info) const
  438. {
  439. LobbySetSimturns pack;
  440. pack.simturnsInfo = info;
  441. sendLobbyPack(pack);
  442. }
  443. void CServerHandler::setTurnTimerInfo(const TurnTimerInfo & info) const
  444. {
  445. LobbySetTurnTime lstt;
  446. lstt.turnTimerInfo = info;
  447. sendLobbyPack(lstt);
  448. }
  449. void CServerHandler::sendMessage(const std::string & txt) const
  450. {
  451. std::istringstream readed;
  452. readed.str(txt);
  453. std::string command;
  454. readed >> command;
  455. if(command == "!passhost")
  456. {
  457. std::string id;
  458. readed >> id;
  459. if(id.length())
  460. {
  461. LobbyChangeHost lch;
  462. lch.newHostConnectionId = boost::lexical_cast<int>(id);
  463. sendLobbyPack(lch);
  464. }
  465. }
  466. else if(command == "!forcep")
  467. {
  468. std::string connectedId, playerColorId;
  469. readed >> connectedId;
  470. readed >> playerColorId;
  471. if(connectedId.length() && playerColorId.length())
  472. {
  473. ui8 connected = boost::lexical_cast<int>(connectedId);
  474. auto color = PlayerColor(boost::lexical_cast<int>(playerColorId));
  475. if(color.isValidPlayer() && playerNames.find(connected) != playerNames.end())
  476. {
  477. LobbyForceSetPlayer lfsp;
  478. lfsp.targetConnectedPlayer = connected;
  479. lfsp.targetPlayerColor = color;
  480. sendLobbyPack(lfsp);
  481. }
  482. }
  483. }
  484. else
  485. {
  486. LobbyChatMessage lcm;
  487. lcm.message = txt;
  488. lcm.playerName = playerNames.find(myFirstId())->second.name;
  489. sendLobbyPack(lcm);
  490. }
  491. }
  492. void CServerHandler::sendGuiAction(ui8 action) const
  493. {
  494. LobbyGuiAction lga;
  495. lga.action = static_cast<LobbyGuiAction::EAction>(action);
  496. sendLobbyPack(lga);
  497. }
  498. void CServerHandler::sendRestartGame() const
  499. {
  500. GH.windows().createAndPushWindow<CLoadingScreen>();
  501. LobbyEndGame endGame;
  502. endGame.closeConnection = false;
  503. endGame.restart = true;
  504. sendLobbyPack(endGame);
  505. }
  506. bool CServerHandler::validateGameStart(bool allowOnlyAI) const
  507. {
  508. try
  509. {
  510. verifyStateBeforeStart(allowOnlyAI ? true : settings["session"]["onlyai"].Bool());
  511. }
  512. catch(ModIncompatibility & e)
  513. {
  514. logGlobal->warn("Incompatibility exception during start scenario: %s", e.what());
  515. std::string errorMsg;
  516. if(!e.whatMissing().empty())
  517. {
  518. errorMsg += VLC->generaltexth->translate("vcmi.server.errors.modsToEnable") + '\n';
  519. errorMsg += e.whatMissing();
  520. }
  521. if(!e.whatExcessive().empty())
  522. {
  523. errorMsg += VLC->generaltexth->translate("vcmi.server.errors.modsToDisable") + '\n';
  524. errorMsg += e.whatExcessive();
  525. }
  526. showServerError(errorMsg);
  527. return false;
  528. }
  529. catch(std::exception & e)
  530. {
  531. logGlobal->error("Exception during startScenario: %s", e.what());
  532. showServerError( std::string("Unable to start map! Reason: ") + e.what());
  533. return false;
  534. }
  535. return true;
  536. }
  537. void CServerHandler::sendStartGame(bool allowOnlyAI) const
  538. {
  539. verifyStateBeforeStart(allowOnlyAI ? true : settings["session"]["onlyai"].Bool());
  540. GH.windows().createAndPushWindow<CLoadingScreen>();
  541. LobbyStartGame lsg;
  542. if(client)
  543. {
  544. lsg.initializedStartInfo = std::make_shared<StartInfo>(* const_cast<StartInfo *>(client->getStartInfo(true)));
  545. lsg.initializedStartInfo->mode = StartInfo::NEW_GAME;
  546. lsg.initializedStartInfo->seedToBeUsed = lsg.initializedStartInfo->seedPostInit = 0;
  547. * si = * lsg.initializedStartInfo;
  548. }
  549. sendLobbyPack(lsg);
  550. c->enterLobbyConnectionMode();
  551. c->disableStackSendingByID();
  552. }
  553. void CServerHandler::startMapAfterConnection(std::shared_ptr<CMapInfo> to)
  554. {
  555. mapToStart = to;
  556. }
  557. void CServerHandler::startGameplay(VCMI_LIB_WRAP_NAMESPACE(CGameState) * gameState)
  558. {
  559. setThreadName("startGameplay");
  560. if(CMM)
  561. CMM->disable();
  562. client = new CClient();
  563. highScoreCalc = nullptr;
  564. switch(si->mode)
  565. {
  566. case StartInfo::NEW_GAME:
  567. client->newGame(gameState);
  568. break;
  569. case StartInfo::CAMPAIGN:
  570. client->newGame(gameState);
  571. break;
  572. case StartInfo::LOAD_GAME:
  573. client->loadGame(gameState);
  574. break;
  575. default:
  576. throw std::runtime_error("Invalid mode");
  577. }
  578. // After everything initialized we can accept CPackToClient netpacks
  579. c->enterGameplayConnectionMode(client->gameState());
  580. state = EClientState::GAMEPLAY;
  581. //store settings to continue game
  582. if(!isServerLocal() && isGuest())
  583. {
  584. Settings saveSession = settings.write["server"]["reconnect"];
  585. saveSession->Bool() = true;
  586. Settings saveUuid = settings.write["server"]["uuid"];
  587. saveUuid->String() = uuid;
  588. Settings saveNames = settings.write["server"]["names"];
  589. saveNames->Vector().clear();
  590. for(auto & name : myNames)
  591. {
  592. JsonNode jsonName;
  593. jsonName.String() = name;
  594. saveNames->Vector().push_back(jsonName);
  595. }
  596. }
  597. }
  598. void CServerHandler::endGameplay(bool closeConnection, bool restart)
  599. {
  600. client->endGame();
  601. vstd::clear_pointer(client);
  602. if(closeConnection)
  603. {
  604. // Game is ending
  605. // Tell the network thread to reach a stable state
  606. CSH->sendClientDisconnecting();
  607. logNetwork->info("Closed connection.");
  608. }
  609. if(!restart)
  610. {
  611. if(CMM)
  612. {
  613. GH.curInt = CMM.get();
  614. CMM->enable();
  615. }
  616. else
  617. {
  618. GH.curInt = CMainMenu::create().get();
  619. }
  620. }
  621. c->enterLobbyConnectionMode();
  622. c->disableStackSendingByID();
  623. //reset settings
  624. Settings saveSession = settings.write["server"]["reconnect"];
  625. saveSession->Bool() = false;
  626. }
  627. void CServerHandler::startCampaignScenario(HighScoreParameter param, std::shared_ptr<CampaignState> cs)
  628. {
  629. std::shared_ptr<CampaignState> ourCampaign = cs;
  630. if (!cs)
  631. ourCampaign = si->campState;
  632. if(highScoreCalc == nullptr)
  633. {
  634. highScoreCalc = std::make_shared<HighScoreCalculation>();
  635. highScoreCalc->isCampaign = true;
  636. highScoreCalc->parameters.clear();
  637. }
  638. param.campaignName = cs->getNameTranslated();
  639. highScoreCalc->parameters.push_back(param);
  640. GH.dispatchMainThread([ourCampaign, this]()
  641. {
  642. CSH->campaignServerRestartLock.set(true);
  643. CSH->endGameplay();
  644. auto & epilogue = ourCampaign->scenario(*ourCampaign->lastScenario()).epilog;
  645. auto finisher = [=]()
  646. {
  647. if(ourCampaign->campaignSet != "")
  648. {
  649. Settings entry = persistentStorage.write["completedCampaigns"][ourCampaign->getFilename()];
  650. entry->Bool() = true;
  651. }
  652. GH.windows().pushWindow(CMM);
  653. GH.windows().pushWindow(CMM->menu);
  654. if(!ourCampaign->isCampaignFinished())
  655. CMM->openCampaignLobby(ourCampaign);
  656. else
  657. {
  658. CMM->openCampaignScreen(ourCampaign->campaignSet);
  659. GH.windows().createAndPushWindow<CHighScoreInputScreen>(true, *highScoreCalc);
  660. }
  661. };
  662. if(epilogue.hasPrologEpilog)
  663. {
  664. GH.windows().createAndPushWindow<CPrologEpilogVideo>(epilogue, finisher);
  665. }
  666. else
  667. {
  668. CSH->campaignServerRestartLock.waitUntil(false);
  669. finisher();
  670. }
  671. });
  672. }
  673. void CServerHandler::showServerError(const std::string & txt) const
  674. {
  675. if(auto w = GH.windows().topWindow<CLoadingScreen>())
  676. GH.windows().popWindow(w);
  677. CInfoWindow::showInfoDialog(txt, {});
  678. }
  679. int CServerHandler::howManyPlayerInterfaces()
  680. {
  681. int playerInts = 0;
  682. for(auto pint : client->playerint)
  683. {
  684. if(dynamic_cast<CPlayerInterface *>(pint.second.get()))
  685. playerInts++;
  686. }
  687. return playerInts;
  688. }
  689. ui8 CServerHandler::getLoadMode()
  690. {
  691. if(loadMode != ELoadMode::TUTORIAL && state == EClientState::GAMEPLAY)
  692. {
  693. if(si->campState)
  694. return ELoadMode::CAMPAIGN;
  695. for(auto pn : playerNames)
  696. {
  697. if(pn.second.connection != c->connectionID)
  698. return ELoadMode::MULTI;
  699. }
  700. if(howManyPlayerInterfaces() > 1) //this condition will work for hotseat mode OR multiplayer with allowed more than 1 color per player to control
  701. return ELoadMode::MULTI;
  702. return ELoadMode::SINGLE;
  703. }
  704. return loadMode;
  705. }
  706. void CServerHandler::restoreLastSession()
  707. {
  708. auto loadSession = [this]()
  709. {
  710. uuid = settings["server"]["uuid"].String();
  711. for(auto & name : settings["server"]["names"].Vector())
  712. myNames.push_back(name.String());
  713. resetStateForLobby(StartInfo::LOAD_GAME, &myNames);
  714. screenType = ESelectionScreen::loadGame;
  715. justConnectToServer(settings["server"]["server"].String(), settings["server"]["port"].Integer());
  716. };
  717. auto cleanUpSession = []()
  718. {
  719. //reset settings
  720. Settings saveSession = settings.write["server"]["reconnect"];
  721. saveSession->Bool() = false;
  722. };
  723. CInfoWindow::showYesNoDialog(VLC->generaltexth->translate("vcmi.server.confirmReconnect"), {}, loadSession, cleanUpSession);
  724. }
  725. void CServerHandler::debugStartTest(std::string filename, bool save)
  726. {
  727. logGlobal->info("Starting debug test with file: %s", filename);
  728. auto mapInfo = std::make_shared<CMapInfo>();
  729. if(save)
  730. {
  731. resetStateForLobby(StartInfo::LOAD_GAME);
  732. mapInfo->saveInit(ResourcePath(filename, EResType::SAVEGAME));
  733. screenType = ESelectionScreen::loadGame;
  734. }
  735. else
  736. {
  737. resetStateForLobby(StartInfo::NEW_GAME);
  738. mapInfo->mapInit(filename);
  739. screenType = ESelectionScreen::newGame;
  740. }
  741. if(settings["session"]["donotstartserver"].Bool())
  742. justConnectToServer(localhostAddress, 3030);
  743. else
  744. startLocalServerAndConnect();
  745. boost::this_thread::sleep_for(boost::chrono::milliseconds(100));
  746. while(!settings["session"]["headless"].Bool() && !GH.windows().topWindow<CLobbyScreen>())
  747. boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
  748. while(!mi || mapInfo->fileURI != CSH->mi->fileURI)
  749. {
  750. setMapInfo(mapInfo);
  751. boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
  752. }
  753. // "Click" on color to remove us from it
  754. setPlayer(myFirstColor());
  755. while(myFirstColor() != PlayerColor::CANNOT_DETERMINE)
  756. boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
  757. while(true)
  758. {
  759. try
  760. {
  761. sendStartGame();
  762. break;
  763. }
  764. catch(...)
  765. {
  766. }
  767. boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
  768. }
  769. }
  770. class ServerHandlerCPackVisitor : public VCMI_LIB_WRAP_NAMESPACE(ICPackVisitor)
  771. {
  772. private:
  773. CServerHandler & handler;
  774. public:
  775. ServerHandlerCPackVisitor(CServerHandler & handler)
  776. :handler(handler)
  777. {
  778. }
  779. virtual bool callTyped() override { return false; }
  780. virtual void visitForLobby(CPackForLobby & lobbyPack) override
  781. {
  782. handler.visitForLobby(lobbyPack);
  783. }
  784. virtual void visitForClient(CPackForClient & clientPack) override
  785. {
  786. handler.visitForClient(clientPack);
  787. }
  788. };
  789. void CServerHandler::threadHandleConnection()
  790. {
  791. setThreadName("handleConnection");
  792. c->enterLobbyConnectionMode();
  793. try
  794. {
  795. sendClientConnecting();
  796. while(c->connected)
  797. {
  798. while(state == EClientState::STARTING)
  799. boost::this_thread::sleep_for(boost::chrono::milliseconds(10));
  800. CPack * pack = c->retrievePack();
  801. if(state == EClientState::DISCONNECTING)
  802. {
  803. // FIXME: server shouldn't really send netpacks after it's tells client to disconnect
  804. // Though currently they'll be delivered and might cause crash.
  805. vstd::clear_pointer(pack);
  806. }
  807. else
  808. {
  809. ServerHandlerCPackVisitor visitor(*this);
  810. pack->visit(visitor);
  811. }
  812. }
  813. }
  814. //catch only asio exceptions
  815. catch(const boost::system::system_error & e)
  816. {
  817. if(state == EClientState::DISCONNECTING)
  818. {
  819. logNetwork->info("Successfully closed connection to server, ending listening thread!");
  820. }
  821. else
  822. {
  823. if (e.code() == boost::asio::error::eof)
  824. logNetwork->error("Lost connection to server, ending listening thread! Connection has been closed");
  825. else
  826. logNetwork->error("Lost connection to server, ending listening thread! Reason: %s", e.what());
  827. if(client)
  828. {
  829. state = EClientState::DISCONNECTING;
  830. GH.dispatchMainThread([]()
  831. {
  832. CSH->endGameplay();
  833. GH.defActionsDef = 63;
  834. CMM->menu->switchToTab("main");
  835. });
  836. }
  837. else
  838. {
  839. auto lcd = new LobbyClientDisconnected();
  840. lcd->clientId = c->connectionID;
  841. boost::unique_lock<boost::recursive_mutex> lock(*mx);
  842. packsForLobbyScreen.push_back(lcd);
  843. }
  844. }
  845. }
  846. }
  847. void CServerHandler::visitForLobby(CPackForLobby & lobbyPack)
  848. {
  849. if(applier->getApplier(typeList.getTypeID(&lobbyPack))->applyOnLobbyHandler(this, &lobbyPack))
  850. {
  851. if(!settings["session"]["headless"].Bool())
  852. {
  853. boost::unique_lock<boost::recursive_mutex> lock(*mx);
  854. packsForLobbyScreen.push_back(&lobbyPack);
  855. }
  856. }
  857. }
  858. void CServerHandler::visitForClient(CPackForClient & clientPack)
  859. {
  860. client->handlePack(&clientPack);
  861. }
  862. void CServerHandler::threadRunServer()
  863. {
  864. #if !defined(VCMI_MOBILE)
  865. setThreadName("runServer");
  866. const std::string logName = (VCMIDirs::get().userLogsPath() / "server_log.txt").string();
  867. std::string comm = VCMIDirs::get().serverPath().string()
  868. + " --port=" + std::to_string(getHostPortFromSettings())
  869. + " --run-by-client"
  870. + " --uuid=" + uuid;
  871. if(settings["session"]["lobby"].Bool() && settings["session"]["host"].Bool())
  872. {
  873. comm += " --lobby=" + settings["session"]["address"].String();
  874. comm += " --connections=" + settings["session"]["hostConnections"].String();
  875. comm += " --lobby-port=" + std::to_string(settings["session"]["port"].Integer());
  876. comm += " --lobby-uuid=" + settings["session"]["hostUuid"].String();
  877. }
  878. comm += " > \"" + logName + '\"';
  879. logGlobal->info("Server command line: %s", comm);
  880. #ifdef VCMI_WINDOWS
  881. int result = -1;
  882. const auto bufSize = ::MultiByteToWideChar(CP_UTF8, 0, comm.c_str(), comm.size(), nullptr, 0);
  883. if(bufSize > 0)
  884. {
  885. std::wstring wComm(bufSize, {});
  886. const auto convertResult = ::MultiByteToWideChar(CP_UTF8, 0, comm.c_str(), comm.size(), &wComm[0], bufSize);
  887. if(convertResult > 0)
  888. result = ::_wsystem(wComm.c_str());
  889. else
  890. logNetwork->error("Error " + std::to_string(GetLastError()) + ": failed to convert server launch command to wide string: " + comm);
  891. }
  892. else
  893. logNetwork->error("Error " + std::to_string(GetLastError()) + ": failed to obtain buffer length to convert server launch command to wide string : " + comm);
  894. #else
  895. int result = std::system(comm.c_str());
  896. #endif
  897. if (result == 0)
  898. {
  899. logNetwork->info("Server closed correctly");
  900. }
  901. else
  902. {
  903. logNetwork->error("Error: server failed to close correctly or crashed!");
  904. logNetwork->error("Check %s for more info", logName);
  905. }
  906. onServerFinished();
  907. #endif
  908. }
  909. void CServerHandler::onServerFinished()
  910. {
  911. threadRunLocalServer.reset();
  912. CSH->campaignServerRestartLock.setn(false);
  913. }
  914. void CServerHandler::sendLobbyPack(const CPackForLobby & pack) const
  915. {
  916. if(state != EClientState::STARTING)
  917. c->sendPack(&pack);
  918. }