OpenTTD
npf_func.h
Go to the documentation of this file.
1 /* $Id: npf_func.h 24481 2012-08-18 11:37:47Z frosch $ */
2 
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  */
9 
12 #ifndef NPF_FUNC_H
13 #define NPF_FUNC_H
14 
15 #include "../../track_type.h"
16 #include "../../direction_type.h"
17 #include "../../vehicle_type.h"
18 #include "../pathfinder_type.h"
19 
29 
39 Trackdir NPFRoadVehicleChooseTrack(const RoadVehicle *v, TileIndex tile, DiagDirection enterdir, TrackdirBits trackdirs, bool &path_found);
40 
50 Track NPFShipChooseTrack(const Ship *v, TileIndex tile, DiagDirection enterdir, TrackBits tracks, bool &path_found);
51 
57 bool NPFShipCheckReverse(const Ship *v);
58 
67 FindDepotData NPFTrainFindNearestDepot(const Train *v, int max_penalty);
68 
78 bool NPFTrainFindNearestSafeTile(const Train *v, TileIndex tile, Trackdir td, bool override_railtype);
79 
85 bool NPFTrainCheckReverse(const Train *v);
86 
98 Track NPFTrainChooseTrack(const Train *v, TileIndex tile, DiagDirection enterdir, TrackBits tracks, bool &path_found, bool reserve_track, struct PBSTileInfo *target);
99 
100 #endif /* NPF_FUNC_H */