OpenTTD
Functions | Variables
subsidy_sl.cpp File Reference

Code handling saving and loading of subsidies. More...

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

Go to the source code of this file.

Functions

static void Save_SUBS ()
 
static void Load_SUBS ()
 

Variables

static const SaveLoad _subsidies_desc []
 
const ChunkHandler _subsidy_chunk_handlers []
 

Detailed Description

Code handling saving and loading of subsidies.

Definition in file subsidy_sl.cpp.

Variable Documentation

◆ _subsidies_desc

const SaveLoad _subsidies_desc[]
static
Initial value:
= {
SLE_VAR(Subsidy, cargo_type, SLE_UINT8),
SLE_VAR(Subsidy, remaining, SLE_UINT8),
SLE_CONDVAR(Subsidy, awarded, SLE_UINT8, 125, SL_MAX_VERSION),
SLE_CONDVAR(Subsidy, src_type, SLE_UINT8, 125, SL_MAX_VERSION),
SLE_CONDVAR(Subsidy, dst_type, SLE_UINT8, 125, SL_MAX_VERSION),
SLE_CONDVAR(Subsidy, src, SLE_FILE_U8 | SLE_VAR_U16, 0, 4),
SLE_CONDVAR(Subsidy, src, SLE_UINT16, 5, SL_MAX_VERSION),
SLE_CONDVAR(Subsidy, dst, SLE_FILE_U8 | SLE_VAR_U16, 0, 4),
SLE_CONDVAR(Subsidy, dst, SLE_UINT16, 5, SL_MAX_VERSION),
}
#define SLE_CONDVAR(base, variable, type, from, to)
Storage of a variable in some savegame versions.
Definition: saveload.h:246
#define SL_MAX_VERSION
Highest possible savegame version.
Definition: saveload.h:96
Struct about subsidies, offered and awarded.
Definition: subsidy_base.h:24
#define SLE_VAR(base, variable, type)
Storage of a variable in every version of a savegame.
Definition: saveload.h:296

Definition at line 19 of file subsidy_sl.cpp.

◆ _subsidy_chunk_handlers

const ChunkHandler _subsidy_chunk_handlers[]
Initial value:
= {
{ 'SUBS', Save_SUBS, Load_SUBS, NULL, NULL, CH_ARRAY | CH_LAST},
}
Last chunk in this array.
Definition: saveload.h:104