OpenTTD
Typedefs | Functions | Variables
linkgraph_sl.cpp File Reference

Code handling saving and loading of link graphs. More...

#include "../stdafx.h"
#include "../linkgraph/linkgraph.h"
#include "../linkgraph/linkgraphjob.h"
#include "../linkgraph/linkgraphschedule.h"
#include "../settings_internal.h"
#include "saveload.h"
#include "../safeguards.h"

Go to the source code of this file.

Typedefs

typedef LinkGraph::BaseNode Node
typedef LinkGraph::BaseEdge Edge

Functions

const SettingDescGetSettingDescription (uint index)
const SaveLoadGetLinkGraphDesc ()
 Get a SaveLoad array for a link graph.
const SaveLoadGetLinkGraphJobDesc ()
 Get a SaveLoad array for a link graph job.
const SaveLoadGetLinkGraphScheduleDesc ()
 Get a SaveLoad array for the link graph schedule.
void SaveLoad_LinkGraph (LinkGraph &lg)
 Save/load a link graph.
static void DoSave_LGRJ (LinkGraphJob *lgj)
 Save a link graph job.
static void DoSave_LGRP (LinkGraph *lg)
 Save a link graph.
static void Load_LGRP ()
 Load all link graphs.
static void Load_LGRJ ()
 Load all link graph jobs.
static void Load_LGRS ()
 Load the link graph schedule.
void AfterLoadLinkGraphs ()
 Spawn the threads for running link graph calculations.
static void Save_LGRP ()
 Save all link graphs.
static void Save_LGRJ ()
 Save all link graph jobs.
static void Save_LGRS ()
 Save the link graph schedule.
static void Ptrs_LGRS ()
 Substitute pointers in link graph schedule.

Variables

static uint16 _num_nodes
static const SaveLoad _node_desc []
 SaveLoad desc for a link graph node.
static const SaveLoad _edge_desc []
 SaveLoad desc for a link graph edge.
const ChunkHandler _linkgraph_chunk_handlers []

Detailed Description

Code handling saving and loading of link graphs.

Definition in file linkgraph_sl.cpp.

Function Documentation

void AfterLoadLinkGraphs ( )

Spawn the threads for running link graph calculations.

Has to be done after loading as the cargo classes might have changed.

Definition at line 230 of file linkgraph_sl.cpp.

References SpecializedStation< Station, false >::Get(), LinkGraphJob::Graph(), LinkGraphSchedule::instance, IsSavegameVersionBefore(), LinkGraph::Size(), and LinkGraphSchedule::SpawnAll().

Referenced by AfterLoadGame().

static void DoSave_LGRJ ( LinkGraphJob lgj)
static

Save a link graph job.

Parameters
lgjLinkGraphJob to be saved.

Definition at line 161 of file linkgraph_sl.cpp.

References GetLinkGraphDesc(), GetLinkGraphJobDesc(), LinkGraphJob::Graph(), SaveLoad_LinkGraph(), LinkGraphJob::Size(), and SlObject().

Referenced by Save_LGRJ().

static void DoSave_LGRP ( LinkGraph lg)
static

Save a link graph.

Parameters
lgLinkGraph to be saved.

Definition at line 173 of file linkgraph_sl.cpp.

References GetLinkGraphDesc(), SaveLoad_LinkGraph(), LinkGraph::Size(), and SlObject().

Referenced by Save_LGRP().

const SaveLoad* GetLinkGraphDesc ( )

Get a SaveLoad array for a link graph.

Returns
SaveLoad array for link graph.

Definition at line 32 of file linkgraph_sl.cpp.

References SLE_END, SLE_VAR, and SLEG_VAR.

Referenced by DoSave_LGRJ(), DoSave_LGRP(), Load_LGRJ(), and Load_LGRP().

const SaveLoad* GetLinkGraphJobDesc ( )

Get a SaveLoad array for a link graph job.

The settings struct is derived from the global settings saveload array. The exact entries are calculated when the function is called the first time. It's necessary to keep a copy of the settings for each link graph job so that you can change the settings while in-game and still not mess with current link graph runs. Of course the settings have to be saved and loaded, too, to avoid desyncs.

Returns
Array of SaveLoad structs.

Definition at line 52 of file linkgraph_sl.cpp.

References SaveLoad::address, SmallVector< T, S >::Append(), SaveLoad::cmd, SettingDesc::desc, Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem< Tpool >::index, SmallVector< T, S >::Length(), SettingDescBase::name, SettingDesc::save, SLE_END, and SLE_VAR.

Referenced by DoSave_LGRJ(), and Load_LGRJ().

const SaveLoad* GetLinkGraphScheduleDesc ( )

Get a SaveLoad array for the link graph schedule.

Returns
SaveLoad array for the link graph schedule.

Definition at line 96 of file linkgraph_sl.cpp.

References REF_LINK_GRAPH, REF_LINK_GRAPH_JOB, SLE_END, and SLE_LST.

Referenced by Load_LGRS(), Ptrs_LGRS(), and Save_LGRS().

void SaveLoad_LinkGraph ( LinkGraph lg)

Save/load a link graph.

Parameters
compLink graph to be saved or loaded.

Definition at line 137 of file linkgraph_sl.cpp.

References LinkGraph::edges, IsSavegameVersionBefore(), LinkGraph::nodes, LinkGraph::Size(), and SlObject().

Referenced by DoSave_LGRJ(), DoSave_LGRP(), Load_LGRJ(), and Load_LGRP().

Variable Documentation

const SaveLoad _edge_desc[]
static
Initial value:
{
SLE_CONDNULL(4, 0, 190),
SLE_VAR(Edge, capacity, SLE_UINT32),
SLE_VAR(Edge, usage, SLE_UINT32),
SLE_VAR(Edge, last_unrestricted_update, SLE_INT32),
SLE_CONDVAR(Edge, last_restricted_update, SLE_INT32, 187, SL_MAX_VERSION),
SLE_VAR(Edge, next_edge, SLE_UINT16),
}

SaveLoad desc for a link graph edge.

Definition at line 123 of file linkgraph_sl.cpp.

const ChunkHandler _linkgraph_chunk_handlers[]
Initial value:
{
{ 'LGRP', Save_LGRP, Load_LGRP, NULL, NULL, CH_ARRAY },
{ 'LGRJ', Save_LGRJ, Load_LGRJ, NULL, NULL, CH_ARRAY },
{ 'LGRS', Save_LGRS, Load_LGRS, Ptrs_LGRS, NULL, CH_LAST }
}
const SaveLoad _node_desc[]
static
Initial value:
{
SLE_CONDVAR(Node, xy, SLE_UINT32, 191, SL_MAX_VERSION),
SLE_VAR(Node, supply, SLE_UINT32),
SLE_VAR(Node, demand, SLE_UINT32),
SLE_VAR(Node, station, SLE_UINT16),
SLE_VAR(Node, last_update, SLE_INT32),
}

SaveLoad desc for a link graph node.

Definition at line 111 of file linkgraph_sl.cpp.