mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-28 20:44:36 -05:00
47 lines
2.2 KiB
C++
47 lines
2.2 KiB
C++
#pragma once
|
|
#include "data/data.hpp"
|
|
#include "fs/SaveMetaData.hpp"
|
|
|
|
#include <switch.h>
|
|
|
|
namespace fs
|
|
{
|
|
/// @brief Creates save data for the target user for the title passed.
|
|
/// @param targetUser User to create save data for.
|
|
/// @param titleInfo Title to create save data for.
|
|
/// @param saveDataIndex Index. Only applicable to cache saves.
|
|
/// @param spaceID Save data space ID to create with. Default is 1/User.
|
|
/// @return True on success. False on failure.
|
|
bool create_save_data_for(data::User *targetUser,
|
|
data::TitleInfo *titleInfo,
|
|
uint16_t saveDataIndex = 0,
|
|
uint8_t spaceID = 1) noexcept;
|
|
|
|
/// @brief Creates save data for the user passed using the meta data passed.
|
|
bool create_save_data_for(data::User *targetUser, const fs::SaveMetaData &saveMeta) noexcept;
|
|
|
|
/// @brief Deletes the save data of the FsSaveDataInfo passed.
|
|
/// @param saveInfo Save data to delete.
|
|
/// @return True on success. False on failure.
|
|
bool delete_save_data(const FsSaveDataInfo *saveInfo) noexcept;
|
|
|
|
/// @brief Extends the save data of the FsSaveDataInfo struct passed.
|
|
/// @param saveInfo Pointer to the FsSaveDataInfo struct of the save to extend.
|
|
/// @param size Size (in MB) to extend the save data to.
|
|
/// @param journalSize Size of the journaling space.
|
|
/// @return True on success. False on failure.
|
|
bool extend_save_data(const FsSaveDataInfo *saveInfo, int64_t size, int64_t journalSize) noexcept;
|
|
|
|
/// @brief Returns whether or not the saveInfo passed is system type.
|
|
/// @param saveInfo FsSaveDataInfo to check.
|
|
/// @return True if it is. False if it isn't.
|
|
/// @note The config setting overrides this.
|
|
bool is_system_save_data(const FsSaveDataInfo *saveInfo) noexcept;
|
|
|
|
/// @brief Reads the extra info of the save container according to the FsSaveDataInfo passed.
|
|
/// @param saveInfo Pointer to the save info to read.
|
|
/// @param extraOut Reference to the FsSaveDataExtraData to read to.
|
|
/// @return True on success. False on failure.
|
|
bool read_save_extra_data(const FsSaveDataInfo *saveInfo, FsSaveDataExtraData &extraOut) noexcept;
|
|
} // namespace fs
|