2016-08-25 04:15:38 +02:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-08-02 05:36:47 +02:00
|
|
|
#include <QColorDialog>
|
2018-07-17 04:03:32 +02:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <QMessageBox>
|
|
|
|
#endif
|
2016-12-22 05:49:36 +01:00
|
|
|
#include "citra_qt/configuration/configure_graphics.h"
|
2016-12-16 01:01:48 +01:00
|
|
|
#include "core/core.h"
|
2016-08-25 04:15:38 +02:00
|
|
|
#include "core/settings.h"
|
2016-09-20 17:21:23 +02:00
|
|
|
#include "ui_configure_graphics.h"
|
2016-08-25 04:15:38 +02:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
ConfigureGraphics::ConfigureGraphics(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(new Ui::ConfigureGraphics) {
|
2016-08-25 04:15:38 +02:00
|
|
|
ui->setupUi(this);
|
2019-05-25 03:54:10 +02:00
|
|
|
setConfiguration();
|
2016-08-30 03:29:58 +02:00
|
|
|
|
2019-05-25 03:54:10 +02:00
|
|
|
connect(ui->toggle_frame_limit, &QCheckBox::toggled, ui->frame_limit, &QSpinBox::setEnabled);
|
2017-02-01 09:22:47 +01:00
|
|
|
|
|
|
|
ui->layoutBox->setEnabled(!Settings::values.custom_layout);
|
2018-05-06 15:36:49 +02:00
|
|
|
|
|
|
|
ui->hw_renderer_group->setEnabled(ui->toggle_hw_renderer->isChecked());
|
|
|
|
connect(ui->toggle_hw_renderer, &QCheckBox::stateChanged, ui->hw_renderer_group,
|
|
|
|
&QWidget::setEnabled);
|
|
|
|
ui->hw_shader_group->setEnabled(ui->toggle_hw_shader->isChecked());
|
|
|
|
connect(ui->toggle_hw_shader, &QCheckBox::stateChanged, ui->hw_shader_group,
|
|
|
|
&QWidget::setEnabled);
|
2018-07-17 04:03:32 +02:00
|
|
|
#ifdef __APPLE__
|
|
|
|
connect(ui->toggle_hw_shader, &QCheckBox::stateChanged, this, [this](int state) {
|
|
|
|
if (state == Qt::Checked) {
|
|
|
|
QMessageBox::warning(
|
|
|
|
this, tr("Hardware Shader Warning"),
|
|
|
|
tr("Hardware Shader support is broken on macOS, and will cause graphical issues "
|
|
|
|
"like showing a black screen.<br><br>The option is only there for "
|
|
|
|
"test/development purposes. If you experience graphical issues with Hardware "
|
|
|
|
"Shader, please turn it off."));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
#endif
|
2018-08-02 05:36:47 +02:00
|
|
|
connect(ui->bg_button, &QPushButton::clicked, this, [this] {
|
|
|
|
const QColor new_bg_color = QColorDialog::getColor(bg_color);
|
2019-05-25 03:54:10 +02:00
|
|
|
if (!new_bg_color.isValid()) {
|
2018-08-02 05:36:47 +02:00
|
|
|
return;
|
2019-05-25 03:54:10 +02:00
|
|
|
}
|
2018-08-02 05:36:47 +02:00
|
|
|
bg_color = new_bg_color;
|
2019-01-21 04:09:23 +01:00
|
|
|
QPixmap pixmap(ui->bg_button->size());
|
|
|
|
pixmap.fill(bg_color);
|
|
|
|
const QIcon color_icon(pixmap);
|
|
|
|
ui->bg_button->setIcon(color_icon);
|
2018-08-02 05:36:47 +02:00
|
|
|
});
|
2016-08-25 04:15:38 +02:00
|
|
|
}
|
|
|
|
|
2018-08-24 17:14:09 +02:00
|
|
|
ConfigureGraphics::~ConfigureGraphics() = default;
|
2016-08-25 04:15:38 +02:00
|
|
|
|
|
|
|
void ConfigureGraphics::setConfiguration() {
|
2016-09-01 04:12:20 +02:00
|
|
|
ui->toggle_hw_renderer->setChecked(Settings::values.use_hw_renderer);
|
2018-05-06 15:36:49 +02:00
|
|
|
ui->toggle_hw_shader->setChecked(Settings::values.use_hw_shader);
|
|
|
|
ui->toggle_accurate_gs->setChecked(Settings::values.shaders_accurate_gs);
|
|
|
|
ui->toggle_accurate_mul->setChecked(Settings::values.shaders_accurate_mul);
|
2016-09-01 04:12:20 +02:00
|
|
|
ui->toggle_shader_jit->setChecked(Settings::values.use_shader_jit);
|
2017-11-14 06:30:11 +01:00
|
|
|
ui->resolution_factor_combobox->setCurrentIndex(Settings::values.resolution_factor);
|
2018-01-26 06:24:40 +01:00
|
|
|
ui->toggle_frame_limit->setChecked(Settings::values.use_frame_limit);
|
2019-05-25 03:54:10 +02:00
|
|
|
ui->frame_limit->setEnabled(ui->toggle_frame_limit->isChecked());
|
2018-01-26 06:24:40 +01:00
|
|
|
ui->frame_limit->setValue(Settings::values.frame_limit);
|
2018-04-06 15:21:01 +02:00
|
|
|
ui->factor_3d->setValue(Settings::values.factor_3d);
|
|
|
|
ui->toggle_3d->setChecked(Settings::values.toggle_3d);
|
2016-05-03 08:07:17 +02:00
|
|
|
ui->layout_combobox->setCurrentIndex(static_cast<int>(Settings::values.layout_option));
|
|
|
|
ui->swap_screen->setChecked(Settings::values.swap_screen);
|
2018-08-02 05:36:47 +02:00
|
|
|
bg_color = QColor::fromRgbF(Settings::values.bg_red, Settings::values.bg_green,
|
|
|
|
Settings::values.bg_blue);
|
2019-01-21 04:09:23 +01:00
|
|
|
QPixmap pixmap(ui->bg_button->size());
|
|
|
|
pixmap.fill(bg_color);
|
|
|
|
const QIcon color_icon(pixmap);
|
|
|
|
ui->bg_button->setIcon(color_icon);
|
2016-08-25 04:15:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureGraphics::applyConfiguration() {
|
2016-09-01 04:12:20 +02:00
|
|
|
Settings::values.use_hw_renderer = ui->toggle_hw_renderer->isChecked();
|
2018-05-06 15:36:49 +02:00
|
|
|
Settings::values.use_hw_shader = ui->toggle_hw_shader->isChecked();
|
|
|
|
Settings::values.shaders_accurate_gs = ui->toggle_accurate_gs->isChecked();
|
|
|
|
Settings::values.shaders_accurate_mul = ui->toggle_accurate_mul->isChecked();
|
2016-09-01 04:12:20 +02:00
|
|
|
Settings::values.use_shader_jit = ui->toggle_shader_jit->isChecked();
|
2016-12-30 05:28:27 +01:00
|
|
|
Settings::values.resolution_factor =
|
2017-11-14 06:30:11 +01:00
|
|
|
static_cast<u16>(ui->resolution_factor_combobox->currentIndex());
|
2018-01-26 06:24:40 +01:00
|
|
|
Settings::values.use_frame_limit = ui->toggle_frame_limit->isChecked();
|
|
|
|
Settings::values.frame_limit = ui->frame_limit->value();
|
2018-04-06 15:21:01 +02:00
|
|
|
Settings::values.factor_3d = ui->factor_3d->value();
|
|
|
|
Settings::values.toggle_3d = ui->toggle_3d->isChecked();
|
2016-11-05 09:58:11 +01:00
|
|
|
Settings::values.layout_option =
|
|
|
|
static_cast<Settings::LayoutOption>(ui->layout_combobox->currentIndex());
|
2016-05-03 08:07:17 +02:00
|
|
|
Settings::values.swap_screen = ui->swap_screen->isChecked();
|
2018-08-02 05:36:47 +02:00
|
|
|
Settings::values.bg_red = static_cast<float>(bg_color.redF());
|
|
|
|
Settings::values.bg_green = static_cast<float>(bg_color.greenF());
|
|
|
|
Settings::values.bg_blue = static_cast<float>(bg_color.blueF());
|
2016-08-25 04:15:38 +02:00
|
|
|
}
|
2017-09-23 15:13:59 +02:00
|
|
|
|
|
|
|
void ConfigureGraphics::retranslateUi() {
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|