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>
|
|
|
|
#include "common/file_util.h"
|
|
|
|
#include "common/logging/backend.h"
|
|
|
|
#include "common/logging/filter.h"
|
|
|
|
#include "core/core.h"
|
2016-01-24 12:54:04 -08:00
|
|
|
#include "core/settings.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
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) {
|
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 =
|
|
|
|
QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::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() {
|
2018-07-02 10:10:41 -07:00
|
|
|
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));
|
2018-09-30 11:05:38 -07:00
|
|
|
ui->homebrew_args_edit->setText(QString::fromStdString(Settings::values.program_args));
|
2019-05-17 18:45:16 -07:00
|
|
|
ui->reporting_services->setChecked(Settings::values.reporting_services);
|
2019-06-28 15:37:33 -07:00
|
|
|
ui->quest_flag->setChecked(Settings::values.quest_flag);
|
2021-03-12 14:56:02 -08:00
|
|
|
ui->use_auto_stub->setChecked(Settings::values.use_auto_stub);
|
2020-01-21 11:40:53 -08:00
|
|
|
ui->enable_graphics_debugging->setEnabled(!Core::System::GetInstance().IsPoweredOn());
|
|
|
|
ui->enable_graphics_debugging->setChecked(Settings::values.renderer_debug);
|
2020-05-28 21:53:27 -07:00
|
|
|
ui->disable_macro_jit->setEnabled(!Core::System::GetInstance().IsPoweredOn());
|
|
|
|
ui->disable_macro_jit->setChecked(Settings::values.disable_macro_jit);
|
2020-07-29 10:25:37 -07:00
|
|
|
ui->extended_logging->setChecked(Settings::values.extended_logging);
|
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();
|
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-03-12 14:56:02 -08:00
|
|
|
Settings::values.use_auto_stub = ui->use_auto_stub->isChecked();
|
2020-01-21 11:40:53 -08:00
|
|
|
Settings::values.renderer_debug = ui->enable_graphics_debugging->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();
|
|
|
|
Log::Filter filter;
|
|
|
|
filter.ParseFilterString(Settings::values.log_filter);
|
|
|
|
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);
|
|
|
|
}
|