mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 13:27:52 +00:00
PTM: Fixed a problem with the gamecoin PTM file.
This commit is contained in:
parent
1bbf0567b1
commit
0d2b6dd656
1 changed files with 13 additions and 21 deletions
|
@ -139,37 +139,29 @@ const Interface::FunctionInfo FunctionTable[] = {
|
||||||
Interface::Interface() {
|
Interface::Interface() {
|
||||||
Register(FunctionTable);
|
Register(FunctionTable);
|
||||||
|
|
||||||
// TODO(Subv): This code needs to be updated to not directly create archives and use the
|
// Open the SharedExtSaveData archive 0xF000000B and the gamecoin.dat file
|
||||||
// standard archive.h interfaces.
|
|
||||||
#if 0
|
|
||||||
// Create the SharedExtSaveData archive 0xF000000B and the gamecoin.dat file
|
|
||||||
// TODO(Subv): In the future we should use the FS service to query this archive
|
|
||||||
std::string nand_directory = FileUtil::GetUserPath(D_NAND_IDX);
|
|
||||||
ptm_shared_extsavedata = Common::make_unique<FileSys::Archive_ExtSaveData>(nand_directory, true);
|
|
||||||
if (!ptm_shared_extsavedata->Initialize()) {
|
|
||||||
LOG_CRITICAL(Service_PTM, "Could not initialize SharedExtSaveData archive for the PTM:U service");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
FileSys::Path archive_path(ptm_shared_extdata_id);
|
FileSys::Path archive_path(ptm_shared_extdata_id);
|
||||||
ResultCode result = ptm_shared_extsavedata->Open(archive_path);
|
auto archive_result = Service::FS::OpenArchive(Service::FS::ArchiveIdCode::SharedExtSaveData, archive_path);
|
||||||
// If the archive didn't exist, create the files inside
|
// If the archive didn't exist, create the files inside
|
||||||
if (result.description == ErrorDescription::FS_NotFormatted) {
|
if (archive_result.Code().description == ErrorDescription::FS_NotFormatted) {
|
||||||
// Format the archive to clear the directories
|
// Format the archive to create the directories
|
||||||
ptm_shared_extsavedata->Format(archive_path);
|
Service::FS::FormatArchive(Service::FS::ArchiveIdCode::SharedExtSaveData, archive_path);
|
||||||
// Open it again to get a valid archive now that the folder exists
|
// Open it again to get a valid archive now that the folder exists
|
||||||
ptm_shared_extsavedata->Open(archive_path);
|
archive_result = Service::FS::OpenArchive(Service::FS::ArchiveIdCode::SharedExtSaveData, archive_path);
|
||||||
|
_assert_msg_(Service_PTM, archive_result.Succeeded(), "Could not open the PTM SharedExtSaveData archive!");
|
||||||
|
|
||||||
FileSys::Path gamecoin_path("gamecoin.dat");
|
FileSys::Path gamecoin_path("gamecoin.dat");
|
||||||
FileSys::Mode open_mode = {};
|
FileSys::Mode open_mode = {};
|
||||||
open_mode.write_flag = 1;
|
open_mode.write_flag = 1;
|
||||||
open_mode.create_flag = 1;
|
open_mode.create_flag = 1;
|
||||||
// Open the file and write the default gamecoin information
|
// Open the file and write the default gamecoin information
|
||||||
auto gamecoin = ptm_shared_extsavedata->OpenFile(gamecoin_path, open_mode);
|
auto gamecoin_result = Service::FS::OpenFileFromArchive(*archive_result, gamecoin_path, open_mode);
|
||||||
if (gamecoin != nullptr) {
|
if (gamecoin_result.Succeeded()) {
|
||||||
gamecoin->Write(0, sizeof(GameCoin), 1, reinterpret_cast<const u8*>(&default_game_coin));
|
auto gamecoin = gamecoin_result.MoveFrom();
|
||||||
gamecoin->Close();
|
gamecoin->backend->Write(0, sizeof(GameCoin), 1, reinterpret_cast<const u8*>(&default_game_coin));
|
||||||
|
gamecoin->backend->Close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
Loading…
Reference in a new issue