OpenTTD
Functions | Variables
group_sl.cpp File Reference

Code handling saving and loading of economy data. More...

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

Go to the source code of this file.

Functions

static void Save_GRPS ()
 
static void Load_GRPS ()
 

Variables

static const SaveLoad _group_desc []
 
const ChunkHandler _group_chunk_handlers []
 

Detailed Description

Code handling saving and loading of economy data.

Definition in file group_sl.cpp.

Variable Documentation

◆ _group_chunk_handlers

const ChunkHandler _group_chunk_handlers[]
Initial value:
= {
{ 'GRPS', Save_GRPS, Load_GRPS, NULL, NULL, CH_ARRAY | CH_LAST},
}
Last chunk in this array.
Definition: saveload.h:104

◆ _group_desc

const SaveLoad _group_desc[]
static
Initial value:
= {
SLE_CONDVAR(Group, name, SLE_NAME, 0, 83),
SLE_CONDNULL(2, 0, 163),
SLE_VAR(Group, owner, SLE_UINT8),
SLE_VAR(Group, vehicle_type, SLE_UINT8),
SLE_VAR(Group, replace_protection, SLE_BOOL),
SLE_CONDVAR(Group, parent, SLE_UINT16, 189, SL_MAX_VERSION),
}
#define SLE_CONDNULL(length, from, to)
Empty space in some savegame versions.
Definition: saveload.h:344
Window * parent
Parent window.
Definition: window_gui.h:332
#define SLE_CONDSTR(base, variable, type, length, from, to)
Storage of a string in some savegame versions.
Definition: saveload.h:278
#define SLE_CONDVAR(base, variable, type, from, to)
Storage of a variable in some savegame versions.
Definition: saveload.h:246
allow control codes in the strings
Definition: saveload.h:184
#define SL_MAX_VERSION
Highest possible savegame version.
Definition: saveload.h:96
Group data.
Definition: group.h:66
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable...
Definition: window_gui.h:319
#define SLE_VAR(base, variable, type)
Storage of a variable in every version of a savegame.
Definition: saveload.h:296
#define SLE_STR(base, variable, type, length)
Storage of a string in every savegame version.
Definition: saveload.h:322

Definition at line 19 of file group_sl.cpp.