mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-14 08:30:58 +00:00
723b210c95
Not tested yet! * Added a JSON-based header to the savegames so that the unified menu can read from a common data source. * moved loading and saving of frontend independent data to the wrapper so that support is automatic.
22 lines
624 B
C++
22 lines
624 B
C++
#pragma once
|
|
|
|
#include "filesystem/resourcefile.h"
|
|
|
|
void OpenSaveGameForWrite(const char *name);
|
|
bool OpenSaveGameForRead(const char *name);
|
|
|
|
FileWriter *WriteSavegameChunk(const char *name);
|
|
FileReader ReadSavegameChunk(const char *name);
|
|
|
|
bool FinishSavegameWrite();
|
|
void FinishSavegameRead();
|
|
|
|
// Savegame utilities
|
|
class FileReader;
|
|
|
|
FString G_BuildSaveName (const char *prefix);
|
|
bool G_CheckSaveGameWads (struct sjson_node* root, bool printwarn);
|
|
int G_ValidateSavegame(FileReader &fr, FString *savetitle);
|
|
void G_WriteSaveHeader(const char *name, const char*mapname, const char *title);
|
|
|
|
#define SAVEGAME_EXT ".dsave"
|