2018-01-05 19:21:07 +02:00
|
|
|
/*
|
|
|
|
* CServerHandler.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 "CServerHandler.h"
|
|
|
|
#include "Client.h"
|
|
|
|
#include "CGameInfo.h"
|
2024-02-10 23:56:02 +02:00
|
|
|
#include "ServerRunner.h"
|
2024-03-18 19:52:53 +02:00
|
|
|
#include "GameChatHandler.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "CPlayerInterface.h"
|
|
|
|
#include "gui/CGuiHandler.h"
|
2023-05-16 14:10:26 +02:00
|
|
|
#include "gui/WindowHandler.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
|
2023-12-28 21:27:21 +02:00
|
|
|
#include "globalLobby/GlobalLobbyClient.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "lobby/CSelectionBase.h"
|
|
|
|
#include "lobby/CLobbyScreen.h"
|
2022-09-22 13:39:43 +02:00
|
|
|
#include "windows/InfoWindows.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
|
|
|
|
#include "mainmenu/CMainMenu.h"
|
2023-06-26 20:51:10 +02:00
|
|
|
#include "mainmenu/CPrologEpilogVideo.h"
|
2023-09-22 20:39:20 +02:00
|
|
|
#include "mainmenu/CHighScoreScreen.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
|
|
|
|
#include "../lib/CConfigHandler.h"
|
2024-07-20 14:55:17 +02:00
|
|
|
#include "../lib/texts/CGeneralTextHandler.h"
|
2024-05-18 13:04:10 +02:00
|
|
|
#include "ConditionalWait.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "../lib/CThreadHelper.h"
|
|
|
|
#include "../lib/StartInfo.h"
|
2023-08-25 18:20:26 +02:00
|
|
|
#include "../lib/TurnTimerInfo.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "../lib/VCMIDirs.h"
|
2023-06-25 21:28:24 +02:00
|
|
|
#include "../lib/campaign/CampaignState.h"
|
2024-04-07 13:19:57 +02:00
|
|
|
#include "../lib/CPlayerState.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "../lib/mapping/CMapInfo.h"
|
2024-04-07 13:19:57 +02:00
|
|
|
#include "../lib/mapObjects/CGTownInstance.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "../lib/mapObjects/MiscObjects.h"
|
2023-09-15 12:59:02 +02:00
|
|
|
#include "../lib/modding/ModIncompatibility.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "../lib/rmg/CMapGenOptions.h"
|
2023-11-18 16:34:18 +02:00
|
|
|
#include "../lib/serializer/Connection.h"
|
2023-03-15 21:34:29 +02:00
|
|
|
#include "../lib/filesystem/Filesystem.h"
|
2023-11-11 00:39:08 +02:00
|
|
|
#include "../lib/registerTypes/RegisterTypesLobbyPacks.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
#include "../lib/serializer/CMemorySerializer.h"
|
2023-11-27 19:57:48 +02:00
|
|
|
#include "../lib/UnlockGuard.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
|
|
|
|
#include <boost/uuid/uuid.hpp>
|
|
|
|
#include <boost/uuid/uuid_io.hpp>
|
|
|
|
#include <boost/uuid/uuid_generators.hpp>
|
2018-08-13 23:48:00 +02:00
|
|
|
#include "../lib/serializer/Cast.h"
|
2023-02-12 09:23:39 +02:00
|
|
|
#include "LobbyClientNetPackVisitors.h"
|
2018-01-05 19:21:07 +02:00
|
|
|
|
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
|
|
|
#include <vcmi/events/EventBus.h>
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
template<typename T> class CApplyOnLobby;
|
|
|
|
|
|
|
|
class CBaseForLobbyApply
|
|
|
|
{
|
|
|
|
public:
|
2023-12-25 22:26:59 +02:00
|
|
|
virtual bool applyOnLobbyHandler(CServerHandler * handler, CPackForLobby & pack) const = 0;
|
|
|
|
virtual void applyOnLobbyScreen(CLobbyScreen * lobby, CServerHandler * handler, CPackForLobby & pack) const = 0;
|
2018-01-05 19:21:07 +02:00
|
|
|
virtual ~CBaseForLobbyApply(){};
|
|
|
|
template<typename U> static CBaseForLobbyApply * getApplier(const U * t = nullptr)
|
|
|
|
{
|
|
|
|
return new CApplyOnLobby<U>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T> class CApplyOnLobby : public CBaseForLobbyApply
|
|
|
|
{
|
|
|
|
public:
|
2023-12-25 22:26:59 +02:00
|
|
|
bool applyOnLobbyHandler(CServerHandler * handler, CPackForLobby & pack) const override
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-01-20 00:26:25 +02:00
|
|
|
auto & ref = static_cast<T&>(pack);
|
2023-02-12 09:23:39 +02:00
|
|
|
ApplyOnLobbyHandlerNetPackVisitor visitor(*handler);
|
|
|
|
|
2024-01-20 00:26:25 +02:00
|
|
|
logNetwork->trace("\tImmediately apply on lobby: %s", typeid(ref).name());
|
|
|
|
ref.visit(visitor);
|
2023-02-12 09:23:39 +02:00
|
|
|
|
|
|
|
return visitor.getResult();
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-12-25 22:26:59 +02:00
|
|
|
void applyOnLobbyScreen(CLobbyScreen * lobby, CServerHandler * handler, CPackForLobby & pack) const override
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-01-20 00:26:25 +02:00
|
|
|
auto & ref = static_cast<T &>(pack);
|
2023-02-12 09:23:39 +02:00
|
|
|
ApplyOnLobbyScreenNetPackVisitor visitor(*handler, lobby);
|
|
|
|
|
2024-01-20 00:26:25 +02:00
|
|
|
logNetwork->trace("\tApply on lobby from queue: %s", typeid(ref).name());
|
|
|
|
ref.visit(visitor);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<> class CApplyOnLobby<CPack>: public CBaseForLobbyApply
|
|
|
|
{
|
|
|
|
public:
|
2023-12-25 22:26:59 +02:00
|
|
|
bool applyOnLobbyHandler(CServerHandler * handler, CPackForLobby & pack) const override
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
logGlobal->error("Cannot apply plain CPack!");
|
|
|
|
assert(0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-12-25 22:26:59 +02:00
|
|
|
void applyOnLobbyScreen(CLobbyScreen * lobby, CServerHandler * handler, CPackForLobby & pack) const override
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
logGlobal->error("Cannot apply plain CPack!");
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-12-25 21:23:27 +02:00
|
|
|
CServerHandler::~CServerHandler()
|
|
|
|
{
|
2024-02-12 16:36:13 +02:00
|
|
|
if (serverRunner)
|
|
|
|
serverRunner->shutdown();
|
2024-01-12 01:10:41 +02:00
|
|
|
networkHandler->stop();
|
2024-02-02 00:29:15 +02:00
|
|
|
try
|
|
|
|
{
|
2024-02-12 16:36:13 +02:00
|
|
|
if (serverRunner)
|
|
|
|
serverRunner->wait();
|
|
|
|
serverRunner.reset();
|
2024-05-14 14:32:22 +02:00
|
|
|
{
|
|
|
|
auto unlockInterface = vstd::makeUnlockGuard(GH.interfaceMutex);
|
|
|
|
threadNetwork.join();
|
|
|
|
}
|
2024-02-02 00:29:15 +02:00
|
|
|
}
|
|
|
|
catch (const std::runtime_error & e)
|
|
|
|
{
|
|
|
|
logGlobal->error("Failed to shut down network thread! Reason: %s", e.what());
|
2024-02-03 19:08:45 +02:00
|
|
|
assert(0);
|
2024-02-02 00:29:15 +02:00
|
|
|
}
|
2023-12-25 21:23:27 +02:00
|
|
|
}
|
2023-11-18 16:34:18 +02:00
|
|
|
|
2024-05-18 13:04:10 +02:00
|
|
|
void CServerHandler::endNetwork()
|
|
|
|
{
|
|
|
|
if (client)
|
|
|
|
client->endNetwork();
|
|
|
|
networkHandler->stop();
|
|
|
|
{
|
|
|
|
auto unlockInterface = vstd::makeUnlockGuard(GH.interfaceMutex);
|
|
|
|
threadNetwork.join();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
CServerHandler::CServerHandler()
|
2024-02-03 22:59:56 +02:00
|
|
|
: networkHandler(INetworkHandler::createHandler())
|
2024-01-12 16:55:36 +02:00
|
|
|
, lobbyClient(std::make_unique<GlobalLobbyClient>())
|
2024-03-18 19:52:53 +02:00
|
|
|
, gameChat(std::make_unique<GameChatHandler>())
|
2024-02-03 22:59:56 +02:00
|
|
|
, applier(std::make_unique<CApplier<CBaseForLobbyApply>>())
|
2024-02-03 19:08:45 +02:00
|
|
|
, threadNetwork(&CServerHandler::threadRunNetwork, this)
|
2024-01-26 17:40:31 +02:00
|
|
|
, state(EClientState::NONE)
|
2024-02-04 19:56:04 +02:00
|
|
|
, serverPort(0)
|
2023-11-18 16:34:18 +02:00
|
|
|
, campaignStateToSend(nullptr)
|
2024-01-26 17:40:31 +02:00
|
|
|
, screenType(ESelectionScreen::unknown)
|
2024-01-29 22:05:11 +02:00
|
|
|
, serverMode(EServerMode::NONE)
|
2024-01-26 17:40:31 +02:00
|
|
|
, loadMode(ELoadMode::NONE)
|
|
|
|
, client(nullptr)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2022-11-08 02:44:34 +02:00
|
|
|
uuid = boost::uuids::to_string(boost::uuids::random_generator()());
|
2018-01-05 19:21:07 +02:00
|
|
|
registerTypesLobbyPacks(*applier);
|
2023-12-25 21:23:27 +02:00
|
|
|
}
|
|
|
|
|
2024-04-07 20:22:33 +02:00
|
|
|
void CServerHandler::setHighScoreCalc(const std::shared_ptr<HighScoreCalculation> &newHighScoreCalc)
|
|
|
|
{
|
|
|
|
campaignScoreCalculator = newHighScoreCalc;
|
|
|
|
}
|
|
|
|
|
2023-12-25 21:23:27 +02:00
|
|
|
void CServerHandler::threadRunNetwork()
|
|
|
|
{
|
|
|
|
logGlobal->info("Starting network thread");
|
|
|
|
setThreadName("runNetwork");
|
2024-05-18 13:04:10 +02:00
|
|
|
try {
|
|
|
|
networkHandler->run();
|
|
|
|
}
|
2024-06-01 13:48:30 +02:00
|
|
|
catch (const TerminationRequestedException &)
|
2024-05-18 13:04:10 +02:00
|
|
|
{
|
|
|
|
logGlobal->info("Terminating network thread");
|
|
|
|
return;
|
|
|
|
}
|
2023-12-25 21:23:27 +02:00
|
|
|
logGlobal->info("Ending network thread");
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2024-02-12 18:57:20 +02:00
|
|
|
void CServerHandler::resetStateForLobby(EStartMode mode, ESelectionScreen screen, EServerMode newServerMode, const std::vector<std::string> & playerNames)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
hostClientId = -1;
|
2024-02-04 19:56:04 +02:00
|
|
|
setState(EClientState::NONE);
|
2024-01-29 22:05:11 +02:00
|
|
|
serverMode = newServerMode;
|
2023-08-11 18:04:14 +02:00
|
|
|
mapToStart = nullptr;
|
2022-12-07 23:36:20 +02:00
|
|
|
th = std::make_unique<CStopWatch>();
|
2024-02-11 16:26:27 +02:00
|
|
|
logicConnection.reset();
|
2018-04-30 17:09:48 +02:00
|
|
|
si = std::make_shared<StartInfo>();
|
2024-02-12 18:57:20 +02:00
|
|
|
localPlayerNames.clear();
|
2018-01-05 19:21:07 +02:00
|
|
|
si->difficulty = 1;
|
|
|
|
si->mode = mode;
|
2024-01-21 16:48:36 +02:00
|
|
|
screenType = screen;
|
2024-02-12 18:57:20 +02:00
|
|
|
localPlayerNames.clear();
|
|
|
|
if(!playerNames.empty()) //if have custom set of player names - use it
|
|
|
|
localPlayerNames = playerNames;
|
2018-01-05 19:21:07 +02:00
|
|
|
else
|
2024-02-12 18:57:20 +02:00
|
|
|
localPlayerNames.push_back(settings["general"]["playerName"].String());
|
2024-03-18 19:52:53 +02:00
|
|
|
|
|
|
|
gameChat->resetMatchState();
|
2024-03-20 18:40:37 +02:00
|
|
|
lobbyClient->resetMatchState();
|
2024-03-18 19:52:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
GameChatHandler & CServerHandler::getGameChat()
|
|
|
|
{
|
|
|
|
return *gameChat;
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-12-28 21:27:21 +02:00
|
|
|
GlobalLobbyClient & CServerHandler::getGlobalLobby()
|
|
|
|
{
|
|
|
|
return *lobbyClient;
|
|
|
|
}
|
|
|
|
|
2024-02-03 22:59:56 +02:00
|
|
|
INetworkHandler & CServerHandler::getNetworkHandler()
|
|
|
|
{
|
|
|
|
return *networkHandler;
|
|
|
|
}
|
|
|
|
|
2024-01-10 15:31:11 +02:00
|
|
|
void CServerHandler::startLocalServerAndConnect(bool connectToLobby)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-02-11 15:38:29 +02:00
|
|
|
logNetwork->trace("\tLocal server startup has been requested");
|
2024-02-10 23:56:02 +02:00
|
|
|
#ifdef VCMI_MOBILE
|
|
|
|
// mobile apps can't spawn separate processes - only thread mode is available
|
|
|
|
serverRunner.reset(new ServerThreadRunner());
|
2018-01-05 19:21:07 +02:00
|
|
|
#else
|
2024-02-10 23:56:02 +02:00
|
|
|
if (settings["server"]["useProcess"].Bool())
|
|
|
|
serverRunner.reset(new ServerProcessRunner());
|
|
|
|
else
|
|
|
|
serverRunner.reset(new ServerThreadRunner());
|
2018-01-05 19:21:07 +02:00
|
|
|
#endif
|
|
|
|
|
2024-03-01 11:57:48 +02:00
|
|
|
auto si = std::make_shared<StartInfo>();
|
|
|
|
|
|
|
|
auto lastDifficulty = settings["general"]["lastDifficulty"];
|
2024-03-04 22:23:17 +02:00
|
|
|
si->difficulty = lastDifficulty.Integer();
|
2024-03-01 11:57:48 +02:00
|
|
|
|
2024-02-11 15:38:29 +02:00
|
|
|
logNetwork->trace("\tStarting local server");
|
2024-07-11 23:39:36 +02:00
|
|
|
uint16_t srvport = serverRunner->start(getLocalPort(), connectToLobby, si);
|
2024-02-11 15:38:29 +02:00
|
|
|
logNetwork->trace("\tConnecting to local server");
|
2024-07-11 23:39:36 +02:00
|
|
|
connectToServer(getLocalHostname(), srvport);
|
2024-02-11 15:38:29 +02:00
|
|
|
logNetwork->trace("\tWaiting for connection");
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-12-26 19:27:47 +02:00
|
|
|
void CServerHandler::connectToServer(const std::string & addr, const ui16 port)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2023-12-26 19:27:47 +02:00
|
|
|
logNetwork->info("Establishing connection to %s:%d...", addr, port);
|
2024-02-04 19:56:04 +02:00
|
|
|
setState(EClientState::CONNECTING);
|
2023-12-26 19:27:47 +02:00
|
|
|
serverHostname = addr;
|
|
|
|
serverPort = port;
|
2022-10-01 16:41:12 +02:00
|
|
|
|
2023-12-26 19:27:47 +02:00
|
|
|
if (!isServerLocal())
|
2022-10-30 17:59:43 +02:00
|
|
|
{
|
2024-01-20 00:26:25 +02:00
|
|
|
Settings remoteAddress = settings.write["server"]["remoteHostname"];
|
|
|
|
remoteAddress->String() = addr;
|
2023-12-26 19:27:47 +02:00
|
|
|
|
2024-01-20 00:26:25 +02:00
|
|
|
Settings remotePort = settings.write["server"]["remotePort"];
|
|
|
|
remotePort->Integer() = port;
|
2022-10-30 17:59:43 +02:00
|
|
|
}
|
2023-11-18 16:34:18 +02:00
|
|
|
|
2024-01-12 16:55:36 +02:00
|
|
|
networkHandler->connectToRemote(*this, addr, port);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-11-18 16:34:18 +02:00
|
|
|
void CServerHandler::onConnectionFailed(const std::string & errorMessage)
|
2023-12-26 18:30:57 +02:00
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
assert(getState() == EClientState::CONNECTING);
|
2024-02-03 22:24:32 +02:00
|
|
|
boost::mutex::scoped_lock interfaceLock(GH.interfaceMutex);
|
|
|
|
|
2023-12-26 18:30:57 +02:00
|
|
|
if (isServerLocal())
|
|
|
|
{
|
|
|
|
// retry - local server might be still starting up
|
2023-12-26 19:27:47 +02:00
|
|
|
logNetwork->debug("\nCannot establish connection. %s. Retrying...", errorMessage);
|
2024-01-12 01:10:41 +02:00
|
|
|
networkHandler->createTimer(*this, std::chrono::milliseconds(100));
|
2023-12-26 18:30:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// remote server refused connection - show error message
|
2024-02-04 19:56:04 +02:00
|
|
|
setState(EClientState::NONE);
|
2023-12-26 18:30:57 +02:00
|
|
|
CInfoWindow::showInfoDialog(CGI->generaltexth->translate("vcmi.mainMenu.serverConnectionFailed"), {});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::onTimer()
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-02-03 22:24:32 +02:00
|
|
|
boost::mutex::scoped_lock interfaceLock(GH.interfaceMutex);
|
|
|
|
|
2024-02-04 19:56:04 +02:00
|
|
|
if(getState() == EClientState::CONNECTION_CANCELLED)
|
2023-11-18 16:34:18 +02:00
|
|
|
{
|
|
|
|
logNetwork->info("Connection aborted by player!");
|
2024-02-11 15:38:29 +02:00
|
|
|
serverRunner->wait();
|
|
|
|
serverRunner.reset();
|
|
|
|
if (GH.windows().topWindow<CSimpleJoinScreen>() != nullptr)
|
|
|
|
GH.windows().popWindows(1);
|
2018-01-05 19:21:07 +02:00
|
|
|
return;
|
2023-11-18 16:34:18 +02:00
|
|
|
}
|
|
|
|
|
2023-12-26 19:27:47 +02:00
|
|
|
assert(isServerLocal());
|
2024-01-12 16:55:36 +02:00
|
|
|
networkHandler->connectToRemote(*this, getLocalHostname(), getLocalPort());
|
2023-11-18 16:34:18 +02:00
|
|
|
}
|
|
|
|
|
2024-01-29 22:05:11 +02:00
|
|
|
void CServerHandler::onConnectionEstablished(const NetworkConnectionPtr & netConnection)
|
2023-11-18 16:34:18 +02:00
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
assert(getState() == EClientState::CONNECTING);
|
2024-02-03 22:24:32 +02:00
|
|
|
|
|
|
|
boost::mutex::scoped_lock interfaceLock(GH.interfaceMutex);
|
|
|
|
|
2024-01-12 16:55:36 +02:00
|
|
|
networkConnection = netConnection;
|
|
|
|
|
2023-12-25 21:23:27 +02:00
|
|
|
logNetwork->info("Connection established");
|
2024-01-29 22:05:11 +02:00
|
|
|
|
|
|
|
if (serverMode == EServerMode::LOBBY_GUEST)
|
|
|
|
{
|
|
|
|
// say hello to lobby to switch connection to proxy mode
|
|
|
|
getGlobalLobby().sendProxyConnectionLogin(netConnection);
|
|
|
|
}
|
|
|
|
|
2024-02-11 16:26:27 +02:00
|
|
|
logicConnection = std::make_shared<CConnection>(netConnection);
|
|
|
|
logicConnection->uuid = uuid;
|
|
|
|
logicConnection->enterLobbyConnectionMode();
|
2023-11-18 16:34:18 +02:00
|
|
|
sendClientConnecting();
|
|
|
|
}
|
|
|
|
|
2023-12-25 22:26:59 +02:00
|
|
|
void CServerHandler::applyPackOnLobbyScreen(CPackForLobby & pack)
|
2023-11-18 16:34:18 +02:00
|
|
|
{
|
2024-01-20 00:26:25 +02:00
|
|
|
const CBaseForLobbyApply * apply = applier->getApplier(CTypeList::getInstance().getTypeID(&pack)); //find the applier
|
2023-12-25 22:26:59 +02:00
|
|
|
apply->applyOnLobbyScreen(dynamic_cast<CLobbyScreen *>(SEL), this, pack);
|
|
|
|
GH.windows().totalRedraw();
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::set<PlayerColor> CServerHandler::getHumanColors()
|
|
|
|
{
|
2024-02-11 16:26:27 +02:00
|
|
|
return clientHumanColors(logicConnection->connectionID);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PlayerColor CServerHandler::myFirstColor() const
|
|
|
|
{
|
2024-02-11 16:26:27 +02:00
|
|
|
return clientFirstColor(logicConnection->connectionID);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CServerHandler::isMyColor(PlayerColor color) const
|
|
|
|
{
|
2024-02-11 16:26:27 +02:00
|
|
|
return isClientColor(logicConnection->connectionID, color);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ui8 CServerHandler::myFirstId() const
|
|
|
|
{
|
2024-02-11 16:26:27 +02:00
|
|
|
return clientFirstId(logicConnection->connectionID);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2024-02-04 19:56:04 +02:00
|
|
|
EClientState CServerHandler::getState() const
|
|
|
|
{
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::setState(EClientState newState)
|
|
|
|
{
|
2024-02-11 15:38:29 +02:00
|
|
|
if (newState == EClientState::CONNECTION_CANCELLED && serverRunner != nullptr)
|
|
|
|
serverRunner->shutdown();
|
|
|
|
|
2024-02-04 19:56:04 +02:00
|
|
|
state = newState;
|
|
|
|
}
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
bool CServerHandler::isServerLocal() const
|
|
|
|
{
|
2024-02-10 23:56:02 +02:00
|
|
|
return serverRunner != nullptr;
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CServerHandler::isHost() const
|
|
|
|
{
|
2024-02-11 16:26:27 +02:00
|
|
|
return logicConnection && hostClientId == logicConnection->connectionID;
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CServerHandler::isGuest() const
|
|
|
|
{
|
2024-02-11 16:26:27 +02:00
|
|
|
return !logicConnection || hostClientId != logicConnection->connectionID;
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-12-26 19:27:47 +02:00
|
|
|
const std::string & CServerHandler::getLocalHostname() const
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2023-12-26 19:27:47 +02:00
|
|
|
return settings["server"]["localHostname"].String();
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-12-26 19:27:47 +02:00
|
|
|
ui16 CServerHandler::getLocalPort() const
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2023-12-26 19:27:47 +02:00
|
|
|
return settings["server"]["localPort"].Integer();
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-12-26 19:27:47 +02:00
|
|
|
const std::string & CServerHandler::getRemoteHostname() const
|
2022-11-08 02:44:34 +02:00
|
|
|
{
|
2023-12-26 19:27:47 +02:00
|
|
|
return settings["server"]["remoteHostname"].String();
|
2022-11-08 02:44:34 +02:00
|
|
|
}
|
|
|
|
|
2023-12-26 19:27:47 +02:00
|
|
|
ui16 CServerHandler::getRemotePort() const
|
2022-11-08 02:44:34 +02:00
|
|
|
{
|
2023-12-26 19:27:47 +02:00
|
|
|
return settings["server"]["remotePort"].Integer();
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string & CServerHandler::getCurrentHostname() const
|
|
|
|
{
|
|
|
|
return serverHostname;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui16 CServerHandler::getCurrentPort() const
|
|
|
|
{
|
|
|
|
return serverPort;
|
2022-11-08 02:44:34 +02:00
|
|
|
}
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
void CServerHandler::sendClientConnecting() const
|
|
|
|
{
|
|
|
|
LobbyClientConnected lcc;
|
|
|
|
lcc.uuid = uuid;
|
2024-02-12 18:57:20 +02:00
|
|
|
lcc.names = localPlayerNames;
|
2018-01-05 19:21:07 +02:00
|
|
|
lcc.mode = si->mode;
|
|
|
|
sendLobbyPack(lcc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::sendClientDisconnecting()
|
|
|
|
{
|
|
|
|
// FIXME: This is workaround needed to make sure client not trying to sent anything to non existed server
|
2024-02-04 19:56:04 +02:00
|
|
|
if(getState() == EClientState::DISCONNECTING)
|
2024-02-03 19:08:45 +02:00
|
|
|
{
|
|
|
|
assert(0);
|
2018-01-05 19:21:07 +02:00
|
|
|
return;
|
2024-02-03 19:08:45 +02:00
|
|
|
}
|
2018-01-05 19:21:07 +02:00
|
|
|
|
2024-02-04 19:56:04 +02:00
|
|
|
setState(EClientState::DISCONNECTING);
|
2023-08-11 18:04:14 +02:00
|
|
|
mapToStart = nullptr;
|
2018-01-05 19:21:07 +02:00
|
|
|
LobbyClientDisconnected lcd;
|
2024-02-11 16:26:27 +02:00
|
|
|
lcd.clientId = logicConnection->connectionID;
|
2018-01-05 19:21:07 +02:00
|
|
|
logNetwork->info("Connection has been requested to be closed.");
|
|
|
|
if(isServerLocal())
|
|
|
|
{
|
|
|
|
lcd.shutdownServer = true;
|
|
|
|
logNetwork->info("Sent closing signal to the server");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
logNetwork->info("Sent leaving signal to the server");
|
|
|
|
}
|
|
|
|
sendLobbyPack(lcd);
|
2024-02-04 19:56:04 +02:00
|
|
|
networkConnection->close();
|
2024-02-03 22:24:32 +02:00
|
|
|
networkConnection.reset();
|
2024-02-11 16:26:27 +02:00
|
|
|
logicConnection.reset();
|
2024-05-13 17:43:05 +02:00
|
|
|
waitForServerShutdown();
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-06-25 20:16:03 +02:00
|
|
|
void CServerHandler::setCampaignState(std::shared_ptr<CampaignState> newCampaign)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
setState(EClientState::LOBBY_CAMPAIGN);
|
2018-01-05 19:21:07 +02:00
|
|
|
LobbySetCampaign lsc;
|
|
|
|
lsc.ourCampaign = newCampaign;
|
|
|
|
sendLobbyPack(lsc);
|
|
|
|
}
|
|
|
|
|
2023-06-25 20:16:03 +02:00
|
|
|
void CServerHandler::setCampaignMap(CampaignScenarioID mapId) const
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
if(getState() == EClientState::GAMEPLAY) // FIXME: UI shouldn't sent commands in first place
|
2018-01-05 19:21:07 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
LobbySetCampaignMap lscm;
|
|
|
|
lscm.mapId = mapId;
|
|
|
|
sendLobbyPack(lscm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::setCampaignBonus(int bonusId) const
|
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
if(getState() == EClientState::GAMEPLAY) // FIXME: UI shouldn't sent commands in first place
|
2018-01-05 19:21:07 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
LobbySetCampaignBonus lscb;
|
|
|
|
lscb.bonusId = bonusId;
|
|
|
|
sendLobbyPack(lscb);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::setMapInfo(std::shared_ptr<CMapInfo> to, std::shared_ptr<CMapGenOptions> mapGenOpts) const
|
|
|
|
{
|
|
|
|
LobbySetMap lsm;
|
|
|
|
lsm.mapInfo = to;
|
|
|
|
lsm.mapGenOpts = mapGenOpts;
|
|
|
|
sendLobbyPack(lsm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::setPlayer(PlayerColor color) const
|
|
|
|
{
|
|
|
|
LobbySetPlayer lsp;
|
|
|
|
lsp.clickedColor = color;
|
|
|
|
sendLobbyPack(lsp);
|
|
|
|
}
|
|
|
|
|
2023-10-16 21:35:29 +02:00
|
|
|
void CServerHandler::setPlayerName(PlayerColor color, const std::string & name) const
|
2023-10-13 23:04:35 +02:00
|
|
|
{
|
|
|
|
LobbySetPlayerName lspn;
|
|
|
|
lspn.color = color;
|
|
|
|
lspn.name = name;
|
|
|
|
sendLobbyPack(lspn);
|
|
|
|
}
|
|
|
|
|
2024-07-16 00:40:39 +02:00
|
|
|
void CServerHandler::setPlayerHandicap(PlayerColor color, TResources handicap) const
|
|
|
|
{
|
|
|
|
LobbySetPlayerHandicap lsph;
|
|
|
|
lsph.color = color;
|
|
|
|
lsph.handicap = handicap;
|
|
|
|
sendLobbyPack(lsph);
|
|
|
|
}
|
|
|
|
|
2023-08-17 17:29:31 +02:00
|
|
|
void CServerHandler::setPlayerOption(ui8 what, int32_t value, PlayerColor player) const
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
LobbyChangePlayerOption lcpo;
|
|
|
|
lcpo.what = what;
|
2023-08-14 00:08:48 +02:00
|
|
|
lcpo.value = value;
|
2018-01-05 19:21:07 +02:00
|
|
|
lcpo.color = player;
|
|
|
|
sendLobbyPack(lcpo);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::setDifficulty(int to) const
|
|
|
|
{
|
|
|
|
LobbySetDifficulty lsd;
|
|
|
|
lsd.difficulty = to;
|
|
|
|
sendLobbyPack(lsd);
|
|
|
|
}
|
|
|
|
|
2023-09-22 18:57:43 +02:00
|
|
|
void CServerHandler::setSimturnsInfo(const SimturnsInfo & info) const
|
|
|
|
{
|
|
|
|
LobbySetSimturns pack;
|
|
|
|
pack.simturnsInfo = info;
|
|
|
|
sendLobbyPack(pack);
|
|
|
|
}
|
|
|
|
|
2023-08-25 18:20:26 +02:00
|
|
|
void CServerHandler::setTurnTimerInfo(const TurnTimerInfo & info) const
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
LobbySetTurnTime lstt;
|
2023-08-25 18:20:26 +02:00
|
|
|
lstt.turnTimerInfo = info;
|
2018-01-05 19:21:07 +02:00
|
|
|
sendLobbyPack(lstt);
|
|
|
|
}
|
|
|
|
|
2023-12-28 21:48:19 +02:00
|
|
|
void CServerHandler::setExtraOptionsInfo(const ExtraOptionsInfo & info) const
|
2023-12-27 15:39:35 +02:00
|
|
|
{
|
2023-12-28 21:48:19 +02:00
|
|
|
LobbySetExtraOptions lseo;
|
|
|
|
lseo.extraOptionsInfo = info;
|
|
|
|
sendLobbyPack(lseo);
|
2023-12-27 15:39:35 +02:00
|
|
|
}
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
void CServerHandler::sendMessage(const std::string & txt) const
|
|
|
|
{
|
|
|
|
std::istringstream readed;
|
|
|
|
readed.str(txt);
|
|
|
|
std::string command;
|
|
|
|
readed >> command;
|
|
|
|
if(command == "!passhost")
|
|
|
|
{
|
|
|
|
std::string id;
|
|
|
|
readed >> id;
|
|
|
|
if(id.length())
|
|
|
|
{
|
|
|
|
LobbyChangeHost lch;
|
|
|
|
lch.newHostConnectionId = boost::lexical_cast<int>(id);
|
|
|
|
sendLobbyPack(lch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(command == "!forcep")
|
|
|
|
{
|
2024-01-10 00:38:54 +02:00
|
|
|
std::string connectedId;
|
|
|
|
std::string playerColorId;
|
2018-01-05 19:21:07 +02:00
|
|
|
readed >> connectedId;
|
|
|
|
readed >> playerColorId;
|
2022-11-13 04:35:16 +02:00
|
|
|
if(connectedId.length() && playerColorId.length())
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
ui8 connected = boost::lexical_cast<int>(connectedId);
|
|
|
|
auto color = PlayerColor(boost::lexical_cast<int>(playerColorId));
|
|
|
|
if(color.isValidPlayer() && playerNames.find(connected) != playerNames.end())
|
|
|
|
{
|
|
|
|
LobbyForceSetPlayer lfsp;
|
|
|
|
lfsp.targetConnectedPlayer = connected;
|
|
|
|
lfsp.targetPlayerColor = color;
|
|
|
|
sendLobbyPack(lfsp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-03-18 19:52:53 +02:00
|
|
|
gameChat->sendMessageLobby(playerNames.find(myFirstId())->second.name, txt);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::sendGuiAction(ui8 action) const
|
|
|
|
{
|
|
|
|
LobbyGuiAction lga;
|
|
|
|
lga.action = static_cast<LobbyGuiAction::EAction>(action);
|
|
|
|
sendLobbyPack(lga);
|
|
|
|
}
|
|
|
|
|
2022-09-29 19:08:05 +02:00
|
|
|
void CServerHandler::sendRestartGame() const
|
|
|
|
{
|
2023-09-26 15:45:46 +02:00
|
|
|
GH.windows().createAndPushWindow<CLoadingScreen>();
|
|
|
|
|
2024-02-03 19:08:45 +02:00
|
|
|
LobbyRestartGame endGame;
|
2022-09-29 19:08:05 +02:00
|
|
|
sendLobbyPack(endGame);
|
|
|
|
}
|
|
|
|
|
2023-09-11 18:39:32 +02:00
|
|
|
bool CServerHandler::validateGameStart(bool allowOnlyAI) const
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2023-08-06 16:46:49 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
verifyStateBeforeStart(allowOnlyAI ? true : settings["session"]["onlyai"].Bool());
|
|
|
|
}
|
2023-09-15 12:59:02 +02:00
|
|
|
catch(ModIncompatibility & e)
|
2023-08-06 16:46:49 +02:00
|
|
|
{
|
2023-09-11 18:39:32 +02:00
|
|
|
logGlobal->warn("Incompatibility exception during start scenario: %s", e.what());
|
2023-09-23 00:32:48 +02:00
|
|
|
std::string errorMsg;
|
|
|
|
if(!e.whatMissing().empty())
|
|
|
|
{
|
|
|
|
errorMsg += VLC->generaltexth->translate("vcmi.server.errors.modsToEnable") + '\n';
|
|
|
|
errorMsg += e.whatMissing();
|
|
|
|
}
|
|
|
|
if(!e.whatExcessive().empty())
|
|
|
|
{
|
|
|
|
errorMsg += VLC->generaltexth->translate("vcmi.server.errors.modsToDisable") + '\n';
|
|
|
|
errorMsg += e.whatExcessive();
|
|
|
|
}
|
2023-09-11 18:39:32 +02:00
|
|
|
showServerError(errorMsg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch(std::exception & e)
|
|
|
|
{
|
|
|
|
logGlobal->error("Exception during startScenario: %s", e.what());
|
2023-08-06 16:46:49 +02:00
|
|
|
showServerError( std::string("Unable to start map! Reason: ") + e.what());
|
2023-09-11 18:39:32 +02:00
|
|
|
return false;
|
2023-08-06 16:46:49 +02:00
|
|
|
}
|
|
|
|
|
2023-09-11 18:39:32 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::sendStartGame(bool allowOnlyAI) const
|
|
|
|
{
|
|
|
|
verifyStateBeforeStart(allowOnlyAI ? true : settings["session"]["onlyai"].Bool());
|
2023-12-03 18:39:25 +02:00
|
|
|
|
|
|
|
if(!settings["session"]["headless"].Bool())
|
|
|
|
GH.windows().createAndPushWindow<CLoadingScreen>();
|
2023-09-21 22:28:29 +02:00
|
|
|
|
2024-02-03 19:57:23 +02:00
|
|
|
LobbyPrepareStartGame lpsg;
|
|
|
|
sendLobbyPack(lpsg);
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
LobbyStartGame lsg;
|
|
|
|
sendLobbyPack(lsg);
|
|
|
|
}
|
|
|
|
|
2023-08-11 18:04:14 +02:00
|
|
|
void CServerHandler::startMapAfterConnection(std::shared_ptr<CMapInfo> to)
|
|
|
|
{
|
|
|
|
mapToStart = to;
|
|
|
|
}
|
|
|
|
|
2023-02-12 09:23:39 +02:00
|
|
|
void CServerHandler::startGameplay(VCMI_LIB_WRAP_NAMESPACE(CGameState) * gameState)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2018-04-07 13:42:11 +02:00
|
|
|
if(CMM)
|
|
|
|
CMM->disable();
|
2024-01-10 19:43:34 +02:00
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
switch(si->mode)
|
|
|
|
{
|
2024-01-21 16:48:36 +02:00
|
|
|
case EStartMode::NEW_GAME:
|
2022-09-28 21:15:05 +02:00
|
|
|
client->newGame(gameState);
|
2018-01-05 19:21:07 +02:00
|
|
|
break;
|
2024-01-21 16:48:36 +02:00
|
|
|
case EStartMode::CAMPAIGN:
|
2024-06-23 15:40:46 +02:00
|
|
|
if(si->campState->conqueredScenarios().empty())
|
|
|
|
campaignScoreCalculator.reset();
|
2022-09-28 21:15:05 +02:00
|
|
|
client->newGame(gameState);
|
2018-01-05 19:21:07 +02:00
|
|
|
break;
|
2024-01-21 16:48:36 +02:00
|
|
|
case EStartMode::LOAD_GAME:
|
2022-09-29 19:33:44 +02:00
|
|
|
client->loadGame(gameState);
|
2018-01-05 19:21:07 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw std::runtime_error("Invalid mode");
|
|
|
|
}
|
|
|
|
// After everything initialized we can accept CPackToClient netpacks
|
2024-02-11 16:26:27 +02:00
|
|
|
logicConnection->enterGameplayConnectionMode(client->gameState());
|
2024-02-04 19:56:04 +02:00
|
|
|
setState(EClientState::GAMEPLAY);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2024-04-07 13:19:57 +02:00
|
|
|
HighScoreParameter CServerHandler::prepareHighScores(PlayerColor player, bool victory)
|
|
|
|
{
|
2024-04-07 20:21:48 +02:00
|
|
|
const auto * gs = client->gameState();
|
|
|
|
const auto * playerState = gs->getPlayerState(player);
|
2024-04-07 13:19:57 +02:00
|
|
|
|
|
|
|
HighScoreParameter param;
|
|
|
|
param.difficulty = gs->getStartInfo()->difficulty;
|
|
|
|
param.day = gs->getDate();
|
|
|
|
param.townAmount = gs->howManyTowns(player);
|
|
|
|
param.usedCheat = gs->getPlayerState(player)->cheated;
|
|
|
|
param.hasGrail = false;
|
|
|
|
for(const CGHeroInstance * h : playerState->heroes)
|
|
|
|
if(h->hasArt(ArtifactID::GRAIL))
|
|
|
|
param.hasGrail = true;
|
|
|
|
for(const CGTownInstance * t : playerState->towns)
|
|
|
|
if(t->builtBuildings.count(BuildingID::GRAIL))
|
|
|
|
param.hasGrail = true;
|
|
|
|
param.allDefeated = true;
|
|
|
|
for (PlayerColor otherPlayer(0); otherPlayer < PlayerColor::PLAYER_LIMIT; ++otherPlayer)
|
|
|
|
{
|
|
|
|
auto ps = gs->getPlayerState(otherPlayer, false);
|
2024-04-07 20:21:48 +02:00
|
|
|
if(ps && otherPlayer != player && !ps->checkVanquished())
|
|
|
|
param.allDefeated = false;
|
2024-04-07 13:19:57 +02:00
|
|
|
}
|
|
|
|
param.scenarioName = gs->getMapHeader()->name.toString();
|
|
|
|
param.playerName = gs->getStartInfo()->playerInfos.find(player)->second.name;
|
|
|
|
|
|
|
|
return param;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::showHighScoresAndEndGameplay(PlayerColor player, bool victory)
|
|
|
|
{
|
|
|
|
HighScoreParameter param = prepareHighScores(player, victory);
|
|
|
|
|
|
|
|
if(victory && client->gameState()->getStartInfo()->campState)
|
|
|
|
{
|
|
|
|
startCampaignScenario(param, client->gameState()->getStartInfo()->campState);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-04-07 20:21:48 +02:00
|
|
|
HighScoreCalculation scenarioHighScores;
|
|
|
|
scenarioHighScores.parameters.push_back(param);
|
|
|
|
scenarioHighScores.isCampaign = false;
|
2024-04-07 13:19:57 +02:00
|
|
|
|
|
|
|
endGameplay();
|
|
|
|
GH.defActionsDef = 63;
|
|
|
|
CMM->menu->switchToTab("main");
|
2024-04-07 20:21:48 +02:00
|
|
|
GH.windows().createAndPushWindow<CHighScoreInputScreen>(victory, scenarioHighScores);
|
2024-04-07 13:19:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-03 19:08:45 +02:00
|
|
|
void CServerHandler::endGameplay()
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-02-03 19:08:45 +02:00
|
|
|
// Game is ending
|
|
|
|
// Tell the network thread to reach a stable state
|
2024-04-07 13:19:57 +02:00
|
|
|
sendClientDisconnecting();
|
2024-02-03 19:08:45 +02:00
|
|
|
logNetwork->info("Closed connection.");
|
2023-11-27 19:57:48 +02:00
|
|
|
|
|
|
|
client->endGame();
|
2024-01-10 19:43:34 +02:00
|
|
|
client.reset();
|
2023-11-27 19:57:48 +02:00
|
|
|
|
2024-02-03 19:08:45 +02:00
|
|
|
if(CMM)
|
2018-04-07 13:42:11 +02:00
|
|
|
{
|
2024-02-03 19:08:45 +02:00
|
|
|
GH.curInt = CMM.get();
|
|
|
|
CMM->enable();
|
2018-04-07 13:42:11 +02:00
|
|
|
}
|
2024-02-03 19:08:45 +02:00
|
|
|
else
|
2023-10-05 23:34:29 +02:00
|
|
|
{
|
2024-02-03 19:08:45 +02:00
|
|
|
GH.curInt = CMainMenu::create().get();
|
2023-10-05 23:34:29 +02:00
|
|
|
}
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2024-02-03 19:08:45 +02:00
|
|
|
void CServerHandler::restartGameplay()
|
|
|
|
{
|
|
|
|
client->endGame();
|
|
|
|
client.reset();
|
|
|
|
|
2024-02-11 16:26:27 +02:00
|
|
|
logicConnection->enterLobbyConnectionMode();
|
2024-02-03 19:08:45 +02:00
|
|
|
}
|
|
|
|
|
2023-09-23 00:21:36 +02:00
|
|
|
void CServerHandler::startCampaignScenario(HighScoreParameter param, std::shared_ptr<CampaignState> cs)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2023-06-26 20:51:10 +02:00
|
|
|
std::shared_ptr<CampaignState> ourCampaign = cs;
|
|
|
|
|
|
|
|
if (!cs)
|
|
|
|
ourCampaign = si->campState;
|
|
|
|
|
2024-04-07 20:22:33 +02:00
|
|
|
if(campaignScoreCalculator == nullptr)
|
2023-09-23 14:51:39 +02:00
|
|
|
{
|
2024-04-07 20:22:33 +02:00
|
|
|
campaignScoreCalculator = std::make_shared<HighScoreCalculation>();
|
|
|
|
campaignScoreCalculator->isCampaign = true;
|
|
|
|
campaignScoreCalculator->parameters.clear();
|
2023-09-23 00:21:36 +02:00
|
|
|
}
|
2023-09-27 22:53:13 +02:00
|
|
|
param.campaignName = cs->getNameTranslated();
|
2024-04-07 20:22:33 +02:00
|
|
|
campaignScoreCalculator->parameters.push_back(param);
|
2023-06-26 20:51:10 +02:00
|
|
|
|
2024-04-07 13:19:57 +02:00
|
|
|
endGameplay();
|
2023-06-26 20:51:10 +02:00
|
|
|
|
2024-04-07 13:19:57 +02:00
|
|
|
auto & epilogue = ourCampaign->scenario(*ourCampaign->lastScenario()).epilog;
|
2024-04-07 20:21:48 +02:00
|
|
|
auto finisher = [this, ourCampaign]()
|
2024-04-07 13:19:57 +02:00
|
|
|
{
|
|
|
|
if(ourCampaign->campaignSet != "" && ourCampaign->isCampaignFinished())
|
2023-06-26 20:51:10 +02:00
|
|
|
{
|
2024-04-07 13:19:57 +02:00
|
|
|
Settings entry = persistentStorage.write["completedCampaigns"][ourCampaign->getFilename()];
|
|
|
|
entry->Bool() = true;
|
|
|
|
}
|
2023-09-20 22:18:53 +02:00
|
|
|
|
2024-04-07 13:19:57 +02:00
|
|
|
GH.windows().pushWindow(CMM);
|
|
|
|
GH.windows().pushWindow(CMM->menu);
|
2023-09-21 23:41:00 +02:00
|
|
|
|
2024-04-07 13:19:57 +02:00
|
|
|
if(!ourCampaign->isCampaignFinished())
|
|
|
|
CMM->openCampaignLobby(ourCampaign);
|
2023-06-26 20:51:10 +02:00
|
|
|
else
|
|
|
|
{
|
2024-04-07 13:19:57 +02:00
|
|
|
CMM->openCampaignScreen(ourCampaign->campaignSet);
|
2024-04-07 20:22:33 +02:00
|
|
|
GH.windows().createAndPushWindow<CHighScoreInputScreen>(true, *campaignScoreCalculator);
|
2023-06-26 20:51:10 +02:00
|
|
|
}
|
2024-04-07 13:19:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if(epilogue.hasPrologEpilog)
|
|
|
|
{
|
|
|
|
GH.windows().createAndPushWindow<CPrologEpilogVideo>(epilogue, finisher);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
finisher();
|
|
|
|
}
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2023-09-11 18:39:32 +02:00
|
|
|
void CServerHandler::showServerError(const std::string & txt) const
|
2022-09-23 13:02:19 +02:00
|
|
|
{
|
2023-09-21 04:31:08 +02:00
|
|
|
if(auto w = GH.windows().topWindow<CLoadingScreen>())
|
|
|
|
GH.windows().popWindow(w);
|
|
|
|
|
2022-09-23 13:02:19 +02:00
|
|
|
CInfoWindow::showInfoDialog(txt, {});
|
|
|
|
}
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
int CServerHandler::howManyPlayerInterfaces()
|
|
|
|
{
|
|
|
|
int playerInts = 0;
|
|
|
|
for(auto pint : client->playerint)
|
|
|
|
{
|
|
|
|
if(dynamic_cast<CPlayerInterface *>(pint.second.get()))
|
|
|
|
playerInts++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return playerInts;
|
|
|
|
}
|
|
|
|
|
2024-01-21 16:48:36 +02:00
|
|
|
ELoadMode CServerHandler::getLoadMode()
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
if(loadMode != ELoadMode::TUTORIAL && getState() == EClientState::GAMEPLAY)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
if(si->campState)
|
|
|
|
return ELoadMode::CAMPAIGN;
|
|
|
|
for(auto pn : playerNames)
|
|
|
|
{
|
2024-02-11 16:26:27 +02:00
|
|
|
if(pn.second.connection != logicConnection->connectionID)
|
2018-01-05 19:21:07 +02:00
|
|
|
return ELoadMode::MULTI;
|
|
|
|
}
|
2019-05-04 15:56:17 +02:00
|
|
|
if(howManyPlayerInterfaces() > 1) //this condition will work for hotseat mode OR multiplayer with allowed more than 1 color per player to control
|
|
|
|
return ELoadMode::MULTI;
|
2018-01-05 19:21:07 +02:00
|
|
|
|
|
|
|
return ELoadMode::SINGLE;
|
|
|
|
}
|
|
|
|
return loadMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::debugStartTest(std::string filename, bool save)
|
|
|
|
{
|
|
|
|
logGlobal->info("Starting debug test with file: %s", filename);
|
|
|
|
auto mapInfo = std::make_shared<CMapInfo>();
|
|
|
|
if(save)
|
|
|
|
{
|
2024-01-29 22:05:11 +02:00
|
|
|
resetStateForLobby(EStartMode::LOAD_GAME, ESelectionScreen::loadGame, EServerMode::LOCAL, {});
|
2023-08-23 14:07:50 +02:00
|
|
|
mapInfo->saveInit(ResourcePath(filename, EResType::SAVEGAME));
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-01-29 22:05:11 +02:00
|
|
|
resetStateForLobby(EStartMode::NEW_GAME, ESelectionScreen::newGame, EServerMode::LOCAL, {});
|
2018-01-05 19:21:07 +02:00
|
|
|
mapInfo->mapInit(filename);
|
|
|
|
}
|
|
|
|
if(settings["session"]["donotstartserver"].Bool())
|
2023-12-26 19:27:47 +02:00
|
|
|
connectToServer(getLocalHostname(), getLocalPort());
|
2018-01-05 19:21:07 +02:00
|
|
|
else
|
2024-01-10 15:31:11 +02:00
|
|
|
startLocalServerAndConnect(false);
|
2018-01-05 19:21:07 +02:00
|
|
|
|
2023-08-20 22:45:41 +02:00
|
|
|
boost::this_thread::sleep_for(boost::chrono::milliseconds(100));
|
2021-05-16 14:39:38 +02:00
|
|
|
|
2023-05-16 17:34:23 +02:00
|
|
|
while(!settings["session"]["headless"].Bool() && !GH.windows().topWindow<CLobbyScreen>())
|
2023-08-20 22:45:41 +02:00
|
|
|
boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
|
2023-05-16 17:34:23 +02:00
|
|
|
|
2024-05-10 20:32:24 +02:00
|
|
|
while(!mi || mapInfo->fileURI != mi->fileURI)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
setMapInfo(mapInfo);
|
2023-08-20 22:45:41 +02:00
|
|
|
boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
// "Click" on color to remove us from it
|
|
|
|
setPlayer(myFirstColor());
|
|
|
|
while(myFirstColor() != PlayerColor::CANNOT_DETERMINE)
|
2023-08-20 22:45:41 +02:00
|
|
|
boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
|
2018-01-05 19:21:07 +02:00
|
|
|
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
sendStartGame();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2023-08-20 22:45:41 +02:00
|
|
|
boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-12 09:23:39 +02:00
|
|
|
class ServerHandlerCPackVisitor : public VCMI_LIB_WRAP_NAMESPACE(ICPackVisitor)
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
CServerHandler & handler;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ServerHandlerCPackVisitor(CServerHandler & handler)
|
|
|
|
:handler(handler)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-02-10 21:22:08 +02:00
|
|
|
bool callTyped() override { return false; }
|
2023-02-12 09:23:39 +02:00
|
|
|
|
2024-02-10 21:22:08 +02:00
|
|
|
void visitForLobby(CPackForLobby & lobbyPack) override
|
2023-02-12 09:23:39 +02:00
|
|
|
{
|
|
|
|
handler.visitForLobby(lobbyPack);
|
|
|
|
}
|
|
|
|
|
2024-02-10 21:22:08 +02:00
|
|
|
void visitForClient(CPackForClient & clientPack) override
|
2023-02-12 09:23:39 +02:00
|
|
|
{
|
|
|
|
handler.visitForClient(clientPack);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-02-02 01:27:19 +02:00
|
|
|
void CServerHandler::onPacketReceived(const std::shared_ptr<INetworkConnection> &, const std::vector<std::byte> & message)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
2024-02-03 22:24:32 +02:00
|
|
|
boost::mutex::scoped_lock interfaceLock(GH.interfaceMutex);
|
|
|
|
|
2024-02-04 19:56:04 +02:00
|
|
|
if(getState() == EClientState::DISCONNECTING)
|
2024-02-03 19:08:45 +02:00
|
|
|
return;
|
|
|
|
|
2024-02-11 16:26:27 +02:00
|
|
|
CPack * pack = logicConnection->retrievePack(message);
|
2024-02-03 19:08:45 +02:00
|
|
|
ServerHandlerCPackVisitor visitor(*this);
|
|
|
|
pack->visit(visitor);
|
2023-11-18 16:34:18 +02:00
|
|
|
}
|
2018-01-05 19:21:07 +02:00
|
|
|
|
2024-02-02 01:27:19 +02:00
|
|
|
void CServerHandler::onDisconnected(const std::shared_ptr<INetworkConnection> & connection, const std::string & errorMessage)
|
2023-11-18 16:34:18 +02:00
|
|
|
{
|
2024-05-13 18:00:19 +02:00
|
|
|
boost::mutex::scoped_lock interfaceLock(GH.interfaceMutex);
|
|
|
|
|
2024-04-07 13:19:57 +02:00
|
|
|
if (connection != networkConnection)
|
|
|
|
{
|
|
|
|
// ServerHandler already closed this connection on its own
|
|
|
|
// This is the final call from network thread that informs serverHandler that connection has died
|
|
|
|
// ignore it since serverHandler have already shut down this connection (and possibly started a new one)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-02-11 15:38:29 +02:00
|
|
|
waitForServerShutdown();
|
2024-02-10 23:56:02 +02:00
|
|
|
|
2024-02-04 19:56:04 +02:00
|
|
|
if(getState() == EClientState::DISCONNECTING)
|
2023-11-18 16:34:18 +02:00
|
|
|
{
|
2024-02-03 22:24:32 +02:00
|
|
|
// Note: this branch can be reached on app shutdown, when main thread holds mutex till destruction
|
|
|
|
logNetwork->info("Successfully closed connection to server!");
|
|
|
|
return;
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
2023-11-18 16:34:18 +02:00
|
|
|
|
2024-02-03 22:24:32 +02:00
|
|
|
logNetwork->error("Lost connection to server! Connection has been closed");
|
|
|
|
|
|
|
|
if(client)
|
|
|
|
{
|
2024-05-10 20:32:24 +02:00
|
|
|
endGameplay();
|
2024-02-04 19:56:04 +02:00
|
|
|
GH.defActionsDef = 63;
|
|
|
|
CMM->menu->switchToTab("main");
|
2024-05-10 20:32:24 +02:00
|
|
|
showServerError(CGI->generaltexth->translate("vcmi.server.errors.disconnected"));
|
2024-02-03 22:24:32 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LobbyClientDisconnected lcd;
|
2024-02-11 16:26:27 +02:00
|
|
|
lcd.clientId = logicConnection->connectionID;
|
2024-02-03 22:24:32 +02:00
|
|
|
applyPackOnLobbyScreen(lcd);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
2024-02-04 19:56:04 +02:00
|
|
|
|
|
|
|
networkConnection.reset();
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
|
|
|
|
2024-02-11 15:38:29 +02:00
|
|
|
void CServerHandler::waitForServerShutdown()
|
2023-02-12 09:23:39 +02:00
|
|
|
{
|
2024-02-11 15:38:29 +02:00
|
|
|
if (!serverRunner)
|
|
|
|
return; // may not exist for guest in MP
|
2023-02-12 09:23:39 +02:00
|
|
|
|
2024-02-11 15:38:29 +02:00
|
|
|
serverRunner->wait();
|
|
|
|
int exitCode = serverRunner->exitCode();
|
|
|
|
serverRunner.reset();
|
2023-07-27 21:50:50 +02:00
|
|
|
|
2024-02-11 15:38:29 +02:00
|
|
|
if (exitCode == 0)
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
logNetwork->info("Server closed correctly");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
if (getState() == EClientState::CONNECTING)
|
2023-12-26 21:13:46 +02:00
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
showServerError(CGI->generaltexth->translate("vcmi.server.errors.existingProcess"));
|
|
|
|
setState(EClientState::CONNECTION_CANCELLED); // stop attempts to reconnect
|
2023-12-26 21:13:46 +02:00
|
|
|
}
|
2018-01-05 19:21:07 +02:00
|
|
|
logNetwork->error("Error: server failed to close correctly or crashed!");
|
2024-02-11 15:38:29 +02:00
|
|
|
logNetwork->error("Check log file for more info");
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
2024-02-11 15:38:29 +02:00
|
|
|
|
|
|
|
serverRunner.reset();
|
2022-09-16 15:43:21 +02:00
|
|
|
}
|
|
|
|
|
2023-02-12 09:23:39 +02:00
|
|
|
void CServerHandler::visitForLobby(CPackForLobby & lobbyPack)
|
|
|
|
{
|
2023-12-25 22:26:59 +02:00
|
|
|
if(applier->getApplier(CTypeList::getInstance().getTypeID(&lobbyPack))->applyOnLobbyHandler(this, lobbyPack))
|
2023-02-12 09:23:39 +02:00
|
|
|
{
|
|
|
|
if(!settings["session"]["headless"].Bool())
|
2023-12-25 22:26:59 +02:00
|
|
|
applyPackOnLobbyScreen(lobbyPack);
|
2023-02-12 09:23:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerHandler::visitForClient(CPackForClient & clientPack)
|
|
|
|
{
|
|
|
|
client->handlePack(&clientPack);
|
|
|
|
}
|
|
|
|
|
2022-09-16 15:43:21 +02:00
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
void CServerHandler::sendLobbyPack(const CPackForLobby & pack) const
|
|
|
|
{
|
2024-02-04 19:56:04 +02:00
|
|
|
if(getState() != EClientState::STARTING)
|
2024-02-11 16:26:27 +02:00
|
|
|
logicConnection->sendPack(&pack);
|
2018-01-05 19:21:07 +02:00
|
|
|
}
|
2024-02-10 19:02:25 +02:00
|
|
|
|
|
|
|
bool CServerHandler::inLobbyRoom() const
|
|
|
|
{
|
2024-05-10 20:32:24 +02:00
|
|
|
return serverMode == EServerMode::LOBBY_HOST || serverMode == EServerMode::LOBBY_GUEST;
|
2024-02-10 19:02:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CServerHandler::inGame() const
|
|
|
|
{
|
2024-02-11 16:26:27 +02:00
|
|
|
return logicConnection != nullptr;
|
2024-02-10 19:02:25 +02:00
|
|
|
}
|