OpenTTD
storage_sl.cpp File Reference

Code handling saving and loading of persistent storages. More...

#include "../stdafx.h"
#include "../newgrf_storage.h"
#include "saveload.h"
#include "../safeguards.h"

Go to the source code of this file.

Functions

static void Load_PSAC ()
 Load persistent storage data. More...
 
static void Save_PSAC ()
 Save persistent storage data. More...
 

Variables

static const SaveLoad _storage_desc []
 Description of the data to save and load in PersistentStorage. More...
 
const ChunkHandler _persistent_storage_chunk_handlers []
 Chunk handler for persistent storages. More...
 

Detailed Description

Code handling saving and loading of persistent storages.

Definition in file storage_sl.cpp.

Function Documentation

◆ Load_PSAC()

static void Load_PSAC ( )
static

Load persistent storage data.

Definition at line 27 of file storage_sl.cpp.

References SlIterateArray().

◆ Save_PSAC()

static void Save_PSAC ( )
static

Save persistent storage data.

Definition at line 39 of file storage_sl.cpp.

Variable Documentation

◆ _persistent_storage_chunk_handlers

const ChunkHandler _persistent_storage_chunk_handlers[]
Initial value:
= {
{ 'PSAC', Save_PSAC, Load_PSAC, NULL, NULL, CH_ARRAY | CH_LAST},
}
static void Load_PSAC()
Load persistent storage data.
Definition: storage_sl.cpp:27
static void Save_PSAC()
Save persistent storage data.
Definition: storage_sl.cpp:39
Last chunk in this array.
Definition: saveload.h:381

Chunk handler for persistent storages.

◆ _storage_desc

const SaveLoad _storage_desc[]
static
Initial value:
= {
}
#define SLE_CONDVAR(base, variable, type, from, to)
Storage of a variable in some savegame versions.
Definition: saveload.h:524
Highest possible saveload version.
Definition: saveload.h:295
Class for pooled persistent storage of data.
6.0 1721 6.1 1768
Definition: saveload.h:47
201 PR#6885 Extend NewGRF persistant storages.
Definition: saveload.h:286
#define SLE_CONDARR(base, variable, type, length, from, to)
Storage of an array in some savegame versions.
Definition: saveload.h:545
161 22567
Definition: saveload.h:237

Description of the data to save and load in PersistentStorage.

Definition at line 19 of file storage_sl.cpp.