station_map.c
author miham
Tue, 19 Dec 2006 06:14:29 +0000
changeset 5342 006d4639558f
parent 3882 86380e989bad
permissions -rw-r--r--
(svn r7509) WebTranslator2 update to 2006-12-19 07:13:46
bulgarian - 5 fixed by kokobongo (5)
catalan - 1 fixed, 4 changed by arnaullv (5)
esperanto - 24 fixed by LaPingvino (24)
estonian - 5 fixed by vermon (5)
french - 1 fixed by glx (1)
portuguese - 1 fixed by izhirahider (1)
russian - 1 fixed by Smoky555 (1)
ukrainian - 16 fixed by znikoz (16)
/* $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 (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;
}