|
|
|
@ -15,6 +15,7 @@ |
|
|
|
#include "core/loader/nca.h"
|
|
|
|
#include "core/loader/nro.h"
|
|
|
|
#include "core/loader/nso.h"
|
|
|
|
#include "core/loader/nsp.h"
|
|
|
|
#include "core/loader/xci.h"
|
|
|
|
|
|
|
|
namespace Loader { |
|
|
|
@ -34,6 +35,7 @@ FileType IdentifyFile(FileSys::VirtualFile file) { |
|
|
|
CHECK_TYPE(NCA) |
|
|
|
CHECK_TYPE(XCI) |
|
|
|
CHECK_TYPE(NAX) |
|
|
|
CHECK_TYPE(NSP) |
|
|
|
|
|
|
|
#undef CHECK_TYPE
|
|
|
|
|
|
|
|
@ -59,6 +61,8 @@ FileType GuessFromFilename(const std::string& name) { |
|
|
|
return FileType::NCA; |
|
|
|
if (extension == "xci") |
|
|
|
return FileType::XCI; |
|
|
|
if (extension == "nsp") |
|
|
|
return FileType::NSP; |
|
|
|
|
|
|
|
return FileType::Unknown; |
|
|
|
} |
|
|
|
@ -77,6 +81,8 @@ std::string GetFileTypeString(FileType type) { |
|
|
|
return "XCI"; |
|
|
|
case FileType::NAX: |
|
|
|
return "NAX"; |
|
|
|
case FileType::NSP: |
|
|
|
return "NSP"; |
|
|
|
case FileType::DeconstructedRomDirectory: |
|
|
|
return "Directory"; |
|
|
|
case FileType::Error: |
|
|
|
@ -87,7 +93,7 @@ std::string GetFileTypeString(FileType type) { |
|
|
|
return "unknown"; |
|
|
|
} |
|
|
|
|
|
|
|
constexpr std::array<const char*, 49> RESULT_MESSAGES{ |
|
|
|
constexpr std::array<const char*, 50> RESULT_MESSAGES{ |
|
|
|
"The operation completed successfully.", |
|
|
|
"The loader requested to load is already loaded.", |
|
|
|
"The operation is not implemented.", |
|
|
|
@ -137,7 +143,7 @@ constexpr std::array<const char*, 49> RESULT_MESSAGES{ |
|
|
|
"The AES Key Generation Source could not be found.", |
|
|
|
"The SD Save Key Source could not be found.", |
|
|
|
"The SD NCA Key Source could not be found.", |
|
|
|
}; |
|
|
|
"The NSP file is missing a Program-type NCA."}; |
|
|
|
|
|
|
|
std::ostream& operator<<(std::ostream& os, ResultStatus status) { |
|
|
|
os << RESULT_MESSAGES.at(static_cast<size_t>(status)); |
|
|
|
@ -182,6 +188,10 @@ static std::unique_ptr<AppLoader> GetFileLoader(FileSys::VirtualFile file, FileT |
|
|
|
case FileType::NAX: |
|
|
|
return std::make_unique<AppLoader_NAX>(std::move(file)); |
|
|
|
|
|
|
|
// NX NSP (Nintendo Submission Package) file format
|
|
|
|
case FileType::NSP: |
|
|
|
return std::make_unique<AppLoader_NSP>(std::move(file)); |
|
|
|
|
|
|
|
// NX deconstructed ROM directory.
|
|
|
|
case FileType::DeconstructedRomDirectory: |
|
|
|
return std::make_unique<AppLoader_DeconstructedRomDirectory>(std::move(file)); |
|
|
|
|