CServerHandler.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * CServerHandler.h, 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. #pragma once
  11. #include "../lib/CStopWatch.h"
  12. #include "../lib/StartInfo.h"
  13. #include "../lib/CondSh.h"
  14. VCMI_LIB_NAMESPACE_BEGIN
  15. class CConnection;
  16. class PlayerColor;
  17. struct StartInfo;
  18. struct TurnTimerInfo;
  19. class CMapInfo;
  20. class CGameState;
  21. struct ClientPlayer;
  22. struct CPack;
  23. struct CPackForLobby;
  24. struct CPackForClient;
  25. template<typename T> class CApplier;
  26. VCMI_LIB_NAMESPACE_END
  27. class CClient;
  28. class CBaseForLobbyApply;
  29. // TODO: Add mutex so we can't set CONNECTION_CANCELLED if client already connected, but thread not setup yet
  30. enum class EClientState : ui8
  31. {
  32. NONE = 0,
  33. CONNECTING, // Trying to connect to server
  34. CONNECTION_CANCELLED, // Connection cancelled by player, stop attempts to connect
  35. LOBBY, // Client is connected to lobby
  36. LOBBY_CAMPAIGN, // Client is on scenario bonus selection screen
  37. STARTING, // Gameplay interfaces being created, we pause netpacks retrieving
  38. GAMEPLAY, // In-game, used by some UI
  39. DISCONNECTING // We disconnecting, drop all netpacks
  40. };
  41. class IServerAPI
  42. {
  43. protected:
  44. virtual void sendLobbyPack(const CPackForLobby & pack) const = 0;
  45. public:
  46. virtual ~IServerAPI() {}
  47. virtual void sendClientConnecting() const = 0;
  48. virtual void sendClientDisconnecting() = 0;
  49. virtual void setCampaignState(std::shared_ptr<CampaignState> newCampaign) = 0;
  50. virtual void setCampaignMap(CampaignScenarioID mapId) const = 0;
  51. virtual void setCampaignBonus(int bonusId) const = 0;
  52. virtual void setMapInfo(std::shared_ptr<CMapInfo> to, std::shared_ptr<CMapGenOptions> mapGenOpts = {}) const = 0;
  53. virtual void setPlayer(PlayerColor color) const = 0;
  54. virtual void setPlayerOption(ui8 what, int32_t value, PlayerColor player) const = 0;
  55. virtual void setDifficulty(int to) const = 0;
  56. virtual void setTurnTimerInfo(const TurnTimerInfo &) const = 0;
  57. virtual void sendMessage(const std::string & txt) const = 0;
  58. virtual void sendGuiAction(ui8 action) const = 0; // TODO: possibly get rid of it?
  59. virtual void sendStartGame(bool allowOnlyAI = false) const = 0;
  60. virtual void sendRestartGame() const = 0;
  61. };
  62. /// structure to handle running server and connecting to it
  63. class CServerHandler : public IServerAPI, public LobbyInfo
  64. {
  65. friend class ApplyOnLobbyHandlerNetPackVisitor;
  66. std::shared_ptr<CApplier<CBaseForLobbyApply>> applier;
  67. std::shared_ptr<boost::recursive_mutex> mx;
  68. std::list<CPackForLobby *> packsForLobbyScreen; //protected by mx
  69. std::shared_ptr<CMapInfo> mapToStart;
  70. std::vector<std::string> myNames;
  71. void threadHandleConnection();
  72. void threadRunServer();
  73. void onServerFinished();
  74. void sendLobbyPack(const CPackForLobby & pack) const override;
  75. public:
  76. std::atomic<EClientState> state;
  77. ////////////////////
  78. // FIXME: Bunch of crutches to glue it all together
  79. // For starting non-custom campaign and continue to next mission
  80. std::shared_ptr<CampaignState> campaignStateToSend;
  81. ui8 screenType; // To create lobby UI only after server is setup
  82. ui8 loadMode; // For saves filtering in SelectionTab
  83. ////////////////////
  84. std::unique_ptr<CStopWatch> th;
  85. std::shared_ptr<boost::thread> threadRunLocalServer;
  86. std::shared_ptr<CConnection> c;
  87. CClient * client;
  88. CondSh<bool> campaignServerRestartLock;
  89. static const std::string localhostAddress;
  90. CServerHandler();
  91. std::string getHostAddress() const;
  92. ui16 getHostPort() const;
  93. void resetStateForLobby(const StartInfo::EMode mode, const std::vector<std::string> * names = nullptr);
  94. void startLocalServerAndConnect();
  95. void justConnectToServer(const std::string & addr, const ui16 port);
  96. void applyPacksOnLobbyScreen();
  97. void stopServerConnection();
  98. // Helpers for lobby state access
  99. std::set<PlayerColor> getHumanColors();
  100. PlayerColor myFirstColor() const;
  101. bool isMyColor(PlayerColor color) const;
  102. ui8 myFirstId() const; // Used by chat only!
  103. bool isServerLocal() const;
  104. bool isHost() const;
  105. bool isGuest() const;
  106. static ui16 getDefaultPort();
  107. static std::string getDefaultPortStr();
  108. // Lobby server API for UI
  109. void sendClientConnecting() const override;
  110. void sendClientDisconnecting() override;
  111. void setCampaignState(std::shared_ptr<CampaignState> newCampaign) override;
  112. void setCampaignMap(CampaignScenarioID mapId) const override;
  113. void setCampaignBonus(int bonusId) const override;
  114. void setMapInfo(std::shared_ptr<CMapInfo> to, std::shared_ptr<CMapGenOptions> mapGenOpts = {}) const override;
  115. void setPlayer(PlayerColor color) const override;
  116. void setPlayerOption(ui8 what, int32_t value, PlayerColor player) const override;
  117. void setDifficulty(int to) const override;
  118. void setTurnTimerInfo(const TurnTimerInfo &) const override;
  119. void sendMessage(const std::string & txt) const override;
  120. void sendGuiAction(ui8 action) const override;
  121. void sendRestartGame() const override;
  122. void sendStartGame(bool allowOnlyAI = false) const override;
  123. void startMapAfterConnection(std::shared_ptr<CMapInfo> to);
  124. void startGameplay(VCMI_LIB_WRAP_NAMESPACE(CGameState) * gameState = nullptr);
  125. void endGameplay(bool closeConnection = true, bool restart = false);
  126. void startCampaignScenario(std::shared_ptr<CampaignState> cs = {});
  127. void showServerError(std::string txt) const;
  128. // TODO: LobbyState must be updated within game so we should always know how many player interfaces our client handle
  129. int howManyPlayerInterfaces();
  130. ui8 getLoadMode();
  131. void debugStartTest(std::string filename, bool save = false);
  132. void restoreLastSession();
  133. void visitForLobby(CPackForLobby & lobbyPack);
  134. void visitForClient(CPackForClient & clientPack);
  135. };
  136. extern CServerHandler * CSH;