mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-04 23:29:59 +00:00
54c1e0897d
Auto-stub is an experimental debugging feature that may cause unforseen bugs. This adds a toggle to only allow auto-stubbing unimplemented functions when explicitly enabled when yuzu is launched.
72 lines
2.9 KiB
C++
72 lines
2.9 KiB
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <QDesktopServices>
|
|
#include <QUrl>
|
|
#include "common/file_util.h"
|
|
#include "common/logging/backend.h"
|
|
#include "common/logging/filter.h"
|
|
#include "core/core.h"
|
|
#include "core/settings.h"
|
|
#include "ui_configure_debug.h"
|
|
#include "yuzu/configuration/configure_debug.h"
|
|
#include "yuzu/debugger/console.h"
|
|
#include "yuzu/uisettings.h"
|
|
|
|
ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) {
|
|
ui->setupUi(this);
|
|
SetConfiguration();
|
|
|
|
connect(ui->open_log_button, &QPushButton::clicked, []() {
|
|
const auto path =
|
|
QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::LogDir));
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(path));
|
|
});
|
|
}
|
|
|
|
ConfigureDebug::~ConfigureDebug() = default;
|
|
|
|
void ConfigureDebug::SetConfiguration() {
|
|
ui->toggle_console->setEnabled(!Core::System::GetInstance().IsPoweredOn());
|
|
ui->toggle_console->setChecked(UISettings::values.show_console);
|
|
ui->log_filter_edit->setText(QString::fromStdString(Settings::values.log_filter));
|
|
ui->homebrew_args_edit->setText(QString::fromStdString(Settings::values.program_args));
|
|
ui->reporting_services->setChecked(Settings::values.reporting_services);
|
|
ui->quest_flag->setChecked(Settings::values.quest_flag);
|
|
ui->use_auto_stub->setChecked(Settings::values.use_auto_stub);
|
|
ui->enable_graphics_debugging->setEnabled(!Core::System::GetInstance().IsPoweredOn());
|
|
ui->enable_graphics_debugging->setChecked(Settings::values.renderer_debug);
|
|
ui->disable_macro_jit->setEnabled(!Core::System::GetInstance().IsPoweredOn());
|
|
ui->disable_macro_jit->setChecked(Settings::values.disable_macro_jit);
|
|
ui->extended_logging->setChecked(Settings::values.extended_logging);
|
|
}
|
|
|
|
void ConfigureDebug::ApplyConfiguration() {
|
|
UISettings::values.show_console = ui->toggle_console->isChecked();
|
|
Settings::values.log_filter = ui->log_filter_edit->text().toStdString();
|
|
Settings::values.program_args = ui->homebrew_args_edit->text().toStdString();
|
|
Settings::values.reporting_services = ui->reporting_services->isChecked();
|
|
Settings::values.quest_flag = ui->quest_flag->isChecked();
|
|
Settings::values.use_auto_stub = ui->use_auto_stub->isChecked();
|
|
Settings::values.renderer_debug = ui->enable_graphics_debugging->isChecked();
|
|
Settings::values.disable_macro_jit = ui->disable_macro_jit->isChecked();
|
|
Settings::values.extended_logging = ui->extended_logging->isChecked();
|
|
Debugger::ToggleConsole();
|
|
Log::Filter filter;
|
|
filter.ParseFilterString(Settings::values.log_filter);
|
|
Log::SetGlobalFilter(filter);
|
|
}
|
|
|
|
void ConfigureDebug::changeEvent(QEvent* event) {
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
RetranslateUI();
|
|
}
|
|
|
|
QWidget::changeEvent(event);
|
|
}
|
|
|
|
void ConfigureDebug::RetranslateUI() {
|
|
ui->retranslateUi(this);
|
|
}
|