2022-10-12 23:51:55 +02:00
|
|
|
/*
|
|
|
|
* windownewmap.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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-09-24 22:55:05 +02:00
|
|
|
#pragma once
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
#include <QDialog>
|
2024-06-13 05:38:47 +02:00
|
|
|
|
|
|
|
#include "../lib/mapping/CMapHeader.h"
|
2022-09-18 01:23:17 +02:00
|
|
|
#include "../lib/rmg/CMapGenOptions.h"
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class WindowNewMap;
|
|
|
|
}
|
|
|
|
|
2024-02-29 21:20:35 +02:00
|
|
|
class WindowNewMap : public QDialog
|
2022-09-18 01:23:17 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2024-02-29 21:05:20 +02:00
|
|
|
const QString newMapWindow = "NewMapWindow/Settings";
|
2022-09-18 01:23:17 +02:00
|
|
|
const QString newMapWidth = "NewMapWindow/Width";
|
|
|
|
const QString newMapHeight = "NewMapWindow/Height";
|
|
|
|
const QString newMapTwoLevel = "NewMapWindow/TwoLevel";
|
|
|
|
const QString newMapGenerateRandom = "NewMapWindow/GenerateRandom";
|
|
|
|
const QString newMapPlayers = "NewMapWindow/Players"; //map index
|
|
|
|
const QString newMapCpuPlayers = "NewMapWindow/CpuPlayers"; //map index
|
2023-04-22 16:47:25 +02:00
|
|
|
const QString newMapHumanTeams = "NewMapWindow/HumanTeams"; //map index
|
|
|
|
const QString newMapCpuTeams = "NewMapWindow/CpuTeams"; //map index
|
2022-09-18 01:23:17 +02:00
|
|
|
const QString newMapWaterContent = "NewMapWindow/WaterContent";
|
|
|
|
const QString newMapMonsterStrength = "NewMapWindow/MonsterStrength";
|
|
|
|
const QString newMapTemplate = "NewMapWindow/Template";
|
2023-04-22 16:47:25 +02:00
|
|
|
|
|
|
|
const QString randomString = "Random";
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
const std::map<int, int> players
|
|
|
|
{
|
|
|
|
{0, CMapGenOptions::RANDOM_SIZE},
|
|
|
|
{1, 1},
|
|
|
|
{2, 2},
|
|
|
|
{3, 3},
|
|
|
|
{4, 4},
|
|
|
|
{5, 5},
|
|
|
|
{6, 6},
|
|
|
|
{7, 7},
|
|
|
|
{8, 8}
|
|
|
|
};
|
|
|
|
|
|
|
|
const std::map<int, int> cpuPlayers
|
|
|
|
{
|
|
|
|
{0, CMapGenOptions::RANDOM_SIZE},
|
|
|
|
{1, 0},
|
|
|
|
{2, 1},
|
|
|
|
{3, 2},
|
|
|
|
{4, 3},
|
|
|
|
{5, 4},
|
|
|
|
{6, 5},
|
|
|
|
{7, 6},
|
|
|
|
{8, 7}
|
|
|
|
};
|
2024-06-13 05:38:47 +02:00
|
|
|
|
2023-04-22 16:47:25 +02:00
|
|
|
const std::map<int, std::pair<int, int>> mapSizes
|
|
|
|
{
|
2024-02-29 13:45:08 +02:00
|
|
|
{0, {CMapHeader::MAP_SIZE_SMALL, CMapHeader::MAP_SIZE_SMALL}},
|
|
|
|
{1, {CMapHeader::MAP_SIZE_MIDDLE, CMapHeader::MAP_SIZE_MIDDLE}},
|
|
|
|
{2, {CMapHeader::MAP_SIZE_LARGE, CMapHeader::MAP_SIZE_LARGE}},
|
|
|
|
{3, {CMapHeader::MAP_SIZE_XLARGE, CMapHeader::MAP_SIZE_XLARGE}},
|
|
|
|
{4, {CMapHeader::MAP_SIZE_HUGE, CMapHeader::MAP_SIZE_HUGE}},
|
|
|
|
{5, {CMapHeader::MAP_SIZE_XHUGE, CMapHeader::MAP_SIZE_XHUGE}},
|
|
|
|
{6, {CMapHeader::MAP_SIZE_GIANT, CMapHeader::MAP_SIZE_GIANT}},
|
2023-04-22 16:47:25 +02:00
|
|
|
};
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit WindowNewMap(QWidget *parent = nullptr);
|
|
|
|
~WindowNewMap();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_cancelButton_clicked();
|
|
|
|
|
2022-10-08 20:55:15 +02:00
|
|
|
void on_okButton_clicked();
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
void on_sizeCombo_activated(int index);
|
|
|
|
|
|
|
|
void on_twoLevelCheck_stateChanged(int arg1);
|
|
|
|
|
|
|
|
void on_humanCombo_activated(int index);
|
|
|
|
|
|
|
|
void on_cpuCombo_activated(int index);
|
|
|
|
|
|
|
|
void on_randomMapCheck_stateChanged(int arg1);
|
|
|
|
|
|
|
|
void on_templateCombo_activated(int index);
|
|
|
|
|
|
|
|
void on_widthTxt_textChanged(const QString &arg1);
|
|
|
|
|
|
|
|
void on_heightTxt_textChanged(const QString &arg1);
|
|
|
|
|
2022-09-19 00:42:38 +02:00
|
|
|
void on_checkSeed_toggled(bool checked);
|
|
|
|
|
2023-04-22 16:47:25 +02:00
|
|
|
void on_humanTeamsCombo_activated(int index);
|
|
|
|
|
|
|
|
void on_cpuTeamsCombo_activated(int index);
|
|
|
|
|
2022-09-18 01:23:17 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
void updateTemplateList();
|
|
|
|
|
2024-02-29 21:05:20 +02:00
|
|
|
bool loadUserSettings();
|
2022-09-18 01:23:17 +02:00
|
|
|
void saveUserSettings();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::WindowNewMap *ui;
|
|
|
|
|
|
|
|
CMapGenOptions mapGenOptions;
|
|
|
|
bool randomMap = false;
|
|
|
|
};
|