#pragma once #include "StarMaybe.hpp" #include "StarHostAddress.hpp" #include "StarGameTimers.hpp" #include "StarCelestialParameters.hpp" #include "StarChatTypes.hpp" #include "StarWarping.hpp" #include "StarAiTypes.hpp" #include "StarSky.hpp" #include "StarUniverseConnection.hpp" #include "StarLuaComponents.hpp" namespace Star { STAR_CLASS(WorldTemplate); STAR_CLASS(ClientContext); STAR_CLASS(Sky); STAR_STRUCT(Packet); STAR_CLASS(WorldClient); STAR_CLASS(SystemWorldClient); STAR_CLASS(Player); STAR_CLASS(PlayerStorage); STAR_CLASS(Statistics); STAR_CLASS(Clock); STAR_CLASS(CelestialLog); STAR_CLASS(CelestialSlaveDatabase); STAR_CLASS(CelestialDatabase); STAR_CLASS(JsonRpcInterface); STAR_CLASS(TeamClient); STAR_CLASS(QuestManager); STAR_CLASS(UniverseClient); STAR_CLASS(LuaRoot); class UniverseClient { public: UniverseClient(PlayerStoragePtr playerStorage, StatisticsPtr statistics); ~UniverseClient(); void setMainPlayer(PlayerPtr player); PlayerPtr mainPlayer() const; // Returns error if connection failed Maybe connect(UniverseConnection connection, bool allowAssetsMismatch, String const& account = "", String const& password = ""); bool isConnected() const; void disconnect(); Maybe disconnectReason() const; // WorldClient may be null if the UniverseClient is not connected. WorldClientPtr worldClient() const; SystemWorldClientPtr systemWorldClient() const; // Updates internal world client in addition to handling universe level // commands. void update(float dt); Maybe beamUpRule() const; bool canBeamUp() const; bool canBeamDown(bool deploy = false) const; bool canBeamToTeamShip() const; bool canTeleport() const; void warpPlayer(WarpAction const& warpAction, bool animate = true, String const& animationType = "default", bool deploy = false); void flyShip(Vec3I const& system, SystemLocation const& destination); CelestialDatabasePtr celestialDatabase() const; CelestialCoordinate shipCoordinate() const; bool playerOnOwnShip() const; bool playerIsOriginal() const; WorldId playerWorld() const; bool isAdmin() const; // If the player is in a multi person team returns the team uuid, or if the // player is by themselves returns the player uuid. Uuid teamUuid() const; WorldTemplateConstPtr currentTemplate() const; SkyConstPtr currentSky() const; bool flying() const; void sendChat(String const& text, ChatSendMode sendMode, Maybe speak = {}); List pullChatMessages(); uint16_t players(); uint16_t maxPlayers(); void setLuaCallbacks(String const& groupName, LuaCallbacks const& callbacks); void startLua(); void stopLua(); bool reloadPlayer(Json const& data, Uuid const& uuid, bool resetInterfaces = false, bool showIndicator = false); bool switchPlayer(Uuid const& uuid); bool switchPlayer(size_t index); bool switchPlayer(String const& name); typedef std::function Callback; typedef std::function ReloadPlayerCallback; ReloadPlayerCallback& playerReloadPreCallback(); ReloadPlayerCallback& playerReloadCallback(); ClockConstPtr universeClock() const; CelestialLogConstPtr celestialLog() const; JsonRpcInterfacePtr rpcInterface() const; ClientContextPtr clientContext() const; TeamClientPtr teamClient() const; QuestManagerPtr questManager() const; PlayerStoragePtr playerStorage() const; StatisticsPtr statistics() const; bool paused() const; private: struct ServerInfo { uint16_t players; uint16_t maxPlayers; }; void setPause(bool pause); void handlePackets(List const& packets); void reset(); PlayerStoragePtr m_playerStorage; StatisticsPtr m_statistics; PlayerPtr m_mainPlayer; bool m_legacyServer; bool m_pause; ClockPtr m_universeClock; WorldClientPtr m_worldClient; SystemWorldClientPtr m_systemWorldClient; Maybe m_connection; Maybe m_serverInfo; StringMap m_luaCallbacks; CelestialSlaveDatabasePtr m_celestialDatabase; ClientContextPtr m_clientContext; TeamClientPtr m_teamClient; QuestManagerPtr m_questManager; WarpAction m_pendingWarp; GameTimer m_warpDelay; Maybe m_warpCinemaCancelTimer; Maybe m_warping; bool m_respawning; GameTimer m_respawnTimer; int64_t m_storageTriggerDeadline; List m_pendingMessages; Maybe m_disconnectReason; LuaRootPtr m_luaRoot; typedef LuaUpdatableComponent ScriptComponent; typedef shared_ptr ScriptComponentPtr; StringMap m_scriptContexts; ReloadPlayerCallback m_playerReloadPreCallback; ReloadPlayerCallback m_playerReloadCallback; }; }