2018-01-05 19:21:07 +02:00
|
|
|
/*
|
|
|
|
* 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"
|
2020-07-07 13:45:53 +02:00
|
|
|
#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"
|
2018-01-05 19:21:07 +02:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
class CMapGenOptions;
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|
|
|
|
|
2018-01-05 19:21:07 +02:00
|
|
|
class CToggleButton;
|
|
|
|
class CLabel;
|
|
|
|
class CLabelGroup;
|
2022-12-13 01:47:29 +02:00
|
|
|
class CSlider;
|
2018-01-05 19:21:07 +02:00
|
|
|
|
2022-12-12 09:48:39 +02:00
|
|
|
class RandomMapTab : public InterfaceObjectConfigurable
|
2018-01-05 19:21:07 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
RandomMapTab();
|
|
|
|
|
|
|
|
void updateMapInfoByHost();
|
|
|
|
void setMapGenOptions(std::shared_ptr<CMapGenOptions> opts);
|
2022-12-13 02:38:18 +02:00
|
|
|
void setTemplate(const CRmgTemplate *);
|
2018-01-05 19:21:07 +02:00
|
|
|
|
|
|
|
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);
|
2018-01-05 19:21:07 +02:00
|
|
|
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;
|
2018-01-05 19:21:07 +02:00
|
|
|
};
|
2022-12-13 01:47:29 +02:00
|
|
|
|
2022-12-16 00:15:53 +02:00
|
|
|
class TemplatesDropBox : public InterfaceObjectConfigurable
|
2022-12-13 01:47:29 +02:00
|
|
|
{
|
2022-12-16 00:15:53 +02:00
|
|
|
struct ListItem : public InterfaceObjectConfigurable
|
2022-12-13 01:47:29 +02:00
|
|
|
{
|
2022-12-15 22:57:10 +02:00
|
|
|
TemplatesDropBox & dropBox;
|
2022-12-13 02:38:18 +02:00
|
|
|
const CRmgTemplate * item = nullptr;
|
|
|
|
|
2022-12-16 00:15:53 +02:00
|
|
|
ListItem(const JsonNode &, TemplatesDropBox &, Point position);
|
2022-12-13 02:38:18 +02:00
|
|
|
void updateItem(int index, const CRmgTemplate * item = nullptr);
|
2022-12-13 01:47:29 +02:00
|
|
|
|
|
|
|
void hover(bool on) override;
|
2022-12-13 02:38:18 +02:00
|
|
|
void clickLeft(tribool down, bool previousState) override;
|
2022-12-13 01:47:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2022-12-15 22:57:10 +02:00
|
|
|
TemplatesDropBox(RandomMapTab & randomMapTab, int3 size);
|
2022-12-13 01:47:29 +02:00
|
|
|
|
|
|
|
void hover(bool on) override;
|
|
|
|
void clickLeft(tribool down, bool previousState) override;
|
2022-12-13 02:38:18 +02:00
|
|
|
void setTemplate(const CRmgTemplate *);
|
2022-12-13 01:47:29 +02:00
|
|
|
|
2022-12-16 00:15:53 +02:00
|
|
|
protected:
|
|
|
|
std::shared_ptr<CIntObject> buildCustomWidget(const JsonNode & config) override;
|
|
|
|
|
2022-12-13 01:47:29 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
void sliderMove(int slidPos);
|
2022-12-13 02:38:18 +02:00
|
|
|
void updateListItems();
|
2022-12-13 01:47:29 +02:00
|
|
|
|
2022-12-15 22:57:10 +02:00
|
|
|
RandomMapTab & randomMapTab;
|
2022-12-13 01:47:29 +02:00
|
|
|
std::vector<std::shared_ptr<ListItem>> listItems;
|
|
|
|
|
2022-12-13 02:38:18 +02:00
|
|
|
std::vector<const CRmgTemplate *> curItems;
|
|
|
|
|
2022-12-13 01:47:29 +02:00
|
|
|
};
|
2022-12-17 01:53:26 +02:00
|
|
|
|
|
|
|
class TeamAlignmentsWidget: public CIntObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TeamAlignmentsWidget(RandomMapTab & randomMapTab);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
RandomMapTab & randomMapTab;
|
|
|
|
|
|
|
|
std::shared_ptr<CFilledTexture> background;
|
|
|
|
std::shared_ptr<CLabelGroup> labels;
|
|
|
|
std::shared_ptr<CButton> buttonOk, buttonCancel;
|
|
|
|
std::vector<std::shared_ptr<CToggleGroup>> teams;
|
|
|
|
};
|