Files
@ r12290:442d5d533a57
Branch filter:
Location: cpp/openttd-patchpack/source/src/elrail_func.h - annotation
r12290:442d5d533a57
1.0 KiB
text/x-c
(svn r16717) -Codechange: make IsFrontEngine() member of Train
r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9413:fcf267325763 r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r9154:6e22da499a7e r10994:9aeee22b7578 r9154:6e22da499a7e r9154:6e22da499a7e | /* $Id$ */
/** @file elrail_func.h header file for electrified rail specific functions */
#ifndef ELRAIL_FUNC_H
#define ELRAIL_FUNC_H
#include "rail.h"
#include "transparency.h"
#include "tile_cmd.h"
#include "settings_type.h"
/**
* Test if a rail type has catenary
* @param rt Rail type to test
*/
static inline bool HasCatenary(RailType rt)
{
return HasBit(GetRailTypeInfo(rt)->flags, RTF_CATENARY);
}
/**
* Test if we should draw rail catenary
* @param rt Rail type to test
*/
static inline bool HasCatenaryDrawn(RailType rt)
{
return HasCatenary(rt) && !IsInvisibilitySet(TO_CATENARY) && !_settings_game.vehicle.disable_elrails;
}
/**
* Draws overhead wires and pylons for electric railways.
* @param ti The TileInfo struct of the tile being drawn
* @see DrawCatenaryRailway
*/
void DrawCatenary(const TileInfo *ti);
void DrawCatenaryOnTunnel(const TileInfo *ti);
void DrawCatenaryOnBridge(const TileInfo *ti);
bool SettingsDisableElrail(int32 p1); ///< _settings_game.disable_elrail callback
#endif /* ELRAIL_FUNC_H */
|