2019-11-14 20:07:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "filesystem/resourcefile.h"
|
|
|
|
|
2020-01-12 22:16:21 +00:00
|
|
|
bool OpenSaveGameForWrite(const char *fname, const char *name);
|
2019-11-14 20:07:43 +00:00
|
|
|
bool OpenSaveGameForRead(const char *name);
|
|
|
|
|
|
|
|
FileWriter *WriteSavegameChunk(const char *name);
|
|
|
|
FileReader ReadSavegameChunk(const char *name);
|
|
|
|
|
|
|
|
bool FinishSavegameWrite();
|
|
|
|
void FinishSavegameRead();
|
2019-11-26 23:41:26 +00:00
|
|
|
|
|
|
|
// Savegame utilities
|
|
|
|
class FileReader;
|
|
|
|
|
|
|
|
FString G_BuildSaveName (const char *prefix);
|
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
|
|
|
|
2020-01-21 18:22:38 +00:00
|
|
|
void SaveEngineState();
|
|
|
|
void LoadEngineState();
|
|
|
|
|
2019-11-26 23:41:26 +00:00
|
|
|
#define SAVEGAME_EXT ".dsave"
|
2019-11-30 18:23:54 +00:00
|
|
|
|