mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
4cecb6f955
This isn't hooked up yet, currently savegames are non-functional. They will come back once the global actor arrays are no longer relevant for maintenance.
78 lines
2 KiB
C++
78 lines
2 KiB
C++
#pragma once
|
|
|
|
#include "resourcefile.h"
|
|
#include "build.h"
|
|
#include "gamefuncs.h"
|
|
#include "coreactor.h"
|
|
|
|
// Savegame utilities
|
|
class FileReader;
|
|
extern int SaveVersion;
|
|
|
|
FString G_BuildSaveName (const char *prefix);
|
|
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();
|
|
|
|
#define SAVEGAME_EXT ".dsave"
|
|
|
|
|
|
template<> inline FSerializer& Serialize(FSerializer& arc, const char* keyname, spritetype*& w, spritetype** def)
|
|
{
|
|
int ndx = w ? int(w - sprite) : -1;
|
|
arc(keyname, ndx);
|
|
w = ndx == -1 ? nullptr : sprite + ndx;
|
|
return arc;
|
|
}
|
|
|
|
template<> inline FSerializer& Serialize(FSerializer& arc, const char* keyname, sectortype*& w, sectortype** def)
|
|
{
|
|
int ndx = w ? sectnum(w) : -1;
|
|
arc(keyname, ndx);
|
|
w = ndx == -1 ? nullptr : §or[ndx];
|
|
return arc;
|
|
}
|
|
|
|
template<> inline FSerializer& Serialize(FSerializer& arc, const char* keyname, walltype*& w, walltype** def)
|
|
{
|
|
int ndx = w ? wallnum(w) : -1;
|
|
arc(keyname, ndx);
|
|
w = ndx == -1 ? nullptr : &wall[ndx];
|
|
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)
|
|
("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;
|
|
}
|