2022-04-23 09:59:50 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2019-04-23 13:36:35 +01:00
|
|
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QMessageBox>
|
2021-05-26 00:32:56 +01:00
|
|
|
#include "common/fs/fs.h"
|
|
|
|
#include "common/fs/path_util.h"
|
2021-04-15 00:07:40 +01:00
|
|
|
#include "common/settings.h"
|
2019-04-23 13:36:35 +01:00
|
|
|
#include "ui_configure_filesystem.h"
|
|
|
|
#include "yuzu/configuration/configure_filesystem.h"
|
2019-09-21 23:43:11 +01:00
|
|
|
#include "yuzu/uisettings.h"
|
2019-04-23 13:36:35 +01:00
|
|
|
|
|
|
|
ConfigureFilesystem::ConfigureFilesystem(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(std::make_unique<Ui::ConfigureFilesystem>()) {
|
|
|
|
ui->setupUi(this);
|
2022-02-02 02:59:29 +00:00
|
|
|
SetConfiguration();
|
2019-04-23 13:36:35 +01:00
|
|
|
|
|
|
|
connect(ui->nand_directory_button, &QToolButton::pressed, this,
|
|
|
|
[this] { SetDirectory(DirectoryTarget::NAND, ui->nand_directory_edit); });
|
|
|
|
connect(ui->sdmc_directory_button, &QToolButton::pressed, this,
|
|
|
|
[this] { SetDirectory(DirectoryTarget::SD, ui->sdmc_directory_edit); });
|
|
|
|
connect(ui->gamecard_path_button, &QToolButton::pressed, this,
|
|
|
|
[this] { SetDirectory(DirectoryTarget::Gamecard, ui->gamecard_path_edit); });
|
|
|
|
connect(ui->dump_path_button, &QToolButton::pressed, this,
|
|
|
|
[this] { SetDirectory(DirectoryTarget::Dump, ui->dump_path_edit); });
|
|
|
|
connect(ui->load_path_button, &QToolButton::pressed, this,
|
|
|
|
[this] { SetDirectory(DirectoryTarget::Load, ui->load_path_edit); });
|
|
|
|
|
|
|
|
connect(ui->reset_game_list_cache, &QPushButton::pressed, this,
|
|
|
|
&ConfigureFilesystem::ResetMetadata);
|
|
|
|
|
|
|
|
connect(ui->gamecard_inserted, &QCheckBox::stateChanged, this,
|
|
|
|
&ConfigureFilesystem::UpdateEnabledControls);
|
|
|
|
connect(ui->gamecard_current_game, &QCheckBox::stateChanged, this,
|
|
|
|
&ConfigureFilesystem::UpdateEnabledControls);
|
|
|
|
}
|
|
|
|
|
|
|
|
ConfigureFilesystem::~ConfigureFilesystem() = default;
|
|
|
|
|
2022-02-02 03:03:10 +00:00
|
|
|
void ConfigureFilesystem::changeEvent(QEvent* event) {
|
|
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
|
|
RetranslateUI();
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
2022-02-02 02:59:29 +00:00
|
|
|
void ConfigureFilesystem::SetConfiguration() {
|
2019-04-23 13:36:35 +01:00
|
|
|
ui->nand_directory_edit->setText(
|
2021-05-26 00:32:56 +01:00
|
|
|
QString::fromStdString(Common::FS::GetYuzuPathString(Common::FS::YuzuPath::NANDDir)));
|
2019-04-23 13:36:35 +01:00
|
|
|
ui->sdmc_directory_edit->setText(
|
2021-05-26 00:32:56 +01:00
|
|
|
QString::fromStdString(Common::FS::GetYuzuPathString(Common::FS::YuzuPath::SDMCDir)));
|
2021-06-28 20:58:16 +01:00
|
|
|
ui->gamecard_path_edit->setText(
|
|
|
|
QString::fromStdString(Settings::values.gamecard_path.GetValue()));
|
2019-04-23 13:36:35 +01:00
|
|
|
ui->dump_path_edit->setText(
|
2021-05-26 00:32:56 +01:00
|
|
|
QString::fromStdString(Common::FS::GetYuzuPathString(Common::FS::YuzuPath::DumpDir)));
|
2019-04-23 13:36:35 +01:00
|
|
|
ui->load_path_edit->setText(
|
2021-05-26 00:32:56 +01:00
|
|
|
QString::fromStdString(Common::FS::GetYuzuPathString(Common::FS::YuzuPath::LoadDir)));
|
2019-04-23 13:36:35 +01:00
|
|
|
|
2021-06-28 20:58:16 +01:00
|
|
|
ui->gamecard_inserted->setChecked(Settings::values.gamecard_inserted.GetValue());
|
|
|
|
ui->gamecard_current_game->setChecked(Settings::values.gamecard_current_game.GetValue());
|
|
|
|
ui->dump_exefs->setChecked(Settings::values.dump_exefs.GetValue());
|
|
|
|
ui->dump_nso->setChecked(Settings::values.dump_nso.GetValue());
|
2019-04-23 13:36:35 +01:00
|
|
|
|
2021-06-28 22:32:24 +01:00
|
|
|
ui->cache_game_list->setChecked(UISettings::values.cache_game_list.GetValue());
|
2019-04-23 13:36:35 +01:00
|
|
|
|
|
|
|
UpdateEnabledControls();
|
|
|
|
}
|
|
|
|
|
2022-02-02 02:59:29 +00:00
|
|
|
void ConfigureFilesystem::ApplyConfiguration() {
|
2021-05-26 00:32:56 +01:00
|
|
|
Common::FS::SetYuzuPath(Common::FS::YuzuPath::NANDDir,
|
2020-08-15 13:33:16 +01:00
|
|
|
ui->nand_directory_edit->text().toStdString());
|
2021-05-26 00:32:56 +01:00
|
|
|
Common::FS::SetYuzuPath(Common::FS::YuzuPath::SDMCDir,
|
2020-08-15 13:33:16 +01:00
|
|
|
ui->sdmc_directory_edit->text().toStdString());
|
2021-05-26 00:32:56 +01:00
|
|
|
Common::FS::SetYuzuPath(Common::FS::YuzuPath::DumpDir,
|
2020-08-15 13:33:16 +01:00
|
|
|
ui->dump_path_edit->text().toStdString());
|
2021-05-26 00:32:56 +01:00
|
|
|
Common::FS::SetYuzuPath(Common::FS::YuzuPath::LoadDir,
|
2020-08-15 13:33:16 +01:00
|
|
|
ui->load_path_edit->text().toStdString());
|
2019-04-23 13:36:35 +01:00
|
|
|
|
|
|
|
Settings::values.gamecard_inserted = ui->gamecard_inserted->isChecked();
|
|
|
|
Settings::values.gamecard_current_game = ui->gamecard_current_game->isChecked();
|
|
|
|
Settings::values.dump_exefs = ui->dump_exefs->isChecked();
|
|
|
|
Settings::values.dump_nso = ui->dump_nso->isChecked();
|
|
|
|
|
|
|
|
UISettings::values.cache_game_list = ui->cache_game_list->isChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureFilesystem::SetDirectory(DirectoryTarget target, QLineEdit* edit) {
|
|
|
|
QString caption;
|
|
|
|
|
|
|
|
switch (target) {
|
|
|
|
case DirectoryTarget::NAND:
|
|
|
|
caption = tr("Select Emulated NAND Directory...");
|
|
|
|
break;
|
|
|
|
case DirectoryTarget::SD:
|
|
|
|
caption = tr("Select Emulated SD Directory...");
|
|
|
|
break;
|
|
|
|
case DirectoryTarget::Gamecard:
|
|
|
|
caption = tr("Select Gamecard Path...");
|
|
|
|
break;
|
|
|
|
case DirectoryTarget::Dump:
|
|
|
|
caption = tr("Select Dump Directory...");
|
|
|
|
break;
|
|
|
|
case DirectoryTarget::Load:
|
|
|
|
caption = tr("Select Mod Load Directory...");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString str;
|
|
|
|
if (target == DirectoryTarget::Gamecard) {
|
|
|
|
str = QFileDialog::getOpenFileName(this, caption, QFileInfo(edit->text()).dir().path(),
|
2019-05-26 19:36:35 +01:00
|
|
|
QStringLiteral("NX Gamecard;*.xci"));
|
2019-04-23 13:36:35 +01:00
|
|
|
} else {
|
2021-03-20 14:40:05 +00:00
|
|
|
str = QFileDialog::getExistingDirectory(this, caption, edit->text());
|
2019-04-23 13:36:35 +01:00
|
|
|
}
|
|
|
|
|
2021-05-26 00:32:56 +01:00
|
|
|
if (str.isNull() || str.isEmpty()) {
|
2019-04-23 13:36:35 +01:00
|
|
|
return;
|
2021-05-26 00:32:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (str.back() != QChar::fromLatin1('/')) {
|
|
|
|
str.append(QChar::fromLatin1('/'));
|
|
|
|
}
|
2019-04-23 13:36:35 +01:00
|
|
|
|
|
|
|
edit->setText(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureFilesystem::ResetMetadata() {
|
2021-05-26 00:32:56 +01:00
|
|
|
if (!Common::FS::Exists(Common::FS::GetYuzuPath(Common::FS::YuzuPath::CacheDir) /
|
|
|
|
"game_list/")) {
|
2019-05-26 19:36:35 +01:00
|
|
|
QMessageBox::information(this, tr("Reset Metadata Cache"),
|
|
|
|
tr("The metadata cache is already empty."));
|
2021-05-26 00:32:56 +01:00
|
|
|
} else if (Common::FS::RemoveDirRecursively(
|
|
|
|
Common::FS::GetYuzuPath(Common::FS::YuzuPath::CacheDir) / "game_list")) {
|
2019-04-23 13:36:35 +01:00
|
|
|
QMessageBox::information(this, tr("Reset Metadata Cache"),
|
|
|
|
tr("The operation completed successfully."));
|
|
|
|
UISettings::values.is_game_list_reload_pending.exchange(true);
|
|
|
|
} else {
|
|
|
|
QMessageBox::warning(
|
|
|
|
this, tr("Reset Metadata Cache"),
|
|
|
|
tr("The metadata cache couldn't be deleted. It might be in use or non-existent."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureFilesystem::UpdateEnabledControls() {
|
|
|
|
ui->gamecard_current_game->setEnabled(ui->gamecard_inserted->isChecked());
|
|
|
|
ui->gamecard_path_edit->setEnabled(ui->gamecard_inserted->isChecked() &&
|
|
|
|
!ui->gamecard_current_game->isChecked());
|
|
|
|
ui->gamecard_path_button->setEnabled(ui->gamecard_inserted->isChecked() &&
|
|
|
|
!ui->gamecard_current_game->isChecked());
|
|
|
|
}
|
|
|
|
|
2022-02-02 02:59:29 +00:00
|
|
|
void ConfigureFilesystem::RetranslateUI() {
|
2019-04-23 13:36:35 +01:00
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|