Add a method in NewGRFInspectWindow to resolve FeatureIndex
[openttd/fttd.git] / src / waypoint_base.h
blobc97c6089c207d62e72f27b02c513349b5d343eba
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
8 */
10 /** @file waypoint_base.h Base of waypoints. */
12 #ifndef WAYPOINT_BASE_H
13 #define WAYPOINT_BASE_H
15 #include "base_station_base.h"
17 /** Representation of a waypoint. */
18 struct Waypoint FINAL : SpecializedStation<Waypoint, true> {
19 uint16 town_cn; ///< The N-1th waypoint for this town (consecutive number)
21 /**
22 * Create a waypoint at the given tile.
23 * @param tile The location of the waypoint.
25 Waypoint(TileIndex tile = INVALID_TILE) : SpecializedStation<Waypoint, true>(tile) { }
26 ~Waypoint();
28 void UpdateVirtCoord();
30 /* virtual */ inline bool TileBelongsToRailStation(TileIndex tile) const
32 return IsRailWaypointTile(tile) && GetStationIndex(tile) == this->index;
35 /* virtual */ uint32 GetNewGRFVariable(const struct ResolverObject *object, byte variable, byte parameter, bool *available) const;
37 /* virtual */ void GetTileArea(TileArea *ta, StationType type) const;
39 /* virtual */ uint GetPlatformLength(TileIndex tile, DiagDirection dir) const
41 return 1;
44 /* virtual */ uint GetPlatformLength(TileIndex tile) const
46 return 1;
49 /**
50 * Is this a single tile waypoint?
51 * @return true if it is.
53 inline bool IsSingleTile() const
55 return (this->facilities & FACIL_TRAIN) != 0 && this->train_station.w == 1 && this->train_station.h == 1;
58 /**
59 * Is the "type" of waypoint the same as the given waypoint,
60 * i.e. are both a rail waypoint or are both a buoy?
61 * @param wp The waypoint to compare to.
62 * @return true iff their types are equal.
64 inline bool IsOfType(const Waypoint *wp) const
66 return this->string_id == wp->string_id;
70 /**
71 * Iterate over all waypoints.
72 * @param var The variable used for iteration.
74 #define FOR_ALL_WAYPOINTS(var) FOR_ALL_BASE_STATIONS_OF_TYPE(Waypoint, var)
76 #endif /* WAYPOINT_BASE_H */