Browse Source
Archives: Implemented ExtSaveData and SharedExtSaveData
Archives: Implemented ExtSaveData and SharedExtSaveData
They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded.pull/15/merge
17 changed files with 268 additions and 60 deletions
-
1src/common/common_paths.h
-
2src/common/file_util.cpp
-
1src/common/file_util.h
-
2src/core/CMakeLists.txt
-
17src/core/file_sys/archive_backend.h
-
59src/core/file_sys/archive_extsavedata.cpp
-
45src/core/file_sys/archive_extsavedata.h
-
5src/core/file_sys/archive_romfs.cpp
-
6src/core/file_sys/archive_romfs.h
-
25src/core/file_sys/archive_savedata.cpp
-
19src/core/file_sys/archive_savedata.h
-
7src/core/file_sys/disk_archive.h
-
13src/core/hle/service/apt_a.cpp
-
59src/core/hle/service/fs/archive.cpp
-
3src/core/hle/service/fs/archive.h
-
17src/core/hle/service/fs/fs_user.cpp
-
47src/core/hle/service/ptm_u.cpp
@ -0,0 +1,59 @@ |
|||||
|
// Copyright 2014 Citra Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include <sys/stat.h>
|
||||
|
|
||||
|
#include "common/common_types.h"
|
||||
|
#include "common/file_util.h"
|
||||
|
|
||||
|
#include "core/file_sys/archive_extsavedata.h"
|
||||
|
#include "core/file_sys/disk_archive.h"
|
||||
|
#include "core/settings.h"
|
||||
|
|
||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
// FileSys namespace
|
||||
|
|
||||
|
namespace FileSys { |
||||
|
|
||||
|
static std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path) { |
||||
|
std::vector<u8> vec_data = path.AsBinary(); |
||||
|
const u32* data = reinterpret_cast<const u32*>(vec_data.data()); |
||||
|
u32 media_type = data[0]; |
||||
|
u32 save_low = data[1]; |
||||
|
u32 save_high = data[2]; |
||||
|
return Common::StringFromFormat("%s%s/%08X/%08X/", mount_point.c_str(), media_type == 0 ? "nand" : "sdmc", save_high, save_low); |
||||
|
} |
||||
|
|
||||
|
Archive_ExtSaveData::Archive_ExtSaveData(const std::string& mount_point) |
||||
|
: DiskArchive(mount_point), concrete_mount_point(mount_point) { |
||||
|
LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", this->mount_point.c_str()); |
||||
|
} |
||||
|
|
||||
|
bool Archive_ExtSaveData::Initialize() { |
||||
|
if (!FileUtil::CreateFullPath(mount_point)) { |
||||
|
LOG_ERROR(Service_FS, "Unable to create ExtSaveData base path."); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
ResultCode Archive_ExtSaveData::Open(const Path& path) { |
||||
|
std::string fullpath = GetExtSaveDataPath(mount_point, path); |
||||
|
if (!FileUtil::Exists(fullpath)) { |
||||
|
// TODO(Subv): Check error code, this one is probably wrong
|
||||
|
return ResultCode(ErrorDescription::FS_NotFormatted, ErrorModule::FS, |
||||
|
ErrorSummary::InvalidState, ErrorLevel::Status); |
||||
|
} |
||||
|
concrete_mount_point = fullpath; |
||||
|
return RESULT_SUCCESS; |
||||
|
} |
||||
|
|
||||
|
ResultCode Archive_ExtSaveData::Format(const Path& path) const { |
||||
|
std::string fullpath = GetExtSaveDataPath(mount_point, path); |
||||
|
FileUtil::CreateFullPath(fullpath); |
||||
|
return RESULT_SUCCESS; |
||||
|
} |
||||
|
|
||||
|
} // namespace FileSys
|
||||
@ -0,0 +1,45 @@ |
|||||
|
// Copyright 2014 Citra Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include "common/common_types.h" |
||||
|
|
||||
|
#include "core/file_sys/disk_archive.h" |
||||
|
#include "core/loader/loader.h" |
||||
|
|
||||
|
//////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
// FileSys namespace |
||||
|
|
||||
|
namespace FileSys { |
||||
|
|
||||
|
/// File system interface to the ExtSaveData archive |
||||
|
class Archive_ExtSaveData final : public DiskArchive { |
||||
|
public: |
||||
|
Archive_ExtSaveData(const std::string& mount_point); |
||||
|
|
||||
|
/** |
||||
|
* Initialize the archive. |
||||
|
* @return true if it initialized successfully |
||||
|
*/ |
||||
|
bool Initialize(); |
||||
|
|
||||
|
ResultCode Open(const Path& path) override; |
||||
|
ResultCode Format(const Path& path) const override; |
||||
|
std::string GetName() const override { return "ExtSaveData"; } |
||||
|
|
||||
|
const std::string& GetMountPoint() const override { |
||||
|
return concrete_mount_point; |
||||
|
} |
||||
|
|
||||
|
protected: |
||||
|
/** |
||||
|
* This holds the full directory path for this archive, it is only set after a successful call to Open, |
||||
|
* this is formed as <base extsavedatapath>/<type>/<high>/<low>. |
||||
|
* See GetExtSaveDataPath for the code that extracts this data from an archive path. |
||||
|
*/ |
||||
|
std::string concrete_mount_point; |
||||
|
}; |
||||
|
|
||||
|
} // namespace FileSys |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue