2016-01-24 09:34:05 -08:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-02 10:10:41 -07:00
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QUrl>
|
2021-05-25 16:32:56 -07:00
|
|
|
#include "common/fs/path_util.h"
|
2018-07-02 10:10:41 -07:00
|
|
|
#include "common/logging/backend.h"
|
|
|
|
#include "common/logging/filter.h"
|
2021-04-14 16:07:40 -07:00
|
|
|
#include "common/settings.h"
|
2018-07-02 10:10:41 -07:00
|
|
|
#include "core/core.h"
|
2016-09-20 08:21:23 -07:00
|
|
|
#include "ui_configure_debug.h"
|
2018-01-11 19:33:56 -08:00
|
|
|
#include "yuzu/configuration/configure_debug.h"
|
2018-07-02 10:10:41 -07:00
|
|
|
#include "yuzu/debugger/console.h"
|
2019-07-29 13:06:33 -07:00
|
|
|
#include "yuzu/uisettings.h"
|
2018-01-11 19:33:56 -08:00
|
|
|
|
2021-07-30 07:07:32 -07:00
|
|
|
ConfigureDebug::ConfigureDebug(const Core::System& system_, QWidget* parent)
|
2021-10-15 12:26:20 -07:00
|
|
|
: QWidget(parent), ui{std::make_unique<Ui::ConfigureDebug>()}, system{system_} {
|
2016-01-24 09:34:05 -08:00
|
|
|
ui->setupUi(this);
|
2019-05-25 21:39:23 -07:00
|
|
|
SetConfiguration();
|
|
|
|
|
2019-07-22 14:28:10 -07:00
|
|
|
connect(ui->open_log_button, &QPushButton::clicked, []() {
|
2020-08-15 05:33:16 -07:00
|
|
|
const auto path =
|
2021-05-25 16:32:56 -07:00
|
|
|
QString::fromStdString(Common::FS::GetYuzuPathString(Common::FS::YuzuPath::LogDir));
|
2018-07-02 10:10:41 -07:00
|
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(path));
|
|
|
|
});
|
2016-01-24 09:34:05 -08:00
|
|
|
}
|
|
|
|
|
2018-08-06 09:58:46 -07:00
|
|
|
ConfigureDebug::~ConfigureDebug() = default;
|
2016-01-24 09:34:05 -08:00
|
|
|
|
2019-05-25 21:39:23 -07:00
|
|
|
void ConfigureDebug::SetConfiguration() {
|
2021-09-02 18:40:55 -07:00
|
|
|
const bool runtime_lock = !system.IsPoweredOn();
|
2021-06-13 01:30:54 -07:00
|
|
|
|
|
|
|
ui->toggle_console->setEnabled(runtime_lock);
|
2021-06-28 14:32:24 -07:00
|
|
|
ui->toggle_console->setChecked(UISettings::values.show_console.GetValue());
|
2021-06-28 12:58:16 -07:00
|
|
|
ui->log_filter_edit->setText(QString::fromStdString(Settings::values.log_filter.GetValue()));
|
|
|
|
ui->homebrew_args_edit->setText(
|
|
|
|
QString::fromStdString(Settings::values.program_args.GetValue()));
|
2021-06-13 01:30:54 -07:00
|
|
|
ui->fs_access_log->setEnabled(runtime_lock);
|
2021-06-28 12:58:16 -07:00
|
|
|
ui->fs_access_log->setChecked(Settings::values.enable_fs_access_log.GetValue());
|
|
|
|
ui->reporting_services->setChecked(Settings::values.reporting_services.GetValue());
|
|
|
|
ui->quest_flag->setChecked(Settings::values.quest_flag.GetValue());
|
|
|
|
ui->use_debug_asserts->setChecked(Settings::values.use_debug_asserts.GetValue());
|
|
|
|
ui->use_auto_stub->setChecked(Settings::values.use_auto_stub.GetValue());
|
2021-11-27 18:05:45 -08:00
|
|
|
ui->enable_all_controllers->setChecked(Settings::values.enable_all_controllers.GetValue());
|
2021-06-13 01:30:54 -07:00
|
|
|
ui->enable_graphics_debugging->setEnabled(runtime_lock);
|
2021-06-28 12:58:16 -07:00
|
|
|
ui->enable_graphics_debugging->setChecked(Settings::values.renderer_debug.GetValue());
|
2021-07-27 15:15:32 -07:00
|
|
|
ui->enable_shader_feedback->setEnabled(runtime_lock);
|
|
|
|
ui->enable_shader_feedback->setChecked(Settings::values.renderer_shader_feedback.GetValue());
|
2021-07-08 13:56:44 -07:00
|
|
|
ui->enable_cpu_debugging->setEnabled(runtime_lock);
|
|
|
|
ui->enable_cpu_debugging->setChecked(Settings::values.cpu_debug_mode.GetValue());
|
2021-07-08 14:22:31 -07:00
|
|
|
ui->enable_nsight_aftermath->setEnabled(runtime_lock);
|
|
|
|
ui->enable_nsight_aftermath->setChecked(Settings::values.enable_nsight_aftermath.GetValue());
|
2021-11-16 19:19:29 -08:00
|
|
|
ui->dump_shaders->setEnabled(runtime_lock);
|
|
|
|
ui->dump_shaders->setChecked(Settings::values.dump_shaders.GetValue());
|
2021-06-13 01:30:54 -07:00
|
|
|
ui->disable_macro_jit->setEnabled(runtime_lock);
|
2021-06-28 12:58:16 -07:00
|
|
|
ui->disable_macro_jit->setChecked(Settings::values.disable_macro_jit.GetValue());
|
2021-07-08 14:22:31 -07:00
|
|
|
ui->disable_loop_safety_checks->setEnabled(runtime_lock);
|
|
|
|
ui->disable_loop_safety_checks->setChecked(
|
|
|
|
Settings::values.disable_shader_loop_safety_checks.GetValue());
|
2021-06-28 12:58:16 -07:00
|
|
|
ui->extended_logging->setChecked(Settings::values.extended_logging.GetValue());
|
2016-01-24 09:34:05 -08:00
|
|
|
}
|
|
|
|
|
2019-05-25 21:39:23 -07:00
|
|
|
void ConfigureDebug::ApplyConfiguration() {
|
2018-07-02 10:10:41 -07:00
|
|
|
UISettings::values.show_console = ui->toggle_console->isChecked();
|
|
|
|
Settings::values.log_filter = ui->log_filter_edit->text().toStdString();
|
2018-09-30 11:05:38 -07:00
|
|
|
Settings::values.program_args = ui->homebrew_args_edit->text().toStdString();
|
2021-06-13 01:30:54 -07:00
|
|
|
Settings::values.enable_fs_access_log = ui->fs_access_log->isChecked();
|
2019-05-17 18:45:16 -07:00
|
|
|
Settings::values.reporting_services = ui->reporting_services->isChecked();
|
2019-06-28 15:37:33 -07:00
|
|
|
Settings::values.quest_flag = ui->quest_flag->isChecked();
|
2021-04-13 18:38:10 -07:00
|
|
|
Settings::values.use_debug_asserts = ui->use_debug_asserts->isChecked();
|
2021-03-12 14:56:02 -08:00
|
|
|
Settings::values.use_auto_stub = ui->use_auto_stub->isChecked();
|
2021-11-27 18:05:45 -08:00
|
|
|
Settings::values.enable_all_controllers = ui->enable_all_controllers->isChecked();
|
2020-01-21 11:40:53 -08:00
|
|
|
Settings::values.renderer_debug = ui->enable_graphics_debugging->isChecked();
|
2021-07-27 15:15:32 -07:00
|
|
|
Settings::values.renderer_shader_feedback = ui->enable_shader_feedback->isChecked();
|
2021-07-08 13:56:44 -07:00
|
|
|
Settings::values.cpu_debug_mode = ui->enable_cpu_debugging->isChecked();
|
2021-07-08 14:22:31 -07:00
|
|
|
Settings::values.enable_nsight_aftermath = ui->enable_nsight_aftermath->isChecked();
|
2021-11-16 19:19:29 -08:00
|
|
|
Settings::values.dump_shaders = ui->dump_shaders->isChecked();
|
2021-07-08 14:22:31 -07:00
|
|
|
Settings::values.disable_shader_loop_safety_checks =
|
|
|
|
ui->disable_loop_safety_checks->isChecked();
|
2020-05-28 21:53:27 -07:00
|
|
|
Settings::values.disable_macro_jit = ui->disable_macro_jit->isChecked();
|
2020-07-29 10:25:37 -07:00
|
|
|
Settings::values.extended_logging = ui->extended_logging->isChecked();
|
2018-07-02 10:10:41 -07:00
|
|
|
Debugger::ToggleConsole();
|
2021-04-14 17:19:52 -07:00
|
|
|
Common::Log::Filter filter;
|
2021-06-28 12:58:16 -07:00
|
|
|
filter.ParseFilterString(Settings::values.log_filter.GetValue());
|
2021-04-14 17:19:52 -07:00
|
|
|
Common::Log::SetGlobalFilter(filter);
|
2016-01-24 09:34:05 -08:00
|
|
|
}
|
2019-06-05 15:39:46 -07:00
|
|
|
|
|
|
|
void ConfigureDebug::changeEvent(QEvent* event) {
|
|
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
|
|
RetranslateUI();
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureDebug::RetranslateUI() {
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|