2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file rail.cpp Implementation of rail specific functions. */
|
2007-03-28 20:41:35 +00:00
|
|
|
|
2005-06-17 11:30:50 +00:00
|
|
|
#include "stdafx.h"
|
2006-04-04 11:35:52 +00:00
|
|
|
#include "station_map.h"
|
2007-12-16 15:38:51 +00:00
|
|
|
#include "tunnelbridge_map.h"
|
2008-01-09 21:05:03 +00:00
|
|
|
#include "date_func.h"
|
2008-09-30 20:51:04 +00:00
|
|
|
#include "company_func.h"
|
|
|
|
#include "company_base.h"
|
2008-04-29 21:31:29 +00:00
|
|
|
#include "engine_base.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
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "safeguards.h"
|
|
|
|
|
2005-06-17 00:22:46 +00:00
|
|
|
/* XXX: Below 3 tables store duplicate data. Maybe remove some? */
|
(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 bit that stores its status in the map arrays, in the
|
|
|
|
* direction along with the trackdir */
|
2007-12-30 19:32:09 +00:00
|
|
|
extern const byte _signal_along_trackdir[TRACKDIR_END] = {
|
2007-05-30 13:33:19 +00:00
|
|
|
0x8, 0x8, 0x8, 0x2, 0x4, 0x1, 0, 0,
|
|
|
|
0x4, 0x4, 0x4, 0x1, 0x8, 0x2
|
(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 bit that stores its status in the map arrays, in the
|
|
|
|
* direction against the trackdir */
|
2007-12-30 19:32:09 +00:00
|
|
|
extern const byte _signal_against_trackdir[TRACKDIR_END] = {
|
2007-05-30 13:33:19 +00:00
|
|
|
0x4, 0x4, 0x4, 0x1, 0x8, 0x2, 0, 0,
|
|
|
|
0x8, 0x8, 0x8, 0x2, 0x4, 0x1
|
(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 */
|
2007-01-10 18:56:51 +00:00
|
|
|
extern const byte _signal_on_track[] = {
|
2007-05-30 13:33:19 +00:00
|
|
|
0xC, 0xC, 0xC, 0x3, 0xC, 0x3
|
(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 diagonal direction to the all trackdirs that are connected to any
|
|
|
|
* track entering in this direction (including those making 90 degree turns)
|
|
|
|
*/
|
2007-01-10 18:56:51 +00:00
|
|
|
extern const TrackdirBits _exitdir_reaches_trackdirs[] = {
|
2009-03-15 00:32:18 +00:00
|
|
|
TRACKDIR_BIT_X_NE | TRACKDIR_BIT_LOWER_E | TRACKDIR_BIT_LEFT_N, // DIAGDIR_NE
|
|
|
|
TRACKDIR_BIT_Y_SE | TRACKDIR_BIT_LEFT_S | TRACKDIR_BIT_UPPER_E, // DIAGDIR_SE
|
|
|
|
TRACKDIR_BIT_X_SW | TRACKDIR_BIT_UPPER_W | TRACKDIR_BIT_RIGHT_S, // DIAGDIR_SW
|
|
|
|
TRACKDIR_BIT_Y_NW | TRACKDIR_BIT_RIGHT_N | TRACKDIR_BIT_LOWER_W // DIAGDIR_NW
|
(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
|
|
|
};
|
|
|
|
|
2007-12-30 19:32:09 +00:00
|
|
|
extern const Trackdir _next_trackdir[TRACKDIR_END] = {
|
2006-03-01 09:40:34 +00:00
|
|
|
TRACKDIR_X_NE, TRACKDIR_Y_SE, TRACKDIR_LOWER_E, TRACKDIR_UPPER_E, TRACKDIR_RIGHT_S, TRACKDIR_LEFT_S, INVALID_TRACKDIR, INVALID_TRACKDIR,
|
|
|
|
TRACKDIR_X_SW, TRACKDIR_Y_NW, TRACKDIR_LOWER_W, TRACKDIR_UPPER_W, TRACKDIR_RIGHT_N, TRACKDIR_LEFT_N
|
(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. */
|
2017-03-19 22:30:47 +00:00
|
|
|
extern const TrackdirBits _track_crosses_trackdirs[TRACK_END] = {
|
2009-03-15 00:32:18 +00:00
|
|
|
TRACKDIR_BIT_Y_SE | TRACKDIR_BIT_Y_NW, // TRACK_X
|
|
|
|
TRACKDIR_BIT_X_NE | TRACKDIR_BIT_X_SW, // TRACK_Y
|
|
|
|
TRACKDIR_BIT_RIGHT_N | TRACKDIR_BIT_RIGHT_S | TRACKDIR_BIT_LEFT_N | TRACKDIR_BIT_LEFT_S, // TRACK_UPPER
|
|
|
|
TRACKDIR_BIT_RIGHT_N | TRACKDIR_BIT_RIGHT_S | TRACKDIR_BIT_LEFT_N | TRACKDIR_BIT_LEFT_S, // TRACK_LOWER
|
|
|
|
TRACKDIR_BIT_UPPER_W | TRACKDIR_BIT_UPPER_E | TRACKDIR_BIT_LOWER_W | TRACKDIR_BIT_LOWER_E, // TRACK_LEFT
|
|
|
|
TRACKDIR_BIT_UPPER_W | TRACKDIR_BIT_UPPER_E | TRACKDIR_BIT_LOWER_W | TRACKDIR_BIT_LOWER_E // TRACK_RIGHT
|
(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. */
|
2007-01-10 18:56:51 +00:00
|
|
|
extern const TrackBits _track_crosses_tracks[] = {
|
2009-03-15 00:32:18 +00:00
|
|
|
TRACK_BIT_Y, // TRACK_X
|
|
|
|
TRACK_BIT_X, // TRACK_Y
|
|
|
|
TRACK_BIT_VERT, // TRACK_UPPER
|
|
|
|
TRACK_BIT_VERT, // TRACK_LOWER
|
|
|
|
TRACK_BIT_HORZ, // TRACK_LEFT
|
|
|
|
TRACK_BIT_HORZ // TRACK_RIGHT
|
(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 */
|
2007-12-30 19:32:09 +00:00
|
|
|
extern const DiagDirection _trackdir_to_exitdir[TRACKDIR_END] = {
|
2007-04-18 22:10:36 +00:00
|
|
|
DIAGDIR_NE, DIAGDIR_SE, DIAGDIR_NE, DIAGDIR_SE, DIAGDIR_SW, DIAGDIR_SE, DIAGDIR_NE, DIAGDIR_NE,
|
|
|
|
DIAGDIR_SW, DIAGDIR_NW, DIAGDIR_NW, DIAGDIR_SW, DIAGDIR_NW, DIAGDIR_NE,
|
(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
|
|
|
};
|
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
extern const Trackdir _track_exitdir_to_trackdir[][DIAGDIR_END] = {
|
2006-03-01 09:40:34 +00:00
|
|
|
{TRACKDIR_X_NE, INVALID_TRACKDIR, TRACKDIR_X_SW, INVALID_TRACKDIR},
|
|
|
|
{INVALID_TRACKDIR, TRACKDIR_Y_SE, INVALID_TRACKDIR, TRACKDIR_Y_NW},
|
2005-06-17 00:22:46 +00:00
|
|
|
{TRACKDIR_UPPER_E, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_UPPER_W},
|
|
|
|
{INVALID_TRACKDIR, TRACKDIR_LOWER_E, TRACKDIR_LOWER_W, INVALID_TRACKDIR},
|
|
|
|
{INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_LEFT_S, TRACKDIR_LEFT_N},
|
|
|
|
{TRACKDIR_RIGHT_N, TRACKDIR_RIGHT_S, INVALID_TRACKDIR, INVALID_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
|
|
|
};
|
|
|
|
|
2007-04-04 01:35:16 +00:00
|
|
|
extern const Trackdir _track_enterdir_to_trackdir[][DIAGDIR_END] = {
|
2006-03-01 09:40:34 +00:00
|
|
|
{TRACKDIR_X_NE, INVALID_TRACKDIR, TRACKDIR_X_SW, INVALID_TRACKDIR},
|
|
|
|
{INVALID_TRACKDIR, TRACKDIR_Y_SE, INVALID_TRACKDIR, TRACKDIR_Y_NW},
|
2005-07-04 14:58:55 +00:00
|
|
|
{INVALID_TRACKDIR, TRACKDIR_UPPER_E, TRACKDIR_UPPER_W, INVALID_TRACKDIR},
|
|
|
|
{TRACKDIR_LOWER_E, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_LOWER_W},
|
|
|
|
{TRACKDIR_LEFT_N, TRACKDIR_LEFT_S, INVALID_TRACKDIR, INVALID_TRACKDIR},
|
|
|
|
{INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_RIGHT_S, TRACKDIR_RIGHT_N}
|
|
|
|
};
|
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
extern const Trackdir _track_direction_to_trackdir[][DIR_END] = {
|
2006-03-01 09:40:34 +00:00
|
|
|
{INVALID_TRACKDIR, TRACKDIR_X_NE, INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_X_SW, INVALID_TRACKDIR, INVALID_TRACKDIR},
|
|
|
|
{INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_Y_SE, INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_Y_NW},
|
2005-06-17 00:22:46 +00:00
|
|
|
{INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_UPPER_E, INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_UPPER_W, INVALID_TRACKDIR},
|
|
|
|
{INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_LOWER_E, INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_LOWER_W, INVALID_TRACKDIR},
|
|
|
|
{TRACKDIR_LEFT_N, INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_LEFT_S, INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_TRACKDIR},
|
|
|
|
{TRACKDIR_RIGHT_N, INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_TRACKDIR, TRACKDIR_RIGHT_S, INVALID_TRACKDIR, INVALID_TRACKDIR, INVALID_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
|
|
|
};
|
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
extern const Trackdir _dir_to_diag_trackdir[] = {
|
2006-03-01 09:40:34 +00:00
|
|
|
TRACKDIR_X_NE, TRACKDIR_Y_SE, TRACKDIR_X_SW, TRACKDIR_Y_NW,
|
(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
|
|
|
};
|
|
|
|
|
2007-10-09 21:11:23 +00:00
|
|
|
extern const TrackBits _corner_to_trackbits[] = {
|
|
|
|
TRACK_BIT_LEFT, TRACK_BIT_LOWER, TRACK_BIT_RIGHT, TRACK_BIT_UPPER,
|
|
|
|
};
|
|
|
|
|
2008-02-28 17:34:34 +00:00
|
|
|
extern const TrackdirBits _uphill_trackdirs[] = {
|
|
|
|
TRACKDIR_BIT_NONE , ///< 0 SLOPE_FLAT
|
|
|
|
TRACKDIR_BIT_X_SW | TRACKDIR_BIT_Y_NW, ///< 1 SLOPE_W -> inclined for diagonal track
|
|
|
|
TRACKDIR_BIT_X_SW | TRACKDIR_BIT_Y_SE, ///< 2 SLOPE_S -> inclined for diagonal track
|
|
|
|
TRACKDIR_BIT_X_SW , ///< 3 SLOPE_SW
|
|
|
|
TRACKDIR_BIT_X_NE | TRACKDIR_BIT_Y_SE, ///< 4 SLOPE_E -> inclined for diagonal track
|
|
|
|
TRACKDIR_BIT_NONE , ///< 5 SLOPE_EW
|
|
|
|
TRACKDIR_BIT_Y_SE , ///< 6 SLOPE_SE
|
|
|
|
TRACKDIR_BIT_NONE , ///< 7 SLOPE_WSE -> leveled
|
|
|
|
TRACKDIR_BIT_X_NE | TRACKDIR_BIT_Y_NW, ///< 8 SLOPE_N -> inclined for diagonal track
|
|
|
|
TRACKDIR_BIT_Y_NW , ///< 9 SLOPE_NW
|
|
|
|
TRACKDIR_BIT_NONE , ///< 10 SLOPE_NS
|
|
|
|
TRACKDIR_BIT_NONE , ///< 11 SLOPE_NWS -> leveled
|
|
|
|
TRACKDIR_BIT_X_NE , ///< 12 SLOPE_NE
|
|
|
|
TRACKDIR_BIT_NONE , ///< 13 SLOPE_ENW -> leveled
|
|
|
|
TRACKDIR_BIT_NONE , ///< 14 SLOPE_SEN -> leveled
|
|
|
|
TRACKDIR_BIT_NONE , ///< 15 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 16 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 17 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 18 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 19 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 20 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 21 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 22 invalid
|
|
|
|
TRACKDIR_BIT_X_SW | TRACKDIR_BIT_Y_SE, ///< 23 SLOPE_STEEP_S -> inclined for diagonal track
|
|
|
|
TRACKDIR_BIT_NONE , ///< 24 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 25 invalid
|
|
|
|
TRACKDIR_BIT_NONE , ///< 26 invalid
|
|
|
|
TRACKDIR_BIT_X_SW | TRACKDIR_BIT_Y_NW, ///< 27 SLOPE_STEEP_W -> inclined for diagonal track
|
|
|
|
TRACKDIR_BIT_NONE , ///< 28 invalid
|
|
|
|
TRACKDIR_BIT_X_NE | TRACKDIR_BIT_Y_NW, ///< 29 SLOPE_STEEP_N -> inclined for diagonal track
|
|
|
|
TRACKDIR_BIT_X_NE | TRACKDIR_BIT_Y_SE, ///< 30 SLOPE_STEEP_E -> inclined for diagonal track
|
|
|
|
};
|
|
|
|
|
2011-01-18 23:09:43 +00:00
|
|
|
/**
|
|
|
|
* Return the rail type of tile, or INVALID_RAILTYPE if this is no rail tile.
|
|
|
|
*/
|
2007-02-25 11:36:19 +00:00
|
|
|
RailType GetTileRailType(TileIndex tile)
|
2005-06-17 17:11:05 +00:00
|
|
|
{
|
|
|
|
switch (GetTileType(tile)) {
|
|
|
|
case MP_RAILWAY:
|
2006-03-17 10:10:31 +00:00
|
|
|
return GetRailType(tile);
|
|
|
|
|
2007-07-29 23:42:59 +00:00
|
|
|
case MP_ROAD:
|
2005-06-17 17:11:05 +00:00
|
|
|
/* rail/road crossing */
|
2007-02-27 23:36:28 +00:00
|
|
|
if (IsLevelCrossing(tile)) return GetRailType(tile);
|
2005-06-17 17:11:05 +00:00
|
|
|
break;
|
2006-03-17 10:10:31 +00:00
|
|
|
|
2005-06-17 17:11:05 +00:00
|
|
|
case MP_STATION:
|
2009-07-24 11:15:11 +00:00
|
|
|
if (HasStationRail(tile)) return GetRailType(tile);
|
2005-06-17 17:11:05 +00:00
|
|
|
break;
|
2006-03-17 10:10:31 +00:00
|
|
|
|
2005-06-17 17:11:05 +00:00
|
|
|
case MP_TUNNELBRIDGE:
|
2007-12-16 19:30:42 +00:00
|
|
|
if (GetTunnelBridgeTransportType(tile) == TRANSPORT_RAIL) return GetRailType(tile);
|
2005-06-17 17:11:05 +00:00
|
|
|
break;
|
2006-03-16 15:16:27 +00:00
|
|
|
|
2005-06-17 17:11:05 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2006-03-17 10:10:31 +00:00
|
|
|
return INVALID_RAILTYPE;
|
2005-06-17 17:11:05 +00:00
|
|
|
}
|
2008-01-09 21:05:03 +00:00
|
|
|
|
2011-01-18 23:09:43 +00:00
|
|
|
/**
|
2019-02-05 08:23:25 +00:00
|
|
|
* Finds out if a company has a certain buildable railtype available.
|
2011-01-18 23:09:43 +00:00
|
|
|
* @param company the company in question
|
|
|
|
* @param railtype requested RailType
|
|
|
|
* @return true if company has requested RailType available
|
|
|
|
*/
|
2008-09-30 20:39:50 +00:00
|
|
|
bool HasRailtypeAvail(const CompanyID company, const RailType railtype)
|
2008-01-09 21:05:03 +00:00
|
|
|
{
|
2019-02-05 08:23:25 +00:00
|
|
|
return !HasBit(_railtypes_hidden_mask, railtype) && HasBit(Company::Get(company)->avail_railtypes, railtype);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if any buildable railtype is available for a company.
|
|
|
|
* @param company the company in question
|
|
|
|
* @return true if company has any RailTypes available
|
|
|
|
*/
|
|
|
|
bool HasAnyRailtypesAvail(const CompanyID company)
|
|
|
|
{
|
|
|
|
return (Company::Get(company)->avail_railtypes & ~_railtypes_hidden_mask) != 0;
|
2008-01-09 21:05:03 +00:00
|
|
|
}
|
|
|
|
|
2011-01-18 23:09:43 +00:00
|
|
|
/**
|
|
|
|
* Validate functions for rail building.
|
|
|
|
* @param rail the railtype to check.
|
|
|
|
* @return true if the current company may build the rail.
|
|
|
|
*/
|
2008-01-09 21:05:03 +00:00
|
|
|
bool ValParamRailtype(const RailType rail)
|
|
|
|
{
|
2010-04-17 13:31:41 +00:00
|
|
|
return rail < RAILTYPE_END && HasRailtypeAvail(_current_company, rail);
|
2008-01-09 21:05:03 +00:00
|
|
|
}
|
|
|
|
|
2011-01-18 23:09:43 +00:00
|
|
|
/**
|
|
|
|
* Returns the "best" railtype a company can build.
|
|
|
|
* As the AI doesn't know what the BEST one is, we have our own priority list
|
|
|
|
* here. When adding new railtypes, modify this function
|
|
|
|
* @param company the company "in action"
|
|
|
|
* @return The "best" railtype a company has available
|
|
|
|
*/
|
2008-09-30 20:39:50 +00:00
|
|
|
RailType GetBestRailtype(const CompanyID company)
|
2008-01-09 21:05:03 +00:00
|
|
|
{
|
2008-09-30 20:39:50 +00:00
|
|
|
if (HasRailtypeAvail(company, RAILTYPE_MAGLEV)) return RAILTYPE_MAGLEV;
|
|
|
|
if (HasRailtypeAvail(company, RAILTYPE_MONO)) return RAILTYPE_MONO;
|
|
|
|
if (HasRailtypeAvail(company, RAILTYPE_ELECTRIC)) return RAILTYPE_ELECTRIC;
|
2008-01-09 21:05:03 +00:00
|
|
|
return RAILTYPE_RAIL;
|
|
|
|
}
|
|
|
|
|
2011-01-18 21:30:59 +00:00
|
|
|
/**
|
|
|
|
* Add the rail types that are to be introduced at the given date.
|
|
|
|
* @param current The currently available railtypes.
|
2013-01-08 22:46:42 +00:00
|
|
|
* @param date The date for the introduction comparisons.
|
2011-01-18 21:30:59 +00:00
|
|
|
* @return The rail types that should be available when date
|
|
|
|
* introduced rail types are taken into account as well.
|
|
|
|
*/
|
|
|
|
RailTypes AddDateIntroducedRailTypes(RailTypes current, Date date)
|
|
|
|
{
|
|
|
|
RailTypes rts = current;
|
|
|
|
|
|
|
|
for (RailType rt = RAILTYPE_BEGIN; rt != RAILTYPE_END; rt++) {
|
|
|
|
const RailtypeInfo *rti = GetRailTypeInfo(rt);
|
|
|
|
/* Unused rail type. */
|
|
|
|
if (rti->label == 0) continue;
|
|
|
|
|
|
|
|
/* Not date introduced. */
|
|
|
|
if (!IsInsideMM(rti->introduction_date, 0, MAX_DAY)) continue;
|
|
|
|
|
|
|
|
/* Not yet introduced at this date. */
|
|
|
|
if (rti->introduction_date > date) continue;
|
|
|
|
|
|
|
|
/* Have we introduced all required railtypes? */
|
|
|
|
RailTypes required = rti->introduction_required_railtypes;
|
|
|
|
if ((rts & required) != required) continue;
|
|
|
|
|
|
|
|
rts |= rti->introduces_railtypes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* When we added railtypes we need to run this method again; the added
|
|
|
|
* railtypes might enable more rail types to become introduced. */
|
|
|
|
return rts == current ? rts : AddDateIntroducedRailTypes(rts, date);
|
|
|
|
}
|
|
|
|
|
2011-01-18 23:09:43 +00:00
|
|
|
/**
|
|
|
|
* Get the rail types the given company can build.
|
2018-10-28 02:17:36 +00:00
|
|
|
* @param company the company to get the rail types for.
|
2019-03-31 01:05:23 +00:00
|
|
|
* @param introduces If true, include rail types introduced by other rail types
|
2011-01-18 23:09:43 +00:00
|
|
|
* @return the rail types.
|
|
|
|
*/
|
2019-03-31 01:05:23 +00:00
|
|
|
RailTypes GetCompanyRailtypes(CompanyID company, bool introduces)
|
2008-01-09 21:05:03 +00:00
|
|
|
{
|
2011-01-18 21:28:07 +00:00
|
|
|
RailTypes rts = RAILTYPES_NONE;
|
2008-01-09 21:05:03 +00:00
|
|
|
|
2019-03-31 01:05:23 +00:00
|
|
|
const Engine *e;
|
2008-04-29 21:31:29 +00:00
|
|
|
FOR_ALL_ENGINES_OF_TYPE(e, VEH_TRAIN) {
|
|
|
|
const EngineInfo *ei = &e->info;
|
2008-01-09 21:05:03 +00:00
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (HasBit(ei->climates, _settings_game.game_creation.landscape) &&
|
2009-01-13 22:58:03 +00:00
|
|
|
(HasBit(e->company_avail, company) || _date >= e->intro_date + DAYS_IN_YEAR)) {
|
2008-04-29 21:31:29 +00:00
|
|
|
const RailVehicleInfo *rvi = &e->u.rail;
|
2008-01-09 21:05:03 +00:00
|
|
|
|
|
|
|
if (rvi->railveh_type != RAILVEH_WAGON) {
|
|
|
|
assert(rvi->railtype < RAILTYPE_END);
|
2019-03-31 01:05:23 +00:00
|
|
|
if (introduces) {
|
|
|
|
rts |= GetRailTypeInfo(rvi->railtype)->introduces_railtypes;
|
|
|
|
} else {
|
|
|
|
SetBit(rts, rvi->railtype);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (introduces) return AddDateIntroducedRailTypes(rts, _date);
|
|
|
|
return rts;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get list of rail types, regardless of company availability.
|
|
|
|
* @param introduces If true, include rail types introduced by other rail types
|
|
|
|
* @return the rail types.
|
|
|
|
*/
|
|
|
|
RailTypes GetRailTypes(bool introduces)
|
|
|
|
{
|
|
|
|
RailTypes rts = RAILTYPES_NONE;
|
|
|
|
|
|
|
|
const Engine *e;
|
|
|
|
FOR_ALL_ENGINES_OF_TYPE(e, VEH_TRAIN) {
|
|
|
|
const EngineInfo *ei = &e->info;
|
|
|
|
if (!HasBit(ei->climates, _settings_game.game_creation.landscape)) continue;
|
|
|
|
|
|
|
|
const RailVehicleInfo *rvi = &e->u.rail;
|
|
|
|
if (rvi->railveh_type != RAILVEH_WAGON) {
|
|
|
|
assert(rvi->railtype < RAILTYPE_END);
|
|
|
|
if (introduces) {
|
2011-01-18 21:28:07 +00:00
|
|
|
rts |= GetRailTypeInfo(rvi->railtype)->introduces_railtypes;
|
2019-03-31 01:05:23 +00:00
|
|
|
} else {
|
|
|
|
SetBit(rts, rvi->railtype);
|
2008-01-09 21:05:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-31 01:05:23 +00:00
|
|
|
if (introduces) return AddDateIntroducedRailTypes(rts, MAX_DAY);
|
|
|
|
return rts;
|
2008-01-09 21:05:03 +00:00
|
|
|
}
|
2009-02-08 18:11:06 +00:00
|
|
|
|
2011-01-18 23:09:43 +00:00
|
|
|
/**
|
|
|
|
* Get the rail type for a given label.
|
|
|
|
* @param label the railtype label.
|
2012-01-05 19:40:34 +00:00
|
|
|
* @param allow_alternate_labels Search in the alternate label lists as well.
|
2011-01-18 23:09:43 +00:00
|
|
|
* @return the railtype.
|
|
|
|
*/
|
2012-01-05 19:40:34 +00:00
|
|
|
RailType GetRailTypeByLabel(RailTypeLabel label, bool allow_alternate_labels)
|
2009-02-08 18:11:06 +00:00
|
|
|
{
|
|
|
|
/* Loop through each rail type until the label is found */
|
|
|
|
for (RailType r = RAILTYPE_BEGIN; r != RAILTYPE_END; r++) {
|
|
|
|
const RailtypeInfo *rti = GetRailTypeInfo(r);
|
|
|
|
if (rti->label == label) return r;
|
|
|
|
}
|
|
|
|
|
2012-01-05 19:40:34 +00:00
|
|
|
if (allow_alternate_labels) {
|
|
|
|
/* Test if any rail type defines the label as an alternate. */
|
|
|
|
for (RailType r = RAILTYPE_BEGIN; r != RAILTYPE_END; r++) {
|
|
|
|
const RailtypeInfo *rti = GetRailTypeInfo(r);
|
2019-02-12 22:59:12 +00:00
|
|
|
if (std::find(rti->alternate_labels.begin(), rti->alternate_labels.end(), label) != rti->alternate_labels.end()) return r;
|
2012-01-05 19:40:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-08 18:11:06 +00:00
|
|
|
/* No matching label was found, so it is invalid */
|
|
|
|
return INVALID_RAILTYPE;
|
|
|
|
}
|