summaryrefslogtreecommitdiff
path: root/src/station_map.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-07-16 23:55:22 +0000
committerrubidium <rubidium@openttd.org>2007-07-16 23:55:22 +0000
commit3dd6362bb8a07e36eaf621bdf5c256087fbbf8c8 (patch)
tree052fe05961ef6ef6913712ffee40515822018816 /src/station_map.cpp
parent0f8e7e79bed67ccaa578b5d25ba250aa2051381e (diff)
downloadopenttd-3dd6362bb8a07e36eaf621bdf5c256087fbbf8c8.tar.xz
(svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
Diffstat (limited to 'src/station_map.cpp')
-rw-r--r--src/station_map.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/station_map.cpp b/src/station_map.cpp
deleted file mode 100644
index d1552a082..000000000
--- a/src/station_map.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-/* $Id$ */
-
-/** @file station_map.cpp */
-
-#include "stdafx.h"
-#include "openttd.h"
-#include "station_map.h"
-
-/**
- * Get the station type (rail, airport, truck etc) for the given tile.
- * @param t the tile to get the station type of.
- * @pre IsTileType(t, MP_STATION)
- * @return the station type of the given tile.
- */
-StationType GetStationType(TileIndex t)
-{
- assert(IsTileType(t, MP_STATION));
- if (IsRailwayStation(t)) return STATION_RAIL;
- 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;
-}