2023-12-28 21:27:21 +02:00
|
|
|
/*
|
|
|
|
* GlobalLobbyLoginWindow.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 "GlobalLobbyLoginWindow.h"
|
|
|
|
|
|
|
|
#include "GlobalLobbyClient.h"
|
|
|
|
#include "GlobalLobbyWindow.h"
|
|
|
|
|
2024-01-11 22:51:36 +02:00
|
|
|
#include "../CGameInfo.h"
|
|
|
|
#include "../CServerHandler.h"
|
2023-12-28 21:27:21 +02:00
|
|
|
#include "../gui/CGuiHandler.h"
|
|
|
|
#include "../gui/WindowHandler.h"
|
|
|
|
#include "../widgets/Buttons.h"
|
2024-01-11 22:51:36 +02:00
|
|
|
#include "../widgets/Images.h"
|
2024-01-18 16:23:12 +02:00
|
|
|
#include "../widgets/GraphicalPrimitiveCanvas.h"
|
2023-12-28 21:27:21 +02:00
|
|
|
#include "../widgets/MiscWidgets.h"
|
2024-01-11 22:51:36 +02:00
|
|
|
#include "../widgets/TextControls.h"
|
2023-12-28 21:27:21 +02:00
|
|
|
|
2024-01-11 22:51:36 +02:00
|
|
|
#include "../../lib/CConfigHandler.h"
|
2023-12-28 21:27:21 +02:00
|
|
|
#include "../../lib/CGeneralTextHandler.h"
|
|
|
|
#include "../../lib/MetaString.h"
|
|
|
|
|
|
|
|
GlobalLobbyLoginWindow::GlobalLobbyLoginWindow()
|
|
|
|
: CWindowObject(BORDERED)
|
|
|
|
{
|
|
|
|
OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
|
|
|
|
|
2024-02-09 23:02:41 +02:00
|
|
|
pos.w = 284;
|
|
|
|
pos.h = 220;
|
2023-12-28 21:27:21 +02:00
|
|
|
|
2024-02-02 02:36:57 +02:00
|
|
|
filledBackground = std::make_shared<FilledTexturePlayerColored>(ImagePath::builtin("DiBoxBck"), Rect(0, 0, pos.w, pos.h));
|
2023-12-28 21:27:21 +02:00
|
|
|
labelTitle = std::make_shared<CLabel>( pos.w / 2, 20, FONT_BIG, ETextAlignment::CENTER, Colors::YELLOW, CGI->generaltexth->translate("vcmi.lobby.login.title"));
|
2024-02-09 23:02:41 +02:00
|
|
|
labelUsername = std::make_shared<CLabel>( 10, 65, FONT_MEDIUM, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->translate("vcmi.lobby.login.username"));
|
|
|
|
backgroundUsername = std::make_shared<TransparentFilledRectangle>(Rect(10, 90, 264, 20), ColorRGBA(0,0,0,128), ColorRGBA(64,64,64,64));
|
|
|
|
inputUsername = std::make_shared<CTextInput>(Rect(15, 93, 260, 16), FONT_SMALL, nullptr, ETextAlignment::TOPLEFT, true);
|
|
|
|
buttonLogin = std::make_shared<CButton>(Point(10, 180), AnimationPath::builtin("MuBchck"), CButton::tooltip(), [this](){ onLogin(); });
|
|
|
|
buttonClose = std::make_shared<CButton>(Point(210, 180), AnimationPath::builtin("MuBcanc"), CButton::tooltip(), [this](){ onClose(); });
|
|
|
|
labelStatus = std::make_shared<CTextBox>( "", Rect(15, 115, 255, 60), 1, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE);
|
|
|
|
|
|
|
|
auto buttonRegister = std::make_shared<CToggleButton>(Point(10, 40), AnimationPath::builtin("GSPBUT2"), CButton::tooltip(), 0);
|
|
|
|
auto buttonLogin = std::make_shared<CToggleButton>(Point(146, 40), AnimationPath::builtin("GSPBUT2"), CButton::tooltip(), 0);
|
|
|
|
buttonRegister->addTextOverlay(CGI->generaltexth->translate("vcmi.lobby.login.create"), EFonts::FONT_SMALL, Colors::YELLOW);
|
|
|
|
buttonLogin->addTextOverlay(CGI->generaltexth->translate("vcmi.lobby.login.login"), EFonts::FONT_SMALL, Colors::YELLOW);
|
|
|
|
|
|
|
|
toggleMode = std::make_shared<CToggleGroup>(nullptr);
|
|
|
|
toggleMode->addToggle(0, buttonRegister);
|
|
|
|
toggleMode->addToggle(1, buttonLogin);
|
|
|
|
toggleMode->setSelected(settings["lobby"]["roomType"].Integer());
|
|
|
|
toggleMode->addCallback([this](int index){onLoginModeChanged(index);});
|
|
|
|
|
|
|
|
if (settings["lobby"]["accountID"].String().empty())
|
|
|
|
{
|
|
|
|
buttonLogin->block(true);
|
|
|
|
toggleMode->setSelected(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
toggleMode->setSelected(1);
|
2023-12-28 21:27:21 +02:00
|
|
|
|
2024-02-02 02:36:57 +02:00
|
|
|
filledBackground->playerColored(PlayerColor(1));
|
2024-01-08 20:50:43 +02:00
|
|
|
inputUsername->cb += [this](const std::string & text)
|
|
|
|
{
|
2024-02-09 23:02:41 +02:00
|
|
|
this->buttonLogin->block(text.empty());
|
2024-01-08 20:50:43 +02:00
|
|
|
};
|
2023-12-28 21:27:21 +02:00
|
|
|
|
|
|
|
center();
|
|
|
|
}
|
|
|
|
|
2024-02-09 23:02:41 +02:00
|
|
|
void GlobalLobbyLoginWindow::onLoginModeChanged(int value)
|
|
|
|
{
|
|
|
|
if (value == 0)
|
|
|
|
{
|
|
|
|
inputUsername->setText("");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
inputUsername->setText(settings["lobby"]["displayName"].String());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-28 21:27:21 +02:00
|
|
|
void GlobalLobbyLoginWindow::onClose()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
// TODO: abort ongoing connection attempt, if any
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyLoginWindow::onLogin()
|
|
|
|
{
|
|
|
|
labelStatus->setText(CGI->generaltexth->translate("vcmi.lobby.login.connecting"));
|
2024-01-11 22:51:36 +02:00
|
|
|
if(!CSH->getGlobalLobby().isConnected())
|
2024-01-10 15:31:11 +02:00
|
|
|
CSH->getGlobalLobby().connect();
|
2024-02-09 23:02:41 +02:00
|
|
|
else
|
|
|
|
onConnectionSuccess();
|
|
|
|
|
2024-01-08 20:50:43 +02:00
|
|
|
buttonClose->block(true);
|
2023-12-28 21:27:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyLoginWindow::onConnectionSuccess()
|
2024-02-09 23:02:41 +02:00
|
|
|
{
|
|
|
|
std::string accountID = settings["lobby"]["accountID"].String();
|
|
|
|
|
|
|
|
if(toggleMode->getSelected() == 0)
|
|
|
|
CSH->getGlobalLobby().sendClientRegister(inputUsername->getText());
|
|
|
|
else
|
|
|
|
CSH->getGlobalLobby().sendClientLogin();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyLoginWindow::onLoginSuccess()
|
2023-12-28 21:27:21 +02:00
|
|
|
{
|
|
|
|
close();
|
2024-01-21 16:48:36 +02:00
|
|
|
CSH->getGlobalLobby().activateInterface();
|
2023-12-28 21:27:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalLobbyLoginWindow::onConnectionFailed(const std::string & reason)
|
|
|
|
{
|
|
|
|
MetaString formatter;
|
|
|
|
formatter.appendTextID("vcmi.lobby.login.error");
|
|
|
|
formatter.replaceRawString(reason);
|
|
|
|
|
|
|
|
labelStatus->setText(formatter.toString());
|
2024-01-08 20:50:43 +02:00
|
|
|
buttonClose->block(false);
|
2023-12-28 21:27:21 +02:00
|
|
|
}
|