OpenTTD Source 20241224-master-gf74b0cf984
depot_map.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
7
10#ifndef DEPOT_MAP_H
11#define DEPOT_MAP_H
12
13#include "station_map.h"
14
18inline bool IsDepotTypeTile(Tile tile, TransportType type)
19{
20 switch (type) {
21 default: NOT_REACHED();
22 case TRANSPORT_RAIL:
23 return IsRailDepotTile(tile);
24
25 case TRANSPORT_ROAD:
26 return IsRoadDepotTile(tile);
27
28 case TRANSPORT_WATER:
29 return IsShipDepotTile(tile);
30
31 case TRANSPORT_AIR:
32 return IsHangarTile(tile);
33 }
34}
35
41inline bool IsDepotTile(Tile tile)
42{
43 return IsRailDepotTile(tile) || IsRoadDepotTile(tile) || IsShipDepotTile(tile) || IsHangarTile(tile);
44}
45
53{
54 /* Hangars don't have a Depot class, thus store no DepotID. */
55 assert(IsRailDepotTile(t) || IsRoadDepotTile(t) || IsShipDepotTile(t));
56 return t.m2();
57}
58
66{
67 switch (GetTileType(t)) {
68 default: NOT_REACHED();
69 case MP_RAILWAY: return VEH_TRAIN;
70 case MP_ROAD: return VEH_ROAD;
71 case MP_WATER: return VEH_SHIP;
72 case MP_STATION: return VEH_AIRCRAFT;
73 }
74}
75
76#endif /* DEPOT_MAP_H */
Wrapper class to abstract away the way the tiles are stored.
Definition map_func.h:25
debug_inline uint16_t & m2()
Primarily used for indices to towns, industries and stations.
Definition map_func.h:125
DepotID GetDepotIndex(Tile t)
Get the index of which depot is attached to the tile.
Definition depot_map.h:52
bool IsDepotTypeTile(Tile tile, TransportType type)
Check if a tile is a depot and it is a depot of the given type.
Definition depot_map.h:18
bool IsDepotTile(Tile tile)
Is the given tile a tile with a depot on it?
Definition depot_map.h:41
VehicleType GetDepotVehicleType(Tile t)
Get the type of vehicles that can use a depot.
Definition depot_map.h:65
uint16_t DepotID
Type for the unique identifier of depots.
Definition depot_type.h:13
static debug_inline bool IsRailDepotTile(Tile t)
Is this tile rail tile and a rail depot?
Definition rail_map.h:105
static debug_inline bool IsRoadDepotTile(Tile t)
Return whether a tile is a road depot tile.
Definition road_map.h:116
Maps accessors for stations.
bool IsHangarTile(Tile t)
Is tile t an hangar tile?
static debug_inline TileType GetTileType(Tile tile)
Get the tiletype of a given tile.
Definition tile_map.h:96
@ MP_ROAD
A tile with road (or tram tracks)
Definition tile_type.h:50
@ MP_STATION
A tile of a station.
Definition tile_type.h:53
@ MP_WATER
Water tile.
Definition tile_type.h:54
@ MP_RAILWAY
A railway.
Definition tile_type.h:49
TransportType
Available types of transport.
@ TRANSPORT_RAIL
Transport by train.
@ TRANSPORT_ROAD
Transport by road vehicle.
@ TRANSPORT_WATER
Transport over water.
@ TRANSPORT_AIR
Transport through air.
VehicleType
Available vehicle types.
@ VEH_ROAD
Road vehicle type.
@ VEH_AIRCRAFT
Aircraft vehicle type.
@ VEH_SHIP
Ship vehicle type.
@ VEH_TRAIN
Train vehicle type.
bool IsShipDepotTile(Tile t)
Is it a ship depot tile?
Definition water_map.h:232