2020-02-18 06:19:52 +01:00
|
|
|
// Copyright 2020 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <chrono>
|
2020-04-11 21:33:38 +02:00
|
|
|
#include <boost/serialization/binary_object.hpp>
|
2020-02-18 06:19:52 +01:00
|
|
|
#include <cryptopp/hex.h>
|
|
|
|
#include "common/archives.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "common/scm_rev.h"
|
|
|
|
#include "common/zstd_compression.h"
|
2020-04-01 23:06:22 +02:00
|
|
|
#include "core/cheats/cheats.h"
|
2020-02-18 06:19:52 +01:00
|
|
|
#include "core/core.h"
|
2020-06-29 16:32:24 +02:00
|
|
|
#include "core/movie.h"
|
2020-02-18 06:19:52 +01:00
|
|
|
#include "core/savestate.h"
|
2020-04-11 21:33:38 +02:00
|
|
|
#include "network/network.h"
|
2020-02-18 06:19:52 +01:00
|
|
|
#include "video_core/video_core.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
#pragma pack(push, 1)
|
|
|
|
struct CSTHeader {
|
|
|
|
std::array<u8, 4> filetype; /// Unique Identifier to check the file type (always "CST"0x1B)
|
|
|
|
u64_le program_id; /// ID of the ROM being executed. Also called title_id
|
|
|
|
std::array<u8, 20> revision; /// Git hash of the revision this savestate was created with
|
|
|
|
u64_le time; /// The time when this save state was created
|
|
|
|
|
|
|
|
std::array<u8, 216> reserved; /// Make heading 256 bytes so it has consistent size
|
2020-04-11 21:33:38 +02:00
|
|
|
|
|
|
|
template <class Archive>
|
|
|
|
void serialize(Archive& ar, const unsigned int) {
|
|
|
|
ar& boost::serialization::binary_object(this, sizeof(CSTHeader));
|
|
|
|
}
|
2020-02-18 06:19:52 +01:00
|
|
|
};
|
|
|
|
static_assert(sizeof(CSTHeader) == 256, "CSTHeader should be 256 bytes");
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
constexpr std::array<u8, 4> header_magic_bytes{{'C', 'S', 'T', 0x1B}};
|
|
|
|
|
|
|
|
std::string GetSaveStatePath(u64 program_id, u32 slot) {
|
2020-06-29 16:32:24 +02:00
|
|
|
const u64 movie_id = Movie::GetInstance().GetCurrentMovieID();
|
|
|
|
if (movie_id) {
|
|
|
|
return fmt::format("{}{:016X}.movie{:016X}.{:02d}.cst",
|
|
|
|
FileUtil::GetUserPath(FileUtil::UserPath::StatesDir), program_id,
|
|
|
|
movie_id, slot);
|
|
|
|
} else {
|
|
|
|
return fmt::format("{}{:016X}.{:02d}.cst",
|
|
|
|
FileUtil::GetUserPath(FileUtil::UserPath::StatesDir), program_id, slot);
|
|
|
|
}
|
2020-02-18 06:19:52 +01:00
|
|
|
}
|
|
|
|
|
2023-04-05 20:28:56 +02:00
|
|
|
static bool ValidateSaveState(const CSTHeader& header, SaveStateInfo& info, u64 program_id,
|
|
|
|
u32 slot) {
|
|
|
|
const auto path = GetSaveStatePath(program_id, slot);
|
|
|
|
if (header.filetype != header_magic_bytes) {
|
|
|
|
LOG_WARNING(Core, "Invalid save state file {}", path);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
info.time = header.time;
|
|
|
|
|
|
|
|
if (header.program_id != program_id) {
|
|
|
|
LOG_WARNING(Core, "Save state file isn't for the current game {}", path);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const std::string revision = fmt::format("{:02x}", fmt::join(header.revision, ""));
|
|
|
|
if (revision == Common::g_scm_rev) {
|
|
|
|
info.status = SaveStateInfo::ValidationStatus::OK;
|
|
|
|
} else {
|
|
|
|
LOG_WARNING(Core, "Save state file {} created from a different revision {}", path,
|
|
|
|
revision);
|
|
|
|
info.status = SaveStateInfo::ValidationStatus::RevisionDismatch;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-18 06:19:52 +01:00
|
|
|
std::vector<SaveStateInfo> ListSaveStates(u64 program_id) {
|
|
|
|
std::vector<SaveStateInfo> result;
|
|
|
|
for (u32 slot = 1; slot <= SaveStateSlotCount; ++slot) {
|
|
|
|
const auto path = GetSaveStatePath(program_id, slot);
|
|
|
|
if (!FileUtil::Exists(path)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
SaveStateInfo info;
|
|
|
|
info.slot = slot;
|
|
|
|
|
|
|
|
FileUtil::IOFile file(path, "rb");
|
|
|
|
if (!file) {
|
|
|
|
LOG_ERROR(Core, "Could not open file {}", path);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
CSTHeader header;
|
|
|
|
if (file.GetSize() < sizeof(header)) {
|
|
|
|
LOG_ERROR(Core, "File too small {}", path);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (file.ReadBytes(&header, sizeof(header)) != sizeof(header)) {
|
|
|
|
LOG_ERROR(Core, "Could not read from file {}", path);
|
|
|
|
continue;
|
|
|
|
}
|
2023-04-05 20:28:56 +02:00
|
|
|
if (!ValidateSaveState(header, info, program_id, slot)) {
|
2020-02-18 06:19:52 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
result.emplace_back(std::move(info));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void System::SaveState(u32 slot) const {
|
|
|
|
std::ostringstream sstream{std::ios_base::binary};
|
2020-04-13 00:12:15 +02:00
|
|
|
// Serialize
|
|
|
|
oarchive oa{sstream};
|
|
|
|
oa&* this;
|
|
|
|
|
2020-02-18 06:19:52 +01:00
|
|
|
const std::string& str{sstream.str()};
|
|
|
|
auto buffer = Common::Compression::CompressDataZSTDDefault(
|
|
|
|
reinterpret_cast<const u8*>(str.data()), str.size());
|
|
|
|
|
|
|
|
const auto path = GetSaveStatePath(title_id, slot);
|
|
|
|
if (!FileUtil::CreateFullPath(path)) {
|
2020-04-13 00:12:15 +02:00
|
|
|
throw std::runtime_error("Could not create path " + path);
|
2020-02-18 06:19:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FileUtil::IOFile file(path, "wb");
|
|
|
|
if (!file) {
|
2020-04-13 00:12:15 +02:00
|
|
|
throw std::runtime_error("Could not open file " + path);
|
2020-02-18 06:19:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CSTHeader header{};
|
|
|
|
header.filetype = header_magic_bytes;
|
|
|
|
header.program_id = title_id;
|
|
|
|
std::string rev_bytes;
|
|
|
|
CryptoPP::StringSource(Common::g_scm_rev, true,
|
|
|
|
new CryptoPP::HexDecoder(new CryptoPP::StringSink(rev_bytes)));
|
|
|
|
std::memcpy(header.revision.data(), rev_bytes.data(), sizeof(header.revision));
|
|
|
|
header.time = std::chrono::duration_cast<std::chrono::seconds>(
|
|
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
|
|
.count();
|
|
|
|
|
2020-04-13 00:12:15 +02:00
|
|
|
if (file.WriteBytes(&header, sizeof(header)) != sizeof(header) ||
|
|
|
|
file.WriteBytes(buffer.data(), buffer.size()) != buffer.size()) {
|
|
|
|
throw std::runtime_error("Could not write to file " + path);
|
2020-02-18 06:19:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void System::LoadState(u32 slot) {
|
2020-04-11 21:33:38 +02:00
|
|
|
if (Network::GetRoomMember().lock()->IsConnected()) {
|
2020-04-13 00:12:15 +02:00
|
|
|
throw std::runtime_error("Unable to load while connected to multiplayer");
|
2020-04-11 21:33:38 +02:00
|
|
|
}
|
|
|
|
|
2020-02-18 06:19:52 +01:00
|
|
|
const auto path = GetSaveStatePath(title_id, slot);
|
|
|
|
|
|
|
|
std::vector<u8> decompressed;
|
|
|
|
{
|
|
|
|
std::vector<u8> buffer(FileUtil::GetSize(path) - sizeof(CSTHeader));
|
|
|
|
|
|
|
|
FileUtil::IOFile file(path, "rb");
|
2023-04-05 20:28:56 +02:00
|
|
|
|
|
|
|
// load header
|
|
|
|
CSTHeader header;
|
|
|
|
if (file.ReadBytes(&header, sizeof(header)) != sizeof(header)) {
|
|
|
|
throw std::runtime_error("Could not read from file at " + path);
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate header
|
|
|
|
SaveStateInfo info;
|
|
|
|
if (!ValidateSaveState(header, info, title_id, slot)) {
|
|
|
|
throw std::runtime_error("Invalid savestate");
|
|
|
|
}
|
|
|
|
|
2020-02-18 06:19:52 +01:00
|
|
|
if (file.ReadBytes(buffer.data(), buffer.size()) != buffer.size()) {
|
2020-04-13 00:12:15 +02:00
|
|
|
throw std::runtime_error("Could not read from file at " + path);
|
2020-02-18 06:19:52 +01:00
|
|
|
}
|
|
|
|
decompressed = Common::Compression::DecompressDataZSTD(buffer);
|
|
|
|
}
|
|
|
|
std::istringstream sstream{
|
|
|
|
std::string{reinterpret_cast<char*>(decompressed.data()), decompressed.size()},
|
|
|
|
std::ios_base::binary};
|
|
|
|
decompressed.clear();
|
|
|
|
|
2020-04-13 00:12:15 +02:00
|
|
|
// Deserialize
|
|
|
|
iarchive ia{sstream};
|
|
|
|
ia&* this;
|
2020-02-18 06:19:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core
|