diff options
author | rubidium <rubidium@openttd.org> | 2007-08-02 12:22:40 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-08-02 12:22:40 +0000 |
commit | dd666a80d5fdf68820b1acfdc59d701af4185291 (patch) | |
tree | 7b3d74bfcae924abd1c651969e8045c4b22c5cc9 /src/waypoint.h | |
parent | cab6275511f9658a7950618d8370200c34828e14 (diff) | |
download | openttd-dd666a80d5fdf68820b1acfdc59d701af4185291.tar.xz |
(svn r10750) -Codechange: make the waypoint struct use the new poolitem class as super class.
Diffstat (limited to 'src/waypoint.h')
-rw-r--r-- | src/waypoint.h | 32 |
1 files changed, 13 insertions, 19 deletions
diff --git a/src/waypoint.h b/src/waypoint.h index c3e239561..af24b1906 100644 --- a/src/waypoint.h +++ b/src/waypoint.h @@ -8,9 +8,11 @@ #include "oldpool.h" #include "rail_map.h" -struct Waypoint { +struct Waypoint; +DECLARE_OLD_POOL(Waypoint, Waypoint, 3, 8000) + +struct Waypoint : PoolItem<Waypoint, WaypointID, &_Waypoint_pool> { TileIndex xy; ///< Tile of waypoint - WaypointID index; ///< Index of waypoint TownID town_index; ///< Town associated with the waypoint byte town_cn; ///< The Nth waypoint for this town (consecutive number) @@ -24,34 +26,26 @@ struct Waypoint { byte localidx; ///< Index of station within GRF file byte deleted; ///< Delete counter. If greater than 0 then it is decremented until it reaches 0; the waypoint is then is deleted. -}; -DECLARE_OLD_POOL(Waypoint, Waypoint, 3, 8000) + Waypoint(TileIndex tile = 0); + ~Waypoint(); -/** - * Check if a Waypoint really exists. - * @param wp Waypoint to query - * @return the validity of the waypoint - */ -static inline bool IsValidWaypoint(const Waypoint *wp) -{ - return wp->xy != 0; -} + void QuickFree(); + + bool IsValid() const; +}; static inline bool IsValidWaypointID(WaypointID index) { - return index < GetWaypointPoolSize() && IsValidWaypoint(GetWaypoint(index)); + return index < GetWaypointPoolSize() && GetWaypoint(index)->IsValid(); } -void DestroyWaypoint(Waypoint *wp); - static inline void DeleteWaypoint(Waypoint *wp) { - DestroyWaypoint(wp); - wp->xy = 0; + wp->~Waypoint(); } -#define FOR_ALL_WAYPOINTS_FROM(wp, start) for (wp = GetWaypoint(start); wp != NULL; wp = (wp->index + 1U < GetWaypointPoolSize()) ? GetWaypoint(wp->index + 1U) : NULL) if (IsValidWaypoint(wp)) +#define FOR_ALL_WAYPOINTS_FROM(wp, start) for (wp = GetWaypoint(start); wp != NULL; wp = (wp->index + 1U < GetWaypointPoolSize()) ? GetWaypoint(wp->index + 1U) : NULL) if (wp->IsValid()) #define FOR_ALL_WAYPOINTS(wp) FOR_ALL_WAYPOINTS_FROM(wp, 0) |