/***************************************************************************** * Copyright (c) 2014-2020 OpenRCT2 developers * * For a complete list of all authors, please refer to contributors.md * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2 * * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ #pragma once #ifndef DISABLE_NETWORK # include "../common.h" # include "NetworkKey.h" # include "NetworkPacket.h" # include "NetworkTypes.h" # include "Socket.h" # include # include # include class NetworkPlayer; struct ObjectRepositoryItem; class NetworkConnection final { public: std::unique_ptr Socket = nullptr; NetworkPacket InboundPacket; NETWORK_AUTH AuthStatus = NETWORK_AUTH_NONE; NetworkStats_t Stats = {}; NetworkPlayer* Player = nullptr; uint32_t PingTime = 0; NetworkKey Key; std::vector Challenge; std::vector RequestedObjects; bool IsDisconnected = false; NetworkConnection(); ~NetworkConnection(); NetworkReadPacket ReadPacket(); void QueuePacket(NetworkPacket&& packet, bool front = false); void QueuePacket(const NetworkPacket& packet, bool front = false) { auto copy = packet; return QueuePacket(std::move(copy), front); } void SendQueuedPackets(); void ResetLastPacketTime(); bool ReceivedPacketRecently(); const utf8* GetLastDisconnectReason() const; void SetLastDisconnectReason(const utf8* src); void SetLastDisconnectReason(const rct_string_id string_id, void* args = nullptr); private: std::deque _outboundPackets; uint32_t _lastPacketTime = 0; utf8* _lastDisconnectReason = nullptr; void RecordPacketStats(const NetworkPacket& packet, bool sending); bool SendPacket(NetworkPacket& packet); }; #endif // DISABLE_NETWORK