diff options
| author | 2015-01-06 20:13:56 -0500 | |
|---|---|---|
| committer | 2015-01-06 20:13:56 -0500 | |
| commit | 088863c9219df896b316244ad05452ef05b15ea4 (patch) | |
| tree | 66892c6362d7aae93b9349285234762e4e6ee189 /src/core/file_sys | |
| parent | Merge pull request #402 from chrisvj/master (diff) | |
| parent | Archives/Exdata: Don't set concrete_mount_point in the ctor (diff) | |
| download | yuzu-088863c9219df896b316244ad05452ef05b15ea4.tar.gz yuzu-088863c9219df896b316244ad05452ef05b15ea4.tar.xz yuzu-088863c9219df896b316244ad05452ef05b15ea4.zip | |
Merge pull request #376 from Subv/arc_reorder
Archives: Change the folder layout of some archives.
Diffstat (limited to 'src/core/file_sys')
| -rw-r--r-- | src/core/file_sys/archive_extsavedata.cpp | 18 | ||||
| -rw-r--r-- | src/core/file_sys/archive_extsavedata.h | 2 | ||||
| -rw-r--r-- | src/core/file_sys/archive_savedata.cpp | 18 | ||||
| -rw-r--r-- | src/core/file_sys/archive_savedatacheck.cpp | 15 | ||||
| -rw-r--r-- | src/core/file_sys/archive_sdmc.cpp | 4 | ||||
| -rw-r--r-- | src/core/file_sys/archive_systemsavedata.cpp | 7 | ||||
| -rw-r--r-- | src/core/file_sys/archive_systemsavedata.h | 2 |
7 files changed, 50 insertions, 16 deletions
diff --git a/src/core/file_sys/archive_extsavedata.cpp b/src/core/file_sys/archive_extsavedata.cpp index 4759ef3ae..0805f42ae 100644 --- a/src/core/file_sys/archive_extsavedata.cpp +++ b/src/core/file_sys/archive_extsavedata.cpp | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | #include "core/file_sys/archive_extsavedata.h" | 10 | #include "core/file_sys/archive_extsavedata.h" |
| 11 | #include "core/file_sys/disk_archive.h" | 11 | #include "core/file_sys/disk_archive.h" |
| 12 | #include "core/hle/service/fs/archive.h" | ||
| 12 | #include "core/settings.h" | 13 | #include "core/settings.h" |
| 13 | 14 | ||
| 14 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 15 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| @@ -19,15 +20,22 @@ namespace FileSys { | |||
| 19 | static std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path) { | 20 | static std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path) { |
| 20 | std::vector<u8> vec_data = path.AsBinary(); | 21 | std::vector<u8> vec_data = path.AsBinary(); |
| 21 | const u32* data = reinterpret_cast<const u32*>(vec_data.data()); | 22 | const u32* data = reinterpret_cast<const u32*>(vec_data.data()); |
| 22 | u32 media_type = data[0]; | ||
| 23 | u32 save_low = data[1]; | 23 | u32 save_low = data[1]; |
| 24 | u32 save_high = data[2]; | 24 | u32 save_high = data[2]; |
| 25 | return Common::StringFromFormat("%s%s/%08X/%08X/", mount_point.c_str(), media_type == 0 ? "nand" : "sdmc", save_high, save_low); | 25 | return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_high, save_low); |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | Archive_ExtSaveData::Archive_ExtSaveData(const std::string& mount_point) | 28 | static std::string GetExtDataContainerPath(const std::string& mount_point, bool shared) { |
| 29 | : DiskArchive(mount_point), concrete_mount_point(mount_point) { | 29 | if (shared) |
| 30 | LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", this->mount_point.c_str()); | 30 | return Common::StringFromFormat("%sdata/%s/extdata/", mount_point.c_str(), SYSTEM_ID.c_str()); |
| 31 | |||
| 32 | return Common::StringFromFormat("%sNintendo 3DS/%s/%s/extdata/", mount_point.c_str(), | ||
| 33 | SYSTEM_ID.c_str(), SDCARD_ID.c_str()); | ||
| 34 | } | ||
| 35 | |||
| 36 | Archive_ExtSaveData::Archive_ExtSaveData(const std::string& mount_location, bool shared) | ||
| 37 | : DiskArchive(GetExtDataContainerPath(mount_location, shared)) { | ||
| 38 | LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", mount_point.c_str()); | ||
| 31 | } | 39 | } |
| 32 | 40 | ||
| 33 | bool Archive_ExtSaveData::Initialize() { | 41 | bool Archive_ExtSaveData::Initialize() { |
diff --git a/src/core/file_sys/archive_extsavedata.h b/src/core/file_sys/archive_extsavedata.h index a3a144799..fb7f209d2 100644 --- a/src/core/file_sys/archive_extsavedata.h +++ b/src/core/file_sys/archive_extsavedata.h | |||
| @@ -17,7 +17,7 @@ namespace FileSys { | |||
| 17 | /// File system interface to the ExtSaveData archive | 17 | /// File system interface to the ExtSaveData archive |
| 18 | class Archive_ExtSaveData final : public DiskArchive { | 18 | class Archive_ExtSaveData final : public DiskArchive { |
| 19 | public: | 19 | public: |
| 20 | Archive_ExtSaveData(const std::string& mount_point); | 20 | Archive_ExtSaveData(const std::string& mount_point, bool shared); |
| 21 | 21 | ||
| 22 | /** | 22 | /** |
| 23 | * Initialize the archive. | 23 | * Initialize the archive. |
diff --git a/src/core/file_sys/archive_savedata.cpp b/src/core/file_sys/archive_savedata.cpp index 280d4ff5d..3baee5294 100644 --- a/src/core/file_sys/archive_savedata.cpp +++ b/src/core/file_sys/archive_savedata.cpp | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | #include "core/file_sys/archive_savedata.h" | 10 | #include "core/file_sys/archive_savedata.h" |
| 11 | #include "core/file_sys/disk_archive.h" | 11 | #include "core/file_sys/disk_archive.h" |
| 12 | #include "core/hle/service/fs/archive.h" | ||
| 12 | #include "core/settings.h" | 13 | #include "core/settings.h" |
| 13 | 14 | ||
| 14 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 15 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| @@ -16,14 +17,25 @@ | |||
| 16 | 17 | ||
| 17 | namespace FileSys { | 18 | namespace FileSys { |
| 18 | 19 | ||
| 19 | Archive_SaveData::Archive_SaveData(const std::string& mount_point) | 20 | static std::string GetSaveDataContainerPath(const std::string& sdmc_directory) { |
| 20 | : DiskArchive(mount_point) { | 21 | return Common::StringFromFormat("%sNintendo 3DS/%s/%s/title/", sdmc_directory.c_str(), |
| 22 | SYSTEM_ID.c_str(), SDCARD_ID.c_str()); | ||
| 23 | } | ||
| 24 | |||
| 25 | static std::string GetSaveDataPath(const std::string& mount_location, u64 program_id) { | ||
| 26 | u32 high = program_id >> 32; | ||
| 27 | u32 low = program_id & 0xFFFFFFFF; | ||
| 28 | return Common::StringFromFormat("%s%08x/%08x/data/00000001/", mount_location.c_str(), high, low); | ||
| 29 | } | ||
| 30 | |||
| 31 | Archive_SaveData::Archive_SaveData(const std::string& sdmc_directory) | ||
| 32 | : DiskArchive(GetSaveDataContainerPath(sdmc_directory)) { | ||
| 21 | LOG_INFO(Service_FS, "Directory %s set as SaveData.", this->mount_point.c_str()); | 33 | LOG_INFO(Service_FS, "Directory %s set as SaveData.", this->mount_point.c_str()); |
| 22 | } | 34 | } |
| 23 | 35 | ||
| 24 | ResultCode Archive_SaveData::Open(const Path& path) { | 36 | ResultCode Archive_SaveData::Open(const Path& path) { |
| 25 | if (concrete_mount_point.empty()) | 37 | if (concrete_mount_point.empty()) |
| 26 | concrete_mount_point = Common::StringFromFormat("%s%016X", mount_point.c_str(), Kernel::g_program_id) + DIR_SEP; | 38 | concrete_mount_point = GetSaveDataPath(mount_point, Kernel::g_program_id); |
| 27 | if (!FileUtil::Exists(concrete_mount_point)) { | 39 | if (!FileUtil::Exists(concrete_mount_point)) { |
| 28 | // When a SaveData archive is created for the first time, it is not yet formatted | 40 | // When a SaveData archive is created for the first time, it is not yet formatted |
| 29 | // and the save file/directory structure expected by the game has not yet been initialized. | 41 | // and the save file/directory structure expected by the game has not yet been initialized. |
diff --git a/src/core/file_sys/archive_savedatacheck.cpp b/src/core/file_sys/archive_savedatacheck.cpp index 233158a0c..a7a507536 100644 --- a/src/core/file_sys/archive_savedatacheck.cpp +++ b/src/core/file_sys/archive_savedatacheck.cpp | |||
| @@ -5,13 +5,24 @@ | |||
| 5 | #include "common/file_util.h" | 5 | #include "common/file_util.h" |
| 6 | 6 | ||
| 7 | #include "core/file_sys/archive_savedatacheck.h" | 7 | #include "core/file_sys/archive_savedatacheck.h" |
| 8 | #include "core/hle/service/fs/archive.h" | ||
| 8 | 9 | ||
| 9 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 10 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 10 | // FileSys namespace | 11 | // FileSys namespace |
| 11 | 12 | ||
| 12 | namespace FileSys { | 13 | namespace FileSys { |
| 13 | 14 | ||
| 14 | Archive_SaveDataCheck::Archive_SaveDataCheck(const std::string& mount_loc) : mount_point(mount_loc) { | 15 | static std::string GetSaveDataCheckContainerPath(const std::string& nand_directory) { |
| 16 | return Common::StringFromFormat("%s%s/title/", nand_directory.c_str(), SYSTEM_ID.c_str()); | ||
| 17 | } | ||
| 18 | |||
| 19 | static std::string GetSaveDataCheckPath(const std::string& mount_point, u32 high, u32 low) { | ||
| 20 | return Common::StringFromFormat("%s%08x/%08x/content/00000000.app.romfs", | ||
| 21 | mount_point.c_str(), high, low); | ||
| 22 | } | ||
| 23 | |||
| 24 | Archive_SaveDataCheck::Archive_SaveDataCheck(const std::string& nand_directory) : | ||
| 25 | mount_point(GetSaveDataCheckContainerPath(nand_directory)) { | ||
| 15 | } | 26 | } |
| 16 | 27 | ||
| 17 | ResultCode Archive_SaveDataCheck::Open(const Path& path) { | 28 | ResultCode Archive_SaveDataCheck::Open(const Path& path) { |
| @@ -23,7 +34,7 @@ ResultCode Archive_SaveDataCheck::Open(const Path& path) { | |||
| 23 | // this archive again with a different path, will corrupt the previously open file. | 34 | // this archive again with a different path, will corrupt the previously open file. |
| 24 | auto vec = path.AsBinary(); | 35 | auto vec = path.AsBinary(); |
| 25 | const u32* data = reinterpret_cast<u32*>(vec.data()); | 36 | const u32* data = reinterpret_cast<u32*>(vec.data()); |
| 26 | std::string file_path = Common::StringFromFormat("%s%08x%08x.bin", mount_point.c_str(), data[1], data[0]); | 37 | std::string file_path = GetSaveDataCheckPath(mount_point, data[1], data[0]); |
| 27 | FileUtil::IOFile file(file_path, "rb"); | 38 | FileUtil::IOFile file(file_path, "rb"); |
| 28 | 39 | ||
| 29 | std::fill(raw_data.begin(), raw_data.end(), 0); | 40 | std::fill(raw_data.begin(), raw_data.end(), 0); |
diff --git a/src/core/file_sys/archive_sdmc.cpp b/src/core/file_sys/archive_sdmc.cpp index 1c1c170b6..26b03e82f 100644 --- a/src/core/file_sys/archive_sdmc.cpp +++ b/src/core/file_sys/archive_sdmc.cpp | |||
| @@ -16,8 +16,8 @@ | |||
| 16 | 16 | ||
| 17 | namespace FileSys { | 17 | namespace FileSys { |
| 18 | 18 | ||
| 19 | Archive_SDMC::Archive_SDMC(const std::string& mount_point) : DiskArchive(mount_point) { | 19 | Archive_SDMC::Archive_SDMC(const std::string& sdmc_directory) : DiskArchive(sdmc_directory) { |
| 20 | LOG_INFO(Service_FS, "Directory %s set as SDMC.", mount_point.c_str()); | 20 | LOG_INFO(Service_FS, "Directory %s set as SDMC.", sdmc_directory.c_str()); |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | bool Archive_SDMC::Initialize() { | 23 | bool Archive_SDMC::Initialize() { |
diff --git a/src/core/file_sys/archive_systemsavedata.cpp b/src/core/file_sys/archive_systemsavedata.cpp index 0da32d510..c2a5d641a 100644 --- a/src/core/file_sys/archive_systemsavedata.cpp +++ b/src/core/file_sys/archive_systemsavedata.cpp | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | #include "core/file_sys/archive_systemsavedata.h" | 10 | #include "core/file_sys/archive_systemsavedata.h" |
| 11 | #include "core/file_sys/disk_archive.h" | 11 | #include "core/file_sys/disk_archive.h" |
| 12 | #include "core/hle/service/fs/archive.h" | ||
| 12 | #include "core/settings.h" | 13 | #include "core/settings.h" |
| 13 | 14 | ||
| 14 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 15 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| @@ -22,8 +23,12 @@ static std::string GetSystemSaveDataPath(const std::string& mount_point, u64 sav | |||
| 22 | return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_low, save_high); | 23 | return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_low, save_high); |
| 23 | } | 24 | } |
| 24 | 25 | ||
| 26 | static std::string GetSystemSaveDataContainerPath(const std::string& mount_point) { | ||
| 27 | return Common::StringFromFormat("%sdata/%s/sysdata/", mount_point.c_str(), SYSTEM_ID.c_str()); | ||
| 28 | } | ||
| 29 | |||
| 25 | Archive_SystemSaveData::Archive_SystemSaveData(const std::string& mount_point, u64 save_id) | 30 | Archive_SystemSaveData::Archive_SystemSaveData(const std::string& mount_point, u64 save_id) |
| 26 | : DiskArchive(GetSystemSaveDataPath(mount_point, save_id)) { | 31 | : DiskArchive(GetSystemSaveDataPath(GetSystemSaveDataContainerPath(mount_point), save_id)) { |
| 27 | LOG_INFO(Service_FS, "Directory %s set as SystemSaveData.", this->mount_point.c_str()); | 32 | LOG_INFO(Service_FS, "Directory %s set as SystemSaveData.", this->mount_point.c_str()); |
| 28 | } | 33 | } |
| 29 | 34 | ||
diff --git a/src/core/file_sys/archive_systemsavedata.h b/src/core/file_sys/archive_systemsavedata.h index 55d85193c..c8f5845ca 100644 --- a/src/core/file_sys/archive_systemsavedata.h +++ b/src/core/file_sys/archive_systemsavedata.h | |||
| @@ -15,8 +15,6 @@ | |||
| 15 | namespace FileSys { | 15 | namespace FileSys { |
| 16 | 16 | ||
| 17 | /// File system interface to the SystemSaveData archive | 17 | /// File system interface to the SystemSaveData archive |
| 18 | /// TODO(Subv): This archive should point to a location in the NAND, | ||
| 19 | /// specifically nand:/data/<ID0>/sysdata/<SaveID-Low>/<SaveID-High> | ||
| 20 | class Archive_SystemSaveData final : public DiskArchive { | 18 | class Archive_SystemSaveData final : public DiskArchive { |
| 21 | public: | 19 | public: |
| 22 | Archive_SystemSaveData(const std::string& mount_point, u64 save_id); | 20 | Archive_SystemSaveData(const std::string& mount_point, u64 save_id); |