2016-06-01 07:43:33 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-01-17 16:50:57 +00:00
|
|
|
#include <array>
|
|
|
|
#include <chrono>
|
|
|
|
#include <optional>
|
|
|
|
|
2018-10-11 01:49:20 +00:00
|
|
|
#include <QFileDialog>
|
2018-10-10 01:53:04 +00:00
|
|
|
#include <QGraphicsItem>
|
2017-05-06 00:55:51 +00:00
|
|
|
#include <QMessageBox>
|
2018-10-28 22:11:17 +00:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/file_util.h"
|
2017-02-20 02:37:14 +00:00
|
|
|
#include "core/core.h"
|
2018-08-03 15:02:55 +00:00
|
|
|
#include "core/settings.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "ui_configure_system.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
#include "yuzu/configuration/configure_system.h"
|
|
|
|
|
2019-01-04 22:32:13 +00:00
|
|
|
ConfigureSystem::ConfigureSystem(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureSystem) {
|
2016-06-01 07:43:33 +00:00
|
|
|
ui->setupUi(this);
|
2017-05-06 00:55:51 +00:00
|
|
|
connect(ui->button_regenerate_console_id, &QPushButton::clicked, this,
|
2018-10-25 20:47:09 +00:00
|
|
|
&ConfigureSystem::RefreshConsoleID);
|
2016-09-13 05:04:17 +00:00
|
|
|
|
2018-11-12 03:34:23 +00:00
|
|
|
connect(ui->rng_seed_checkbox, &QCheckBox::stateChanged, this, [this](bool checked) {
|
|
|
|
ui->rng_seed_edit->setEnabled(checked);
|
|
|
|
if (!checked)
|
2018-11-13 17:25:43 +00:00
|
|
|
ui->rng_seed_edit->setText(QStringLiteral("00000000"));
|
2018-11-12 03:34:23 +00:00
|
|
|
});
|
|
|
|
|
2018-12-28 23:36:14 +00:00
|
|
|
connect(ui->custom_rtc_checkbox, &QCheckBox::stateChanged, this, [this](bool checked) {
|
|
|
|
ui->custom_rtc_edit->setEnabled(checked);
|
|
|
|
if (!checked)
|
|
|
|
ui->custom_rtc_edit->setDateTime(QDateTime::currentDateTime());
|
|
|
|
});
|
|
|
|
|
2016-09-13 05:04:17 +00:00
|
|
|
this->setConfiguration();
|
2016-06-01 07:43:33 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 16:58:46 +00:00
|
|
|
ConfigureSystem::~ConfigureSystem() = default;
|
2016-06-01 07:43:33 +00:00
|
|
|
|
2016-09-02 12:18:45 +00:00
|
|
|
void ConfigureSystem::setConfiguration() {
|
2016-11-05 03:14:38 +00:00
|
|
|
enabled = !Core::System::GetInstance().IsPoweredOn();
|
2018-10-10 01:53:04 +00:00
|
|
|
|
2018-08-03 15:02:55 +00:00
|
|
|
ui->combo_language->setCurrentIndex(Settings::values.language_index);
|
2018-10-10 01:53:04 +00:00
|
|
|
|
2018-11-12 03:34:23 +00:00
|
|
|
ui->rng_seed_checkbox->setChecked(Settings::values.rng_seed.has_value());
|
|
|
|
ui->rng_seed_edit->setEnabled(Settings::values.rng_seed.has_value());
|
2018-11-13 02:46:21 +00:00
|
|
|
|
2019-05-19 16:56:39 +00:00
|
|
|
const auto rng_seed = QStringLiteral("%1")
|
|
|
|
.arg(Settings::values.rng_seed.value_or(0), 8, 16, QLatin1Char{'0'})
|
|
|
|
.toUpper();
|
2018-11-13 02:46:21 +00:00
|
|
|
ui->rng_seed_edit->setText(rng_seed);
|
2018-12-28 23:36:14 +00:00
|
|
|
|
|
|
|
ui->custom_rtc_checkbox->setChecked(Settings::values.custom_rtc.has_value());
|
|
|
|
ui->custom_rtc_edit->setEnabled(Settings::values.custom_rtc.has_value());
|
|
|
|
|
2018-12-29 01:24:24 +00:00
|
|
|
const auto rtc_time = Settings::values.custom_rtc.value_or(
|
|
|
|
std::chrono::seconds(QDateTime::currentSecsSinceEpoch()));
|
|
|
|
ui->custom_rtc_edit->setDateTime(QDateTime::fromSecsSinceEpoch(rtc_time.count()));
|
2018-10-10 01:53:04 +00:00
|
|
|
}
|
|
|
|
|
2018-01-12 03:33:56 +00:00
|
|
|
void ConfigureSystem::ReadSystemSettings() {}
|
2016-06-01 07:43:33 +00:00
|
|
|
|
|
|
|
void ConfigureSystem::applyConfiguration() {
|
|
|
|
if (!enabled)
|
|
|
|
return;
|
2018-10-10 01:53:04 +00:00
|
|
|
|
2018-08-03 15:02:55 +00:00
|
|
|
Settings::values.language_index = ui->combo_language->currentIndex();
|
2018-11-12 03:34:23 +00:00
|
|
|
|
|
|
|
if (ui->rng_seed_checkbox->isChecked())
|
|
|
|
Settings::values.rng_seed = ui->rng_seed_edit->text().toULongLong(nullptr, 16);
|
|
|
|
else
|
|
|
|
Settings::values.rng_seed = std::nullopt;
|
|
|
|
|
2018-12-28 23:36:14 +00:00
|
|
|
if (ui->custom_rtc_checkbox->isChecked())
|
2018-12-29 01:24:24 +00:00
|
|
|
Settings::values.custom_rtc =
|
|
|
|
std::chrono::seconds(ui->custom_rtc_edit->dateTime().toSecsSinceEpoch());
|
2018-12-28 23:36:14 +00:00
|
|
|
else
|
|
|
|
Settings::values.custom_rtc = std::nullopt;
|
|
|
|
|
2018-08-03 15:02:55 +00:00
|
|
|
Settings::Apply();
|
2016-06-01 07:43:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 20:47:09 +00:00
|
|
|
void ConfigureSystem::RefreshConsoleID() {
|
2017-05-06 00:55:51 +00:00
|
|
|
QMessageBox::StandardButton reply;
|
2018-01-13 23:49:16 +00:00
|
|
|
QString warning_text = tr("This will replace your current virtual Switch with a new one. "
|
|
|
|
"Your current virtual Switch will not be recoverable. "
|
2017-05-06 00:55:51 +00:00
|
|
|
"This might have unexpected effects in games. This might fail, "
|
|
|
|
"if you use an outdated config savegame. Continue?");
|
|
|
|
reply = QMessageBox::critical(this, tr("Warning"), warning_text,
|
|
|
|
QMessageBox::No | QMessageBox::Yes);
|
|
|
|
if (reply == QMessageBox::No)
|
|
|
|
return;
|
2017-10-13 01:21:49 +00:00
|
|
|
u64 console_id{};
|
2018-01-17 16:20:46 +00:00
|
|
|
ui->label_console_id->setText(
|
|
|
|
tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper()));
|
2017-05-06 00:55:51 +00:00
|
|
|
}
|