1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-26 08:41:13 +02:00
vcmi/server/GlobalLobbyProcessor.h

43 lines
1.4 KiB
C++
Raw Normal View History

/*
* GlobalLobbyProcessor.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
#include "../lib/network/NetworkInterface.h"
VCMI_LIB_NAMESPACE_BEGIN
class JsonNode;
VCMI_LIB_NAMESPACE_END
class CVCMIServer;
class GlobalLobbyProcessor : public INetworkClientListener
{
CVCMIServer & owner;
NetworkConnectionPtr controlConnection;
std::map<std::string, NetworkConnectionPtr> proxyConnections;
2024-02-02 01:27:19 +02:00
void onDisconnected(const std::shared_ptr<INetworkConnection> & connection, const std::string & errorMessage) override;
void onPacketReceived(const std::shared_ptr<INetworkConnection> & connection, const std::vector<std::byte> & message) override;
void onConnectionFailed(const std::string & errorMessage) override;
void onConnectionEstablished(const std::shared_ptr<INetworkConnection> &) override;
2024-02-02 00:12:30 +02:00
void receiveOperationFailed(const JsonNode & json);
void receiveServerLoginSuccess(const JsonNode & json);
2024-01-12 16:55:36 +02:00
void receiveAccountJoinsRoom(const JsonNode & json);
void establishNewConnection();
void sendMessage(const NetworkConnectionPtr & targetConnection, const JsonNode & payload);
public:
void sendChangeRoomDescription(const std::string & description);
2024-02-03 22:59:56 +02:00
explicit GlobalLobbyProcessor(CVCMIServer & owner);
};