OpenTTD Source 20250312-master-gcdcc6b491d
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 "order_type.h"
14#include "station_map.h"
15
19inline bool IsDepotTypeTile(Tile tile, TransportType type)
20{
21 switch (type) {
22 default: NOT_REACHED();
23 case TRANSPORT_RAIL:
24 return IsRailDepotTile(tile);
25
26 case TRANSPORT_ROAD:
27 return IsRoadDepotTile(tile);
28
29 case TRANSPORT_WATER:
30 return IsShipDepotTile(tile);
31
32 case TRANSPORT_AIR:
33 return IsHangarTile(tile);
34 }
35}
36
42inline bool IsDepotTile(Tile tile)
43{
44 return IsRailDepotTile(tile) || IsRoadDepotTile(tile) || IsShipDepotTile(tile) || IsHangarTile(tile);
45}
46
54{
55 /* Hangars don't have a Depot class, thus store no DepotID. */
56 assert(IsRailDepotTile(t) || IsRoadDepotTile(t) || IsShipDepotTile(t));
57 return DepotID{t.m2()};
58}
59
67{
68 if (IsHangarTile(t)) return GetStationIndex(t);
69 return GetDepotIndex(t);
70}
71
79{
80 switch (GetTileType(t)) {
81 default: NOT_REACHED();
82 case MP_RAILWAY: return VEH_TRAIN;
83 case MP_ROAD: return VEH_ROAD;
84 case MP_WATER: return VEH_SHIP;
85 case MP_STATION: return VEH_AIRCRAFT;
86 }
87}
88
89#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:53
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:19
bool IsDepotTile(Tile tile)
Is the given tile a tile with a depot on it?
Definition depot_map.h:42
DestinationID GetDepotDestinationIndex(Tile t)
Get the destination index of a 'depot'.
Definition depot_map.h:66
VehicleType GetDepotVehicleType(Tile t)
Get the type of vehicles that can use a depot.
Definition depot_map.h:78
Types related to orders.
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.
StationID GetStationIndex(Tile t)
Get StationID from a tile.
Definition station_map.h:28
bool IsHangarTile(Tile t)
Is tile t an hangar tile?
Templated helper to make a PoolID a single POD value.
Definition pool_type.hpp:43
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