2016-01-24 17:34:05 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-10-27 21:43:29 +01:00
|
|
|
#include <QMessageBox>
|
2016-12-22 04:49:36 +00:00
|
|
|
#include "citra_qt/configuration/configure_general.h"
|
2019-08-15 05:38:54 +01:00
|
|
|
#include "citra_qt/uisettings.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "core/core.h"
|
2016-01-24 17:34:05 +00:00
|
|
|
#include "core/settings.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#include "ui_configure_general.h"
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2020-06-20 19:52:14 +01:00
|
|
|
// The QSlider doesn't have an easy way to set a custom step amount,
|
|
|
|
// so we can just convert from the sliders range (0 - 198) to the expected
|
|
|
|
// settings range (5 - 995) with simple math.
|
|
|
|
static constexpr int SliderToSettings(int value) {
|
|
|
|
return 5 * value + 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr int SettingsToSlider(int value) {
|
|
|
|
return (value - 5) / 5;
|
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
ConfigureGeneral::ConfigureGeneral(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(new Ui::ConfigureGeneral) {
|
2016-09-19 02:01:46 +01:00
|
|
|
|
2016-01-24 17:34:05 +00:00
|
|
|
ui->setupUi(this);
|
2016-09-02 04:30:01 +01:00
|
|
|
|
2020-06-20 19:52:14 +01:00
|
|
|
// Set a minimum width for the label to prevent the slider from changing size.
|
|
|
|
// This scales across DPIs, and is acceptable for uncapitalized strings.
|
|
|
|
ui->emulation_speed_display_label->setMinimumWidth(tr("unthrottled").size() * 6);
|
|
|
|
|
|
|
|
SetConfiguration();
|
2019-08-10 10:13:17 +01:00
|
|
|
|
2017-08-19 06:05:49 +01:00
|
|
|
ui->updateBox->setVisible(UISettings::values.updater_found);
|
2018-10-27 21:43:29 +01:00
|
|
|
connect(ui->button_reset_defaults, &QPushButton::clicked, this,
|
|
|
|
&ConfigureGeneral::ResetDefaults);
|
2020-06-20 19:52:14 +01:00
|
|
|
|
|
|
|
connect(ui->frame_limit, &QSlider::valueChanged, [&](int value) {
|
|
|
|
if (value == ui->frame_limit->maximum()) {
|
|
|
|
ui->emulation_speed_display_label->setText(tr("unthrottled"));
|
|
|
|
} else {
|
|
|
|
ui->emulation_speed_display_label->setText(
|
|
|
|
QStringLiteral("%1%")
|
|
|
|
.arg(SliderToSettings(value))
|
|
|
|
.rightJustified(tr("unthrottled").size()));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(ui->frame_limit_alternate, &QSlider::valueChanged, [&](int value) {
|
|
|
|
if (value == ui->frame_limit_alternate->maximum()) {
|
|
|
|
ui->emulation_speed_alternate_display_label->setText(tr("unthrottled"));
|
|
|
|
} else {
|
|
|
|
ui->emulation_speed_alternate_display_label->setText(
|
|
|
|
QStringLiteral("%1%")
|
|
|
|
.arg(SliderToSettings(value))
|
|
|
|
.rightJustified(tr("unthrottled").size()));
|
|
|
|
}
|
|
|
|
});
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|
|
|
|
|
2018-08-24 16:14:09 +01:00
|
|
|
ConfigureGeneral::~ConfigureGeneral() = default;
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2019-05-26 05:39:23 +01:00
|
|
|
void ConfigureGeneral::SetConfiguration() {
|
2016-09-01 03:12:20 +01:00
|
|
|
ui->toggle_check_exit->setChecked(UISettings::values.confirm_before_closing);
|
2019-09-14 22:14:23 +01:00
|
|
|
ui->toggle_background_pause->setChecked(UISettings::values.pause_when_in_background);
|
2020-04-07 15:58:51 +01:00
|
|
|
ui->toggle_hide_mouse->setChecked(UISettings::values.hide_mouse);
|
2016-11-30 09:32:09 +00:00
|
|
|
|
2017-08-19 06:05:49 +01:00
|
|
|
ui->toggle_update_check->setChecked(UISettings::values.check_for_update_on_start);
|
|
|
|
ui->toggle_auto_update->setChecked(UISettings::values.update_on_close);
|
|
|
|
|
2016-11-30 09:32:09 +00:00
|
|
|
// The first item is "auto-select" with actual value -1, so plus one here will do the trick
|
|
|
|
ui->region_combobox->setCurrentIndex(Settings::values.region_value + 1);
|
2019-08-10 10:13:17 +01:00
|
|
|
|
2020-06-20 19:52:14 +01:00
|
|
|
if (Settings::values.frame_limit == 0) {
|
|
|
|
ui->frame_limit->setValue(ui->frame_limit->maximum());
|
|
|
|
} else {
|
|
|
|
ui->frame_limit->setValue(SettingsToSlider(Settings::values.frame_limit));
|
|
|
|
}
|
|
|
|
if (ui->frame_limit->value() == ui->frame_limit->maximum()) {
|
|
|
|
ui->emulation_speed_display_label->setText(tr("unthrottled"));
|
|
|
|
} else {
|
|
|
|
ui->emulation_speed_display_label->setText(
|
|
|
|
QStringLiteral("%1%")
|
|
|
|
.arg(SliderToSettings(ui->frame_limit->value()))
|
|
|
|
.rightJustified(tr("unthrottled").size()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->toggle_alternate_speed->setChecked(Settings::values.use_frame_limit_alternate);
|
|
|
|
|
|
|
|
if (Settings::values.frame_limit_alternate == 0) {
|
|
|
|
ui->frame_limit_alternate->setValue(ui->frame_limit_alternate->maximum());
|
|
|
|
} else {
|
|
|
|
ui->frame_limit_alternate->setValue(
|
|
|
|
SettingsToSlider(Settings::values.frame_limit_alternate));
|
|
|
|
}
|
|
|
|
if (ui->frame_limit_alternate->value() == ui->frame_limit_alternate->maximum()) {
|
|
|
|
ui->emulation_speed_alternate_display_label->setText(tr("unthrottled"));
|
|
|
|
} else {
|
|
|
|
ui->emulation_speed_alternate_display_label->setText(
|
|
|
|
QStringLiteral("%1%")
|
|
|
|
.arg(SliderToSettings(ui->frame_limit_alternate->value()))
|
|
|
|
.rightJustified(tr("unthrottled").size()));
|
|
|
|
}
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|
|
|
|
|
2018-10-27 21:43:29 +01:00
|
|
|
void ConfigureGeneral::ResetDefaults() {
|
|
|
|
QMessageBox::StandardButton answer = QMessageBox::question(
|
|
|
|
this, tr("Citra"),
|
|
|
|
tr("Are you sure you want to <b>reset your settings</b> and close Citra?"),
|
|
|
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
|
|
|
|
|
|
|
|
if (answer == QMessageBox::No)
|
|
|
|
return;
|
|
|
|
|
|
|
|
FileUtil::Delete(FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + "qt-config.ini");
|
|
|
|
std::exit(0);
|
|
|
|
}
|
|
|
|
|
2019-05-26 05:39:23 +01:00
|
|
|
void ConfigureGeneral::ApplyConfiguration() {
|
2016-09-01 03:12:20 +01:00
|
|
|
UISettings::values.confirm_before_closing = ui->toggle_check_exit->isChecked();
|
2019-09-14 22:14:23 +01:00
|
|
|
UISettings::values.pause_when_in_background = ui->toggle_background_pause->isChecked();
|
2020-04-07 15:58:51 +01:00
|
|
|
UISettings::values.hide_mouse = ui->toggle_hide_mouse->isChecked();
|
2017-08-19 06:05:49 +01:00
|
|
|
|
|
|
|
UISettings::values.check_for_update_on_start = ui->toggle_update_check->isChecked();
|
|
|
|
UISettings::values.update_on_close = ui->toggle_auto_update->isChecked();
|
|
|
|
|
2016-11-30 09:32:09 +00:00
|
|
|
Settings::values.region_value = ui->region_combobox->currentIndex() - 1;
|
2019-08-10 10:13:17 +01:00
|
|
|
|
2020-06-20 19:52:14 +01:00
|
|
|
if (ui->frame_limit->value() == ui->frame_limit->maximum()) {
|
|
|
|
Settings::values.frame_limit = 0;
|
|
|
|
} else {
|
|
|
|
Settings::values.frame_limit = SliderToSettings(ui->frame_limit->value());
|
|
|
|
}
|
|
|
|
Settings::values.use_frame_limit_alternate = ui->toggle_alternate_speed->isChecked();
|
|
|
|
if (ui->frame_limit_alternate->value() == ui->frame_limit_alternate->maximum()) {
|
|
|
|
Settings::values.frame_limit_alternate = 0;
|
|
|
|
} else {
|
|
|
|
Settings::values.frame_limit_alternate =
|
|
|
|
SliderToSettings(ui->frame_limit_alternate->value());
|
|
|
|
}
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|
2017-09-23 14:13:59 +01:00
|
|
|
|
2019-05-26 05:39:23 +01:00
|
|
|
void ConfigureGeneral::RetranslateUI() {
|
2017-09-23 14:13:59 +01:00
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|