2019-11-14 20:07:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-04-11 21:54:33 +00:00
|
|
|
#include "resourcefile.h"
|
2020-11-21 20:31:50 +00:00
|
|
|
#include "build.h"
|
2021-11-11 19:20:00 +00:00
|
|
|
#include "gamefuncs.h"
|
2021-11-26 12:00:33 +00:00
|
|
|
#include "coreactor.h"
|
2023-05-27 08:10:42 +00:00
|
|
|
#include "serializer_raze.h"
|
2020-11-21 20:31:50 +00:00
|
|
|
|
2019-11-26 23:41:26 +00:00
|
|
|
// Savegame utilities
|
|
|
|
class FileReader;
|
2021-05-13 11:44:58 +00:00
|
|
|
extern int SaveVersion;
|
2019-11-26 23:41:26 +00:00
|
|
|
|
2019-12-10 21:22:59 +00:00
|
|
|
int G_ValidateSavegame(FileReader &fr, FString *savetitle, bool formenu);
|
2019-11-26 23:41:26 +00:00
|
|
|
|
2021-05-11 22:31:49 +00:00
|
|
|
void G_LoadGame(const char* filename, bool hidecon = false);
|
2021-05-11 22:21:26 +00:00
|
|
|
void G_SaveGame(const char* fn, const char* desc);
|
|
|
|
void G_DoSaveGame(bool okForQuicksave, bool forceQuicksave, const char* filename, const char* description);
|
2021-05-11 22:31:49 +00:00
|
|
|
void G_DoLoadGame();
|
2020-10-07 16:32:57 +00:00
|
|
|
|
2020-10-04 16:31:48 +00:00
|
|
|
void M_Autosave();
|
2020-01-21 18:22:38 +00:00
|
|
|
|
2021-11-26 12:00:33 +00:00
|
|
|
template<> inline FSerializer& Serialize(FSerializer& arc, const char* keyname, sectortype*& w, sectortype** def)
|
2021-04-02 09:55:23 +00:00
|
|
|
{
|
2022-05-21 11:57:47 +00:00
|
|
|
assert(arc.isReading() || w == nullptr || (w >= §or[0] && w <= §or.Last()));
|
2022-11-15 11:03:44 +00:00
|
|
|
int ndx = w ? sectindex(w) : -1;
|
2021-04-02 09:55:23 +00:00
|
|
|
arc(keyname, ndx);
|
2022-05-21 11:57:47 +00:00
|
|
|
w = !validSectorIndex(ndx) ? nullptr : §or[ndx];
|
2021-04-02 09:55:23 +00:00
|
|
|
return arc;
|
|
|
|
}
|
|
|
|
|
2021-11-26 12:00:33 +00:00
|
|
|
template<> inline FSerializer& Serialize(FSerializer& arc, const char* keyname, walltype*& w, walltype** def)
|
2021-04-02 09:55:23 +00:00
|
|
|
{
|
2022-11-15 11:03:44 +00:00
|
|
|
int ndx = w ? wallindex(w) : -1;
|
2021-04-02 09:55:23 +00:00
|
|
|
arc(keyname, ndx);
|
2022-05-21 11:57:47 +00:00
|
|
|
w = !validWallIndex(ndx) ? nullptr : &wall[ndx];
|
2021-04-02 09:55:23 +00:00
|
|
|
return arc;
|
|
|
|
}
|
|
|
|
|
2021-11-26 12:00:33 +00:00
|
|
|
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)
|
2021-11-26 12:00:33 +00:00
|
|
|
.EndObject();
|
|
|
|
}
|
|
|
|
return arc;
|
|
|
|
}
|
|
|
|
|
2021-11-26 12:41:15 +00:00
|
|
|
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;
|
|
|
|
}
|