Files
@ r5352:64720e7993a1
Branch filter:
Location: cpp/openttd-patchpack/source/station_map.c - annotation
r5352:64720e7993a1
453 B
text/x-c
(svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
This is only possible in SP (or in the intro menu). During game play you will
get a confirmation window when applying the changes as some actions can crash
OpenTTD and/or make your current game unplayable.
This is only possible in SP (or in the intro menu). During game play you will
get a confirmation window when applying the changes as some actions can crash
OpenTTD and/or make your current game unplayable.
r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 r3334:a57409640615 | /* $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;
}
|