2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2005-07-29 19:35:23 +00:00
|
|
|
/** @file rail.h */
|
|
|
|
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
#ifndef RAIL_H
|
|
|
|
#define RAIL_H
|
|
|
|
|
2006-03-05 12:34:55 +00:00
|
|
|
#include "direction.h"
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
#include "tile.h"
|
|
|
|
|
2006-06-18 15:28:29 +00:00
|
|
|
typedef enum RailTypes {
|
|
|
|
RAILTYPE_RAIL = 0,
|
|
|
|
RAILTYPE_ELECTRIC = 1,
|
|
|
|
RAILTYPE_MONO = 2,
|
|
|
|
RAILTYPE_MAGLEV = 3,
|
|
|
|
RAILTYPE_END,
|
2006-08-22 14:38:37 +00:00
|
|
|
INVALID_RAILTYPE = 0xFF
|
2006-06-18 15:28:29 +00:00
|
|
|
} RailType;
|
|
|
|
|
|
|
|
typedef byte RailTypeMask;
|
|
|
|
|
|
|
|
|
|
|
|
/** These are used to specify a single track.
|
|
|
|
* Can be translated to a trackbit with TrackToTrackbit */
|
|
|
|
typedef enum Track {
|
|
|
|
TRACK_X = 0,
|
|
|
|
TRACK_Y = 1,
|
|
|
|
TRACK_UPPER = 2,
|
|
|
|
TRACK_LOWER = 3,
|
|
|
|
TRACK_LEFT = 4,
|
|
|
|
TRACK_RIGHT = 5,
|
|
|
|
TRACK_END,
|
|
|
|
INVALID_TRACK = 0xFF
|
|
|
|
} Track;
|
|
|
|
|
|
|
|
|
2006-07-22 08:59:52 +00:00
|
|
|
/** Convert an Axis to the corresponding Track
|
|
|
|
* AXIS_X -> TRACK_X
|
|
|
|
* AXIS_Y -> TRACK_Y
|
|
|
|
* Uses the fact that they share the same internal encoding
|
|
|
|
*/
|
|
|
|
static inline Track AxisToTrack(Axis a)
|
|
|
|
{
|
|
|
|
return (Track)a;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-18 15:28:29 +00:00
|
|
|
/** Bitfield corresponding to Track */
|
|
|
|
typedef enum TrackBits {
|
2006-08-22 14:38:37 +00:00
|
|
|
TRACK_BIT_NONE = 0U,
|
|
|
|
TRACK_BIT_X = 1U << TRACK_X,
|
|
|
|
TRACK_BIT_Y = 1U << TRACK_Y,
|
|
|
|
TRACK_BIT_UPPER = 1U << TRACK_UPPER,
|
|
|
|
TRACK_BIT_LOWER = 1U << TRACK_LOWER,
|
|
|
|
TRACK_BIT_LEFT = 1U << TRACK_LEFT,
|
|
|
|
TRACK_BIT_RIGHT = 1U << TRACK_RIGHT,
|
|
|
|
TRACK_BIT_CROSS = TRACK_BIT_X | TRACK_BIT_Y,
|
|
|
|
TRACK_BIT_HORZ = TRACK_BIT_UPPER | TRACK_BIT_LOWER,
|
|
|
|
TRACK_BIT_VERT = TRACK_BIT_LEFT | TRACK_BIT_RIGHT,
|
|
|
|
TRACK_BIT_3WAY_NE = TRACK_BIT_X | TRACK_BIT_UPPER | TRACK_BIT_RIGHT,
|
|
|
|
TRACK_BIT_3WAY_SE = TRACK_BIT_Y | TRACK_BIT_LOWER | TRACK_BIT_RIGHT,
|
|
|
|
TRACK_BIT_3WAY_SW = TRACK_BIT_X | TRACK_BIT_LOWER | TRACK_BIT_LEFT,
|
|
|
|
TRACK_BIT_3WAY_NW = TRACK_BIT_Y | TRACK_BIT_UPPER | TRACK_BIT_LEFT,
|
|
|
|
TRACK_BIT_ALL = TRACK_BIT_CROSS | TRACK_BIT_HORZ | TRACK_BIT_VERT,
|
|
|
|
TRACK_BIT_MASK = 0x3FU
|
2006-06-18 15:28:29 +00:00
|
|
|
} TrackBits;
|
|
|
|
|
|
|
|
|
2006-07-22 08:59:52 +00:00
|
|
|
/**
|
|
|
|
* Maps a Track to the corresponding TrackBits value
|
|
|
|
*/
|
|
|
|
static inline TrackBits TrackToTrackBits(Track track)
|
|
|
|
{
|
|
|
|
return (TrackBits)(1 << track);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline TrackBits AxisToTrackBits(Axis a)
|
|
|
|
{
|
|
|
|
return TrackToTrackBits(AxisToTrack(a));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-29 19:35:23 +00:00
|
|
|
/** These are a combination of tracks and directions. Values are 0-5 in one
|
2006-09-04 20:40:33 +00:00
|
|
|
* direction (corresponding to the Track enum) and 8-13 in the other direction. */
|
2005-06-17 00:22:46 +00:00
|
|
|
typedef enum Trackdirs {
|
2006-08-22 14:38:37 +00:00
|
|
|
TRACKDIR_X_NE = 0,
|
|
|
|
TRACKDIR_Y_SE = 1,
|
|
|
|
TRACKDIR_UPPER_E = 2,
|
|
|
|
TRACKDIR_LOWER_E = 3,
|
|
|
|
TRACKDIR_LEFT_S = 4,
|
|
|
|
TRACKDIR_RIGHT_S = 5,
|
2005-06-17 11:30:50 +00:00
|
|
|
/* Note the two missing values here. This enables trackdir -> track
|
|
|
|
* conversion by doing (trackdir & 7) */
|
2006-08-22 14:38:37 +00:00
|
|
|
TRACKDIR_X_SW = 8,
|
|
|
|
TRACKDIR_Y_NW = 9,
|
2005-10-22 06:39:32 +00:00
|
|
|
TRACKDIR_UPPER_W = 10,
|
|
|
|
TRACKDIR_LOWER_W = 11,
|
|
|
|
TRACKDIR_LEFT_N = 12,
|
|
|
|
TRACKDIR_RIGHT_N = 13,
|
|
|
|
TRACKDIR_END,
|
|
|
|
INVALID_TRACKDIR = 0xFF,
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
} Trackdir;
|
|
|
|
|
2005-07-29 19:35:23 +00:00
|
|
|
/** These are a combination of tracks and directions. Values are 0-5 in one
|
2006-09-04 20:40:33 +00:00
|
|
|
* direction (corresponding to the Track enum) and 8-13 in the other direction. */
|
2005-06-17 00:22:46 +00:00
|
|
|
typedef enum TrackdirBits {
|
2006-08-22 14:38:37 +00:00
|
|
|
TRACKDIR_BIT_NONE = 0x0000,
|
|
|
|
TRACKDIR_BIT_X_NE = 0x0001,
|
|
|
|
TRACKDIR_BIT_Y_SE = 0x0002,
|
|
|
|
TRACKDIR_BIT_UPPER_E = 0x0004,
|
|
|
|
TRACKDIR_BIT_LOWER_E = 0x0008,
|
|
|
|
TRACKDIR_BIT_LEFT_S = 0x0010,
|
|
|
|
TRACKDIR_BIT_RIGHT_S = 0x0020,
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
/* Again, note the two missing values here. This enables trackdir -> track conversion by doing (trackdir & 0xFF) */
|
2006-03-01 09:40:34 +00:00
|
|
|
TRACKDIR_BIT_X_SW = 0x0100,
|
|
|
|
TRACKDIR_BIT_Y_NW = 0x0200,
|
2005-10-22 06:39:32 +00:00
|
|
|
TRACKDIR_BIT_UPPER_W = 0x0400,
|
|
|
|
TRACKDIR_BIT_LOWER_W = 0x0800,
|
|
|
|
TRACKDIR_BIT_LEFT_N = 0x1000,
|
|
|
|
TRACKDIR_BIT_RIGHT_N = 0x2000,
|
2006-08-28 18:53:03 +00:00
|
|
|
TRACKDIR_BIT_MASK = 0x3F3F,
|
2005-10-22 06:39:32 +00:00
|
|
|
INVALID_TRACKDIR_BIT = 0xFFFF,
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
} TrackdirBits;
|
|
|
|
|
2005-07-29 21:36:02 +00:00
|
|
|
/** This struct contains all the info that is needed to draw and construct tracks.
|
|
|
|
*/
|
|
|
|
typedef struct RailtypeInfo {
|
2005-08-03 11:08:13 +00:00
|
|
|
/** Struct containing the main sprites. @note not all sprites are listed, but only
|
|
|
|
* the ones used directly in the code */
|
2005-07-29 21:36:02 +00:00
|
|
|
struct {
|
|
|
|
SpriteID track_y; ///< single piece of rail in Y direction, with ground
|
|
|
|
SpriteID track_ns; ///< two pieces of rail in North and South corner (East-West direction)
|
|
|
|
SpriteID ground; ///< ground sprite for a 3-way switch
|
|
|
|
SpriteID single_y; ///< single piece of rail in Y direction, without ground
|
|
|
|
SpriteID single_x; ///< single piece of rail in X direction
|
|
|
|
SpriteID single_n; ///< single piece of rail in the northern corner
|
|
|
|
SpriteID single_s; ///< single piece of rail in the southern corner
|
|
|
|
SpriteID single_e; ///< single piece of rail in the eastern corner
|
|
|
|
SpriteID single_w; ///< single piece of rail in the western corner
|
2005-10-13 16:00:14 +00:00
|
|
|
SpriteID crossing; ///< level crossing, rail in X direction
|
|
|
|
SpriteID tunnel; ///< tunnel sprites base
|
2005-07-29 21:36:02 +00:00
|
|
|
} base_sprites;
|
|
|
|
|
2005-08-03 11:08:13 +00:00
|
|
|
/** struct containing the sprites for the rail GUI. @note only sprites referred to
|
|
|
|
* directly in the code are listed */
|
|
|
|
struct {
|
|
|
|
SpriteID build_ns_rail; ///< button for building single rail in N-S direction
|
|
|
|
SpriteID build_x_rail; ///< button for building single rail in X direction
|
|
|
|
SpriteID build_ew_rail; ///< button for building single rail in E-W direction
|
|
|
|
SpriteID build_y_rail; ///< button for building single rail in Y direction
|
|
|
|
SpriteID auto_rail; ///< button for the autorail construction
|
|
|
|
SpriteID build_depot; ///< button for building depots
|
|
|
|
SpriteID build_tunnel; ///< button for building a tunnel
|
|
|
|
SpriteID convert_rail; ///< button for converting rail
|
|
|
|
} gui_sprites;
|
|
|
|
|
2005-10-14 08:11:18 +00:00
|
|
|
struct {
|
|
|
|
CursorID rail_ns;
|
|
|
|
CursorID rail_swne;
|
|
|
|
CursorID rail_ew;
|
|
|
|
CursorID rail_nwse;
|
|
|
|
CursorID autorail;
|
|
|
|
CursorID depot;
|
|
|
|
CursorID tunnel;
|
|
|
|
CursorID convert;
|
|
|
|
} cursor;
|
|
|
|
|
2005-08-03 11:08:13 +00:00
|
|
|
struct {
|
|
|
|
StringID toolbar_caption;
|
|
|
|
} strings;
|
|
|
|
|
2005-07-29 21:36:02 +00:00
|
|
|
/** sprite number difference between a piece of track on a snowy ground and the corresponding one on normal ground */
|
|
|
|
SpriteID snow_offset;
|
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
/** bitmask to the OTHER railtypes on which an engine of THIS railtype generates power */
|
|
|
|
RailTypeMask powered_railtypes;
|
|
|
|
|
|
|
|
/** bitmask to the OTHER railtypes on which an engine of THIS railtype can physically travel */
|
|
|
|
RailTypeMask compatible_railtypes;
|
2005-07-31 22:53:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Offset between the current railtype and normal rail. This means that:<p>
|
|
|
|
* 1) All the sprites in a railset MUST be in the same order. This order
|
|
|
|
* is determined by normal rail. Check sprites 1005 and following for this order<p>
|
|
|
|
* 2) The position where the railtype is loaded must always be the same, otherwise
|
|
|
|
* the offset will fail.<p>
|
|
|
|
* @note: Something more flexible might be desirable in the future.
|
|
|
|
*/
|
|
|
|
SpriteID total_offset;
|
2005-10-19 08:34:37 +00:00
|
|
|
|
|
|
|
/**
|
2006-06-27 21:25:53 +00:00
|
|
|
* Bridge offset
|
|
|
|
*/
|
2005-10-19 08:34:37 +00:00
|
|
|
SpriteID bridge_offset;
|
2006-04-11 10:45:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Offset to add to ground sprite when drawing custom waypoints / stations
|
|
|
|
*/
|
|
|
|
byte custom_ground_offset;
|
2005-07-29 21:36:02 +00:00
|
|
|
} RailtypeInfo;
|
|
|
|
|
2006-05-22 14:41:20 +00:00
|
|
|
extern RailtypeInfo _railtypes[RAILTYPE_END];
|
2005-07-29 21:36:02 +00:00
|
|
|
|
2005-07-04 14:58:55 +00:00
|
|
|
// these are the maximums used for updating signal blocks, and checking if a depot is in a pbs block
|
|
|
|
enum {
|
|
|
|
NUM_SSD_ENTRY = 256, // max amount of blocks
|
2006-08-22 14:38:37 +00:00
|
|
|
NUM_SSD_STACK = 32, // max amount of blocks to check recursively
|
2005-07-04 14:58:55 +00:00
|
|
|
};
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
2005-06-17 11:30:50 +00:00
|
|
|
/**
|
|
|
|
* Maps a Trackdir to the corresponding TrackdirBits value
|
|
|
|
*/
|
|
|
|
static inline TrackdirBits TrackdirToTrackdirBits(Trackdir trackdir) { return (TrackdirBits)(1 << trackdir); }
|
|
|
|
|
2005-07-29 19:35:23 +00:00
|
|
|
/**
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
* These functions check the validity of Tracks and Trackdirs. assert against
|
|
|
|
* them when convenient.
|
|
|
|
*/
|
|
|
|
static inline bool IsValidTrack(Track track) { return track < TRACK_END; }
|
2005-06-17 11:30:50 +00:00
|
|
|
static inline bool IsValidTrackdir(Trackdir trackdir) { return (TrackdirToTrackdirBits(trackdir) & TRACKDIR_BIT_MASK) != 0; }
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
2005-07-29 19:35:23 +00:00
|
|
|
/**
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
* Functions to map tracks to the corresponding bits in the signal
|
|
|
|
* presence/status bytes in the map. You should not use these directly, but
|
|
|
|
* wrapper functions below instead. XXX: Which are these?
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a trackdir to the bit that stores its status in the map arrays, in the
|
|
|
|
* direction along with the trackdir.
|
|
|
|
*/
|
2005-06-17 09:53:22 +00:00
|
|
|
extern const byte _signal_along_trackdir[TRACKDIR_END];
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
static inline byte SignalAlongTrackdir(Trackdir trackdir) {return _signal_along_trackdir[trackdir];}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a trackdir to the bit that stores its status in the map arrays, in the
|
|
|
|
* direction against the trackdir.
|
|
|
|
*/
|
2005-06-17 11:30:50 +00:00
|
|
|
static inline byte SignalAgainstTrackdir(Trackdir trackdir) {
|
|
|
|
extern const byte _signal_against_trackdir[TRACKDIR_END];
|
|
|
|
return _signal_against_trackdir[trackdir];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a Track to the bits that store the status of the two signals that can
|
|
|
|
* be present on the given track.
|
|
|
|
*/
|
2005-06-17 11:30:50 +00:00
|
|
|
static inline byte SignalOnTrack(Track track) {
|
|
|
|
extern const byte _signal_on_track[TRACK_END];
|
|
|
|
return _signal_on_track[track];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions describing logical relations between Tracks, TrackBits, Trackdirs
|
|
|
|
* TrackdirBits, Direction and DiagDirections.
|
|
|
|
*
|
|
|
|
* TODO: Add #unndefs or something similar to remove the arrays used below
|
|
|
|
* from the global scope and expose direct uses of them.
|
|
|
|
*/
|
|
|
|
|
2005-06-17 00:22:46 +00:00
|
|
|
/**
|
|
|
|
* Maps a trackdir to the reverse trackdir.
|
|
|
|
*/
|
2005-06-17 11:30:50 +00:00
|
|
|
static inline Trackdir ReverseTrackdir(Trackdir trackdir) {
|
2006-04-11 04:49:23 +00:00
|
|
|
return (Trackdir)(trackdir ^ 8);
|
2005-06-17 11:30:50 +00:00
|
|
|
}
|
2005-06-17 00:22:46 +00:00
|
|
|
|
2005-12-21 13:53:44 +00:00
|
|
|
/**
|
|
|
|
* Returns the Track that a given Trackdir represents
|
|
|
|
*/
|
2005-06-17 00:22:46 +00:00
|
|
|
static inline Track TrackdirToTrack(Trackdir trackdir) { return (Track)(trackdir & 0x7); }
|
|
|
|
|
2005-12-21 13:53:44 +00:00
|
|
|
/**
|
|
|
|
* Returns a Trackdir for the given Track. Since every Track corresponds to
|
2005-06-17 00:22:46 +00:00
|
|
|
* two Trackdirs, we choose the one which points between NE and S.
|
|
|
|
* Note that the actual implementation is quite futile, but this might change
|
|
|
|
* in the future.
|
|
|
|
*/
|
|
|
|
static inline Trackdir TrackToTrackdir(Track track) { return (Trackdir)track; }
|
|
|
|
|
2005-12-21 13:53:44 +00:00
|
|
|
/**
|
|
|
|
* Returns a TrackdirBit mask that contains the two TrackdirBits that
|
2005-06-17 00:22:46 +00:00
|
|
|
* correspond with the given Track (one for each direction).
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline TrackdirBits TrackToTrackdirBits(Track track)
|
|
|
|
{
|
|
|
|
Trackdir td = TrackToTrackdir(track);
|
|
|
|
return (TrackdirBits)(TrackdirToTrackdirBits(td) | TrackdirToTrackdirBits(ReverseTrackdir(td)));
|
|
|
|
}
|
2005-06-17 00:22:46 +00:00
|
|
|
|
2005-12-21 13:53:44 +00:00
|
|
|
/**
|
|
|
|
* Discards all directional information from the given TrackdirBits. Any
|
|
|
|
* Track which is present in either direction will be present in the result.
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline TrackBits TrackdirBitsToTrackBits(TrackdirBits bits)
|
|
|
|
{
|
2006-08-15 11:06:32 +00:00
|
|
|
return (TrackBits)((bits | (bits >> 8)) & TRACK_BIT_MASK);
|
2006-06-27 21:25:53 +00:00
|
|
|
}
|
2005-12-21 13:53:44 +00:00
|
|
|
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
/**
|
|
|
|
* Maps a trackdir to the trackdir that you will end up on if you go straight
|
|
|
|
* ahead. This will be the same trackdir for diagonal trackdirs, but a
|
|
|
|
* different (alternating) one for straight trackdirs
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline Trackdir NextTrackdir(Trackdir trackdir)
|
|
|
|
{
|
2005-06-17 11:30:50 +00:00
|
|
|
extern const Trackdir _next_trackdir[TRACKDIR_END];
|
|
|
|
return _next_trackdir[trackdir];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a track to all tracks that make 90 deg turns with it.
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline TrackBits TrackCrossesTracks(Track track)
|
|
|
|
{
|
2005-06-17 11:30:50 +00:00
|
|
|
extern const TrackBits _track_crosses_tracks[TRACK_END];
|
|
|
|
return _track_crosses_tracks[track];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a trackdir to the (4-way) direction the tile is exited when following
|
|
|
|
* that trackdir.
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline DiagDirection TrackdirToExitdir(Trackdir trackdir)
|
|
|
|
{
|
2005-06-17 11:30:50 +00:00
|
|
|
extern const DiagDirection _trackdir_to_exitdir[TRACKDIR_END];
|
|
|
|
return _trackdir_to_exitdir[trackdir];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a track and an (4-way) dir to the trackdir that represents the track
|
|
|
|
* with the exit in the given direction.
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline Trackdir TrackExitdirToTrackdir(Track track, DiagDirection diagdir)
|
|
|
|
{
|
2005-06-17 11:30:50 +00:00
|
|
|
extern const Trackdir _track_exitdir_to_trackdir[TRACK_END][DIAGDIR_END];
|
|
|
|
return _track_exitdir_to_trackdir[track][diagdir];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
2005-07-04 14:58:55 +00:00
|
|
|
/**
|
|
|
|
* Maps a track and an (4-way) dir to the trackdir that represents the track
|
|
|
|
* with the exit in the given direction.
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline Trackdir TrackEnterdirToTrackdir(Track track, DiagDirection diagdir)
|
|
|
|
{
|
2005-07-04 14:58:55 +00:00
|
|
|
extern const Trackdir _track_enterdir_to_trackdir[TRACK_END][DIAGDIR_END];
|
|
|
|
return _track_enterdir_to_trackdir[track][diagdir];
|
|
|
|
}
|
|
|
|
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
/**
|
|
|
|
* Maps a track and a full (8-way) direction to the trackdir that represents
|
|
|
|
* the track running in the given direction.
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline Trackdir TrackDirectionToTrackdir(Track track, Direction dir)
|
|
|
|
{
|
2005-06-17 11:30:50 +00:00
|
|
|
extern const Trackdir _track_direction_to_trackdir[TRACK_END][DIR_END];
|
|
|
|
return _track_direction_to_trackdir[track][dir];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a (4-way) direction to the diagonal trackdir that runs in that
|
|
|
|
* direction.
|
|
|
|
*/
|
2006-06-27 21:25:53 +00:00
|
|
|
static inline Trackdir DiagdirToDiagTrackdir(DiagDirection diagdir)
|
|
|
|
{
|
2005-06-17 11:30:50 +00:00
|
|
|
extern const Trackdir _dir_to_diag_trackdir[DIAGDIR_END];
|
|
|
|
return _dir_to_diag_trackdir[diagdir];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
2005-12-21 13:53:44 +00:00
|
|
|
extern const TrackdirBits _exitdir_reaches_trackdirs[DIAGDIR_END];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all trackdirs that can be reached when entering a tile from a given
|
|
|
|
* (diagonal) direction. This will obviously include 90 degree turns, since no
|
|
|
|
* information is available about the exact angle of entering */
|
|
|
|
static inline TrackdirBits DiagdirReachesTrackdirs(DiagDirection diagdir) { return _exitdir_reaches_trackdirs[diagdir]; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all tracks that can be reached when entering a tile from a given
|
|
|
|
* (diagonal) direction. This will obviously include 90 degree turns, since no
|
|
|
|
* information is available about the exact angle of entering */
|
|
|
|
static inline TrackBits DiagdirReachesTracks(DiagDirection diagdir) { return TrackdirBitsToTrackBits(DiagdirReachesTrackdirs(diagdir)); }
|
|
|
|
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
/**
|
|
|
|
* Maps a trackdir to the trackdirs that can be reached from it (ie, when
|
2005-12-21 13:53:44 +00:00
|
|
|
* entering the next tile. This will include 90 degree turns!
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
*/
|
2005-12-21 13:53:44 +00:00
|
|
|
static inline TrackdirBits TrackdirReachesTrackdirs(Trackdir trackdir) { return _exitdir_reaches_trackdirs[TrackdirToExitdir(trackdir)]; }
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
/* Note that there is no direct table for this function (there used to be),
|
|
|
|
* but it uses two simpeler tables to achieve the result */
|
2005-12-21 13:53:44 +00:00
|
|
|
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a trackdir to all trackdirs that make 90 deg turns with it.
|
|
|
|
*/
|
2005-06-17 11:30:50 +00:00
|
|
|
static inline TrackdirBits TrackdirCrossesTrackdirs(Trackdir trackdir) {
|
|
|
|
extern const TrackdirBits _track_crosses_trackdirs[TRACKDIR_END];
|
|
|
|
return _track_crosses_trackdirs[TrackdirToTrack(trackdir)];
|
|
|
|
}
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
2005-07-04 14:58:55 +00:00
|
|
|
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
/* Checks if a given Track is diagonal */
|
2006-03-01 09:40:34 +00:00
|
|
|
static inline bool IsDiagonalTrack(Track track) { return (track == TRACK_X) || (track == TRACK_Y); }
|
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.
2005-06-16 18:04:02 +00:00
|
|
|
|
|
|
|
/* Checks if a given Trackdir is diagonal. */
|
|
|
|
static inline bool IsDiagonalTrackdir(Trackdir trackdir) { return IsDiagonalTrack(TrackdirToTrack(trackdir)); }
|
|
|
|
|
2005-06-22 22:38:18 +00:00
|
|
|
|
2005-07-29 21:36:02 +00:00
|
|
|
/**
|
|
|
|
* Returns a pointer to the Railtype information for a given railtype
|
|
|
|
* @param railtype the rail type which the information is requested for
|
|
|
|
* @return The pointer to the RailtypeInfo
|
|
|
|
*/
|
2005-07-29 22:13:04 +00:00
|
|
|
static inline const RailtypeInfo *GetRailTypeInfo(RailType railtype)
|
2005-07-29 21:36:02 +00:00
|
|
|
{
|
|
|
|
assert(railtype < RAILTYPE_END);
|
2005-07-29 22:13:04 +00:00
|
|
|
return &_railtypes[railtype];
|
2005-07-29 21:36:02 +00:00
|
|
|
}
|
|
|
|
|
2005-07-03 13:02:54 +00:00
|
|
|
/**
|
|
|
|
* Checks if an engine of the given RailType can drive on a tile with a given
|
|
|
|
* RailType. This would normally just be an equality check, but for electric
|
|
|
|
* rails (which also support non-electric engines).
|
|
|
|
* @return Whether the engine can drive on this tile.
|
|
|
|
* @param enginetype The RailType of the engine we are considering.
|
|
|
|
* @param tiletype The RailType of the tile we are considering.
|
|
|
|
*/
|
|
|
|
static inline bool IsCompatibleRail(RailType enginetype, RailType tiletype)
|
|
|
|
{
|
2005-07-29 21:36:02 +00:00
|
|
|
return HASBIT(GetRailTypeInfo(enginetype)->compatible_railtypes, tiletype);
|
2005-07-03 13:02:54 +00:00
|
|
|
}
|
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
static inline bool HasPowerOnRail(RailType enginetype, RailType tiletype)
|
|
|
|
{
|
|
|
|
return HASBIT(GetRailTypeInfo(enginetype)->powered_railtypes, tiletype);
|
|
|
|
}
|
|
|
|
|
2005-12-21 13:53:44 +00:00
|
|
|
/**
|
|
|
|
* Checks if the given tracks overlap, ie form a crossing. Basically this
|
|
|
|
* means when there is more than one track on the tile, exept when there are
|
|
|
|
* two parallel tracks.
|
|
|
|
* @param bits The tracks present.
|
|
|
|
* @return Whether the tracks present overlap in any way.
|
|
|
|
*/
|
|
|
|
static inline bool TracksOverlap(TrackBits bits)
|
|
|
|
{
|
2006-06-27 21:25:53 +00:00
|
|
|
/* With no, or only one track, there is no overlap */
|
|
|
|
if (bits == 0 || KILL_FIRST_BIT(bits) == 0) return false;
|
|
|
|
/* We know that there are at least two tracks present. When there are more
|
|
|
|
* than 2 tracks, they will surely overlap. When there are two, they will
|
|
|
|
* always overlap unless they are lower & upper or right & left. */
|
2006-03-18 13:20:50 +00:00
|
|
|
return bits != TRACK_BIT_HORZ && bits != TRACK_BIT_VERT;
|
2005-12-21 13:53:44 +00:00
|
|
|
}
|
|
|
|
|
2005-10-16 09:13:04 +00:00
|
|
|
void DrawTrainDepotSprite(int x, int y, int image, RailType railtype);
|
|
|
|
void DrawDefaultWaypointSprite(int x, int y, RailType railtype);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2006-04-23 13:48:16 +00:00
|
|
|
uint GetRailFoundation(Slope tileh, TrackBits bits);
|
2005-09-18 20:56:44 +00:00
|
|
|
#endif /* RAIL_H */
|