|
@@ -0,0 +1,200 @@
|
|
|
+/*
|
|
|
+ * GlobalLobbyRoomWindow.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 "GlobalLobbyRoomWindow.h"
|
|
|
+
|
|
|
+#include "GlobalLobbyClient.h"
|
|
|
+#include "GlobalLobbyDefines.h"
|
|
|
+#include "GlobalLobbyWindow.h"
|
|
|
+
|
|
|
+#include "../CGameInfo.h"
|
|
|
+#include "../CServerHandler.h"
|
|
|
+#include "../gui/CGuiHandler.h"
|
|
|
+#include "../mainmenu/CMainMenu.h"
|
|
|
+#include "../widgets/Buttons.h"
|
|
|
+#include "../widgets/Images.h"
|
|
|
+#include "../widgets/TextControls.h"
|
|
|
+#include "../widgets/GraphicalPrimitiveCanvas.h"
|
|
|
+#include "../widgets/ObjectLists.h"
|
|
|
+
|
|
|
+#include "../../lib/CConfigHandler.h"
|
|
|
+#include "../../lib/CGeneralTextHandler.h"
|
|
|
+#include "../../lib/MetaString.h"
|
|
|
+#include "../../lib/VCMI_Lib.h"
|
|
|
+#include "../../lib/modding/CModHandler.h"
|
|
|
+#include "../../lib/modding/CModInfo.h"
|
|
|
+
|
|
|
+GlobalLobbyRoomAccountCard::GlobalLobbyRoomAccountCard(const GlobalLobbyAccount & accountDescription)
|
|
|
+{
|
|
|
+ OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
|
|
|
+ pos.w = 130;
|
|
|
+ pos.h = 40;
|
|
|
+ backgroundOverlay = std::make_shared<TransparentFilledRectangle>(Rect(0, 0, pos.w, pos.h), ColorRGBA(0, 0, 0, 128), ColorRGBA(64, 64, 64, 64), 1);
|
|
|
+ labelName = std::make_shared<CLabel>(5, 10, FONT_SMALL, ETextAlignment::CENTERLEFT, Colors::WHITE, accountDescription.displayName);
|
|
|
+ labelStatus = std::make_shared<CLabel>(5, 30, FONT_SMALL, ETextAlignment::CENTERLEFT, Colors::YELLOW, accountDescription.status);
|
|
|
+}
|
|
|
+
|
|
|
+GlobalLobbyRoomModCard::GlobalLobbyRoomModCard(const GlobalLobbyRoomModInfo & modInfo)
|
|
|
+{
|
|
|
+ const std::map<ModVerificationStatus, std::string> statusToString = {
|
|
|
+ { ModVerificationStatus::NOT_INSTALLED, "missing" },
|
|
|
+ { ModVerificationStatus::DISABLED, "disabled" },
|
|
|
+ { ModVerificationStatus::EXCESSIVE, "excessive" },
|
|
|
+ { ModVerificationStatus::VERSION_MISMATCH, "version" },
|
|
|
+ { ModVerificationStatus::FULL_MATCH, "compatible" }
|
|
|
+ };
|
|
|
+
|
|
|
+ OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
|
|
|
+ pos.w = 200;
|
|
|
+ pos.h = 40;
|
|
|
+ backgroundOverlay = std::make_shared<TransparentFilledRectangle>(Rect(0, 0, pos.w, pos.h), ColorRGBA(0, 0, 0, 128), ColorRGBA(64, 64, 64, 64), 1);
|
|
|
+
|
|
|
+ labelName = std::make_shared<CLabel>(5, 10, FONT_SMALL, ETextAlignment::CENTERLEFT, Colors::WHITE, modInfo.modName);
|
|
|
+ labelVersion = std::make_shared<CLabel>(195, 30, FONT_SMALL, ETextAlignment::CENTERRIGHT, Colors::YELLOW, modInfo.version);
|
|
|
+ labelStatus = std::make_shared<CLabel>(5, 30, FONT_SMALL, ETextAlignment::CENTERLEFT, Colors::YELLOW, CGI->generaltexth->translate("vcmi.lobby.mod.state." + statusToString.at(modInfo.status)));
|
|
|
+}
|
|
|
+
|
|
|
+static const std::string getJoinRoomErrorMessage(const GlobalLobbyRoom & roomDescription, const std::vector<GlobalLobbyRoomModInfo> & modVerificationList)
|
|
|
+{
|
|
|
+ bool publicRoom = roomDescription.statusID == "public";
|
|
|
+ bool privateRoom = roomDescription.statusID == "private";
|
|
|
+ bool gameStarted = !publicRoom && !privateRoom;
|
|
|
+ bool hasInvite = CSH->getGlobalLobby().isInvitedToRoom(roomDescription.gameRoomID);
|
|
|
+ bool alreadyInRoom = CSH->inGame();
|
|
|
+
|
|
|
+ if (alreadyInRoom)
|
|
|
+ return "vcmi.lobby.preview.error.playing";
|
|
|
+
|
|
|
+ if (gameStarted)
|
|
|
+ return "vcmi.lobby.preview.error.busy";
|
|
|
+
|
|
|
+ if (VCMI_VERSION_STRING != roomDescription.gameVersion)
|
|
|
+ return "vcmi.lobby.preview.error.version";
|
|
|
+
|
|
|
+ if (roomDescription.playerLimit == roomDescription.participants.size())
|
|
|
+ return "vcmi.lobby.preview.error.full";
|
|
|
+
|
|
|
+ if (privateRoom && !hasInvite)
|
|
|
+ return "vcmi.lobby.preview.error.invite";
|
|
|
+
|
|
|
+ for(const auto & mod : modVerificationList)
|
|
|
+ {
|
|
|
+ switch (mod.status)
|
|
|
+ {
|
|
|
+ case ModVerificationStatus::NOT_INSTALLED:
|
|
|
+ case ModVerificationStatus::DISABLED:
|
|
|
+ case ModVerificationStatus::EXCESSIVE:
|
|
|
+ return "vcmi.lobby.preview.error.mods";
|
|
|
+ break;
|
|
|
+ case ModVerificationStatus::VERSION_MISMATCH:
|
|
|
+ case ModVerificationStatus::FULL_MATCH:
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ assert(0);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return "";
|
|
|
+}
|
|
|
+
|
|
|
+GlobalLobbyRoomWindow::GlobalLobbyRoomWindow(GlobalLobbyWindow * window, const std::string & roomUUID)
|
|
|
+ : CWindowObject(BORDERED)
|
|
|
+ , roomUUID(roomUUID)
|
|
|
+ , window(window)
|
|
|
+{
|
|
|
+ OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
|
|
|
+
|
|
|
+ pos.w = 400;
|
|
|
+ pos.h = 400;
|
|
|
+
|
|
|
+ GlobalLobbyRoom roomDescription = CSH->getGlobalLobby().getActiveRoomByName(roomUUID);
|
|
|
+ for(const auto & modEntry : ModVerificationInfo::verifyListAgainstLocalMods(roomDescription.modList))
|
|
|
+ {
|
|
|
+ GlobalLobbyRoomModInfo modInfo;
|
|
|
+ modInfo.status = modEntry.second;
|
|
|
+ if (modEntry.second == ModVerificationStatus::EXCESSIVE)
|
|
|
+ modInfo.version = CGI->modh->getModInfo(modEntry.first).getVerificationInfo().version.toString();
|
|
|
+ else
|
|
|
+ modInfo.version = roomDescription.modList.at(modEntry.first).version.toString();
|
|
|
+
|
|
|
+ if (modEntry.second == ModVerificationStatus::NOT_INSTALLED)
|
|
|
+ modInfo.modName = roomDescription.modList.at(modEntry.first).name;
|
|
|
+ else
|
|
|
+ modInfo.modName = CGI->modh->getModInfo(modEntry.first).getVerificationInfo().name;
|
|
|
+
|
|
|
+ modVerificationList.push_back(modInfo);
|
|
|
+ }
|
|
|
+
|
|
|
+ MetaString subtitleText;
|
|
|
+ subtitleText.appendTextID("vcmi.lobby.preview.subtitle");
|
|
|
+ subtitleText.replaceRawString(roomDescription.description);
|
|
|
+ subtitleText.replaceRawString(roomDescription.hostAccountDisplayName);
|
|
|
+
|
|
|
+ filledBackground = std::make_shared<FilledTexturePlayerColored>(ImagePath::builtin("DiBoxBck"), Rect(0, 0, pos.w, pos.h));
|
|
|
+ labelTitle = std::make_shared<CLabel>( pos.w / 2, 20, FONT_BIG, ETextAlignment::CENTER, Colors::YELLOW, MetaString::createFromTextID("vcmi.lobby.preview.title").toString());
|
|
|
+ labelSubtitle = std::make_shared<CLabel>( pos.w / 2, 40, FONT_MEDIUM, ETextAlignment::CENTER, Colors::YELLOW, subtitleText.toString());
|
|
|
+
|
|
|
+ labelVersionTitle = std::make_shared<CLabel>( 10, 60, FONT_MEDIUM, ETextAlignment::CENTERLEFT, Colors::YELLOW, MetaString::createFromTextID("vcmi.lobby.preview.version").toString());
|
|
|
+ labelVersionValue = std::make_shared<CLabel>( 10, 80, FONT_MEDIUM, ETextAlignment::CENTERLEFT, Colors::WHITE, roomDescription.gameVersion);
|
|
|
+
|
|
|
+ buttonJoin = std::make_shared<CButton>(Point(10, 360), AnimationPath::builtin("MuBchck"), CButton::tooltip(), [this](){ onJoin(); });
|
|
|
+ buttonClose = std::make_shared<CButton>(Point(100, 360), AnimationPath::builtin("MuBcanc"), CButton::tooltip(), [this](){ onClose(); });
|
|
|
+
|
|
|
+ MetaString joinStatusText;
|
|
|
+ std::string errorMessage = getJoinRoomErrorMessage(roomDescription, modVerificationList);
|
|
|
+ if (!errorMessage.empty())
|
|
|
+ {
|
|
|
+ joinStatusText.appendTextID("vcmi.lobby.preview.error.header");
|
|
|
+ joinStatusText.appendRawString("\n");
|
|
|
+ joinStatusText.appendTextID(errorMessage);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ joinStatusText.appendTextID("vcmi.lobby.preview.allowed");
|
|
|
+
|
|
|
+ labelJoinStatus = std::make_shared<CTextBox>(joinStatusText.toString(), Rect(10, 280, 150, 70), 0, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE);
|
|
|
+
|
|
|
+ const auto & createAccountCardCallback = [participants = roomDescription.participants](size_t index) -> std::shared_ptr<CIntObject>
|
|
|
+ {
|
|
|
+ if(index < participants.size())
|
|
|
+ return std::make_shared<GlobalLobbyRoomAccountCard>(participants[index]);
|
|
|
+ return std::make_shared<CIntObject>();
|
|
|
+ };
|
|
|
+
|
|
|
+ accountListBackground = std::make_shared<TransparentFilledRectangle>(Rect(8, 98, 150, 180), ColorRGBA(0, 0, 0, 64), ColorRGBA(64, 80, 128, 255), 1);
|
|
|
+ accountList = std::make_shared<CListBox>(createAccountCardCallback, Point(10, 116), Point(0, 40), 4, roomDescription.participants.size(), 0, 1 | 4, Rect(130, 0, 160, 160));
|
|
|
+ accountList->setRedrawParent(true);
|
|
|
+ accountListTitle = std::make_shared<CLabel>( 12, 109, FONT_SMALL, ETextAlignment::CENTERLEFT, Colors::YELLOW, MetaString::createFromTextID("vcmi.lobby.preview.players").toString());
|
|
|
+
|
|
|
+ const auto & createModCardCallback = [this](size_t index) -> std::shared_ptr<CIntObject>
|
|
|
+ {
|
|
|
+ if(index < modVerificationList.size())
|
|
|
+ return std::make_shared<GlobalLobbyRoomModCard>(modVerificationList[index]);
|
|
|
+ return std::make_shared<CIntObject>();
|
|
|
+ };
|
|
|
+
|
|
|
+ modListBackground = std::make_shared<TransparentFilledRectangle>(Rect(178, 48, 220, 340), ColorRGBA(0, 0, 0, 64), ColorRGBA(64, 80, 128, 255), 1);
|
|
|
+ modList = std::make_shared<CListBox>(createModCardCallback, Point(180, 66), Point(0, 40), 8, modVerificationList.size(), 0, 1 | 4, Rect(200, 0, 320, 320));
|
|
|
+ modList->setRedrawParent(true);
|
|
|
+ modListTitle = std::make_shared<CLabel>( 182, 59, FONT_SMALL, ETextAlignment::CENTERLEFT, Colors::YELLOW, MetaString::createFromTextID("vcmi.lobby.preview.mods").toString());
|
|
|
+
|
|
|
+ buttonJoin->block(!errorMessage.empty());
|
|
|
+ filledBackground->playerColored(PlayerColor(1));
|
|
|
+ center();
|
|
|
+}
|
|
|
+
|
|
|
+void GlobalLobbyRoomWindow::onJoin()
|
|
|
+{
|
|
|
+ window->doJoinRoom(roomUUID);
|
|
|
+}
|
|
|
+
|
|
|
+void GlobalLobbyRoomWindow::onClose()
|
|
|
+{
|
|
|
+ close();
|
|
|
+}
|