2022-10-12 23:51:55 +02:00
|
|
|
/*
|
|
|
|
* windownewmap.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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-09-18 01:23:17 +02:00
|
|
|
#include "StdInc.h"
|
|
|
|
#include "../lib/mapping/CMap.h"
|
|
|
|
#include "../lib/rmg/CRmgTemplateStorage.h"
|
|
|
|
#include "../lib/rmg/CRmgTemplate.h"
|
|
|
|
#include "../lib/rmg/CMapGenerator.h"
|
|
|
|
#include "../lib/VCMI_Lib.h"
|
|
|
|
#include "../lib/mapping/CMapEditManager.h"
|
2023-05-24 00:14:06 +02:00
|
|
|
#include "../lib/mapping/MapFormat.h"
|
2022-09-18 01:23:17 +02:00
|
|
|
#include "../lib/CGeneralTextHandler.h"
|
|
|
|
|
|
|
|
#include "windownewmap.h"
|
|
|
|
#include "ui_windownewmap.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "generatorprogress.h"
|
|
|
|
|
|
|
|
WindowNewMap::WindowNewMap(QWidget *parent) :
|
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::WindowNewMap)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
|
|
|
|
setWindowModality(Qt::ApplicationModal);
|
2023-04-22 16:47:25 +02:00
|
|
|
|
|
|
|
for(auto * combo : {ui->humanCombo, ui->cpuCombo, ui->humanTeamsCombo, ui->cpuTeamsCombo})
|
|
|
|
combo->clear();
|
|
|
|
|
|
|
|
//prepare human players combo box
|
|
|
|
for(int i = 0; i <= PlayerColor::PLAYER_LIMIT_I; ++i)
|
|
|
|
{
|
|
|
|
ui->humanCombo->addItem(!i ? randomString : QString::number(players.at(i)));
|
|
|
|
ui->humanCombo->setItemData(i, QVariant(players.at(i)));
|
|
|
|
|
|
|
|
ui->cpuCombo->addItem(!i ? randomString : QString::number(cpuPlayers.at(i)));
|
|
|
|
ui->cpuCombo->setItemData(i, QVariant(cpuPlayers.at(i)));
|
|
|
|
|
|
|
|
ui->humanTeamsCombo->addItem(!i ? randomString : QString::number(cpuPlayers.at(i)));
|
|
|
|
ui->humanTeamsCombo->setItemData(i, QVariant(cpuPlayers.at(i)));
|
|
|
|
|
|
|
|
ui->cpuTeamsCombo->addItem(!i ? randomString : QString::number(cpuPlayers.at(i)));
|
|
|
|
ui->cpuTeamsCombo->setItemData(i, QVariant(cpuPlayers.at(i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
for(auto * combo : {ui->humanCombo, ui->cpuCombo, ui->humanTeamsCombo, ui->cpuTeamsCombo})
|
|
|
|
combo->setCurrentIndex(0);
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
loadUserSettings();
|
|
|
|
|
2022-09-19 00:46:01 +02:00
|
|
|
show();
|
2022-09-18 01:23:17 +02:00
|
|
|
|
2022-09-19 00:46:01 +02:00
|
|
|
//setup initial parameters
|
2022-12-03 01:03:44 +02:00
|
|
|
int width = ui->widthTxt->text().toInt();
|
|
|
|
int height = ui->heightTxt->text().toInt();
|
|
|
|
mapGenOptions.setWidth(width ? width : 1);
|
|
|
|
mapGenOptions.setHeight(height ? height : 1);
|
2022-09-18 01:23:17 +02:00
|
|
|
bool twoLevel = ui->twoLevelCheck->isChecked();
|
|
|
|
mapGenOptions.setHasTwoLevels(twoLevel);
|
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
|
|
|
|
WindowNewMap::~WindowNewMap()
|
|
|
|
{
|
|
|
|
saveUserSettings();
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowNewMap::loadUserSettings()
|
|
|
|
{
|
2022-09-19 00:46:01 +02:00
|
|
|
//load window settings
|
2022-09-18 01:23:17 +02:00
|
|
|
QSettings s(Ui::teamName, Ui::appName);
|
|
|
|
|
|
|
|
auto width = s.value(newMapWidth);
|
|
|
|
if (width.isValid())
|
|
|
|
{
|
|
|
|
ui->widthTxt->setText(width.toString());
|
|
|
|
}
|
|
|
|
auto height = s.value(newMapHeight);
|
|
|
|
if (height.isValid())
|
|
|
|
{
|
|
|
|
ui->heightTxt->setText(height.toString());
|
|
|
|
}
|
|
|
|
auto twoLevel = s.value(newMapTwoLevel);
|
|
|
|
if (twoLevel.isValid())
|
|
|
|
{
|
|
|
|
ui->twoLevelCheck->setChecked(twoLevel.toBool());
|
|
|
|
}
|
|
|
|
auto generateRandom = s.value(newMapGenerateRandom);
|
|
|
|
if (generateRandom.isValid())
|
|
|
|
{
|
|
|
|
ui->randomMapCheck->setChecked(generateRandom.toBool());
|
|
|
|
}
|
|
|
|
auto players = s.value(newMapPlayers);
|
|
|
|
if (players.isValid())
|
|
|
|
{
|
|
|
|
ui->humanCombo->setCurrentIndex(players.toInt());
|
|
|
|
}
|
|
|
|
auto cpuPlayers = s.value(newMapCpuPlayers);
|
|
|
|
if (cpuPlayers.isValid())
|
|
|
|
{
|
|
|
|
ui->cpuCombo->setCurrentIndex(cpuPlayers.toInt());
|
|
|
|
}
|
2023-04-22 16:47:25 +02:00
|
|
|
auto teams = s.value(newMapHumanTeams);
|
|
|
|
if(teams.isValid())
|
|
|
|
{
|
|
|
|
ui->humanTeamsCombo->setCurrentIndex(teams.toInt());
|
|
|
|
}
|
|
|
|
auto cputeams = s.value(newMapCpuTeams);
|
|
|
|
if(cputeams.isValid())
|
|
|
|
{
|
|
|
|
ui->cpuTeamsCombo->setCurrentIndex(cputeams.toInt());
|
|
|
|
}
|
|
|
|
|
2022-09-18 01:23:17 +02:00
|
|
|
auto waterContent = s.value(newMapWaterContent);
|
|
|
|
if (waterContent.isValid())
|
|
|
|
{
|
|
|
|
switch (waterContent.toInt())
|
|
|
|
{
|
|
|
|
case EWaterContent::RANDOM:
|
|
|
|
ui->waterOpt1->setChecked(true); break;
|
|
|
|
case EWaterContent::NONE:
|
|
|
|
ui->waterOpt2->setChecked(true); break;
|
|
|
|
case EWaterContent::NORMAL:
|
|
|
|
ui->waterOpt3->setChecked(true); break;
|
|
|
|
case EWaterContent::ISLANDS:
|
|
|
|
ui->waterOpt4->setChecked(true); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
auto monsterStrength = s.value(newMapMonsterStrength);
|
|
|
|
if (monsterStrength.isValid())
|
|
|
|
{
|
|
|
|
switch (monsterStrength.toInt())
|
|
|
|
{
|
|
|
|
case EMonsterStrength::RANDOM:
|
|
|
|
ui->monsterOpt1->setChecked(true); break;
|
|
|
|
case EMonsterStrength::GLOBAL_WEAK:
|
|
|
|
ui->monsterOpt2->setChecked(true); break;
|
|
|
|
case EMonsterStrength::GLOBAL_NORMAL:
|
|
|
|
ui->monsterOpt3->setChecked(true); break;
|
|
|
|
case EMonsterStrength::GLOBAL_STRONG:
|
|
|
|
ui->monsterOpt4->setChecked(true); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto templateName = s.value(newMapTemplate);
|
|
|
|
if (templateName.isValid())
|
|
|
|
{
|
2022-09-19 00:46:01 +02:00
|
|
|
updateTemplateList();
|
2022-09-18 01:23:17 +02:00
|
|
|
|
2022-09-19 00:46:01 +02:00
|
|
|
auto* templ = VLC->tplh->getTemplate(templateName.toString().toStdString());
|
|
|
|
if (templ)
|
|
|
|
{
|
|
|
|
ui->templateCombo->setCurrentText(templateName.toString());
|
|
|
|
//TODO: validate inside this method
|
|
|
|
mapGenOptions.setMapTemplate(templ);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//Display problem on status bar
|
|
|
|
}
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowNewMap::saveUserSettings()
|
|
|
|
{
|
|
|
|
QSettings s(Ui::teamName, Ui::appName);
|
|
|
|
s.setValue(newMapWidth, ui->widthTxt->text().toInt());
|
|
|
|
s.setValue(newMapHeight, ui->heightTxt->text().toInt());
|
|
|
|
s.setValue(newMapTwoLevel, ui->twoLevelCheck->isChecked());
|
|
|
|
s.setValue(newMapGenerateRandom, ui->randomMapCheck->isChecked());
|
|
|
|
|
|
|
|
s.setValue(newMapPlayers,ui->humanCombo->currentIndex());
|
|
|
|
s.setValue(newMapCpuPlayers,ui->cpuCombo->currentIndex());
|
2023-04-22 16:47:25 +02:00
|
|
|
s.setValue(newMapHumanTeams, ui->humanTeamsCombo->currentIndex());
|
|
|
|
s.setValue(newMapCpuTeams, ui->cpuTeamsCombo->currentIndex());
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
EWaterContent::EWaterContent water = EWaterContent::RANDOM;
|
|
|
|
if(ui->waterOpt1->isChecked())
|
|
|
|
water = EWaterContent::RANDOM;
|
|
|
|
else if(ui->waterOpt2->isChecked())
|
|
|
|
water = EWaterContent::NONE;
|
|
|
|
else if(ui->waterOpt3->isChecked())
|
|
|
|
water = EWaterContent::NORMAL;
|
|
|
|
else if(ui->waterOpt4->isChecked())
|
|
|
|
water = EWaterContent::ISLANDS;
|
|
|
|
s.setValue(newMapWaterContent, static_cast<int>(water));
|
|
|
|
|
|
|
|
EMonsterStrength::EMonsterStrength monster = EMonsterStrength::RANDOM;
|
|
|
|
if(ui->monsterOpt1->isChecked())
|
|
|
|
monster = EMonsterStrength::RANDOM;
|
|
|
|
else if(ui->monsterOpt2->isChecked())
|
|
|
|
monster = EMonsterStrength::GLOBAL_WEAK;
|
|
|
|
else if(ui->monsterOpt3->isChecked())
|
|
|
|
monster = EMonsterStrength::GLOBAL_NORMAL;
|
|
|
|
else if(ui->monsterOpt4->isChecked())
|
|
|
|
monster = EMonsterStrength::GLOBAL_STRONG;
|
|
|
|
s.setValue(newMapMonsterStrength, static_cast<int>(monster));
|
|
|
|
|
|
|
|
auto templateName = ui->templateCombo->currentText();
|
2022-09-19 00:46:01 +02:00
|
|
|
if (templateName.size())
|
2022-09-18 01:23:17 +02:00
|
|
|
{
|
|
|
|
s.setValue(newMapTemplate, templateName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowNewMap::on_cancelButton_clicked()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void generateRandomMap(CMapGenerator & gen, MainWindow * window)
|
|
|
|
{
|
|
|
|
window->controller.setMap(gen.generate());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<CMap> generateEmptyMap(CMapGenOptions & options)
|
|
|
|
{
|
|
|
|
std::unique_ptr<CMap> map(new CMap);
|
|
|
|
map->version = EMapFormat::VCMI;
|
|
|
|
map->width = options.getWidth();
|
|
|
|
map->height = options.getHeight();
|
|
|
|
map->twoLevel = options.getHasTwoLevels();
|
|
|
|
|
|
|
|
map->initTerrain();
|
|
|
|
map->getEditManager()->clearTerrain(&CRandomGenerator::getDefault());
|
|
|
|
|
2022-12-07 18:05:47 +02:00
|
|
|
return map;
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
|
|
|
|
2022-10-08 20:55:15 +02:00
|
|
|
void WindowNewMap::on_okButton_clicked()
|
2022-09-18 01:23:17 +02:00
|
|
|
{
|
|
|
|
EWaterContent::EWaterContent water = EWaterContent::RANDOM;
|
|
|
|
EMonsterStrength::EMonsterStrength monster = EMonsterStrength::RANDOM;
|
|
|
|
if(ui->waterOpt1->isChecked())
|
|
|
|
water = EWaterContent::RANDOM;
|
|
|
|
if(ui->waterOpt2->isChecked())
|
|
|
|
water = EWaterContent::NONE;
|
|
|
|
if(ui->waterOpt3->isChecked())
|
|
|
|
water = EWaterContent::NORMAL;
|
|
|
|
if(ui->waterOpt4->isChecked())
|
|
|
|
water = EWaterContent::ISLANDS;
|
|
|
|
if(ui->monsterOpt1->isChecked())
|
|
|
|
monster = EMonsterStrength::RANDOM;
|
|
|
|
if(ui->monsterOpt2->isChecked())
|
|
|
|
monster = EMonsterStrength::GLOBAL_WEAK;
|
|
|
|
if(ui->monsterOpt3->isChecked())
|
|
|
|
monster = EMonsterStrength::GLOBAL_NORMAL;
|
|
|
|
if(ui->monsterOpt4->isChecked())
|
|
|
|
monster = EMonsterStrength::GLOBAL_STRONG;
|
|
|
|
|
|
|
|
mapGenOptions.setWaterContent(water);
|
|
|
|
mapGenOptions.setMonsterStrength(monster);
|
|
|
|
|
|
|
|
std::unique_ptr<CMap> nmap;
|
|
|
|
if(ui->randomMapCheck->isChecked())
|
|
|
|
{
|
|
|
|
//verify map template
|
|
|
|
if(mapGenOptions.getPossibleTemplates().empty())
|
|
|
|
{
|
2023-07-27 19:01:20 +02:00
|
|
|
QMessageBox::warning(this, tr("No template"), tr("No template for parameters scecified. Random map cannot be generated."));
|
2022-09-18 01:23:17 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-09-19 00:42:38 +02:00
|
|
|
int seed = std::time(nullptr);
|
|
|
|
if(ui->checkSeed->isChecked() && !ui->lineSeed->text().isEmpty())
|
|
|
|
seed = ui->lineSeed->text().toInt();
|
|
|
|
|
|
|
|
CMapGenerator generator(mapGenOptions, seed);
|
2022-09-18 01:23:17 +02:00
|
|
|
auto progressBarWnd = new GeneratorProgress(generator, this);
|
|
|
|
progressBarWnd->show();
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto f = std::async(std::launch::async, &CMapGenerator::generate, &generator);
|
|
|
|
progressBarWnd->update();
|
|
|
|
nmap = f.get();
|
|
|
|
}
|
|
|
|
catch(const std::exception & e)
|
|
|
|
{
|
2023-07-27 19:01:20 +02:00
|
|
|
QMessageBox::critical(this, tr("RMG failure"), e.what());
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto f = std::async(std::launch::async, &::generateEmptyMap, std::ref(mapGenOptions));
|
|
|
|
nmap = f.get();
|
|
|
|
}
|
|
|
|
|
2023-04-17 01:01:29 +02:00
|
|
|
nmap->mods = MapController::modAssessmentAll();
|
2022-09-18 01:23:17 +02:00
|
|
|
static_cast<MainWindow*>(parent())->controller.setMap(std::move(nmap));
|
|
|
|
static_cast<MainWindow*>(parent())->initializeMap(true);
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowNewMap::on_sizeCombo_activated(int index)
|
|
|
|
{
|
2023-04-22 16:47:25 +02:00
|
|
|
ui->widthTxt->setText(QString::number(mapSizes.at(index).first));
|
|
|
|
ui->heightTxt->setText(QString::number(mapSizes.at(index).second));
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WindowNewMap::on_twoLevelCheck_stateChanged(int arg1)
|
|
|
|
{
|
|
|
|
bool twoLevel = ui->twoLevelCheck->isChecked();
|
|
|
|
mapGenOptions.setHasTwoLevels(twoLevel);
|
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WindowNewMap::on_humanCombo_activated(int index)
|
|
|
|
{
|
2023-04-22 16:47:25 +02:00
|
|
|
int humans = ui->humanCombo->currentData().toInt();
|
|
|
|
if(humans > PlayerColor::PLAYER_LIMIT_I)
|
2022-09-18 01:23:17 +02:00
|
|
|
{
|
2023-04-22 16:47:25 +02:00
|
|
|
humans = PlayerColor::PLAYER_LIMIT_I;
|
2022-09-18 01:23:17 +02:00
|
|
|
ui->humanCombo->setCurrentIndex(humans);
|
|
|
|
}
|
|
|
|
|
|
|
|
mapGenOptions.setPlayerCount(humans);
|
|
|
|
|
|
|
|
int teams = mapGenOptions.getTeamCount();
|
|
|
|
if(teams > humans - 1)
|
|
|
|
{
|
2023-04-22 18:38:39 +02:00
|
|
|
teams = humans > 0 ? humans - 1 : CMapGenOptions::RANDOM_SIZE;
|
2023-04-22 16:47:25 +02:00
|
|
|
ui->humanTeamsCombo->setCurrentIndex(teams + 1); //skip one element because first is random
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cpu = mapGenOptions.getCompOnlyPlayerCount();
|
2023-04-22 16:47:25 +02:00
|
|
|
if(cpu > PlayerColor::PLAYER_LIMIT_I - humans)
|
2022-09-18 01:23:17 +02:00
|
|
|
{
|
2023-04-22 16:47:25 +02:00
|
|
|
cpu = PlayerColor::PLAYER_LIMIT_I - humans;
|
|
|
|
ui->cpuCombo->setCurrentIndex(cpu + 1); //skip one element because first is random
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cpuTeams = mapGenOptions.getCompOnlyTeamCount(); //comp only players - 1
|
|
|
|
if(cpuTeams > cpu - 1)
|
|
|
|
{
|
2023-04-22 18:38:39 +02:00
|
|
|
cpuTeams = cpu > 0 ? cpu - 1 : CMapGenOptions::RANDOM_SIZE;
|
2023-04-22 16:47:25 +02:00
|
|
|
ui->cpuTeamsCombo->setCurrentIndex(cpuTeams + 1); //skip one element because first is random
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WindowNewMap::on_cpuCombo_activated(int index)
|
|
|
|
{
|
|
|
|
int humans = mapGenOptions.getPlayerCount();
|
2023-04-22 16:47:25 +02:00
|
|
|
int cpu = ui->cpuCombo->currentData().toInt();
|
|
|
|
if(cpu > PlayerColor::PLAYER_LIMIT_I - humans)
|
2022-09-18 01:23:17 +02:00
|
|
|
{
|
2023-04-22 16:47:25 +02:00
|
|
|
cpu = PlayerColor::PLAYER_LIMIT_I - humans;
|
|
|
|
ui->cpuCombo->setCurrentIndex(cpu + 1); //skip one element because first is random
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
2023-04-22 16:47:25 +02:00
|
|
|
|
2022-09-18 01:23:17 +02:00
|
|
|
mapGenOptions.setCompOnlyPlayerCount(cpu);
|
2023-04-22 16:47:25 +02:00
|
|
|
|
|
|
|
int cpuTeams = mapGenOptions.getCompOnlyTeamCount(); //comp only players - 1
|
|
|
|
if(cpuTeams > cpu - 1)
|
|
|
|
{
|
2023-04-22 18:38:39 +02:00
|
|
|
cpuTeams = cpu > 0 ? cpu - 1 : CMapGenOptions::RANDOM_SIZE;
|
2023-04-22 16:47:25 +02:00
|
|
|
ui->cpuTeamsCombo->setCurrentIndex(cpuTeams + 1); //skip one element because first is random
|
|
|
|
}
|
|
|
|
|
2022-09-18 01:23:17 +02:00
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WindowNewMap::on_randomMapCheck_stateChanged(int arg1)
|
|
|
|
{
|
|
|
|
randomMap = ui->randomMapCheck->isChecked();
|
|
|
|
ui->templateCombo->setEnabled(randomMap);
|
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WindowNewMap::on_templateCombo_activated(int index)
|
|
|
|
{
|
|
|
|
if(index == 0)
|
|
|
|
{
|
|
|
|
mapGenOptions.setMapTemplate(nullptr);
|
|
|
|
return;
|
|
|
|
}
|
2022-09-19 01:17:39 +02:00
|
|
|
|
|
|
|
auto * templ = data_cast<const CRmgTemplate>(ui->templateCombo->currentData().toLongLong());
|
2022-09-18 01:23:17 +02:00
|
|
|
mapGenOptions.setMapTemplate(templ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WindowNewMap::on_widthTxt_textChanged(const QString &arg1)
|
|
|
|
{
|
|
|
|
int sz = arg1.toInt();
|
|
|
|
if(sz > 1)
|
|
|
|
{
|
|
|
|
mapGenOptions.setWidth(arg1.toInt());
|
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WindowNewMap::on_heightTxt_textChanged(const QString &arg1)
|
|
|
|
{
|
|
|
|
int sz = arg1.toInt();
|
|
|
|
if(sz > 1)
|
|
|
|
{
|
|
|
|
mapGenOptions.setHeight(arg1.toInt());
|
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowNewMap::updateTemplateList()
|
|
|
|
{
|
|
|
|
ui->templateCombo->clear();
|
|
|
|
ui->templateCombo->setCurrentIndex(-1);
|
|
|
|
|
|
|
|
if(!randomMap)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mapGenOptions.setMapTemplate(nullptr);
|
|
|
|
auto templates = mapGenOptions.getPossibleTemplates();
|
|
|
|
if(templates.empty())
|
|
|
|
return;
|
|
|
|
|
2022-09-19 01:17:39 +02:00
|
|
|
ui->templateCombo->addItem("[default]", 0);
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
for(auto * templ : templates)
|
|
|
|
{
|
2022-09-19 01:17:39 +02:00
|
|
|
ui->templateCombo->addItem(QString::fromStdString(templ->getName()), data_cast(templ));
|
2022-09-18 01:23:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ui->templateCombo->setCurrentIndex(0);
|
|
|
|
}
|
2022-09-19 00:42:38 +02:00
|
|
|
|
|
|
|
void WindowNewMap::on_checkSeed_toggled(bool checked)
|
|
|
|
{
|
|
|
|
ui->lineSeed->setEnabled(checked);
|
|
|
|
}
|
|
|
|
|
2023-04-22 16:47:25 +02:00
|
|
|
|
|
|
|
void WindowNewMap::on_humanTeamsCombo_activated(int index)
|
|
|
|
{
|
|
|
|
int humans = mapGenOptions.getPlayerCount();
|
|
|
|
int teams = ui->humanTeamsCombo->currentData().toInt();
|
|
|
|
if(teams >= humans)
|
|
|
|
{
|
2023-04-22 18:38:39 +02:00
|
|
|
teams = humans > 0 ? humans - 1 : CMapGenOptions::RANDOM_SIZE;
|
2023-04-22 16:47:25 +02:00
|
|
|
ui->humanTeamsCombo->setCurrentIndex(teams + 1); //skip one element because first is random
|
|
|
|
}
|
|
|
|
|
|
|
|
mapGenOptions.setTeamCount(teams);
|
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WindowNewMap::on_cpuTeamsCombo_activated(int index)
|
|
|
|
{
|
|
|
|
int cpu = mapGenOptions.getCompOnlyPlayerCount();
|
2023-04-22 18:38:39 +02:00
|
|
|
int cpuTeams = ui->cpuTeamsCombo->currentData().toInt();
|
|
|
|
if(cpuTeams >= cpu)
|
2023-04-22 16:47:25 +02:00
|
|
|
{
|
2023-04-22 18:38:39 +02:00
|
|
|
cpuTeams = cpu > 0 ? cpu - 1 : CMapGenOptions::RANDOM_SIZE;
|
|
|
|
ui->cpuTeamsCombo->setCurrentIndex(cpuTeams + 1); //skip one element because first is random
|
2023-04-22 16:47:25 +02:00
|
|
|
}
|
|
|
|
|
2023-04-22 18:38:39 +02:00
|
|
|
mapGenOptions.setCompOnlyTeamCount(cpuTeams);
|
2023-04-22 16:47:25 +02:00
|
|
|
updateTemplateList();
|
|
|
|
}
|
|
|
|
|