2014-12-18 04:44:32 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-18 04:44:32 +00:00
|
|
|
// 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 {
|
|
|
|
|
2014-12-18 21:58:42 +00:00
|
|
|
/// File system interface to the SystemSaveData archive
|
|
|
|
/// TODO(Subv): This archive should point to a location in the NAND,
|
|
|
|
/// specifically nand:/data/<ID0>/sysdata/<SaveID-Low>/<SaveID-High>
|
2014-12-18 04:44:32 +00:00
|
|
|
class Archive_SystemSaveData final : public DiskArchive {
|
|
|
|
public:
|
|
|
|
Archive_SystemSaveData(const std::string& mount_point);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the archive.
|
|
|
|
* @return true if it initialized successfully
|
|
|
|
*/
|
|
|
|
bool Initialize();
|
|
|
|
|
|
|
|
std::string GetName() const override { return "SystemSaveData"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|