2024-02-29 23:00:35 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#include "game_install_dialog.h"
|
|
|
|
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
2024-06-11 04:42:21 +02:00
|
|
|
GameInstallDialog::GameInstallDialog() : m_gamesDirectory(nullptr) {
|
2024-02-29 23:00:35 +01:00
|
|
|
auto layout = new QVBoxLayout(this);
|
|
|
|
|
|
|
|
layout->addWidget(SetupGamesDirectory());
|
|
|
|
layout->addStretch();
|
|
|
|
layout->addWidget(SetupDialogActions());
|
|
|
|
|
|
|
|
setWindowTitle("Shadps4 - Choose directory");
|
2024-03-02 17:39:46 +01:00
|
|
|
setWindowIcon(QIcon(":/images/shadps4.ico"));
|
2024-02-29 23:00:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
GameInstallDialog::~GameInstallDialog() {}
|
|
|
|
|
|
|
|
void GameInstallDialog::Browse() {
|
|
|
|
auto path = QFileDialog::getExistingDirectory(this, "Directory to install games");
|
|
|
|
|
|
|
|
if (!path.isEmpty()) {
|
|
|
|
m_gamesDirectory->setText(QDir::toNativeSeparators(path));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget* GameInstallDialog::SetupGamesDirectory() {
|
|
|
|
auto group = new QGroupBox("Directory to install games");
|
|
|
|
auto layout = new QHBoxLayout(group);
|
|
|
|
|
|
|
|
// Input.
|
|
|
|
m_gamesDirectory = new QLineEdit();
|
2024-06-11 04:42:21 +02:00
|
|
|
m_gamesDirectory->setText(QString::fromStdString(Config::getGameInstallDir()));
|
2024-02-29 23:00:35 +01:00
|
|
|
m_gamesDirectory->setMinimumWidth(400);
|
|
|
|
|
|
|
|
layout->addWidget(m_gamesDirectory);
|
|
|
|
|
|
|
|
// Browse button.
|
|
|
|
auto browse = new QPushButton("...");
|
|
|
|
|
|
|
|
connect(browse, &QPushButton::clicked, this, &GameInstallDialog::Browse);
|
|
|
|
|
|
|
|
layout->addWidget(browse);
|
|
|
|
|
|
|
|
return group;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget* GameInstallDialog::SetupDialogActions() {
|
|
|
|
auto actions = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
|
|
|
|
|
|
connect(actions, &QDialogButtonBox::accepted, this, &GameInstallDialog::Save);
|
|
|
|
connect(actions, &QDialogButtonBox::rejected, this, &GameInstallDialog::reject);
|
|
|
|
|
|
|
|
return actions;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GameInstallDialog::Save() {
|
|
|
|
// Check games directory.
|
|
|
|
auto gamesDirectory = m_gamesDirectory->text();
|
|
|
|
|
|
|
|
if (gamesDirectory.isEmpty() || !QDir(gamesDirectory).exists() ||
|
|
|
|
!QDir::isAbsolutePath(gamesDirectory)) {
|
|
|
|
QMessageBox::critical(this, "Error",
|
|
|
|
"The value for location to install games is not valid.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-06-11 04:42:21 +02:00
|
|
|
Config::setGameInstallDir(gamesDirectory.toStdString());
|
|
|
|
const auto config_dir = Common::FS::GetUserPath(Common::FS::PathType::UserDir);
|
|
|
|
Config::save(config_dir / "config.toml");
|
2024-02-29 23:00:35 +01:00
|
|
|
accept();
|
|
|
|
}
|