raze/source/core/savegamehelp.h

69 lines
1.8 KiB
C
Raw Normal View History

#pragma once
2020-04-11 21:54:33 +00:00
#include "resourcefile.h"
#include "build.h"
#include "gamefuncs.h"
#include "coreactor.h"
2023-05-27 08:10:42 +00:00
#include "serializer_raze.h"
// Savegame utilities
class FileReader;
extern int SaveVersion;
int G_ValidateSavegame(FileReader &fr, FString *savetitle, bool formenu);
void G_LoadGame(const char* filename, bool hidecon = false);
void G_SaveGame(const char* fn, const char* desc);
void G_DoSaveGame(bool okForQuicksave, bool forceQuicksave, const char* filename, const char* description);
void G_DoLoadGame();
void M_Autosave();
template<> inline FSerializer& Serialize(FSerializer& arc, const char* keyname, sectortype*& w, sectortype** def)
2021-04-02 09:55:23 +00:00
{
assert(arc.isReading() || w == nullptr || (w >= &sector[0] && w <= &sector.Last()));
int ndx = w ? sectindex(w) : -1;
2021-04-02 09:55:23 +00:00
arc(keyname, ndx);
w = !validSectorIndex(ndx) ? nullptr : &sector[ndx];
2021-04-02 09:55:23 +00:00
return arc;
}
template<> inline FSerializer& Serialize(FSerializer& arc, const char* keyname, walltype*& w, walltype** def)
2021-04-02 09:55:23 +00:00
{
int ndx = w ? wallindex(w) : -1;
2021-04-02 09:55:23 +00:00
arc(keyname, ndx);
w = !validWallIndex(ndx) ? nullptr : &wall[ndx];
2021-04-02 09:55:23 +00:00
return arc;
}
template<class T>
inline FSerializer& Serialize(FSerializer& arc, const char* keyname, THitInfo<T>& w, THitInfo<T>* def)
{
if (arc.BeginObject(keyname))
{
arc("sect", w.hitSector)
("sprite", w.hitActor)
("wall", w.hitWall)
2022-08-17 16:53:45 +00:00
("x", w.hitpos.X)
("y", w.hitpos.Y)
("z", w.hitpos.Z)
.EndObject();
}
return arc;
}
template<class T>
inline FSerializer& Serialize(FSerializer& arc, const char* keyname, TCollision<T>& w, TCollision<T>* def)
{
if (arc.BeginObject(keyname))
{
arc("type", w.type);
if (w.type == kHitWall) arc("index", w.hitWall);
else if (w.type == kHitSprite) arc("index", w.hitActor);
else if (w.type == kHitSector) arc("index", w.hitSector);
else if (arc.isReading()) w.hitSector = nullptr;
arc.EndObject();
}
return arc;
}