(svn r25865) -Codechange: Refactor detecting of depot vehicle type of a tile to a new function, GetDepotVehicleType (cirdan, LordAro)

This commit is contained in:
zuu
2013-10-13 20:11:05 +00:00
parent 12ddbb7cb1
commit cef1c47f18
4 changed files with 20 additions and 22 deletions

View File

@@ -55,4 +55,21 @@ static inline DepotID GetDepotIndex(TileIndex t)
return _m[t].m2;
}
/**
* Get the type of vehicles that can use a depot
* @param t The tile
* @pre IsRailDepotTile(t) || IsRoadDepotTile(t) || IsShipDepotTile(t) || IsTileType(t, MP_STATION)
* @return the type of vehicles that can use the depot
*/
static inline VehicleType GetDepotVehicleType(TileIndex t)
{
switch (GetTileType(t)) {
default: NOT_REACHED();
case MP_RAILWAY: return VEH_TRAIN;
case MP_ROAD: return VEH_ROAD;
case MP_WATER: return VEH_SHIP;
case MP_STATION: return VEH_AIRCRAFT;
}
}
#endif /* DEPOT_MAP_H */