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 17:10:41 +00:00
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QUrl>
|
|
|
|
#include "common/file_util.h"
|
|
|
|
#include "common/logging/backend.h"
|
|
|
|
#include "common/logging/filter.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/core.h"
|
2016-01-24 20:54:04 +00:00
|
|
|
#include "core/settings.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "ui_configure_debug.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
#include "yuzu/configuration/configure_debug.h"
|
2018-07-02 17:10:41 +00:00
|
|
|
#include "yuzu/debugger/console.h"
|
|
|
|
#include "yuzu/ui_settings.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) {
|
2016-01-24 17:34:05 +00:00
|
|
|
ui->setupUi(this);
|
|
|
|
this->setConfiguration();
|
2018-07-02 17:10:41 +00:00
|
|
|
connect(ui->open_log_button, &QPushButton::pressed, []() {
|
2018-07-21 19:52:42 +00:00
|
|
|
QString path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::LogDir));
|
2018-07-02 17:10:41 +00:00
|
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(path));
|
|
|
|
});
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
ConfigureDebug::~ConfigureDebug() {}
|
2016-01-24 17:34:05 +00:00
|
|
|
|
|
|
|
void ConfigureDebug::setConfiguration() {
|
2016-09-01 02:12:20 +00:00
|
|
|
ui->toggle_gdbstub->setChecked(Settings::values.use_gdbstub);
|
2016-01-24 20:54:04 +00:00
|
|
|
ui->gdbport_spinbox->setEnabled(Settings::values.use_gdbstub);
|
|
|
|
ui->gdbport_spinbox->setValue(Settings::values.gdbstub_port);
|
2018-07-02 17:10:41 +00: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));
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureDebug::applyConfiguration() {
|
2016-09-01 02:12:20 +00:00
|
|
|
Settings::values.use_gdbstub = ui->toggle_gdbstub->isChecked();
|
2016-01-24 20:54:04 +00:00
|
|
|
Settings::values.gdbstub_port = ui->gdbport_spinbox->value();
|
2018-07-02 17:10:41 +00:00
|
|
|
UISettings::values.show_console = ui->toggle_console->isChecked();
|
|
|
|
Settings::values.log_filter = ui->log_filter_edit->text().toStdString();
|
|
|
|
Debugger::ToggleConsole();
|
|
|
|
Log::Filter filter;
|
|
|
|
filter.ParseFilterString(Settings::values.log_filter);
|
|
|
|
Log::SetGlobalFilter(filter);
|
2016-04-11 12:38:42 +00:00
|
|
|
Settings::Apply();
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|