Remove SIGTYPE_LAST_NOPBS
[openttd/fttd.git] / src / elrail_func.h
blobb7421043a24512b7f7cbf740730b35954247d857
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 elrail_func.h header file for electrified rail specific functions */
12 #ifndef ELRAIL_FUNC_H
13 #define ELRAIL_FUNC_H
15 #include "rail.h"
16 #include "tile_cmd.h"
17 #include "transparency.h"
19 /**
20 * Test if a rail type has catenary
21 * @param rt Rail type to test
23 static inline bool HasCatenary(RailType rt)
25 return HasBit(GetRailTypeInfo(rt)->flags, RTF_CATENARY);
28 /**
29 * Test if we should draw rail catenary
31 static inline bool IsCatenaryDrawn()
33 return !IsInvisibilitySet(TO_CATENARY) && !_settings_game.vehicle.disable_elrails;
36 /**
37 * Test if we should draw rail catenary
38 * @param rt Rail type to test
40 static inline bool HasCatenaryDrawn(RailType rt)
42 return HasCatenary(rt) && IsCatenaryDrawn();
45 void DrawCatenary(const TileInfo *ti);
46 void DrawCatenaryOnTunnel(const TileInfo *ti);
47 void DrawCatenaryOnBridge(const TileInfo *ti);
49 bool SettingsDisableElrail(int32 p1); ///< _settings_game.disable_elrail callback
51 #endif /* ELRAIL_FUNC_H */