summaryrefslogtreecommitdiff
path: root/station_map.c
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2006-03-26 14:41:39 +0000
committercelestar <celestar@openttd.org>2006-03-26 14:41:39 +0000
commit9b3b545259311ea78eeb9064f50758e62dcfd8d1 (patch)
treee324cf8160df4a8f909bcb14f327a215bfcc2f6b /station_map.c
parentd0a445db41d8d551dd229483e425702226164a60 (diff)
downloadopenttd-9b3b545259311ea78eeb9064f50758e62dcfd8d1.tar.xz
(svn r4113) Moved all relevant map functions for stations to station_map.[ch]
Some work with animated tiles remains. Thanks to Tron for parts of the code and lots of proof-reading and suggesting
Diffstat (limited to 'station_map.c')
-rw-r--r--station_map.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/station_map.c b/station_map.c
new file mode 100644
index 000000000..5dea88906
--- /dev/null
+++ b/station_map.c
@@ -0,0 +1,20 @@
+/* $Id$ */
+
+#include "stdafx.h"
+#include "openttd.h"
+#include "station_map.h"
+
+
+StationType GetStationType(TileIndex t)
+{
+ assert(IsTileType(t, MP_STATION));
+ if (IsRailwayStation(t)) return STATION_RAIL;
+ if (IsHangar(t)) return STATION_HANGAR;
+ if (IsAirport(t)) return STATION_AIRPORT;
+ if (IsTruckStop(t)) return STATION_TRUCK;
+ if (IsBusStop(t)) return STATION_BUS;
+ if (IsOilRig(t)) return STATION_OILRIG;
+ if (IsDock(t)) return STATION_DOCK;
+ assert(IsBuoy_(t));
+ return STATION_BUOY;
+}