2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-07-22 10:18:19 +00:00
|
|
|
/** @file waypoint_base.h Base of waypoints. */
|
2007-04-06 04:10:19 +00:00
|
|
|
|
2005-03-24 17:03:37 +00:00
|
|
|
#ifndef WAYPOINT_H
|
|
|
|
#define WAYPOINT_H
|
|
|
|
|
2009-07-22 11:35:35 +00:00
|
|
|
#include "base_station_base.h"
|
2005-03-24 17:03:37 +00:00
|
|
|
|
2009-07-22 08:59:57 +00:00
|
|
|
struct Waypoint : SpecializedStation<Waypoint, true> {
|
2008-02-16 16:40:47 +00:00
|
|
|
uint16 town_cn; ///< The Nth waypoint for this town (consecutive number)
|
2005-03-24 17:03:37 +00:00
|
|
|
|
2009-07-18 18:39:17 +00:00
|
|
|
Waypoint(TileIndex tile = INVALID_TILE) : SpecializedStation<Waypoint, true>(tile) { }
|
2007-08-02 12:22:40 +00:00
|
|
|
~Waypoint();
|
2009-07-13 22:33:25 +00:00
|
|
|
|
|
|
|
void UpdateVirtCoord();
|
2009-07-17 20:21:24 +00:00
|
|
|
|
2009-07-17 21:06:06 +00:00
|
|
|
/* virtual */ FORCEINLINE bool TileBelongsToRailStation(TileIndex tile) const
|
|
|
|
{
|
2009-07-22 08:59:57 +00:00
|
|
|
return IsRailWaypointTile(tile) && GetStationIndex(tile) == this->index;
|
2009-07-17 21:06:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ uint32 GetNewGRFVariable(const struct ResolverObject *object, byte variable, byte parameter, bool *available) const;
|
|
|
|
|
2009-07-21 11:11:05 +00:00
|
|
|
/* virtual */ void GetTileArea(TileArea *ta, StationType type) const;
|
2009-07-24 15:18:25 +00:00
|
|
|
|
|
|
|
/* virtual */ uint GetPlatformLength(TileIndex tile, DiagDirection dir) const
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ uint GetPlatformLength(TileIndex tile) const
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2007-08-02 12:22:40 +00:00
|
|
|
};
|
2006-08-22 15:33:35 +00:00
|
|
|
|
2009-07-22 08:59:57 +00:00
|
|
|
#define FOR_ALL_WAYPOINTS(var) FOR_ALL_BASE_STATIONS_OF_TYPE(Waypoint, var)
|
2005-03-24 17:03:37 +00:00
|
|
|
|
|
|
|
#endif /* WAYPOINT_H */
|