Files
eden/src/yuzu/migration_worker.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
2.1 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
2025-06-27 06:03:19 +00:00
// SPDX-License-Identifier: GPL-3.0-or-later
2025-05-11 23:58:25 +00:00
#ifndef MIGRATION_WORKER_H
#define MIGRATION_WORKER_H
#include <QObject>
#include "common/fs/path_util.h"
typedef struct Emulator {
const char* m_name;
Common::FS::EmuPath e_user_dir;
Common::FS::EmuPath e_config_dir;
Common::FS::EmuPath e_cache_dir;
const std::string get_user_dir() const {
return Common::FS::GetLegacyPath(e_user_dir).string();
}
const std::string get_config_dir() const {
return Common::FS::GetLegacyPath(e_config_dir).string();
}
const std::string get_cache_dir() const {
return Common::FS::GetLegacyPath(e_cache_dir).string();
}
const QString name() const {
return QObject::tr(m_name);
2025-10-18 22:19:06 +02:00
}
const QString lower_name() const {
return name().toLower();
}
} Emulator;
#define STRUCT_EMU(name, enumName) \
Emulator { \
name, Common::FS::enumName##Dir, Common::FS::enumName##ConfigDir, \
Common::FS::enumName##CacheDir \
}
static constexpr std::array<Emulator, 4> legacy_emus = {
STRUCT_EMU(QT_TR_NOOP("Citron"), Citron),
STRUCT_EMU(QT_TR_NOOP("Sudachi"), Sudachi),
STRUCT_EMU(QT_TR_NOOP("Suyu"), Suyu),
STRUCT_EMU(QT_TR_NOOP("Yuzu"), Yuzu),
};
2025-05-11 23:58:25 +00:00
class MigrationWorker : public QObject {
2025-05-11 23:58:25 +00:00
Q_OBJECT
public:
enum class MigrationStrategy {
Copy,
Move,
Link,
};
MigrationWorker(const Emulator selected_emu, const bool clear_shader_cache,
2025-05-11 23:58:25 +00:00
const MigrationStrategy strategy);
public slots:
void process();
signals:
void finished(const QString& success_text, const std::string& user_dir);
void error(const QString& error_message);
2025-05-11 23:58:25 +00:00
private:
Emulator selected_emu;
2025-05-11 23:58:25 +00:00
bool clear_shader_cache;
MigrationStrategy strategy;
QString success_text = tr("Data was migrated successfully.");
};
#endif // MIGRATION_WORKER_H