summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_systemsavedata.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-22 19:58:38 +0100
committerbunnei <bunneidev@gmail.com>2015-03-22 19:58:38 +0100
commit03ceb7adf978693728eaae42d4cc8ccb9ff6913b (patch)
treecca5e66af529021ea7a7eedb7a61e56e6dde241c /src/core/file_sys/archive_systemsavedata.h
parentMerge pull request #669 from lioncash/cruft (diff)
parentService/FS: Document and log some unknown values. (diff)
downloadyuzu-03ceb7adf978693728eaae42d4cc8ccb9ff6913b.tar
yuzu-03ceb7adf978693728eaae42d4cc8ccb9ff6913b.tar.gz
yuzu-03ceb7adf978693728eaae42d4cc8ccb9ff6913b.tar.bz2
yuzu-03ceb7adf978693728eaae42d4cc8ccb9ff6913b.tar.lz
yuzu-03ceb7adf978693728eaae42d4cc8ccb9ff6913b.tar.xz
yuzu-03ceb7adf978693728eaae42d4cc8ccb9ff6913b.tar.zst
yuzu-03ceb7adf978693728eaae42d4cc8ccb9ff6913b.zip
Diffstat (limited to 'src/core/file_sys/archive_systemsavedata.h')
-rw-r--r--src/core/file_sys/archive_systemsavedata.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/file_sys/archive_systemsavedata.h b/src/core/file_sys/archive_systemsavedata.h
index 556a2a488..3431fed88 100644
--- a/src/core/file_sys/archive_systemsavedata.h
+++ b/src/core/file_sys/archive_systemsavedata.h
@@ -28,4 +28,29 @@ private:
std::string base_path;
};
+/**
+ * Constructs a path to the concrete SystemSaveData archive in the host filesystem based on the
+ * input Path and base mount point.
+ * @param mount_point The base mount point of the SystemSaveData archives.
+ * @param path The path that identifies the requested concrete SystemSaveData archive.
+ * @returns The complete path to the specified SystemSaveData archive in the host filesystem
+ */
+std::string GetSystemSaveDataPath(const std::string& mount_point, const Path& path);
+
+/**
+ * Constructs a path to the base folder to hold concrete SystemSaveData archives in the host file system.
+ * @param mount_point The base folder where this folder resides, ie. SDMC or NAND.
+ * @returns The path to the base SystemSaveData archives' folder in the host file system
+ */
+std::string GetSystemSaveDataContainerPath(const std::string& mount_point);
+
+/**
+ * Constructs a FileSys::Path object that refers to the SystemSaveData archive identified by
+ * the specified high save id and low save id.
+ * @param high The high word of the save id for the archive
+ * @param low The low word of the save id for the archive
+ * @returns A FileSys::Path to the wanted archive
+ */
+Path ConstructSystemSaveDataBinaryPath(u32 high, u32 low);
+
} // namespace FileSys