1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file company_sl_compat.h Loading of company chunks before table headers were added. */
#ifndef SAVELOAD_COMPAT_COMPANY_H
#define SAVELOAD_COMPAT_COMPANY_H
#include "../saveload.h"
/** Original field order for SlCompanyOldAIBuildRec. */
const SaveLoadCompat _company_old_ai_buildrec_compat[] = {
SLC_NULL(2, SL_MIN_VERSION, SLV_6),
SLC_NULL(4, SLV_6, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_6),
SLC_NULL(4, SLV_6, SLV_107),
SLC_NULL(8, SL_MIN_VERSION, SLV_107),
};
/** Original field order for SlCompanyOldAI. */
const SaveLoadCompat _company_old_ai_compat[] = {
SLC_NULL(2, SL_MIN_VERSION, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_13),
SLC_NULL(4, SLV_13, SLV_107),
SLC_NULL(8, SL_MIN_VERSION, SLV_107),
SLC_VAR("num_build_rec"),
SLC_NULL(3, SL_MIN_VERSION, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_6),
SLC_NULL(4, SLV_6, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_6),
SLC_NULL(4, SLV_6, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_6),
SLC_NULL(4, SLV_6, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_6),
SLC_NULL(4, SLV_6, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_107),
SLC_NULL(2, SL_MIN_VERSION, SLV_69),
SLC_NULL(4, SLV_69, SLV_107),
SLC_NULL(18, SL_MIN_VERSION, SLV_107),
SLC_NULL(20, SL_MIN_VERSION, SLV_107),
SLC_NULL(32, SL_MIN_VERSION, SLV_107),
SLC_NULL(64, SLV_2, SLV_107),
SLC_VAR("buildrec"),
};
/** Original field order for SlCompanySettings. */
const SaveLoadCompat _company_settings_compat[] = {
SLC_NULL(512, SLV_16, SLV_19),
SLC_VAR("engine_renew_list"),
SLC_VAR("settings.engine_renew"),
SLC_VAR("settings.engine_renew_months"),
SLC_VAR("settings.engine_renew_money"),
SLC_VAR("settings.renew_keep_length"),
SLC_VAR("settings.vehicle.servint_ispercent"),
SLC_VAR("settings.vehicle.servint_trains"),
SLC_VAR("settings.vehicle.servint_roadveh"),
SLC_VAR("settings.vehicle.servint_aircraft"),
SLC_VAR("settings.vehicle.servint_ships"),
SLC_NULL(63, SLV_2, SLV_144),
};
/** Original field order for SlCompanyEconomy. */
const SaveLoadCompat _company_economy_compat[] = {
SLC_VAR("income"),
SLC_VAR("expenses"),
SLC_VAR("company_value"),
SLC_VAR("delivered_cargo[NUM_CARGO - 1]"),
SLC_VAR("delivered_cargo"),
SLC_VAR("performance_history"),
};
/** Original field order for SlCompanyLiveries. */
const SaveLoadCompat _company_liveries_compat[] = {
SLC_VAR("in_use"),
SLC_VAR("colour1"),
SLC_VAR("colour2"),
};
/** Original field order for company_desc. */
const SaveLoadCompat _company_sl_compat[] = {
SLC_VAR("name_2"),
SLC_VAR("name_1"),
SLC_VAR("name"),
SLC_VAR("president_name_1"),
SLC_VAR("president_name_2"),
SLC_VAR("president_name"),
SLC_VAR("face"),
SLC_VAR("money"),
SLC_VAR("current_loan"),
SLC_VAR("colour"),
SLC_VAR("money_fraction"),
SLC_NULL(1, SL_MIN_VERSION, SLV_58),
SLC_VAR("block_preview"),
SLC_NULL(2, SL_MIN_VERSION, SLV_94),
SLC_NULL(4, SLV_94, SLV_170),
SLC_VAR("location_of_HQ"),
SLC_VAR("last_build_coordinate"),
SLC_VAR("inaugurated_year"),
SLC_VAR("share_owners"),
SLC_VAR("num_valid_stat_ent"),
SLC_VAR("months_of_bankruptcy"),
SLC_VAR("bankrupt_asked"),
SLC_VAR("bankrupt_timeout"),
SLC_VAR("bankrupt_value"),
SLC_VAR("yearly_expenses"),
SLC_VAR("is_ai"),
SLC_NULL(1, SLV_107, SLV_112),
SLC_NULL(1, SLV_4, SLV_100),
SLC_VAR("terraform_limit"),
SLC_VAR("clear_limit"),
SLC_VAR("tree_limit"),
SLC_VAR("settings"),
SLC_VAR("old_ai"),
SLC_VAR("cur_economy"),
SLC_VAR("old_economy"),
SLC_VAR("liveries"),
};
#endif /* SAVELOAD_COMPAT_COMPANY_H */
|