Update: Translations from eints
[openttd-github.git] / src / saveload / cargomonitor_sl.cpp
blobc932ea18d799d49ee3cefdc6210238eac1fb39b7
1 /*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
8 /** @file cargomonitor_sl.cpp Code handling saving and loading of Cargo monitoring. */
10 #include "../stdafx.h"
12 #include "saveload.h"
13 #include "compat/cargomonitor_sl_compat.h"
15 #include "../cargomonitor.h"
17 #include "../safeguards.h"
19 /** Temporary storage of cargo monitoring data for loading or saving it. */
20 struct TempStorage {
21 CargoMonitorID number;
22 uint32_t amount;
25 /** Description of the #TempStorage structure for the purpose of load and save. */
26 static const SaveLoad _cargomonitor_pair_desc[] = {
27 SLE_VAR(TempStorage, number, SLE_UINT32),
28 SLE_VAR(TempStorage, amount, SLE_UINT32),
31 static CargoMonitorID FixupCargoMonitor(CargoMonitorID number)
33 /* Between SLV_EXTEND_CARGOTYPES and SLV_FIX_CARGO_MONITOR, the
34 * CargoMonitorID structure had insufficient packing for more
35 * than 32 cargo types. Here we have to shuffle bits to account
36 * for the change.
37 * Company moved from bits 24-31 to 25-28.
38 * Cargo type increased from bits 19-23 to 19-24.
40 SB(number, 25, 4, GB(number, 24, 4));
41 SB(number, 29, 3, 0);
42 ClrBit(number, 24);
43 return number;
46 /** #_cargo_deliveries monitoring map. */
47 struct CMDLChunkHandler : ChunkHandler {
48 CMDLChunkHandler() : ChunkHandler('CMDL', CH_TABLE) {}
50 void Save() const override
52 SlTableHeader(_cargomonitor_pair_desc);
54 TempStorage storage;
56 int i = 0;
57 CargoMonitorMap::const_iterator iter = _cargo_deliveries.begin();
58 while (iter != _cargo_deliveries.end()) {
59 storage.number = iter->first;
60 storage.amount = iter->second;
62 SlSetArrayIndex(i);
63 SlObject(&storage, _cargomonitor_pair_desc);
65 i++;
66 iter++;
70 void Load() const override
72 const std::vector<SaveLoad> slt = SlCompatTableHeader(_cargomonitor_pair_desc, _cargomonitor_pair_sl_compat);
74 TempStorage storage;
75 bool fix = IsSavegameVersionBefore(SLV_FIX_CARGO_MONITOR);
77 ClearCargoDeliveryMonitoring();
78 for (;;) {
79 if (SlIterateArray() < 0) break;
80 SlObject(&storage, slt);
82 if (fix) storage.number = FixupCargoMonitor(storage.number);
84 _cargo_deliveries.emplace(storage.number, storage.amount);
89 /** #_cargo_pickups monitoring map. */
90 struct CMPUChunkHandler : ChunkHandler {
91 CMPUChunkHandler() : ChunkHandler('CMPU', CH_TABLE) {}
93 void Save() const override
95 SlTableHeader(_cargomonitor_pair_desc);
97 TempStorage storage;
99 int i = 0;
100 CargoMonitorMap::const_iterator iter = _cargo_pickups.begin();
101 while (iter != _cargo_pickups.end()) {
102 storage.number = iter->first;
103 storage.amount = iter->second;
105 SlSetArrayIndex(i);
106 SlObject(&storage, _cargomonitor_pair_desc);
108 i++;
109 iter++;
113 void Load() const override
115 const std::vector<SaveLoad> slt = SlCompatTableHeader(_cargomonitor_pair_desc, _cargomonitor_pair_sl_compat);
117 TempStorage storage;
118 bool fix = IsSavegameVersionBefore(SLV_FIX_CARGO_MONITOR);
120 ClearCargoPickupMonitoring();
121 for (;;) {
122 if (SlIterateArray() < 0) break;
123 SlObject(&storage, slt);
125 if (fix) storage.number = FixupCargoMonitor(storage.number);
127 _cargo_pickups.emplace(storage.number, storage.amount);
132 /** Chunk definition of the cargomonitoring maps. */
133 static const CMDLChunkHandler CMDL;
134 static const CMPUChunkHandler CMPU;
135 static const ChunkHandlerRef cargomonitor_chunk_handlers[] = {
136 CMDL,
137 CMPU,
140 extern const ChunkHandlerTable _cargomonitor_chunk_handlers(cargomonitor_chunk_handlers);