mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-06 12:13:57 +00:00
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
#ifndef QT_CONTENT_UTIL_H
|
||
|
|
#define QT_CONTENT_UTIL_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include "common/common_types.h"
|
||
|
|
|
||
|
|
namespace QtCommon::Content {
|
||
|
|
|
||
|
|
//
|
||
|
|
bool CheckGameFirmware(u64 program_id, QObject *parent);
|
||
|
|
|
||
|
|
static constexpr std::array<const char *, 6> FIRMWARE_RESULTS
|
||
|
|
= {"Successfully installed firmware version %1",
|
||
|
|
"",
|
||
|
|
"Unable to locate potential firmware NCA files",
|
||
|
|
"Failed to delete one or more firmware files.",
|
||
|
|
"One or more firmware files failed to copy into NAND.",
|
||
|
|
"Firmware installation cancelled, firmware may be in a bad state or corrupted."
|
||
|
|
"Restart Eden or re-install firmware."};
|
||
|
|
|
||
|
|
enum class FirmwareInstallResult {
|
||
|
|
Success,
|
||
|
|
NoOp,
|
||
|
|
NoNCAs,
|
||
|
|
FailedDelete,
|
||
|
|
FailedCopy,
|
||
|
|
FailedCorrupted,
|
||
|
|
};
|
||
|
|
|
||
|
|
inline constexpr const char *GetFirmwareInstallResultString(FirmwareInstallResult result)
|
||
|
|
{
|
||
|
|
return FIRMWARE_RESULTS.at(static_cast<std::size_t>(result));
|
||
|
|
}
|
||
|
|
|
||
|
|
void InstallFirmware(const QString &location, bool recursive);
|
||
|
|
|
||
|
|
QString UnzipFirmwareToTmp(const QString &location);
|
||
|
|
|
||
|
|
// Keys //
|
||
|
|
void InstallKeys();
|
||
|
|
|
||
|
|
// Content //
|
||
|
|
void VerifyGameContents(const std::string &game_path);
|
||
|
|
void VerifyInstalledContents();
|
||
|
|
}
|
||
|
|
#endif // QT_CONTENT_UTIL_H
|