(svn r27729) -Codechange: Do not count static NewGRF when checking for the maximum...
[openttd.git] / src / depot_func.h
blobf0d65e7640c09d96c4a612bcedd45c193c855cb8
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
8 */
10 /** @file depot_func.h Functions related to depots. */
12 #ifndef DEPOT_FUNC_H
13 #define DEPOT_FUNC_H
15 #include "vehicle_type.h"
16 #include "slope_func.h"
18 void ShowDepotWindow(TileIndex tile, VehicleType type);
20 void DeleteDepotHighlightOfVehicle(const Vehicle *v);
22 /**
23 * Find out if the slope of the tile is suitable to build a depot of given direction
24 * @param direction The direction in which the depot's exit points
25 * @param tileh The slope of the tile in question
26 * @return true if the construction is possible
28 static inline bool CanBuildDepotByTileh(DiagDirection direction, Slope tileh)
30 assert(tileh != SLOPE_FLAT);
31 Slope entrance_corners = InclinedSlope(direction);
32 /* For steep slopes both entrance corners must be raised (i.e. neither of them is the lowest corner),
33 * For non-steep slopes at least one corner must be raised. */
34 return IsSteepSlope(tileh) ? (tileh & entrance_corners) == entrance_corners : (tileh & entrance_corners) != 0;
37 #endif /* DEPOT_FUNC_H */