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