diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/common_paths.h | 6 | ||||
| -rw-r--r-- | src/common/file_util.cpp | 12 | ||||
| -rw-r--r-- | src/common/file_util.h | 6 | ||||
| -rw-r--r-- | src/core/file_sys/archive_extsavedata.cpp | 14 | ||||
| -rw-r--r-- | src/core/file_sys/archive_extsavedata.h | 2 | ||||
| -rw-r--r-- | src/core/file_sys/archive_savedata.cpp | 15 | ||||
| -rw-r--r-- | src/core/file_sys/archive_savedatacheck.cpp | 16 | ||||
| -rw-r--r-- | src/core/file_sys/archive_systemsavedata.cpp | 7 | ||||
| -rw-r--r-- | src/core/file_sys/archive_systemsavedata.h | 2 | ||||
| -rw-r--r-- | src/core/hle/service/cfg/cfg.cpp | 4 | ||||
| -rw-r--r-- | src/core/hle/service/fs/archive.cpp | 20 | ||||
| -rw-r--r-- | src/core/hle/service/fs/archive.h | 5 | ||||
| -rw-r--r-- | src/core/hle/service/ptm_u.cpp | 6 |
13 files changed, 68 insertions, 47 deletions
diff --git a/src/common/common_paths.h b/src/common/common_paths.h index e307ca9f3..0ecf2d9de 100644 --- a/src/common/common_paths.h +++ b/src/common/common_paths.h | |||
| @@ -40,12 +40,8 @@ | |||
| 40 | #define MAPS_DIR "maps" | 40 | #define MAPS_DIR "maps" |
| 41 | #define CACHE_DIR "cache" | 41 | #define CACHE_DIR "cache" |
| 42 | #define SDMC_DIR "sdmc" | 42 | #define SDMC_DIR "sdmc" |
| 43 | #define EXTSAVEDATA_DIR "sdmc/Nintendo 3DS/extdata" | 43 | #define NAND_DIR "nand" |
| 44 | #define SHAREDEXTSAVEDATA_DIR "nand/data/extdata" | ||
| 45 | #define SAVEDATA_DIR "savedata" | ||
| 46 | #define SAVEDATACHECK_DIR "nand/title" | ||
| 47 | #define SYSDATA_DIR "sysdata" | 44 | #define SYSDATA_DIR "sysdata" |
| 48 | #define SYSSAVEDATA_DIR "nand/data/sysdata" | ||
| 49 | #define SHADERCACHE_DIR "shader_cache" | 45 | #define SHADERCACHE_DIR "shader_cache" |
| 50 | #define STATESAVES_DIR "state_saves" | 46 | #define STATESAVES_DIR "state_saves" |
| 51 | #define SCREENSHOTS_DIR "screenShots" | 47 | #define SCREENSHOTS_DIR "screenShots" |
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index f8d140d84..706e7c842 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp | |||
| @@ -676,12 +676,8 @@ const std::string& GetUserPath(const unsigned int DirIDX, const std::string &new | |||
| 676 | paths[D_MAPS_IDX] = paths[D_USER_IDX] + MAPS_DIR DIR_SEP; | 676 | paths[D_MAPS_IDX] = paths[D_USER_IDX] + MAPS_DIR DIR_SEP; |
| 677 | paths[D_CACHE_IDX] = paths[D_USER_IDX] + CACHE_DIR DIR_SEP; | 677 | paths[D_CACHE_IDX] = paths[D_USER_IDX] + CACHE_DIR DIR_SEP; |
| 678 | paths[D_SDMC_IDX] = paths[D_USER_IDX] + SDMC_DIR DIR_SEP; | 678 | paths[D_SDMC_IDX] = paths[D_USER_IDX] + SDMC_DIR DIR_SEP; |
| 679 | paths[D_EXTSAVEDATA] = paths[D_USER_IDX] + EXTSAVEDATA_DIR DIR_SEP; | 679 | paths[D_NAND_IDX] = paths[D_USER_IDX] + NAND_DIR DIR_SEP; |
| 680 | paths[D_SHAREDEXTSAVEDATA] = paths[D_USER_IDX] + SHAREDEXTSAVEDATA_DIR DIR_SEP; | ||
| 681 | paths[D_SAVEDATA_IDX] = paths[D_USER_IDX] + SAVEDATA_DIR DIR_SEP; | ||
| 682 | paths[D_SAVEDATACHECK_IDX] = paths[D_USER_IDX] + SAVEDATACHECK_DIR DIR_SEP; | ||
| 683 | paths[D_SYSDATA_IDX] = paths[D_USER_IDX] + SYSDATA_DIR DIR_SEP; | 680 | paths[D_SYSDATA_IDX] = paths[D_USER_IDX] + SYSDATA_DIR DIR_SEP; |
| 684 | paths[D_SYSSAVEDATA_IDX] = paths[D_USER_IDX] + SYSSAVEDATA_DIR DIR_SEP; | ||
| 685 | paths[D_SHADERCACHE_IDX] = paths[D_USER_IDX] + SHADERCACHE_DIR DIR_SEP; | 681 | paths[D_SHADERCACHE_IDX] = paths[D_USER_IDX] + SHADERCACHE_DIR DIR_SEP; |
| 686 | paths[D_SHADERS_IDX] = paths[D_USER_IDX] + SHADERS_DIR DIR_SEP; | 682 | paths[D_SHADERS_IDX] = paths[D_USER_IDX] + SHADERS_DIR DIR_SEP; |
| 687 | paths[D_STATESAVES_IDX] = paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP; | 683 | paths[D_STATESAVES_IDX] = paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP; |
| @@ -723,11 +719,7 @@ const std::string& GetUserPath(const unsigned int DirIDX, const std::string &new | |||
| 723 | paths[D_MAPS_IDX] = paths[D_USER_IDX] + MAPS_DIR DIR_SEP; | 719 | paths[D_MAPS_IDX] = paths[D_USER_IDX] + MAPS_DIR DIR_SEP; |
| 724 | paths[D_CACHE_IDX] = paths[D_USER_IDX] + CACHE_DIR DIR_SEP; | 720 | paths[D_CACHE_IDX] = paths[D_USER_IDX] + CACHE_DIR DIR_SEP; |
| 725 | paths[D_SDMC_IDX] = paths[D_USER_IDX] + SDMC_DIR DIR_SEP; | 721 | paths[D_SDMC_IDX] = paths[D_USER_IDX] + SDMC_DIR DIR_SEP; |
| 726 | paths[D_EXTSAVEDATA] = paths[D_USER_IDX] + EXTSAVEDATA_DIR DIR_SEP; | 722 | paths[D_NAND_IDX] = paths[D_USER_IDX] + NAND_DIR DIR_SEP; |
| 727 | paths[D_SHAREDEXTSAVEDATA] = paths[D_USER_IDX] + SHAREDEXTSAVEDATA_DIR DIR_SEP; | ||
| 728 | paths[D_SAVEDATA_IDX] = paths[D_USER_IDX] + SAVEDATA_DIR DIR_SEP; | ||
| 729 | paths[D_SAVEDATACHECK_IDX] = paths[D_USER_IDX] + SAVEDATACHECK_DIR DIR_SEP; | ||
| 730 | paths[D_SYSSAVEDATA_IDX] = paths[D_USER_IDX] + SYSSAVEDATA_DIR DIR_SEP; | ||
| 731 | paths[D_SHADERCACHE_IDX] = paths[D_USER_IDX] + SHADERCACHE_DIR DIR_SEP; | 723 | paths[D_SHADERCACHE_IDX] = paths[D_USER_IDX] + SHADERCACHE_DIR DIR_SEP; |
| 732 | paths[D_SHADERS_IDX] = paths[D_USER_IDX] + SHADERS_DIR DIR_SEP; | 724 | paths[D_SHADERS_IDX] = paths[D_USER_IDX] + SHADERS_DIR DIR_SEP; |
| 733 | paths[D_STATESAVES_IDX] = paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP; | 725 | paths[D_STATESAVES_IDX] = paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP; |
diff --git a/src/common/file_util.h b/src/common/file_util.h index 4d6155f1f..86aab2e3d 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h | |||
| @@ -27,12 +27,8 @@ enum { | |||
| 27 | D_STATESAVES_IDX, | 27 | D_STATESAVES_IDX, |
| 28 | D_SCREENSHOTS_IDX, | 28 | D_SCREENSHOTS_IDX, |
| 29 | D_SDMC_IDX, | 29 | D_SDMC_IDX, |
| 30 | D_EXTSAVEDATA, | 30 | D_NAND_IDX, |
| 31 | D_SHAREDEXTSAVEDATA, | ||
| 32 | D_SAVEDATA_IDX, | ||
| 33 | D_SAVEDATACHECK_IDX, | ||
| 34 | D_SYSDATA_IDX, | 31 | D_SYSDATA_IDX, |
| 35 | D_SYSSAVEDATA_IDX, | ||
| 36 | D_HIRESTEXTURES_IDX, | 32 | D_HIRESTEXTURES_IDX, |
| 37 | D_DUMP_IDX, | 33 | D_DUMP_IDX, |
| 38 | D_DUMPFRAMES_IDX, | 34 | D_DUMPFRAMES_IDX, |
diff --git a/src/core/file_sys/archive_extsavedata.cpp b/src/core/file_sys/archive_extsavedata.cpp index 2f00bf067..5de2aae43 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 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| @@ -24,9 +25,16 @@ static std::string GetExtSaveDataPath(const std::string& mount_point, const Path | |||
| 24 | return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_high, save_low); | 25 | return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_high, save_low); |
| 25 | } | 26 | } |
| 26 | 27 | ||
| 27 | Archive_ExtSaveData::Archive_ExtSaveData(const std::string& mount_point) | 28 | static std::string GetExtDataContainerPath(const std::string& mount_point, bool shared) { |
| 28 | : DiskArchive(mount_point), concrete_mount_point(mount_point) { | 29 | if (shared) |
| 29 | LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", this->mount_point.c_str()); | 30 | return Common::StringFromFormat("%sdata/%32x/extdata/", mount_point.c_str(), ID0); |
| 31 | |||
| 32 | return Common::StringFromFormat("%sNintendo 3DS/%32x/%32x/extdata/", mount_point.c_str(), ID0, ID1); | ||
| 33 | } | ||
| 34 | |||
| 35 | Archive_ExtSaveData::Archive_ExtSaveData(const std::string& mount_location, bool shared) | ||
| 36 | : DiskArchive(GetExtDataContainerPath(mount_location, shared)), concrete_mount_point(mount_point) { | ||
| 37 | LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", mount_point.c_str()); | ||
| 30 | } | 38 | } |
| 31 | 39 | ||
| 32 | bool Archive_ExtSaveData::Initialize() { | 40 | 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..f189692fa 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,24 @@ | |||
| 16 | 17 | ||
| 17 | namespace FileSys { | 18 | namespace FileSys { |
| 18 | 19 | ||
| 20 | static std::string GetSaveDataContainerPath(const std::string& mount_point) { | ||
| 21 | return Common::StringFromFormat("%sNintendo 3DS/%32x/%32x/title/", mount_point.c_str(), ID0, ID1); | ||
| 22 | } | ||
| 23 | |||
| 24 | static std::string GetSaveDataPath(const std::string& mount_point, u64 program_id) { | ||
| 25 | u32 high = program_id >> 32; | ||
| 26 | u32 low = program_id & 0xFFFFFFFF; | ||
| 27 | return Common::StringFromFormat("%s%08x/%08x/data/00000001/", mount_point.c_str(), high, low); | ||
| 28 | } | ||
| 29 | |||
| 19 | Archive_SaveData::Archive_SaveData(const std::string& mount_point) | 30 | Archive_SaveData::Archive_SaveData(const std::string& mount_point) |
| 20 | : DiskArchive(mount_point) { | 31 | : DiskArchive(GetSaveDataContainerPath(mount_point)) { |
| 21 | LOG_INFO(Service_FS, "Directory %s set as SaveData.", this->mount_point.c_str()); | 32 | LOG_INFO(Service_FS, "Directory %s set as SaveData.", this->mount_point.c_str()); |
| 22 | } | 33 | } |
| 23 | 34 | ||
| 24 | ResultCode Archive_SaveData::Open(const Path& path) { | 35 | ResultCode Archive_SaveData::Open(const Path& path) { |
| 25 | if (concrete_mount_point.empty()) | 36 | if (concrete_mount_point.empty()) |
| 26 | concrete_mount_point = Common::StringFromFormat("%s%016X", mount_point.c_str(), Kernel::g_program_id) + DIR_SEP; | 37 | concrete_mount_point = GetSaveDataPath(mount_point, Kernel::g_program_id); |
| 27 | if (!FileUtil::Exists(concrete_mount_point)) { | 38 | if (!FileUtil::Exists(concrete_mount_point)) { |
| 28 | // When a SaveData archive is created for the first time, it is not yet formatted | 39 | // 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. | 40 | // 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 1b1e01c6e..dcd563773 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& mount_point) { |
| 16 | return Common::StringFromFormat("%stitle/", mount_point.c_str(), ID0); | ||
| 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& mount_loc) : | ||
| 25 | mount_point(GetSaveDataCheckContainerPath(mount_loc)) { | ||
| 15 | } | 26 | } |
| 16 | 27 | ||
| 17 | ResultCode Archive_SaveDataCheck::Open(const Path& path) { | 28 | ResultCode Archive_SaveDataCheck::Open(const Path& path) { |
| @@ -23,8 +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/content/00000000.app.romfs", | 37 | std::string file_path = GetSaveDataCheckPath(mount_point, data[1], data[0]); |
| 27 | mount_point.c_str(), data[1], data[0]); | ||
| 28 | FileUtil::IOFile file(file_path, "rb"); | 38 | FileUtil::IOFile file(file_path, "rb"); |
| 29 | 39 | ||
| 30 | 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_systemsavedata.cpp b/src/core/file_sys/archive_systemsavedata.cpp index 0da32d510..615f50e20 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/%32x/sysdata/", mount_point.c_str(), ID0); | ||
| 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); |
diff --git a/src/core/hle/service/cfg/cfg.cpp b/src/core/hle/service/cfg/cfg.cpp index 161aa8531..8812c49ef 100644 --- a/src/core/hle/service/cfg/cfg.cpp +++ b/src/core/hle/service/cfg/cfg.cpp | |||
| @@ -161,9 +161,9 @@ ResultCode FormatConfig() { | |||
| 161 | void CFGInit() { | 161 | void CFGInit() { |
| 162 | // TODO(Subv): In the future we should use the FS service to query this archive, | 162 | // TODO(Subv): In the future we should use the FS service to query this archive, |
| 163 | // currently it is not possible because you can only have one open archive of the same type at any time | 163 | // currently it is not possible because you can only have one open archive of the same type at any time |
| 164 | std::string syssavedata_directory = FileUtil::GetUserPath(D_SYSSAVEDATA_IDX); | 164 | std::string nand_directory = FileUtil::GetUserPath(D_NAND_IDX); |
| 165 | cfg_system_save_data = Common::make_unique<FileSys::Archive_SystemSaveData>( | 165 | cfg_system_save_data = Common::make_unique<FileSys::Archive_SystemSaveData>( |
| 166 | syssavedata_directory, CFG_SAVE_ID); | 166 | nand_directory, CFG_SAVE_ID); |
| 167 | if (!cfg_system_save_data->Initialize()) { | 167 | if (!cfg_system_save_data->Initialize()) { |
| 168 | LOG_CRITICAL(Service_CFG, "Could not initialize SystemSaveData archive for the CFG:U service"); | 168 | LOG_CRITICAL(Service_CFG, "Could not initialize SystemSaveData archive for the CFG:U service"); |
| 169 | return; | 169 | return; |
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index 56d53402f..f332d6f1f 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp | |||
| @@ -36,6 +36,9 @@ namespace std { | |||
| 36 | }; | 36 | }; |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | const u32 SYSTEM_ID = 0; | ||
| 40 | const u32 SDCARD_ID = 0; | ||
| 41 | |||
| 39 | namespace Service { | 42 | namespace Service { |
| 40 | namespace FS { | 43 | namespace FS { |
| 41 | 44 | ||
| @@ -437,6 +440,7 @@ void ArchiveInit() { | |||
| 437 | // archive type is SDMC, so it is the only one getting exposed. | 440 | // archive type is SDMC, so it is the only one getting exposed. |
| 438 | 441 | ||
| 439 | std::string sdmc_directory = FileUtil::GetUserPath(D_SDMC_IDX); | 442 | std::string sdmc_directory = FileUtil::GetUserPath(D_SDMC_IDX); |
| 443 | std::string nand_directory = FileUtil::GetUserPath(D_NAND_IDX); | ||
| 440 | auto sdmc_archive = Common::make_unique<FileSys::Archive_SDMC>(sdmc_directory); | 444 | auto sdmc_archive = Common::make_unique<FileSys::Archive_SDMC>(sdmc_directory); |
| 441 | if (sdmc_archive->Initialize()) | 445 | if (sdmc_archive->Initialize()) |
| 442 | CreateArchive(std::move(sdmc_archive), ArchiveIdCode::SDMC); | 446 | CreateArchive(std::move(sdmc_archive), ArchiveIdCode::SDMC); |
| @@ -444,28 +448,24 @@ void ArchiveInit() { | |||
| 444 | LOG_ERROR(Service_FS, "Can't instantiate SDMC archive with path %s", sdmc_directory.c_str()); | 448 | LOG_ERROR(Service_FS, "Can't instantiate SDMC archive with path %s", sdmc_directory.c_str()); |
| 445 | 449 | ||
| 446 | // Create the SaveData archive | 450 | // Create the SaveData archive |
| 447 | std::string savedata_directory = FileUtil::GetUserPath(D_SAVEDATA_IDX); | 451 | auto savedata_archive = Common::make_unique<FileSys::Archive_SaveData>(sdmc_directory); |
| 448 | auto savedata_archive = Common::make_unique<FileSys::Archive_SaveData>(savedata_directory); | ||
| 449 | CreateArchive(std::move(savedata_archive), ArchiveIdCode::SaveData); | 452 | CreateArchive(std::move(savedata_archive), ArchiveIdCode::SaveData); |
| 450 | 453 | ||
| 451 | std::string extsavedata_directory = FileUtil::GetUserPath(D_EXTSAVEDATA); | 454 | auto extsavedata_archive = Common::make_unique<FileSys::Archive_ExtSaveData>(sdmc_directory, false); |
| 452 | auto extsavedata_archive = Common::make_unique<FileSys::Archive_ExtSaveData>(extsavedata_directory); | ||
| 453 | if (extsavedata_archive->Initialize()) | 455 | if (extsavedata_archive->Initialize()) |
| 454 | CreateArchive(std::move(extsavedata_archive), ArchiveIdCode::ExtSaveData); | 456 | CreateArchive(std::move(extsavedata_archive), ArchiveIdCode::ExtSaveData); |
| 455 | else | 457 | else |
| 456 | LOG_ERROR(Service_FS, "Can't instantiate ExtSaveData archive with path %s", extsavedata_directory.c_str()); | 458 | LOG_ERROR(Service_FS, "Can't instantiate ExtSaveData archive with path %s", extsavedata_archive->GetMountPoint().c_str()); |
| 457 | 459 | ||
| 458 | std::string sharedextsavedata_directory = FileUtil::GetUserPath(D_SHAREDEXTSAVEDATA); | 460 | auto sharedextsavedata_archive = Common::make_unique<FileSys::Archive_ExtSaveData>(nand_directory, true); |
| 459 | auto sharedextsavedata_archive = Common::make_unique<FileSys::Archive_ExtSaveData>(sharedextsavedata_directory); | ||
| 460 | if (sharedextsavedata_archive->Initialize()) | 461 | if (sharedextsavedata_archive->Initialize()) |
| 461 | CreateArchive(std::move(sharedextsavedata_archive), ArchiveIdCode::SharedExtSaveData); | 462 | CreateArchive(std::move(sharedextsavedata_archive), ArchiveIdCode::SharedExtSaveData); |
| 462 | else | 463 | else |
| 463 | LOG_ERROR(Service_FS, "Can't instantiate SharedExtSaveData archive with path %s", | 464 | LOG_ERROR(Service_FS, "Can't instantiate SharedExtSaveData archive with path %s", |
| 464 | sharedextsavedata_directory.c_str()); | 465 | sharedextsavedata_archive->GetMountPoint().c_str()); |
| 465 | 466 | ||
| 466 | // Create the SaveDataCheck archive, basically a small variation of the RomFS archive | 467 | // Create the SaveDataCheck archive, basically a small variation of the RomFS archive |
| 467 | std::string savedatacheck_directory = FileUtil::GetUserPath(D_SAVEDATACHECK_IDX); | 468 | auto savedatacheck_archive = Common::make_unique<FileSys::Archive_SaveDataCheck>(nand_directory); |
| 468 | auto savedatacheck_archive = Common::make_unique<FileSys::Archive_SaveDataCheck>(savedatacheck_directory); | ||
| 469 | CreateArchive(std::move(savedatacheck_archive), ArchiveIdCode::SaveDataCheck); | 469 | CreateArchive(std::move(savedatacheck_archive), ArchiveIdCode::SaveDataCheck); |
| 470 | } | 470 | } |
| 471 | 471 | ||
diff --git a/src/core/hle/service/fs/archive.h b/src/core/hle/service/fs/archive.h index 9e9efa019..f91a3d5f4 100644 --- a/src/core/hle/service/fs/archive.h +++ b/src/core/hle/service/fs/archive.h | |||
| @@ -10,6 +10,11 @@ | |||
| 10 | #include "core/hle/kernel/kernel.h" | 10 | #include "core/hle/kernel/kernel.h" |
| 11 | #include "core/hle/result.h" | 11 | #include "core/hle/result.h" |
| 12 | 12 | ||
| 13 | /// The unique system identifier hash, also known as ID0 | ||
| 14 | extern const u32 SYSTEM_ID; | ||
| 15 | /// The scrambled SD card CID, also known as ID1 | ||
| 16 | extern const u32 SDCARD_ID; | ||
| 17 | |||
| 13 | namespace Service { | 18 | namespace Service { |
| 14 | namespace FS { | 19 | namespace FS { |
| 15 | 20 | ||
diff --git a/src/core/hle/service/ptm_u.cpp b/src/core/hle/service/ptm_u.cpp index c900c90f8..fd79cd8ab 100644 --- a/src/core/hle/service/ptm_u.cpp +++ b/src/core/hle/service/ptm_u.cpp | |||
| @@ -142,10 +142,10 @@ Interface::Interface() { | |||
| 142 | Register(FunctionTable, ARRAY_SIZE(FunctionTable)); | 142 | Register(FunctionTable, ARRAY_SIZE(FunctionTable)); |
| 143 | // Create the SharedExtSaveData archive 0xF000000B and the gamecoin.dat file | 143 | // Create the SharedExtSaveData archive 0xF000000B and the gamecoin.dat file |
| 144 | // TODO(Subv): In the future we should use the FS service to query this archive | 144 | // TODO(Subv): In the future we should use the FS service to query this archive |
| 145 | std::string extsavedata_directory = FileUtil::GetUserPath(D_SHAREDEXTSAVEDATA); | 145 | std::string nand_directory = FileUtil::GetUserPath(D_NAND_IDX); |
| 146 | ptm_shared_extsavedata = Common::make_unique<FileSys::Archive_ExtSaveData>(extsavedata_directory); | 146 | ptm_shared_extsavedata = Common::make_unique<FileSys::Archive_ExtSaveData>(nand_directory, true); |
| 147 | if (!ptm_shared_extsavedata->Initialize()) { | 147 | if (!ptm_shared_extsavedata->Initialize()) { |
| 148 | LOG_CRITICAL(Service_PTM, "Could not initialize ExtSaveData archive for the PTM:U service"); | 148 | LOG_CRITICAL(Service_PTM, "Could not initialize SharedExtSaveData archive for the PTM:U service"); |
| 149 | return; | 149 | return; |
| 150 | } | 150 | } |
| 151 | FileSys::Path archive_path(ptm_shared_extdata_id); | 151 | FileSys::Path archive_path(ptm_shared_extdata_id); |