2016-08-25 02:15:38 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-09-08 23:57:19 +00:00
|
|
|
#include <QColorDialog>
|
2020-01-21 19:40:53 +00:00
|
|
|
#include <QComboBox>
|
|
|
|
#ifdef HAS_VULKAN
|
|
|
|
#include <QVulkanInstance>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/logging/log.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "core/core.h"
|
2016-08-25 02:15:38 +00:00
|
|
|
#include "core/settings.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "ui_configure_graphics.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
#include "yuzu/configuration/configure_graphics.h"
|
2020-03-17 04:39:38 +00:00
|
|
|
#ifdef HAS_VULKAN
|
|
|
|
#include "video_core/renderer_vulkan/renderer_vulkan.h"
|
|
|
|
#endif
|
2018-01-12 03:33:56 +00:00
|
|
|
|
2018-10-02 23:24:40 +00:00
|
|
|
namespace {
|
2016-12-30 04:28:27 +00:00
|
|
|
enum class Resolution : int {
|
|
|
|
Auto,
|
|
|
|
Scale1x,
|
|
|
|
Scale2x,
|
|
|
|
Scale3x,
|
|
|
|
Scale4x,
|
|
|
|
};
|
|
|
|
|
|
|
|
float ToResolutionFactor(Resolution option) {
|
|
|
|
switch (option) {
|
|
|
|
case Resolution::Auto:
|
|
|
|
return 0.f;
|
|
|
|
case Resolution::Scale1x:
|
|
|
|
return 1.f;
|
|
|
|
case Resolution::Scale2x:
|
|
|
|
return 2.f;
|
|
|
|
case Resolution::Scale3x:
|
|
|
|
return 3.f;
|
|
|
|
case Resolution::Scale4x:
|
|
|
|
return 4.f;
|
|
|
|
}
|
|
|
|
return 0.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
Resolution FromResolutionFactor(float factor) {
|
|
|
|
if (factor == 0.f) {
|
|
|
|
return Resolution::Auto;
|
|
|
|
} else if (factor == 1.f) {
|
|
|
|
return Resolution::Scale1x;
|
|
|
|
} else if (factor == 2.f) {
|
|
|
|
return Resolution::Scale2x;
|
|
|
|
} else if (factor == 3.f) {
|
|
|
|
return Resolution::Scale3x;
|
|
|
|
} else if (factor == 4.f) {
|
|
|
|
return Resolution::Scale4x;
|
|
|
|
}
|
|
|
|
return Resolution::Auto;
|
|
|
|
}
|
2018-10-02 23:24:40 +00:00
|
|
|
} // Anonymous namespace
|
|
|
|
|
|
|
|
ConfigureGraphics::ConfigureGraphics(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(new Ui::ConfigureGraphics) {
|
2020-01-21 19:40:53 +00:00
|
|
|
vulkan_device = Settings::values.vulkan_device;
|
|
|
|
RetrieveVulkanDevices();
|
|
|
|
|
2018-10-02 23:24:40 +00:00
|
|
|
ui->setupUi(this);
|
2019-05-26 04:39:23 +00:00
|
|
|
|
|
|
|
SetConfiguration();
|
2018-10-02 23:24:40 +00:00
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
connect(ui->api, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
|
|
[this] { UpdateDeviceComboBox(); });
|
|
|
|
connect(ui->device, static_cast<void (QComboBox::*)(int)>(&QComboBox::activated), this,
|
|
|
|
[this](int device) { UpdateDeviceSelection(device); });
|
|
|
|
|
2018-10-02 23:24:40 +00:00
|
|
|
connect(ui->bg_button, &QPushButton::clicked, this, [this] {
|
|
|
|
const QColor new_bg_color = QColorDialog::getColor(bg_color);
|
2019-05-25 01:54:10 +00:00
|
|
|
if (!new_bg_color.isValid()) {
|
2018-10-02 23:24:40 +00:00
|
|
|
return;
|
2019-05-25 01:54:10 +00:00
|
|
|
}
|
2019-01-21 03:09:23 +00:00
|
|
|
UpdateBackgroundColorButton(new_bg_color);
|
2018-10-02 23:24:40 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
void ConfigureGraphics::UpdateDeviceSelection(int device) {
|
|
|
|
if (device == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (GetCurrentGraphicsBackend() == Settings::RendererBackend::Vulkan) {
|
|
|
|
vulkan_device = device;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-02 23:24:40 +00:00
|
|
|
ConfigureGraphics::~ConfigureGraphics() = default;
|
2016-12-30 04:28:27 +00:00
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureGraphics::SetConfiguration() {
|
2019-05-17 07:29:20 +00:00
|
|
|
const bool runtime_lock = !Core::System::GetInstance().IsPoweredOn();
|
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
ui->api->setEnabled(runtime_lock);
|
|
|
|
ui->api->setCurrentIndex(static_cast<int>(Settings::values.renderer_backend));
|
2016-12-30 04:28:27 +00:00
|
|
|
ui->resolution_factor_combobox->setCurrentIndex(
|
|
|
|
static_cast<int>(FromResolutionFactor(Settings::values.resolution_factor)));
|
2020-02-14 03:17:28 +00:00
|
|
|
ui->aspect_ratio_combobox->setCurrentIndex(Settings::values.aspect_ratio);
|
2019-05-17 07:29:20 +00:00
|
|
|
ui->use_disk_shader_cache->setEnabled(runtime_lock);
|
2019-01-14 05:14:27 +00:00
|
|
|
ui->use_disk_shader_cache->setChecked(Settings::values.use_disk_shader_cache);
|
2019-05-17 07:29:20 +00:00
|
|
|
ui->use_asynchronous_gpu_emulation->setEnabled(runtime_lock);
|
2019-01-08 02:46:33 +00:00
|
|
|
ui->use_asynchronous_gpu_emulation->setChecked(Settings::values.use_asynchronous_gpu_emulation);
|
2019-01-21 03:09:23 +00:00
|
|
|
UpdateBackgroundColorButton(QColor::fromRgbF(Settings::values.bg_red, Settings::values.bg_green,
|
|
|
|
Settings::values.bg_blue));
|
2020-01-21 19:40:53 +00:00
|
|
|
UpdateDeviceComboBox();
|
2016-08-25 02:15:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureGraphics::ApplyConfiguration() {
|
2020-01-21 19:40:53 +00:00
|
|
|
Settings::values.renderer_backend = GetCurrentGraphicsBackend();
|
|
|
|
Settings::values.vulkan_device = vulkan_device;
|
2016-12-30 04:28:27 +00:00
|
|
|
Settings::values.resolution_factor =
|
|
|
|
ToResolutionFactor(static_cast<Resolution>(ui->resolution_factor_combobox->currentIndex()));
|
2020-02-14 03:17:28 +00:00
|
|
|
Settings::values.aspect_ratio = ui->aspect_ratio_combobox->currentIndex();
|
2019-01-14 05:14:27 +00:00
|
|
|
Settings::values.use_disk_shader_cache = ui->use_disk_shader_cache->isChecked();
|
2019-01-08 02:46:33 +00:00
|
|
|
Settings::values.use_asynchronous_gpu_emulation =
|
|
|
|
ui->use_asynchronous_gpu_emulation->isChecked();
|
2018-09-08 23:57:19 +00: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 02:15:38 +00:00
|
|
|
}
|
2019-01-21 03:09:23 +00:00
|
|
|
|
2019-06-05 22:39:46 +00:00
|
|
|
void ConfigureGraphics::changeEvent(QEvent* event) {
|
|
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
|
|
RetranslateUI();
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureGraphics::RetranslateUI() {
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|
|
|
|
|
2019-01-21 03:09:23 +00:00
|
|
|
void ConfigureGraphics::UpdateBackgroundColorButton(QColor color) {
|
|
|
|
bg_color = color;
|
|
|
|
|
|
|
|
QPixmap pixmap(ui->bg_button->size());
|
|
|
|
pixmap.fill(bg_color);
|
|
|
|
|
|
|
|
const QIcon color_icon(pixmap);
|
|
|
|
ui->bg_button->setIcon(color_icon);
|
|
|
|
}
|
2020-01-21 19:40:53 +00:00
|
|
|
|
|
|
|
void ConfigureGraphics::UpdateDeviceComboBox() {
|
|
|
|
ui->device->clear();
|
|
|
|
|
|
|
|
bool enabled = false;
|
|
|
|
switch (GetCurrentGraphicsBackend()) {
|
|
|
|
case Settings::RendererBackend::OpenGL:
|
|
|
|
ui->device->addItem(tr("OpenGL Graphics Device"));
|
|
|
|
enabled = false;
|
|
|
|
break;
|
|
|
|
case Settings::RendererBackend::Vulkan:
|
|
|
|
for (const auto device : vulkan_devices) {
|
|
|
|
ui->device->addItem(device);
|
|
|
|
}
|
|
|
|
ui->device->setCurrentIndex(vulkan_device);
|
|
|
|
enabled = !vulkan_devices.empty();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ui->device->setEnabled(enabled && !Core::System::GetInstance().IsPoweredOn());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureGraphics::RetrieveVulkanDevices() {
|
|
|
|
#ifdef HAS_VULKAN
|
2020-03-17 04:39:38 +00:00
|
|
|
vulkan_devices.clear();
|
|
|
|
for (auto& name : Vulkan::RendererVulkan::EnumerateDevices()) {
|
|
|
|
vulkan_devices.push_back(QString::fromStdString(name));
|
2020-01-21 19:40:53 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
Settings::RendererBackend ConfigureGraphics::GetCurrentGraphicsBackend() const {
|
|
|
|
return static_cast<Settings::RendererBackend>(ui->api->currentIndex());
|
|
|
|
}
|