mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-16 10:19:47 +02:00
113 lines
3.3 KiB
C++
113 lines
3.3 KiB
C++
#include "StdInc.h"
|
|
#include "csettingsview_moc.h"
|
|
#include "ui_csettingsview_moc.h"
|
|
|
|
#include "../../lib/CConfigHandler.h"
|
|
#include "../../lib/VCMIDirs.h"
|
|
|
|
void CSettingsView::loadSettings()
|
|
{
|
|
int resX = settings["video"]["screenRes"]["width"].Float();
|
|
int resY = settings["video"]["screenRes"]["height"].Float();
|
|
|
|
int resIndex = ui->comboBoxResolution->findText(QString("%1x%2").arg(resX).arg(resY));
|
|
|
|
ui->comboBoxResolution->setCurrentIndex(resIndex);
|
|
ui->comboBoxFullScreen->setCurrentIndex(settings["video"]["fullscreen"].Bool());
|
|
|
|
int neutralAIIndex = ui->comboBoxNeutralAI->findText(QString::fromUtf8(settings["server"]["neutralAI"].String().c_str()));
|
|
int playerAIIndex = ui->comboBoxPlayerAI->findText(QString::fromUtf8(settings["server"]["playerAI"].String().c_str()));
|
|
|
|
ui->comboBoxNeutralAI->setCurrentIndex(neutralAIIndex);
|
|
ui->comboBoxPlayerAI->setCurrentIndex(playerAIIndex);
|
|
|
|
ui->spinBoxNetworkPort->setValue(settings["server"]["port"].Float());
|
|
|
|
ui->comboBoxEnableMods->setCurrentIndex(settings["launcher"]["enableInstalledMods"].Bool());
|
|
|
|
// all calls to plainText will trigger textChanged() signal overwriting config. Create backup before editing widget
|
|
JsonNode urls = settings["launcher"]["repositoryURL"];
|
|
|
|
ui->plainTextEditRepos->clear();
|
|
for (auto entry : urls.Vector())
|
|
ui->plainTextEditRepos->appendPlainText(QString::fromUtf8(entry.String().c_str()));
|
|
|
|
ui->lineEditUserDataDir->setText(QString::fromUtf8(VCMIDirs::get().userDataPath().c_str()));
|
|
QStringList dataDirs;
|
|
for (auto string : VCMIDirs::get().dataPaths())
|
|
dataDirs += QString::fromUtf8(string.c_str());
|
|
ui->lineEditGameDir->setText(dataDirs.join(':'));
|
|
}
|
|
|
|
CSettingsView::CSettingsView(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::CSettingsView)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
loadSettings();
|
|
}
|
|
|
|
CSettingsView::~CSettingsView()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void CSettingsView::on_comboBoxResolution_currentIndexChanged(const QString &arg1)
|
|
{
|
|
QStringList list = arg1.split("x");
|
|
|
|
Settings node = settings.write["video"]["screenRes"];
|
|
node["width"].Float() = list[0].toInt();
|
|
node["height"].Float() = list[1].toInt();
|
|
}
|
|
|
|
void CSettingsView::on_comboBoxFullScreen_currentIndexChanged(int index)
|
|
{
|
|
Settings node = settings.write["video"]["fullscreen"];
|
|
node->Bool() = index;
|
|
}
|
|
|
|
void CSettingsView::on_comboBoxPlayerAI_currentIndexChanged(const QString &arg1)
|
|
{
|
|
Settings node = settings.write["server"]["playerAI"];
|
|
node->String() = arg1.toUtf8().data();
|
|
}
|
|
|
|
void CSettingsView::on_comboBoxNeutralAI_currentIndexChanged(const QString &arg1)
|
|
{
|
|
Settings node = settings.write["server"]["neutralAI"];
|
|
node->String() = arg1.toUtf8().data();
|
|
}
|
|
|
|
void CSettingsView::on_comboBoxEnableMods_currentIndexChanged(int index)
|
|
{
|
|
Settings node = settings.write["launcher"]["enableInstalledMods"];
|
|
node->Bool() = index;
|
|
}
|
|
|
|
void CSettingsView::on_spinBoxNetworkPort_valueChanged(int arg1)
|
|
{
|
|
Settings node = settings.write["server"]["port"];
|
|
node->Float() = arg1;
|
|
}
|
|
|
|
void CSettingsView::on_plainTextEditRepos_textChanged()
|
|
{
|
|
Settings node = settings.write["launcher"]["repositoryURL"];
|
|
|
|
QStringList list = ui->plainTextEditRepos->toPlainText().split('\n');
|
|
|
|
node->Vector().clear();
|
|
for (QString line : list)
|
|
{
|
|
if (line.trimmed().size() > 0)
|
|
{
|
|
JsonNode entry;
|
|
entry.String() = line.trimmed().toUtf8().data();
|
|
node->Vector().push_back(entry);
|
|
}
|
|
}
|
|
|
|
}
|