2019-08-10 04:08:18 +02:00
|
|
|
// Copyright 2019 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <QColorDialog>
|
2023-03-21 22:12:13 +01:00
|
|
|
#include "citra_qt/configuration/configuration_shared.h"
|
2019-08-10 04:08:18 +02:00
|
|
|
#include "citra_qt/configuration/configure_enhancements.h"
|
2022-12-08 12:27:25 +01:00
|
|
|
#include "common/settings.h"
|
2019-08-10 04:08:02 +02:00
|
|
|
#include "ui_configure_enhancements.h"
|
2019-08-10 04:08:18 +02:00
|
|
|
#include "video_core/renderer_opengl/post_processing_opengl.h"
|
2020-04-03 05:42:50 +02:00
|
|
|
#include "video_core/renderer_opengl/texture_filters/texture_filterer.h"
|
2019-08-10 04:08:02 +02:00
|
|
|
|
2019-08-10 04:08:18 +02:00
|
|
|
ConfigureEnhancements::ConfigureEnhancements(QWidget* parent)
|
2020-10-01 03:23:01 +02:00
|
|
|
: QWidget(parent), ui(std::make_unique<Ui::ConfigureEnhancements>()) {
|
2019-08-10 04:08:02 +02:00
|
|
|
ui->setupUi(this);
|
2020-03-16 15:42:05 +01:00
|
|
|
|
2020-04-03 05:42:50 +02:00
|
|
|
for (const auto& filter : OpenGL::TextureFilterer::GetFilterNames())
|
|
|
|
ui->texture_filter_combobox->addItem(QString::fromStdString(filter.data()));
|
2020-03-16 15:42:05 +01:00
|
|
|
|
2023-03-21 22:12:13 +01:00
|
|
|
SetupPerGameUI();
|
2019-08-10 04:08:18 +02:00
|
|
|
SetConfiguration();
|
|
|
|
|
2023-03-21 22:12:13 +01:00
|
|
|
ui->layout_group->setEnabled(!Settings::values.custom_layout);
|
2019-08-10 04:08:18 +02:00
|
|
|
|
2023-03-27 13:29:17 +02:00
|
|
|
const auto graphics_api = Settings::values.graphics_api.GetValue();
|
|
|
|
const bool res_scale_enabled = graphics_api != Settings::GraphicsAPI::Software;
|
|
|
|
ui->resolution_factor_combobox->setEnabled(res_scale_enabled);
|
2019-08-10 04:08:18 +02:00
|
|
|
|
|
|
|
connect(ui->render_3d_combobox,
|
|
|
|
static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
|
|
[this](int currentIndex) {
|
2019-12-06 08:43:06 +01:00
|
|
|
updateShaders(static_cast<Settings::StereoRenderOption>(currentIndex));
|
2019-08-10 04:08:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
connect(ui->bg_button, &QPushButton::clicked, this, [this] {
|
|
|
|
const QColor new_bg_color = QColorDialog::getColor(bg_color);
|
|
|
|
if (!new_bg_color.isValid()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bg_color = new_bg_color;
|
|
|
|
QPixmap pixmap(ui->bg_button->size());
|
|
|
|
pixmap.fill(bg_color);
|
|
|
|
const QIcon color_icon(pixmap);
|
|
|
|
ui->bg_button->setIcon(color_icon);
|
|
|
|
});
|
|
|
|
|
|
|
|
ui->toggle_preload_textures->setEnabled(ui->toggle_custom_textures->isChecked());
|
|
|
|
connect(ui->toggle_custom_textures, &QCheckBox::toggled, this, [this] {
|
|
|
|
ui->toggle_preload_textures->setEnabled(ui->toggle_custom_textures->isChecked());
|
|
|
|
if (!ui->toggle_preload_textures->isEnabled())
|
|
|
|
ui->toggle_preload_textures->setChecked(false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-21 22:12:13 +01:00
|
|
|
ConfigureEnhancements::~ConfigureEnhancements() = default;
|
|
|
|
|
2019-08-10 04:08:18 +02:00
|
|
|
void ConfigureEnhancements::SetConfiguration() {
|
2023-03-21 22:12:13 +01:00
|
|
|
|
|
|
|
if (!Settings::IsConfiguringGlobal()) {
|
|
|
|
ConfigurationShared::SetPerGameSetting(ui->resolution_factor_combobox,
|
|
|
|
&Settings::values.resolution_factor);
|
|
|
|
ConfigurationShared::SetPerGameSetting(ui->texture_filter_combobox,
|
|
|
|
&Settings::values.texture_filter_name);
|
|
|
|
ConfigurationShared::SetHighlight(ui->widget_texture_filter,
|
|
|
|
!Settings::values.texture_filter_name.UsingGlobal());
|
|
|
|
ConfigurationShared::SetPerGameSetting(ui->layout_combobox,
|
|
|
|
&Settings::values.layout_option);
|
|
|
|
} else {
|
|
|
|
ui->resolution_factor_combobox->setCurrentIndex(
|
|
|
|
Settings::values.resolution_factor.GetValue());
|
|
|
|
ui->layout_combobox->setCurrentIndex(
|
|
|
|
static_cast<int>(Settings::values.layout_option.GetValue()));
|
|
|
|
int tex_filter_idx = ui->texture_filter_combobox->findText(
|
|
|
|
QString::fromStdString(Settings::values.texture_filter_name.GetValue()));
|
|
|
|
if (tex_filter_idx == -1) {
|
|
|
|
ui->texture_filter_combobox->setCurrentIndex(0);
|
|
|
|
} else {
|
|
|
|
ui->texture_filter_combobox->setCurrentIndex(tex_filter_idx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-08 12:27:25 +01:00
|
|
|
ui->render_3d_combobox->setCurrentIndex(
|
|
|
|
static_cast<int>(Settings::values.render_3d.GetValue()));
|
|
|
|
ui->factor_3d->setValue(Settings::values.factor_3d.GetValue());
|
2022-12-24 03:17:49 +01:00
|
|
|
ui->mono_rendering_eye->setCurrentIndex(
|
|
|
|
static_cast<int>(Settings::values.mono_render_option.GetValue()));
|
2022-12-08 12:27:25 +01:00
|
|
|
updateShaders(Settings::values.render_3d.GetValue());
|
|
|
|
ui->toggle_linear_filter->setChecked(Settings::values.filter_mode.GetValue());
|
2023-03-21 22:12:13 +01:00
|
|
|
ui->toggle_swap_screen->setChecked(Settings::values.swap_screen.GetValue());
|
|
|
|
ui->toggle_upright_screen->setChecked(Settings::values.upright_screen.GetValue());
|
2023-02-17 15:19:52 +01:00
|
|
|
ui->large_screen_proportion->setValue(Settings::values.large_screen_proportion.GetValue());
|
2022-12-08 12:27:25 +01:00
|
|
|
ui->toggle_dump_textures->setChecked(Settings::values.dump_textures.GetValue());
|
|
|
|
ui->toggle_custom_textures->setChecked(Settings::values.custom_textures.GetValue());
|
|
|
|
ui->toggle_preload_textures->setChecked(Settings::values.preload_textures.GetValue());
|
|
|
|
bg_color =
|
|
|
|
QColor::fromRgbF(Settings::values.bg_red.GetValue(), Settings::values.bg_green.GetValue(),
|
|
|
|
Settings::values.bg_blue.GetValue());
|
2019-08-10 04:08:18 +02:00
|
|
|
QPixmap pixmap(ui->bg_button->size());
|
|
|
|
pixmap.fill(bg_color);
|
|
|
|
const QIcon color_icon(pixmap);
|
|
|
|
ui->bg_button->setIcon(color_icon);
|
|
|
|
}
|
|
|
|
|
2019-12-06 08:43:06 +01:00
|
|
|
void ConfigureEnhancements::updateShaders(Settings::StereoRenderOption stereo_option) {
|
2019-08-10 04:08:18 +02:00
|
|
|
ui->shader_combobox->clear();
|
2023-03-13 22:02:07 +01:00
|
|
|
ui->shader_combobox->setEnabled(true);
|
2019-08-10 04:08:18 +02:00
|
|
|
|
2023-03-13 22:02:07 +01:00
|
|
|
if (stereo_option == Settings::StereoRenderOption::Interlaced ||
|
|
|
|
stereo_option == Settings::StereoRenderOption::ReverseInterlaced) {
|
2020-02-11 13:12:09 +01:00
|
|
|
ui->shader_combobox->addItem(QStringLiteral("horizontal (builtin)"));
|
2023-03-13 22:02:07 +01:00
|
|
|
ui->shader_combobox->setCurrentIndex(0);
|
|
|
|
ui->shader_combobox->setEnabled(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string current_shader;
|
|
|
|
if (stereo_option == Settings::StereoRenderOption::Anaglyph) {
|
|
|
|
ui->shader_combobox->addItem(QStringLiteral("dubois (builtin)"));
|
|
|
|
current_shader = Settings::values.anaglyph_shader_name.GetValue();
|
|
|
|
} else {
|
2020-02-11 13:12:09 +01:00
|
|
|
ui->shader_combobox->addItem(QStringLiteral("none (builtin)"));
|
2023-03-13 22:02:07 +01:00
|
|
|
current_shader = Settings::values.pp_shader_name.GetValue();
|
|
|
|
}
|
2019-08-10 04:08:18 +02:00
|
|
|
|
|
|
|
ui->shader_combobox->setCurrentIndex(0);
|
|
|
|
|
2019-12-06 08:43:06 +01:00
|
|
|
for (const auto& shader : OpenGL::GetPostProcessingShaderList(
|
|
|
|
stereo_option == Settings::StereoRenderOption::Anaglyph)) {
|
2019-08-10 04:08:18 +02:00
|
|
|
ui->shader_combobox->addItem(QString::fromStdString(shader));
|
2023-03-13 22:02:07 +01:00
|
|
|
if (current_shader == shader)
|
2019-08-10 04:08:18 +02:00
|
|
|
ui->shader_combobox->setCurrentIndex(ui->shader_combobox->count() - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureEnhancements::RetranslateUI() {
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureEnhancements::ApplyConfiguration() {
|
2023-03-21 22:12:13 +01:00
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.resolution_factor,
|
|
|
|
ui->resolution_factor_combobox);
|
2019-08-10 04:08:18 +02:00
|
|
|
Settings::values.render_3d =
|
|
|
|
static_cast<Settings::StereoRenderOption>(ui->render_3d_combobox->currentIndex());
|
|
|
|
Settings::values.factor_3d = ui->factor_3d->value();
|
2022-12-24 03:17:49 +01:00
|
|
|
Settings::values.mono_render_option =
|
|
|
|
static_cast<Settings::MonoRenderOption>(ui->mono_rendering_eye->currentIndex());
|
2023-03-13 22:02:07 +01:00
|
|
|
if (Settings::values.render_3d.GetValue() == Settings::StereoRenderOption::Anaglyph) {
|
|
|
|
Settings::values.anaglyph_shader_name =
|
|
|
|
ui->shader_combobox->itemText(ui->shader_combobox->currentIndex()).toStdString();
|
|
|
|
} else if (Settings::values.render_3d.GetValue() == Settings::StereoRenderOption::Off) {
|
|
|
|
Settings::values.pp_shader_name =
|
|
|
|
ui->shader_combobox->itemText(ui->shader_combobox->currentIndex()).toStdString();
|
|
|
|
}
|
2023-02-17 15:19:52 +01:00
|
|
|
Settings::values.large_screen_proportion = ui->large_screen_proportion->value();
|
2023-03-21 22:12:13 +01:00
|
|
|
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.filter_mode,
|
|
|
|
ui->toggle_linear_filter, linear_filter);
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(
|
|
|
|
&Settings::values.texture_filter_name, ui->texture_filter_combobox,
|
|
|
|
[this](int index) { return ui->texture_filter_combobox->itemText(index).toStdString(); });
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.layout_option, ui->layout_combobox);
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.swap_screen, ui->toggle_swap_screen,
|
|
|
|
swap_screen);
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.upright_screen,
|
|
|
|
ui->toggle_upright_screen, upright_screen);
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.dump_textures,
|
|
|
|
ui->toggle_dump_textures, dump_textures);
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.custom_textures,
|
|
|
|
ui->toggle_custom_textures, custom_textures);
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.preload_textures,
|
|
|
|
ui->toggle_preload_textures, preload_textures);
|
|
|
|
|
2019-08-10 04:08:18 +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());
|
2019-08-10 04:08:02 +02:00
|
|
|
}
|
|
|
|
|
2023-03-21 22:12:13 +01:00
|
|
|
void ConfigureEnhancements::SetupPerGameUI() {
|
|
|
|
// Block the global settings if a game is currently running that overrides them
|
|
|
|
if (Settings::IsConfiguringGlobal()) {
|
|
|
|
ui->widget_resolution->setEnabled(Settings::values.resolution_factor.UsingGlobal());
|
|
|
|
ui->widget_texture_filter->setEnabled(Settings::values.texture_filter_name.UsingGlobal());
|
|
|
|
ui->toggle_linear_filter->setEnabled(Settings::values.filter_mode.UsingGlobal());
|
|
|
|
ui->toggle_swap_screen->setEnabled(Settings::values.swap_screen.UsingGlobal());
|
|
|
|
ui->toggle_upright_screen->setEnabled(Settings::values.upright_screen.UsingGlobal());
|
|
|
|
ui->toggle_dump_textures->setEnabled(Settings::values.dump_textures.UsingGlobal());
|
|
|
|
ui->toggle_custom_textures->setEnabled(Settings::values.custom_textures.UsingGlobal());
|
|
|
|
ui->toggle_preload_textures->setEnabled(Settings::values.preload_textures.UsingGlobal());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->stereo_group->setVisible(false);
|
|
|
|
ui->widget_shader->setVisible(false);
|
|
|
|
ui->bg_color_group->setVisible(false);
|
|
|
|
|
|
|
|
ConfigurationShared::SetColoredTristate(ui->toggle_linear_filter, Settings::values.filter_mode,
|
|
|
|
linear_filter);
|
|
|
|
ConfigurationShared::SetColoredTristate(ui->toggle_swap_screen, Settings::values.swap_screen,
|
|
|
|
swap_screen);
|
|
|
|
ConfigurationShared::SetColoredTristate(ui->toggle_upright_screen,
|
|
|
|
Settings::values.upright_screen, upright_screen);
|
|
|
|
ConfigurationShared::SetColoredTristate(ui->toggle_dump_textures,
|
|
|
|
Settings::values.dump_textures, dump_textures);
|
|
|
|
ConfigurationShared::SetColoredTristate(ui->toggle_custom_textures,
|
|
|
|
Settings::values.custom_textures, custom_textures);
|
|
|
|
ConfigurationShared::SetColoredTristate(ui->toggle_preload_textures,
|
|
|
|
Settings::values.preload_textures, preload_textures);
|
|
|
|
|
|
|
|
ConfigurationShared::SetColoredComboBox(
|
|
|
|
ui->resolution_factor_combobox, ui->widget_resolution,
|
|
|
|
static_cast<u32>(Settings::values.resolution_factor.GetValue(true)));
|
|
|
|
|
|
|
|
ConfigurationShared::SetColoredComboBox(ui->texture_filter_combobox, ui->widget_texture_filter,
|
|
|
|
0);
|
|
|
|
|
|
|
|
ConfigurationShared::SetColoredComboBox(
|
|
|
|
ui->layout_combobox, ui->widget_layout,
|
|
|
|
static_cast<u32>(Settings::values.layout_option.GetValue(true)));
|
|
|
|
}
|