summaryrefslogtreecommitdiff
path: root/src/station.h
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2007-02-13 15:42:52 +0000
committercelestar <celestar@openttd.org>2007-02-13 15:42:52 +0000
commit8eab3964b4ad7ebe0151aa292d42d74400214f4a (patch)
tree97f07e8c9bbb7b74d420386b638d4c6d8944d7a7 /src/station.h
parent6f68ac46b8c603b23123b5d899afa6988836f497 (diff)
downloadopenttd-8eab3964b4ad7ebe0151aa292d42d74400214f4a.tar.xz
(svn r8707) -Codechange: Turn IsValidStation into a method of Station
Diffstat (limited to 'src/station.h')
-rw-r--r--src/station.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/station.h b/src/station.h
index 40d5297ef..38fcf058f 100644
--- a/src/station.h
+++ b/src/station.h
@@ -168,6 +168,7 @@ struct Station {
void MarkTilesDirty() const;
bool TileBelongsToRailStation(TileIndex tile) const;
bool IsBuoy() const;
+ bool IsValid() const;
protected:
static Station *AllocateRaw(void);
@@ -237,20 +238,12 @@ static inline uint GetNumStations(void)
return GetStationPoolSize();
}
-/**
- * Check if a station really exists.
- */
-static inline bool IsValidStation(const Station *st)
-{
- return st->xy != 0;
-}
-
static inline bool IsValidStationID(StationID index)
{
- return index < GetStationPoolSize() && IsValidStation(GetStation(index));
+ return index < GetStationPoolSize() && GetStation(index)->IsValid();
}
-#define FOR_ALL_STATIONS_FROM(st, start) for (st = GetStation(start); st != NULL; st = (st->index + 1U < GetStationPoolSize()) ? GetStation(st->index + 1U) : NULL) if (IsValidStation(st))
+#define FOR_ALL_STATIONS_FROM(st, start) for (st = GetStation(start); st != NULL; st = (st->index + 1U < GetStationPoolSize()) ? GetStation(st->index + 1U) : NULL) if (st->IsValid())
#define FOR_ALL_STATIONS(st) FOR_ALL_STATIONS_FROM(st, 0)