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"
|
2019-08-09 20:00:47 +02:00
|
|
|
#include "video_core/renderer_opengl/post_processing_opengl.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-26 06:39:23 +02:00
|
|
|
SetConfiguration();
|
2016-08-30 03:29:58 +02:00
|
|
|
|
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());
|
2019-07-04 15:47:04 +02:00
|
|
|
connect(ui->toggle_hw_renderer, &QCheckBox::toggled, ui->hw_renderer_group,
|
2018-05-06 15:36:49 +02:00
|
|
|
&QWidget::setEnabled);
|
|
|
|
ui->hw_shader_group->setEnabled(ui->toggle_hw_shader->isChecked());
|
2019-07-04 15:47:04 +02:00
|
|
|
connect(ui->toggle_hw_shader, &QCheckBox::toggled, 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
|
2019-08-09 20:00:47 +02:00
|
|
|
|
|
|
|
connect(ui->render_3d_combobox,
|
|
|
|
static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
|
|
[this](int currentIndex) {
|
|
|
|
updateShaders(static_cast<Settings::StereoRenderOption>(currentIndex) ==
|
|
|
|
Settings::StereoRenderOption::Anaglyph);
|
|
|
|
});
|
|
|
|
|
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
|
|
|
|
2019-05-26 06:39:23 +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_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);
|
2019-08-09 20:00:47 +02:00
|
|
|
ui->render_3d_combobox->setCurrentIndex(static_cast<int>(Settings::values.render_3d));
|
2018-04-06 15:21:01 +02:00
|
|
|
ui->factor_3d->setValue(Settings::values.factor_3d);
|
2019-08-09 20:00:47 +02:00
|
|
|
updateShaders(Settings::values.render_3d == Settings::StereoRenderOption::Anaglyph);
|
|
|
|
ui->toggle_linear_filter->setChecked(Settings::values.filter_mode);
|
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
|
|
|
}
|
|
|
|
|
2019-05-26 06:39:23 +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_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());
|
2019-08-09 20:00:47 +02:00
|
|
|
Settings::values.render_3d =
|
|
|
|
static_cast<Settings::StereoRenderOption>(ui->render_3d_combobox->currentIndex());
|
2018-04-06 15:21:01 +02:00
|
|
|
Settings::values.factor_3d = ui->factor_3d->value();
|
2019-08-09 20:00:47 +02:00
|
|
|
Settings::values.pp_shader_name =
|
|
|
|
ui->shader_combobox->itemText(ui->shader_combobox->currentIndex()).toStdString();
|
|
|
|
Settings::values.filter_mode = ui->toggle_linear_filter->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
|
|
|
|
2019-08-09 20:00:47 +02:00
|
|
|
void ConfigureGraphics::updateShaders(bool anaglyph) {
|
|
|
|
ui->shader_combobox->clear();
|
|
|
|
|
|
|
|
if (anaglyph)
|
|
|
|
ui->shader_combobox->addItem("dubois (builtin)");
|
|
|
|
else
|
|
|
|
ui->shader_combobox->addItem("none (builtin)");
|
|
|
|
|
|
|
|
ui->shader_combobox->setCurrentIndex(0);
|
|
|
|
|
|
|
|
for (const auto& shader : OpenGL::GetPostProcessingShaderList(anaglyph)) {
|
|
|
|
ui->shader_combobox->addItem(QString::fromStdString(shader));
|
|
|
|
if (Settings::values.pp_shader_name == shader)
|
|
|
|
ui->shader_combobox->setCurrentIndex(ui->shader_combobox->count() - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureGraphics::RetranslateUI() {
|
2017-09-23 15:13:59 +02:00
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|