2024-01-12 13:30:53 +02:00
|
|
|
/*
|
|
|
|
* GlobalLobbyProcessor.cpp, 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include "StdInc.h"
|
|
|
|
#include "GlobalLobbyProcessor.h"
|
|
|
|
|
|
|
|
#include "CVCMIServer.h"
|
|
|
|
#include "../lib/CConfigHandler.h"
|
|
|
|
|
|
|
|
GlobalLobbyProcessor::GlobalLobbyProcessor(CVCMIServer & owner)
|
|
|
|
: owner(owner)
|
2024-01-12 17:21:59 +02:00
|
|
|
{
|
|
|
|
logGlobal->info("Connecting to lobby server");
|
|
|
|
establishNewConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyProcessor::establishNewConnection()
|
2024-01-12 13:30:53 +02:00
|
|
|
{
|
|
|
|
std::string hostname = settings["lobby"]["hostname"].String();
|
|
|
|
int16_t port = settings["lobby"]["port"].Integer();
|
2024-01-12 16:55:36 +02:00
|
|
|
owner.networkHandler->connectToRemote(*this, hostname, port);
|
2024-01-12 13:30:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyProcessor::onDisconnected(const std::shared_ptr<INetworkConnection> & connection)
|
|
|
|
{
|
|
|
|
throw std::runtime_error("Lost connection to a lobby server!");
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyProcessor::onPacketReceived(const std::shared_ptr<INetworkConnection> & connection, const std::vector<uint8_t> & message)
|
|
|
|
{
|
2024-01-29 22:05:11 +02:00
|
|
|
if (connection == controlConnection)
|
|
|
|
{
|
|
|
|
JsonNode json(message.data(), message.size());
|
2024-01-12 13:30:53 +02:00
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
if(json["type"].String() == "loginFailed")
|
|
|
|
return receiveLoginFailed(json);
|
2024-01-12 13:30:53 +02:00
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
if(json["type"].String() == "loginSuccess")
|
|
|
|
return receiveLoginSuccess(json);
|
2024-01-12 13:30:53 +02:00
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
if(json["type"].String() == "accountJoinsRoom")
|
|
|
|
return receiveAccountJoinsRoom(json);
|
2024-01-12 16:55:36 +02:00
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
throw std::runtime_error("Received unexpected message from lobby server: " + json["type"].String());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// received game message via proxy connection
|
|
|
|
owner.onPacketReceived(connection, message);
|
|
|
|
}
|
2024-01-12 13:30:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyProcessor::receiveLoginFailed(const JsonNode & json)
|
|
|
|
{
|
2024-01-29 22:05:11 +02:00
|
|
|
logGlobal->info("Lobby: Failed to login into a lobby server!");
|
|
|
|
|
2024-01-12 13:30:53 +02:00
|
|
|
throw std::runtime_error("Failed to login into a lobby server!");
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyProcessor::receiveLoginSuccess(const JsonNode & json)
|
|
|
|
{
|
|
|
|
// no-op, wait just for any new commands from lobby
|
2024-01-29 22:05:11 +02:00
|
|
|
logGlobal->info("Lobby: Succesfully connected to lobby server");
|
2024-01-21 16:48:36 +02:00
|
|
|
owner.startAcceptingIncomingConnections();
|
2024-01-12 13:30:53 +02:00
|
|
|
}
|
|
|
|
|
2024-01-12 16:55:36 +02:00
|
|
|
void GlobalLobbyProcessor::receiveAccountJoinsRoom(const JsonNode & json)
|
|
|
|
{
|
2024-01-12 17:21:59 +02:00
|
|
|
std::string accountID = json["accountID"].String();
|
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
logGlobal->info("Lobby: Account %s will join our room!", accountID);
|
2024-01-12 17:21:59 +02:00
|
|
|
assert(proxyConnections.count(accountID) == 0);
|
|
|
|
|
|
|
|
proxyConnections[accountID] = nullptr;
|
|
|
|
establishNewConnection();
|
2024-01-12 16:55:36 +02:00
|
|
|
}
|
|
|
|
|
2024-01-12 13:30:53 +02:00
|
|
|
void GlobalLobbyProcessor::onConnectionFailed(const std::string & errorMessage)
|
|
|
|
{
|
|
|
|
throw std::runtime_error("Failed to connect to a lobby server!");
|
|
|
|
}
|
|
|
|
|
2024-01-12 16:55:36 +02:00
|
|
|
void GlobalLobbyProcessor::onConnectionEstablished(const std::shared_ptr<INetworkConnection> & connection)
|
2024-01-12 13:30:53 +02:00
|
|
|
{
|
2024-01-12 17:21:59 +02:00
|
|
|
if (controlConnection == nullptr)
|
|
|
|
{
|
|
|
|
controlConnection = connection;
|
|
|
|
logGlobal->info("Connection to lobby server established");
|
|
|
|
|
|
|
|
JsonNode toSend;
|
|
|
|
toSend["type"].String() = "serverLogin";
|
2024-01-21 16:48:36 +02:00
|
|
|
toSend["gameRoomID"].String() = owner.uuid;
|
2024-01-12 17:21:59 +02:00
|
|
|
toSend["accountID"] = settings["lobby"]["accountID"];
|
|
|
|
toSend["accountCookie"] = settings["lobby"]["accountCookie"];
|
2024-01-29 22:05:11 +02:00
|
|
|
sendMessage(connection, toSend);
|
2024-01-12 17:21:59 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Proxy connection for a player
|
2024-01-29 22:05:11 +02:00
|
|
|
std::string guestAccountID;
|
2024-01-12 17:21:59 +02:00
|
|
|
for (auto const & proxies : proxyConnections)
|
|
|
|
if (proxies.second == nullptr)
|
2024-01-29 22:05:11 +02:00
|
|
|
guestAccountID = proxies.first;
|
2024-01-12 17:21:59 +02:00
|
|
|
|
|
|
|
JsonNode toSend;
|
|
|
|
toSend["type"].String() = "serverProxyLogin";
|
2024-01-21 16:48:36 +02:00
|
|
|
toSend["gameRoomID"].String() = owner.uuid;
|
2024-01-29 22:05:11 +02:00
|
|
|
toSend["guestAccountID"].String() = guestAccountID;
|
2024-01-12 17:21:59 +02:00
|
|
|
toSend["accountCookie"] = settings["lobby"]["accountCookie"];
|
2024-01-29 22:05:11 +02:00
|
|
|
sendMessage(connection, toSend);
|
2024-01-12 17:21:59 +02:00
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
proxyConnections[guestAccountID] = connection;
|
2024-01-12 17:21:59 +02:00
|
|
|
owner.onNewConnection(connection);
|
|
|
|
}
|
2024-01-12 13:30:53 +02:00
|
|
|
}
|
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
void GlobalLobbyProcessor::sendMessage(const NetworkConnectionPtr & target, const JsonNode & data)
|
2024-01-12 13:30:53 +02:00
|
|
|
{
|
|
|
|
std::string payloadString = data.toJson(true);
|
|
|
|
|
|
|
|
// FIXME: find better approach
|
|
|
|
uint8_t * payloadBegin = reinterpret_cast<uint8_t *>(payloadString.data());
|
|
|
|
uint8_t * payloadEnd = payloadBegin + payloadString.size();
|
|
|
|
|
|
|
|
std::vector<uint8_t> payloadBuffer(payloadBegin, payloadEnd);
|
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
target->sendPacket(payloadBuffer);
|
2024-01-12 13:30:53 +02:00
|
|
|
}
|