mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-17 12:22:46 +01:00
a007ac6b9c
We can iterate through the AdvancedGraphics settings and generate the UI during runtime. This doesn't help runtime efficiency, but it helps a ton in reducing the amount of work a developer needs in order to add a new setting.
78 lines
2.4 KiB
C++
78 lines
2.4 KiB
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <QLabel>
|
|
#include <qnamespace.h>
|
|
#include "common/settings.h"
|
|
#include "core/core.h"
|
|
#include "ui_configure_graphics_advanced.h"
|
|
#include "yuzu/configuration/configuration_shared.h"
|
|
#include "yuzu/configuration/configure_graphics_advanced.h"
|
|
|
|
ConfigureGraphicsAdvanced::ConfigureGraphicsAdvanced(
|
|
const Core::System& system_,
|
|
std::shared_ptr<std::forward_list<ConfigurationShared::Tab*>> group,
|
|
const ConfigurationShared::TranslationMap& translations_, QWidget* parent)
|
|
: Tab(group, parent), ui{std::make_unique<Ui::ConfigureGraphicsAdvanced>()}, system{system_},
|
|
translations{translations_} {
|
|
|
|
ui->setupUi(this);
|
|
|
|
SetConfiguration();
|
|
|
|
checkbox_enable_compute_pipelines->setVisible(false);
|
|
}
|
|
|
|
ConfigureGraphicsAdvanced::~ConfigureGraphicsAdvanced() = default;
|
|
|
|
void ConfigureGraphicsAdvanced::SetConfiguration() {
|
|
const bool runtime_lock = !system.IsPoweredOn();
|
|
auto& layout = *ui->populate_target->layout();
|
|
std::map<std::string, QWidget*> hold{}; // A map will sort the data for us
|
|
|
|
for (auto setting :
|
|
Settings::values.linkage.by_category[Settings::Category::AdvancedGraphics]) {
|
|
QWidget* widget = ConfigurationShared::CreateWidget(setting, translations, this,
|
|
runtime_lock, apply_funcs, trackers);
|
|
|
|
if (widget == nullptr) {
|
|
continue;
|
|
}
|
|
|
|
if (!setting->IsEnum()) {
|
|
hold.emplace(setting->GetLabel(), widget);
|
|
} else {
|
|
layout.addWidget(widget);
|
|
}
|
|
|
|
if (setting->GetLabel() == "enable_compute_pipelines") {
|
|
checkbox_enable_compute_pipelines = widget;
|
|
}
|
|
}
|
|
for (const auto& [label, widget] : hold) {
|
|
layout.addWidget(widget);
|
|
}
|
|
}
|
|
|
|
void ConfigureGraphicsAdvanced::ApplyConfiguration() {
|
|
const bool is_powered_on = system.IsPoweredOn();
|
|
for (const auto& func : apply_funcs) {
|
|
func(is_powered_on);
|
|
}
|
|
}
|
|
|
|
void ConfigureGraphicsAdvanced::changeEvent(QEvent* event) {
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
RetranslateUI();
|
|
}
|
|
|
|
QWidget::changeEvent(event);
|
|
}
|
|
|
|
void ConfigureGraphicsAdvanced::RetranslateUI() {
|
|
ui->retranslateUi(this);
|
|
}
|
|
|
|
void ConfigureGraphicsAdvanced::ExposeComputeOption() {
|
|
checkbox_enable_compute_pipelines->setVisible(true);
|
|
}
|