OpenTTD Source  20240917-master-g9ab0a47812
waypoint_sl.cpp
Go to the documentation of this file.
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  */
7 
10 #include "../stdafx.h"
11 #include "../waypoint_base.h"
12 #include "../debug.h"
13 #include "../newgrf_station.h"
14 #include "../vehicle_base.h"
15 #include "../town.h"
16 #include "../newgrf.h"
17 #include "../timer/timer_game_calendar.h"
18 
19 #include "table/strings.h"
20 
21 #include "saveload_internal.h"
22 
23 #include "../safeguards.h"
24 
26 struct OldWaypoint {
27  size_t index;
28  TileIndex xy;
29  TownID town_index;
30  Town *town;
31  uint16_t town_cn;
32  StringID string_id;
33  std::string name;
34  uint8_t delete_ctr;
35  TimerGameCalendar::Date build_date;
36  uint8_t localidx;
37  uint32_t grfid;
38  const StationSpec *spec;
39  Owner owner;
40 
41  size_t new_index;
42 };
43 
45 static std::vector<OldWaypoint> _old_waypoints;
46 
51 static void UpdateWaypointOrder(Order *o)
52 {
53  if (!o->IsType(OT_GOTO_WAYPOINT)) return;
54 
55  for (OldWaypoint &wp : _old_waypoints) {
56  if (wp.index != o->GetDestination()) continue;
57 
58  o->SetDestination((DestinationID)wp.new_index);
59  return;
60  }
61 }
62 
68 {
69  /* In version 17, ground type is moved from m2 to m4 for depots and
70  * waypoints to make way for storing the index in m2. The custom graphics
71  * id which was stored in m4 is now saved as a grf/id reference in the
72  * waypoint struct. */
74  for (OldWaypoint &wp : _old_waypoints) {
75  if (wp.delete_ctr != 0) continue; // The waypoint was deleted
76 
77  /* Waypoint indices were not added to the map prior to this. */
78  Tile tile = wp.xy;
79  tile.m2() = (StationID)wp.index;
80 
81  if (HasBit(tile.m3(), 4)) {
82  wp.spec = StationClass::Get(STAT_CLASS_WAYP)->GetSpec(tile.m4() + 1);
83  }
84  }
85  } else {
86  /* As of version 17, we recalculate the custom graphic ID of waypoints
87  * from the GRF ID / station index. */
88  for (OldWaypoint &wp : _old_waypoints) {
89  const auto specs = StationClass::Get(STAT_CLASS_WAYP)->Specs();
90  auto found = std::find_if(std::begin(specs), std::end(specs), [&wp](const StationSpec *spec) { return spec != nullptr && spec->grf_prop.grffile->grfid == wp.grfid && spec->grf_prop.local_id == wp.localidx; });
91  if (found != std::end(specs)) wp.spec = *found;
92  }
93  }
94 
95  if (!Waypoint::CanAllocateItem(_old_waypoints.size())) SlError(STR_ERROR_TOO_MANY_STATIONS_LOADING);
96 
97  /* All saveload conversions have been done. Create the new waypoints! */
98  for (OldWaypoint &wp : _old_waypoints) {
99  TileIndex t = wp.xy;
100  /* Sometimes waypoint (sign) locations became disconnected from their actual location in
101  * the map array. If this is the case, try to locate the actual location in the map array */
102  if (!IsTileType(t, MP_RAILWAY) || GetRailTileType(t) != 2 /* RAIL_TILE_WAYPOINT */ || Tile(t).m2() != wp.index) {
103  Debug(sl, 0, "Found waypoint tile {} with invalid position", t);
104  for (t = 0; t < Map::Size(); t++) {
105  if (IsTileType(t, MP_RAILWAY) && GetRailTileType(t) == 2 /* RAIL_TILE_WAYPOINT */ && Tile(t).m2() == wp.index) {
106  Debug(sl, 0, "Found actual waypoint position at {}", t);
107  break;
108  }
109  }
110  }
111  if (t == Map::Size()) {
112  SlErrorCorrupt("Waypoint with invalid tile");
113  }
114 
115  Waypoint *new_wp = new Waypoint(t);
116  new_wp->town = wp.town;
117  new_wp->town_cn = wp.town_cn;
118  new_wp->name = wp.name;
119  new_wp->delete_ctr = 0; // Just reset delete counter for once.
120  new_wp->build_date = wp.build_date;
121  new_wp->owner = wp.owner;
122  new_wp->string_id = STR_SV_STNAME_WAYPOINT;
123 
124  /* The tile might've been reserved! */
125  Tile tile(t);
126  bool reserved = !IsSavegameVersionBefore(SLV_100) && HasBit(tile.m5(), 4);
127 
128  /* The tile really has our waypoint, so reassign the map array */
129  MakeRailWaypoint(tile, GetTileOwner(tile), new_wp->index, (Axis)GB(tile.m5(), 0, 1), 0, GetRailType(tile));
130  new_wp->facilities |= FACIL_TRAIN;
131  new_wp->owner = GetTileOwner(tile);
132 
133  SetRailStationReservation(tile, reserved);
134 
135  if (wp.spec != nullptr) {
136  SetCustomStationSpecIndex(tile, AllocateSpecToStation(wp.spec, new_wp, true));
137  }
138  new_wp->rect.BeforeAddTile(tile, StationRect::ADD_FORCE);
139 
140  wp.new_index = new_wp->index;
141  }
142 
143  /* Update the orders of vehicles */
144  for (OrderList *ol : OrderList::Iterate()) {
145  if (ol->GetFirstSharedVehicle()->type != VEH_TRAIN) continue;
146 
147  for (Order *o = ol->GetFirstOrder(); o != nullptr; o = o->next) UpdateWaypointOrder(o);
148  }
149 
150  for (Vehicle *v : Vehicle::Iterate()) {
151  if (v->type != VEH_TRAIN) continue;
152 
153  UpdateWaypointOrder(&v->current_order);
154  }
155 
156  ResetOldWaypoints();
157 }
158 
159 void ResetOldWaypoints()
160 {
161  _old_waypoints.clear();
162  _old_waypoints.shrink_to_fit();
163 }
164 
165 static const SaveLoad _old_waypoint_desc[] = {
166  SLE_CONDVAR(OldWaypoint, xy, SLE_FILE_U16 | SLE_VAR_U32, SL_MIN_VERSION, SLV_6),
167  SLE_CONDVAR(OldWaypoint, xy, SLE_UINT32, SLV_6, SL_MAX_VERSION),
168  SLE_CONDVAR(OldWaypoint, town_index, SLE_UINT16, SLV_12, SLV_122),
170  SLE_CONDVAR(OldWaypoint, town_cn, SLE_FILE_U8 | SLE_VAR_U16, SLV_12, SLV_89),
171  SLE_CONDVAR(OldWaypoint, town_cn, SLE_UINT16, SLV_89, SL_MAX_VERSION),
172  SLE_CONDVAR(OldWaypoint, string_id, SLE_STRINGID, SL_MIN_VERSION, SLV_84),
173  SLE_CONDSSTR(OldWaypoint, name, SLE_STR, SLV_84, SL_MAX_VERSION),
174  SLE_VAR(OldWaypoint, delete_ctr, SLE_UINT8),
175 
176  SLE_CONDVAR(OldWaypoint, build_date, SLE_FILE_U16 | SLE_VAR_I32, SLV_3, SLV_31),
177  SLE_CONDVAR(OldWaypoint, build_date, SLE_INT32, SLV_31, SL_MAX_VERSION),
178  SLE_CONDVAR(OldWaypoint, localidx, SLE_UINT8, SLV_3, SL_MAX_VERSION),
179  SLE_CONDVAR(OldWaypoint, grfid, SLE_UINT32, SLV_17, SL_MAX_VERSION),
180  SLE_CONDVAR(OldWaypoint, owner, SLE_UINT8, SLV_101, SL_MAX_VERSION),
181 };
182 
185 
186  void Load() const override
187  {
188  /* Precaution for when loading failed and it didn't get cleared */
189  ResetOldWaypoints();
190 
191  int index;
192 
193  while ((index = SlIterateArray()) != -1) {
194  OldWaypoint *wp = &_old_waypoints.emplace_back();
195 
196  wp->index = index;
197  SlObject(wp, _old_waypoint_desc);
198  }
199  }
200 
201  void FixPointers() const override
202  {
203  for (OldWaypoint &wp : _old_waypoints) {
204  SlObject(&wp, _old_waypoint_desc);
205 
207  wp.town_cn = (wp.string_id & 0xC000) == 0xC000 ? (wp.string_id >> 8) & 0x3F : 0;
208  wp.town = ClosestTownFromTile(wp.xy, UINT_MAX);
209  } else if (IsSavegameVersionBefore(SLV_122)) {
210  /* Only for versions 12 .. 122 */
211  if (!Town::IsValidID(wp.town_index)) {
212  /* Upon a corrupted waypoint we'll likely get here. The next step will be to
213  * loop over all Ptrs procs to nullptr the pointers. However, we don't know
214  * whether we're in the nullptr or "normal" Ptrs proc. So just clear the list
215  * of old waypoints we constructed and then this waypoint (and the other
216  * possibly corrupt ones) will not be queried in the nullptr Ptrs proc run. */
217  _old_waypoints.clear();
218  SlErrorCorrupt("Referencing invalid Town");
219  }
220  wp.town = Town::Get(wp.town_index);
221  }
223  wp.name = CopyFromOldName(wp.string_id);
224  }
225  }
226  }
227 };
228 
229 static const CHKPChunkHandler CHKP;
230 static const ChunkHandlerRef waypoint_chunk_handlers[] = {
231  CHKP,
232 };
233 
234 extern const ChunkHandlerTable _waypoint_chunk_handlers(waypoint_chunk_handlers);
AllocateSpecToStation
int AllocateSpecToStation(const StationSpec *statspec, BaseStation *st, bool exec)
Allocate a StationSpec to a Station.
Definition: newgrf_station.cpp:685
BaseStation::facilities
StationFacility facilities
The facilities that this station has.
Definition: base_station_base.h:70
Tile::m5
debug_inline uint8_t & m5()
General purpose.
Definition: map_func.h:161
Order::IsType
bool IsType(OrderType type) const
Check whether this order is of the given type.
Definition: order_base.h:70
Pool::PoolItem<&_town_pool >::Get
static Titem * Get(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:339
CHKPChunkHandler
Definition: waypoint_sl.cpp:183
FACIL_TRAIN
@ FACIL_TRAIN
Station with train station.
Definition: station_type.h:54
Tile::m3
debug_inline uint8_t & m3()
General purpose.
Definition: map_func.h:137
REF_TOWN
@ REF_TOWN
Load/save a reference to a town.
Definition: saveload.h:596
ClosestTownFromTile
Town * ClosestTownFromTile(TileIndex tile, uint threshold)
Return the town closest (in distance or ownership) to a given tile, within a given threshold.
Definition: town_cmd.cpp:3862
SLE_CONDSSTR
#define SLE_CONDSSTR(base, variable, type, from, to)
Storage of a std::string in some savegame versions.
Definition: saveload.h:922
BaseStation::town
Town * town
The town this station is associated with.
Definition: base_station_base.h:68
Order::GetDestination
DestinationID GetDestination() const
Gets the destination of this order.
Definition: order_base.h:103
ChunkHandlerRef
std::reference_wrapper< const ChunkHandler > ChunkHandlerRef
A reference to ChunkHandler.
Definition: saveload.h:501
MoveWaypointsToBaseStations
void MoveWaypointsToBaseStations()
Perform all steps to upgrade from the old waypoints to the new version that uses station.
Definition: waypoint_sl.cpp:67
StringID
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
SL_MIN_VERSION
@ SL_MIN_VERSION
First savegame version.
Definition: saveload.h:31
GB
constexpr static debug_inline uint GB(const T x, const uint8_t s, const uint8_t n)
Fetch n bits from x, started at bit s.
Definition: bitmath_func.hpp:32
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
Pool::PoolItem::index
Tindex index
Index of this pool item.
Definition: pool_type.hpp:238
VEH_TRAIN
@ VEH_TRAIN
Train vehicle type.
Definition: vehicle_type.h:24
SLE_CONDVAR
#define SLE_CONDVAR(base, variable, type, from, to)
Storage of a variable in some savegame versions.
Definition: saveload.h:857
OldWaypoint
Helper structure to convert from the old waypoint system.
Definition: waypoint_sl.cpp:26
SlErrorCorrupt
void SlErrorCorrupt(const std::string &msg)
Error handler for corrupt savegames.
Definition: saveload.cpp:351
STAT_CLASS_WAYP
@ STAT_CLASS_WAYP
Waypoint class.
Definition: newgrf_station.h:89
Waypoint::town_cn
uint16_t town_cn
The N-1th waypoint for this town (consecutive number)
Definition: waypoint_base.h:24
Waypoint
Representation of a waypoint.
Definition: waypoint_base.h:23
MP_RAILWAY
@ MP_RAILWAY
A railway.
Definition: tile_type.h:49
Tile
Wrapper class to abstract away the way the tiles are stored.
Definition: map_func.h:25
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > >
ChunkHandler
Handlers and description of chunk.
Definition: saveload.h:455
Vehicle
Vehicle data structure.
Definition: vehicle_base.h:244
Tile::m4
debug_inline uint8_t & m4()
General purpose.
Definition: map_func.h:149
GetRailType
RailType GetRailType(Tile t)
Gets the rail type of the given tile.
Definition: rail_map.h:115
BaseStation::owner
Owner owner
The owner of this station.
Definition: base_station_base.h:69
Debug
#define Debug(category, level, format_string,...)
Ouptut a line of debugging information.
Definition: debug.h:37
SLV_6
@ SLV_6
6.0 1721 6.1 1768
Definition: saveload.h:46
BaseStation::string_id
StringID string_id
Default name (town area) of station.
Definition: base_station_base.h:65
SLV_89
@ SLV_89
89 12160
Definition: saveload.h:149
Tile::m2
debug_inline uint16_t & m2()
Primarily used for indices to towns, industries and stations.
Definition: map_func.h:125
NewGRFClass::Specs
std::span< Tspec *const > Specs() const
Get read-only span of specs of this class.
Definition: newgrf_class.h:58
CH_READONLY
@ CH_READONLY
Chunk is never saved.
Definition: saveload.h:451
BaseStation::rect
StationRect rect
NOSAVE: Station spread out rectangle maintained by StationRect::xxx() functions.
Definition: base_station_base.h:85
Order::SetDestination
void SetDestination(DestinationID destination)
Sets the destination of this order.
Definition: order_base.h:110
CopyFromOldName
std::string CopyFromOldName(StringID id)
Copy and convert old custom names to UTF-8.
Definition: strings_sl.cpp:61
CHKPChunkHandler::FixPointers
void FixPointers() const override
Fix the pointers.
Definition: waypoint_sl.cpp:201
UpdateWaypointOrder
static void UpdateWaypointOrder(Order *o)
Update the waypoint orders to get the new waypoint ID.
Definition: waypoint_sl.cpp:51
SetCustomStationSpecIndex
void SetCustomStationSpecIndex(Tile t, uint8_t specindex)
Set the custom station spec for this tile.
Definition: station_map.h:623
SLE_CONDREF
#define SLE_CONDREF(base, variable, type, from, to)
Storage of a reference in some savegame versions.
Definition: saveload.h:878
SLV_31
@ SLV_31
31 5999
Definition: saveload.h:80
_old_waypoints
static std::vector< OldWaypoint > _old_waypoints
Temporary array with old waypoints.
Definition: waypoint_sl.cpp:45
BaseStation::name
std::string name
Custom name.
Definition: base_station_base.h:64
GetTileOwner
Owner GetTileOwner(Tile tile)
Returns the owner of a tile.
Definition: tile_map.h:178
SL_MAX_VERSION
@ SL_MAX_VERSION
Highest possible saveload version.
Definition: saveload.h:391
GetRailTileType
static debug_inline RailTileType GetRailTileType(Tile t)
Returns the RailTileType (normal with or without signals, waypoint or depot).
Definition: rail_map.h:36
NewGRFClass::GetSpec
const Tspec * GetSpec(uint index) const
Get a spec from the class at a given index.
Definition: newgrf_class_func.h:114
SetRailStationReservation
void SetRailStationReservation(Tile t, bool b)
Set the reservation state of the rail station.
Definition: station_map.h:564
GRFFilePropsBase::local_id
uint16_t local_id
id defined by the grf file for this entity
Definition: newgrf_commons.h:311
SLV_84
@ SLV_84
84 11822
Definition: saveload.h:143
SLE_VAR
#define SLE_VAR(base, variable, type)
Storage of a variable in every version of a savegame.
Definition: saveload.h:971
Pool::PoolItem<&_orderlist_pool >::Iterate
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Definition: pool_type.hpp:388
StationSpec
Station specification.
Definition: newgrf_station.h:115
BaseStation::delete_ctr
uint8_t delete_ctr
Delete counter. If greater than 0 then it is decremented until it reaches 0; the waypoint is then is ...
Definition: base_station_base.h:62
SLV_3
@ SLV_3
3.x lost
Definition: saveload.h:36
Axis
Axis
Allow incrementing of DiagDirDiff variables.
Definition: direction_type.h:116
Map::Size
static debug_inline uint Size()
Get the size of the map.
Definition: map_func.h:288
OrderList
Shared order list linking together the linked list of orders and the list of vehicles sharing this or...
Definition: order_base.h:259
MakeRailWaypoint
void MakeRailWaypoint(Tile t, Owner o, StationID sid, Axis a, uint8_t section, RailType rt)
Make the given tile a rail waypoint tile.
Definition: station_map.h:751
Pool::PoolItem<&_station_pool >::CanAllocateItem
static bool CanAllocateItem(size_t n=1)
Helper functions so we can use PoolItem::Function() instead of _poolitem_pool.Function()
Definition: pool_type.hpp:309
ChunkHandlerTable
std::span< const ChunkHandlerRef > ChunkHandlerTable
A table of ChunkHandler entries.
Definition: saveload.h:504
saveload_internal.h
Town
Town data structure.
Definition: town.h:54
StationSpec::grf_prop
GRFFilePropsBase< NUM_CARGO+3 > grf_prop
Properties related the the grf file.
Definition: newgrf_station.h:127
SLV_12
@ SLV_12
12.1 2046
Definition: saveload.h:55
SlError
void SlError(StringID string, const std::string &extra_msg)
Error handler.
Definition: saveload.cpp:321
SLV_17
@ SLV_17
17.0 3212 17.1 3218
Definition: saveload.h:62
IsTileType
static debug_inline bool IsTileType(Tile tile, TileType type)
Checks if a tile is a given tiletype.
Definition: tile_map.h:150
Pool::PoolItem<&_town_pool >::IsValidID
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
Definition: pool_type.hpp:328
GRFFilePropsBase::grffile
const struct GRFFile * grffile
grf file that introduced this entity
Definition: newgrf_commons.h:312
SlObject
void SlObject(void *object, const SaveLoadTable &slt)
Main SaveLoad function.
Definition: saveload.cpp:1697
IsSavegameVersionBefore
bool IsSavegameVersionBefore(SaveLoadVersion major, uint8_t minor=0)
Checks whether the savegame is below major.
Definition: saveload.h:1234
NewGRFClass::Get
static NewGRFClass * Get(Tindex class_index)
Get a particular class.
Definition: newgrf_class_func.h:82
SaveLoad
SaveLoad type struct.
Definition: saveload.h:707
SLV_101
@ SLV_101
101 14233
Definition: saveload.h:164
SLV_100
@ SLV_100
100 13952
Definition: saveload.h:163
Order::next
Order * next
Pointer to next order. If nullptr, end of list.
Definition: order_base.h:59
CHKPChunkHandler::Load
void Load() const override
Load the chunk.
Definition: waypoint_sl.cpp:186
Order
Definition: order_base.h:36
SLV_122
@ SLV_122
122 16855
Definition: saveload.h:189
SlIterateArray
int SlIterateArray()
Iterate through the elements of an array and read the whole thing.
Definition: saveload.cpp:658
BaseStation::build_date
TimerGameCalendar::Date build_date
Date of construction.
Definition: base_station_base.h:75
HasBit
constexpr debug_inline bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103