OpenTTD Source  1.11.0-beta2
goal_sl.cpp File Reference
#include "../stdafx.h"
#include "../goal_base.h"
#include "saveload.h"
#include "../safeguards.h"

Go to the source code of this file.

Functions

static void Save_GOAL ()
 
static void Load_GOAL ()
 

Variables

static const SaveLoad _goals_desc []
 
const ChunkHandler _goal_chunk_handlers []
 

Detailed Description

Code handling saving and loading of goals

Definition in file goal_sl.cpp.

Variable Documentation

◆ _goal_chunk_handlers

const ChunkHandler _goal_chunk_handlers[]
Initial value:
= {
{ 'GOAL', Save_GOAL, Load_GOAL, nullptr, nullptr, CH_ARRAY | CH_LAST},
}

◆ _goals_desc

const SaveLoad _goals_desc[]
static
Initial value:
= {
SLE_VAR(Goal, company, SLE_FILE_U16 | SLE_VAR_U8),
SLE_VAR(Goal, type, SLE_FILE_U16 | SLE_VAR_U8),
SLE_VAR(Goal, dst, SLE_UINT32),
SLE_CONDVAR(Goal, completed, SLE_BOOL, SLV_182, SL_MAX_VERSION),
}

Definition at line 17 of file goal_sl.cpp.

Goal
Struct about goals, current and completed.
Definition: goal_base.h:21
SLE_CONDVAR
#define SLE_CONDVAR(base, variable, type, from, to)
Storage of a variable in some savegame versions.
Definition: saveload.h:551
SLE_STR
#define SLE_STR(base, variable, type, length)
Storage of a string in every savegame version.
Definition: saveload.h:647
CH_LAST
@ CH_LAST
Last chunk in this array.
Definition: saveload.h:410
SLF_ALLOW_CONTROL
@ SLF_ALLOW_CONTROL
allow control codes in the strings
Definition: saveload.h:489
SLV_182
@ SLV_182
182 25115 FS#5492, r25259, r25296 Goal status
Definition: saveload.h:261
SL_MAX_VERSION
@ SL_MAX_VERSION
Highest possible saveload version.
Definition: saveload.h:328
SLE_CONDSTR
#define SLE_CONDSTR(base, variable, type, length, from, to)
Storage of a string in some savegame versions.
Definition: saveload.h:583
SLE_VAR
#define SLE_VAR(base, variable, type)
Storage of a variable in every version of a savegame.
Definition: saveload.h:621