1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/client/lobby/RandomMapTab.h

66 lines
1.7 KiB
C++
Raw Normal View History

/*
* RandomMapTab.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 "CSelectionBase.h"
#include "../../lib/FunctionList.h"
#include "../../lib/GameConstants.h"
2022-12-13 02:38:18 +02:00
#include "../../lib/rmg/CRmgTemplate.h"
2022-12-12 09:48:39 +02:00
#include "../gui/InterfaceObjectConfigurable.h"
VCMI_LIB_NAMESPACE_BEGIN
class CMapGenOptions;
VCMI_LIB_NAMESPACE_END
class CToggleButton;
class CLabel;
class CLabelGroup;
2022-12-13 01:47:29 +02:00
class CSlider;
2022-12-17 06:19:16 +02:00
class CPicture;
2022-12-12 09:48:39 +02:00
class RandomMapTab : public InterfaceObjectConfigurable
{
public:
RandomMapTab();
void updateMapInfoByHost();
void setMapGenOptions(std::shared_ptr<CMapGenOptions> opts);
2022-12-13 02:38:18 +02:00
void setTemplate(const CRmgTemplate *);
2022-12-17 06:19:16 +02:00
CMapGenOptions & obtainMapGenOptions() {return *mapGenOptions;}
CFunctionList<void(std::shared_ptr<CMapInfo>, std::shared_ptr<CMapGenOptions>)> mapInfoChanged;
private:
2022-12-14 02:37:11 +02:00
void deactivateButtonsFrom(CToggleGroup & group, const std::set<int> & allowed);
std::vector<int> getPossibleMapSizes();
std::shared_ptr<CMapGenOptions> mapGenOptions;
std::shared_ptr<CMapInfo> mapInfo;
2022-12-14 02:37:11 +02:00
//options allowed - need to store as impact each other
std::set<int> playerCountAllowed, playerTeamsAllowed, compCountAllowed, compTeamsAllowed;
};
2022-12-13 01:47:29 +02:00
class TeamAlignmentsWidget: public InterfaceObjectConfigurable
{
public:
TeamAlignmentsWidget(RandomMapTab & randomMapTab);
private:
std::shared_ptr<CFilledTexture> background;
std::shared_ptr<CLabelGroup> labels;
std::shared_ptr<CButton> buttonOk, buttonCancel;
2022-12-17 06:19:16 +02:00
std::vector<std::shared_ptr<CToggleGroup>> players;
std::vector<std::shared_ptr<CIntObject>> placeholders;
};