summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nax.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-16 23:02:31 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-23 17:52:44 +0200
commit2164702cf7f878c84a1f148daca2416911e6e939 (patch)
tree73db8e3ffb79e5b219cc23b935008a29a26b0de7 /src/core/loader/nax.h
parentxts_encryption_layer: Implement XTSEncryptionLayer (diff)
downloadyuzu-2164702cf7f878c84a1f148daca2416911e6e939.tar
yuzu-2164702cf7f878c84a1f148daca2416911e6e939.tar.gz
yuzu-2164702cf7f878c84a1f148daca2416911e6e939.tar.bz2
yuzu-2164702cf7f878c84a1f148daca2416911e6e939.tar.lz
yuzu-2164702cf7f878c84a1f148daca2416911e6e939.tar.xz
yuzu-2164702cf7f878c84a1f148daca2416911e6e939.tar.zst
yuzu-2164702cf7f878c84a1f148daca2416911e6e939.zip
Diffstat (limited to '')
-rw-r--r--src/core/loader/nax.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/core/loader/nax.h b/src/core/loader/nax.h
new file mode 100644
index 000000000..08d6ef346
--- /dev/null
+++ b/src/core/loader/nax.h
@@ -0,0 +1,43 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <memory>
+#include "common/common_types.h"
+#include "core/file_sys/card_image.h"
+#include "core/file_sys/xts_archive.h"
+#include "core/loader/loader.h"
+#include "core/loader/nca.h"
+
+namespace Loader {
+
+/// Loads a NAX file
+class AppLoader_NAX final : public AppLoader {
+public:
+ explicit AppLoader_NAX(FileSys::VirtualFile file);
+ ~AppLoader_NAX();
+
+ /**
+ * Returns the type of the file
+ * @param file std::shared_ptr<VfsFile> open file
+ * @return FileType found, or FileType::Error if this loader doesn't know it
+ */
+ static FileType IdentifyType(const FileSys::VirtualFile& file);
+
+ FileType GetFileType() override {
+ return IdentifyType(file);
+ }
+
+ ResultStatus Load(Kernel::SharedPtr<Kernel::Process>& process) override;
+
+ ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override;
+ ResultStatus ReadProgramId(u64& out_program_id) override;
+
+private:
+ std::unique_ptr<FileSys::NAX> nax;
+ std::unique_ptr<AppLoader_NCA> nca_loader;
+};
+
+} // namespace Loader