88ea66053e
* renderer_gl: Make rasterizer normal class member * It doesn't need to be heap allocated anymore * gl_rasterizer: Remove default_texture * It's unused * gl_rasterizer: General cleanup * gl_rasterizer: Lower case lambdas * Match style with review comments from vulkan backend * rasterizer_cache: Prevent memory leak * Since the switch from shared_ptr these surfaces were no longer being destroyed properly. Use our garbage collector for that purpose to destroy it safely for both backends * rasterizer_cache: Make temp copy of old surface * The custom surface would override the memory region of the old region resulting in garbage data, this ensures the custom surface is constructed correctly * citra_qt: Manually create dialog tabs * Allows for custom constructors which is very useful. While at it, global state is now eliminated from configuration * citra_qt: Eliminate global system usage * core: Remove global system usage in memory and HIO * citra_qt: Use qOverload * tests: Run clang format * gl_texture_runtime: Fix surface scaling
94 lines
3.8 KiB
C++
94 lines
3.8 KiB
C++
// Copyright 2021 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <QDesktopServices>
|
|
#include <QFileDialog>
|
|
#include <QUrl>
|
|
#include "citra_qt/configuration/configure_storage.h"
|
|
#include "common/file_util.h"
|
|
#include "common/settings.h"
|
|
#include "ui_configure_storage.h"
|
|
|
|
ConfigureStorage::ConfigureStorage(bool is_powered_on_, QWidget* parent)
|
|
: QWidget(parent), ui(std::make_unique<Ui::ConfigureStorage>()), is_powered_on{is_powered_on_} {
|
|
ui->setupUi(this);
|
|
SetConfiguration();
|
|
|
|
connect(ui->open_nand_dir, &QPushButton::clicked, []() {
|
|
QString path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir));
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(path));
|
|
});
|
|
|
|
connect(ui->change_nand_dir, &QPushButton::clicked, this, [this]() {
|
|
const QString dir_path = QFileDialog::getExistingDirectory(
|
|
this, tr("Select NAND Directory"),
|
|
QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir)),
|
|
QFileDialog::ShowDirsOnly);
|
|
if (!dir_path.isEmpty()) {
|
|
FileUtil::UpdateUserPath(FileUtil::UserPath::NANDDir, dir_path.toStdString());
|
|
SetConfiguration();
|
|
}
|
|
});
|
|
|
|
connect(ui->open_sdmc_dir, &QPushButton::clicked, []() {
|
|
QString path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir));
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(path));
|
|
});
|
|
|
|
connect(ui->change_sdmc_dir, &QPushButton::clicked, this, [this]() {
|
|
const QString dir_path = QFileDialog::getExistingDirectory(
|
|
this, tr("Select SDMC Directory"),
|
|
QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)),
|
|
QFileDialog::ShowDirsOnly);
|
|
if (!dir_path.isEmpty()) {
|
|
FileUtil::UpdateUserPath(FileUtil::UserPath::SDMCDir, dir_path.toStdString());
|
|
SetConfiguration();
|
|
}
|
|
});
|
|
|
|
connect(ui->toggle_virtual_sd, &QCheckBox::clicked, this, [this]() {
|
|
ApplyConfiguration();
|
|
SetConfiguration();
|
|
});
|
|
connect(ui->toggle_custom_storage, &QCheckBox::clicked, this, [this]() {
|
|
ApplyConfiguration();
|
|
SetConfiguration();
|
|
});
|
|
}
|
|
|
|
ConfigureStorage::~ConfigureStorage() = default;
|
|
|
|
void ConfigureStorage::SetConfiguration() {
|
|
ui->nand_group->setVisible(Settings::values.use_custom_storage.GetValue());
|
|
QString nand_path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir));
|
|
ui->nand_dir_path->setText(nand_path);
|
|
ui->open_nand_dir->setEnabled(!nand_path.isEmpty());
|
|
|
|
ui->sdmc_group->setVisible(Settings::values.use_virtual_sd &&
|
|
Settings::values.use_custom_storage);
|
|
QString sdmc_path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir));
|
|
ui->sdmc_dir_path->setText(sdmc_path);
|
|
ui->open_sdmc_dir->setEnabled(!sdmc_path.isEmpty());
|
|
|
|
ui->toggle_virtual_sd->setChecked(Settings::values.use_virtual_sd.GetValue());
|
|
ui->toggle_custom_storage->setChecked(Settings::values.use_custom_storage.GetValue());
|
|
|
|
ui->storage_group->setEnabled(!is_powered_on);
|
|
}
|
|
|
|
void ConfigureStorage::ApplyConfiguration() {
|
|
Settings::values.use_virtual_sd = ui->toggle_virtual_sd->isChecked();
|
|
Settings::values.use_custom_storage = ui->toggle_custom_storage->isChecked();
|
|
|
|
if (!Settings::values.use_custom_storage) {
|
|
FileUtil::UpdateUserPath(FileUtil::UserPath::NANDDir,
|
|
GetDefaultUserPath(FileUtil::UserPath::NANDDir));
|
|
FileUtil::UpdateUserPath(FileUtil::UserPath::SDMCDir,
|
|
GetDefaultUserPath(FileUtil::UserPath::SDMCDir));
|
|
}
|
|
}
|
|
|
|
void ConfigureStorage::RetranslateUI() {
|
|
ui->retranslateUi(this);
|
|
}
|