2006-03-01 08:56:38 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-03-28 21:41:35 +01:00
|
|
|
/** @file rail_map.h Hides the direct accesses to the map array with map accessors */
|
|
|
|
|
2006-03-01 08:56:38 +00:00
|
|
|
#ifndef RAIL_MAP_H
|
|
|
|
#define RAIL_MAP_H
|
|
|
|
|
2007-12-25 23:42:52 +00:00
|
|
|
#include "rail_type.h"
|
|
|
|
#include "signal_func.h"
|
2007-12-18 19:52:14 +00:00
|
|
|
#include "direction_func.h"
|
2007-12-18 20:10:21 +00:00
|
|
|
#include "track_func.h"
|
2007-12-19 23:26:02 +00:00
|
|
|
#include "tile_map.h"
|
2006-03-17 07:02:34 +00:00
|
|
|
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/** Different types of Rail-related tiles */
|
2007-03-07 12:11:48 +00:00
|
|
|
enum RailTileType {
|
2007-04-27 22:29:36 +01:00
|
|
|
RAIL_TILE_NORMAL = 0, ///< Normal rail tile without signals
|
|
|
|
RAIL_TILE_SIGNALS = 1, ///< Normal rail tile with signals
|
|
|
|
RAIL_TILE_WAYPOINT = 2, ///< Waypoint (X or Y direction)
|
|
|
|
RAIL_TILE_DEPOT = 3, ///< Depot (one entrance)
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-03-17 07:02:34 +00:00
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Returns the RailTileType (normal with or without signals,
|
|
|
|
* waypoint or depot).
|
|
|
|
* @param t the tile to get the information from
|
|
|
|
* @pre IsTileType(t, MP_RAILWAY)
|
|
|
|
* @return the RailTileType
|
|
|
|
*/
|
2006-03-17 07:02:34 +00:00
|
|
|
static inline RailTileType GetRailTileType(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_RAILWAY));
|
2007-02-27 23:36:28 +00:00
|
|
|
return (RailTileType)GB(_m[t].m5, 6, 2);
|
2006-03-17 07:02:34 +00:00
|
|
|
}
|
|
|
|
|
2006-05-07 08:01:48 +01:00
|
|
|
/**
|
|
|
|
* Returns whether this is plain rails, with or without signals. Iow, if this
|
2006-05-09 09:17:33 +01:00
|
|
|
* tiles RailTileType is RAIL_TILE_NORMAL or RAIL_TILE_SIGNALS.
|
2007-04-27 22:29:36 +01:00
|
|
|
* @param t the tile to get the information from
|
|
|
|
* @pre IsTileType(t, MP_RAILWAY)
|
|
|
|
* @return true if and only if the tile is normal rail (with or without signals)
|
2006-05-07 08:01:48 +01:00
|
|
|
*/
|
2007-04-27 22:29:36 +01:00
|
|
|
static inline bool IsPlainRailTile(TileIndex t)
|
2006-05-07 08:01:48 +01:00
|
|
|
{
|
2007-04-27 22:29:36 +01:00
|
|
|
RailTileType rtt = GetRailTileType(t);
|
2006-05-09 09:17:33 +01:00
|
|
|
return rtt == RAIL_TILE_NORMAL || rtt == RAIL_TILE_SIGNALS;
|
2006-05-07 08:01:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a rail tile has signals.
|
2007-04-27 22:29:36 +01:00
|
|
|
* @param t the tile to get the information from
|
|
|
|
* @pre IsTileType(t, MP_RAILWAY)
|
|
|
|
* @return true if and only if the tile has signals
|
2006-05-07 08:01:48 +01:00
|
|
|
*/
|
2007-04-27 22:29:36 +01:00
|
|
|
static inline bool HasSignals(TileIndex t)
|
2006-05-07 08:01:48 +01:00
|
|
|
{
|
2007-04-27 22:29:36 +01:00
|
|
|
return GetRailTileType(t) == RAIL_TILE_SIGNALS;
|
2006-05-07 08:01:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-02-27 23:36:28 +00:00
|
|
|
* Add/remove the 'has signal' bit from the RailTileType
|
2007-04-27 22:29:36 +01:00
|
|
|
* @param tile the tile to add/remove the signals to/from
|
|
|
|
* @param signals whether the rail tile should have signals or not
|
|
|
|
* @pre IsPlainRailTile(tile)
|
2006-05-07 08:01:48 +01:00
|
|
|
*/
|
2007-02-27 23:36:28 +00:00
|
|
|
static inline void SetHasSignals(TileIndex tile, bool signals)
|
2006-05-07 08:01:48 +01:00
|
|
|
{
|
2007-02-27 23:36:28 +00:00
|
|
|
assert(IsPlainRailTile(tile));
|
|
|
|
SB(_m[tile].m5, 6, 1, signals);
|
2006-05-07 08:01:48 +01:00
|
|
|
}
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Is this tile a rail depot?
|
|
|
|
* @param t the tile to get the information from
|
|
|
|
* @pre IsTileType(t, MP_RAILWAY)
|
|
|
|
* @return true if and only if the tile is a rail depot
|
|
|
|
*/
|
2006-07-27 06:30:53 +01:00
|
|
|
static inline bool IsRailDepot(TileIndex t)
|
|
|
|
{
|
2007-02-27 23:36:28 +00:00
|
|
|
return GetRailTileType(t) == RAIL_TILE_DEPOT;
|
2006-07-27 06:30:53 +01:00
|
|
|
}
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Is this tile a rail waypoint?
|
|
|
|
* @param t the tile to get the information from
|
|
|
|
* @pre IsTileType(t, MP_RAILWAY)
|
|
|
|
* @return true if and only if the tile is a rail waypoint
|
|
|
|
*/
|
2006-06-19 10:15:16 +01:00
|
|
|
static inline bool IsRailWaypoint(TileIndex t)
|
|
|
|
{
|
2007-02-27 23:36:28 +00:00
|
|
|
return GetRailTileType(t) == RAIL_TILE_WAYPOINT;
|
2006-06-19 10:15:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Gets the rail type of the given tile
|
|
|
|
* @param t the tile to get the rail type from
|
|
|
|
* @return the rail type of the tile
|
|
|
|
*/
|
2006-03-17 07:02:34 +00:00
|
|
|
static inline RailType GetRailType(TileIndex t)
|
|
|
|
{
|
|
|
|
return (RailType)GB(_m[t].m3, 0, 4);
|
|
|
|
}
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
2008-02-24 22:20:31 +00:00
|
|
|
* Sets the rail type of the given tile
|
|
|
|
* @param t the tile to set the rail type of
|
|
|
|
* @param r the new rail type for the tile
|
2007-04-27 22:29:36 +01:00
|
|
|
*/
|
2006-03-17 10:10:31 +00:00
|
|
|
static inline void SetRailType(TileIndex t, RailType r)
|
|
|
|
{
|
|
|
|
SB(_m[t].m3, 0, 4, r);
|
|
|
|
}
|
|
|
|
|
2006-03-17 07:02:34 +00:00
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
2008-02-24 22:20:31 +00:00
|
|
|
* Gets the track bits of the given tile
|
|
|
|
* @param t the tile to get the track bits from
|
|
|
|
* @return the track bits of the tile
|
2007-04-27 22:29:36 +01:00
|
|
|
*/
|
2006-03-19 12:06:12 +00:00
|
|
|
static inline TrackBits GetTrackBits(TileIndex tile)
|
|
|
|
{
|
|
|
|
return (TrackBits)GB(_m[tile].m5, 0, 6);
|
|
|
|
}
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Sets the track bits of the given tile
|
|
|
|
* @param t the tile to set the track bits of
|
|
|
|
* @param b the new track bits for the tile
|
|
|
|
*/
|
2006-03-19 17:52:02 +00:00
|
|
|
static inline void SetTrackBits(TileIndex t, TrackBits b)
|
|
|
|
{
|
|
|
|
SB(_m[t].m5, 0, 6, b);
|
|
|
|
}
|
|
|
|
|
2006-05-07 08:01:48 +01:00
|
|
|
/**
|
2007-04-27 22:29:36 +01:00
|
|
|
* Returns whether the given track is present on the given tile.
|
|
|
|
* @param tile the tile to check the track presence of
|
|
|
|
* @param track the track to search for on the tile
|
|
|
|
* @pre IsPlainRailTile(tile)
|
|
|
|
* @return true if and only if the given track exists on the tile
|
2006-05-07 08:01:48 +01:00
|
|
|
*/
|
|
|
|
static inline bool HasTrack(TileIndex tile, Track track)
|
|
|
|
{
|
2007-11-19 21:02:30 +00:00
|
|
|
return HasBit(GetTrackBits(tile), track);
|
2006-05-07 08:01:48 +01:00
|
|
|
}
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Returns the direction the depot is facing to
|
|
|
|
* @param t the tile to get the depot facing from
|
|
|
|
* @pre IsRailDepotTile(t)
|
|
|
|
* @return the direction the depot is facing
|
|
|
|
*/
|
2006-03-12 16:13:16 +00:00
|
|
|
static inline DiagDirection GetRailDepotDirection(TileIndex t)
|
|
|
|
{
|
|
|
|
return (DiagDirection)GB(_m[t].m5, 0, 2);
|
|
|
|
}
|
|
|
|
|
2006-07-22 09:59:52 +01:00
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Returns the axis of the waypoint
|
|
|
|
* @param t the tile to get the waypoint axis from
|
|
|
|
* @pre IsRailWaypointTile(t)
|
|
|
|
* @return the axis of the waypoint
|
|
|
|
*/
|
2006-07-22 09:59:52 +01:00
|
|
|
static inline Axis GetWaypointAxis(TileIndex t)
|
2006-04-05 06:22:42 +01:00
|
|
|
{
|
2006-08-31 09:16:28 +01:00
|
|
|
return (Axis)GB(_m[t].m5, 0, 1);
|
2006-04-05 06:22:42 +01:00
|
|
|
}
|
2006-03-12 16:13:16 +00:00
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Returns the track of the waypoint
|
|
|
|
* @param t the tile to get the waypoint track from
|
|
|
|
* @pre IsRailWaypointTile(t)
|
|
|
|
* @return the track of the waypoint
|
|
|
|
*/
|
2006-07-22 09:59:52 +01:00
|
|
|
static inline Track GetRailWaypointTrack(TileIndex t)
|
2006-03-01 08:56:38 +00:00
|
|
|
{
|
2006-07-22 09:59:52 +01:00
|
|
|
return AxisToTrack(GetWaypointAxis(t));
|
2006-03-17 06:26:37 +00:00
|
|
|
}
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Returns the track bits of the waypoint
|
|
|
|
* @param t the tile to get the waypoint track bits from
|
|
|
|
* @pre IsRailWaypointTile(t)
|
|
|
|
* @return the track bits of the waypoint
|
|
|
|
*/
|
2006-07-22 09:59:52 +01:00
|
|
|
static inline TrackBits GetRailWaypointBits(TileIndex t)
|
2006-04-12 13:50:40 +01:00
|
|
|
{
|
2006-07-22 09:59:52 +01:00
|
|
|
return TrackToTrackBits(GetRailWaypointTrack(t));
|
2006-04-12 13:50:40 +01:00
|
|
|
}
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/**
|
|
|
|
* Returns waypoint index (for the waypoint pool)
|
|
|
|
* @param t the tile to get the waypoint index from
|
|
|
|
* @pre IsRailWaypointTile(t)
|
|
|
|
* @return the waypoint index
|
|
|
|
*/
|
2007-03-01 13:35:40 +00:00
|
|
|
static inline WaypointID GetWaypointIndex(TileIndex t)
|
|
|
|
{
|
|
|
|
return (WaypointID)_m[t].m2;
|
|
|
|
}
|
2006-03-17 06:26:37 +00:00
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/** Type of signal, i.e. how does the signal behave? */
|
2007-03-07 12:11:48 +00:00
|
|
|
enum SignalType {
|
2007-04-27 22:29:36 +01:00
|
|
|
SIGTYPE_NORMAL = 0, ///< normal signal
|
|
|
|
SIGTYPE_ENTRY = 1, ///< presignal block entry
|
|
|
|
SIGTYPE_EXIT = 2, ///< presignal block exit
|
|
|
|
SIGTYPE_COMBO = 3 ///< presignal inter-block
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-03-17 06:26:37 +00:00
|
|
|
|
2007-05-31 22:21:04 +01:00
|
|
|
static inline SignalType GetSignalType(TileIndex t, Track track)
|
2006-03-17 06:26:37 +00:00
|
|
|
{
|
2006-05-09 09:17:33 +01:00
|
|
|
assert(GetRailTileType(t) == RAIL_TILE_SIGNALS);
|
2007-05-31 22:21:04 +01:00
|
|
|
byte pos = (track == TRACK_LOWER || track == TRACK_RIGHT) ? 4 : 0;
|
|
|
|
return (SignalType)GB(_m[t].m2, pos, 2);
|
2006-03-17 06:26:37 +00:00
|
|
|
}
|
|
|
|
|
2007-05-31 22:21:04 +01:00
|
|
|
static inline void SetSignalType(TileIndex t, Track track, SignalType s)
|
2006-03-17 06:26:37 +00:00
|
|
|
{
|
2006-05-09 09:17:33 +01:00
|
|
|
assert(GetRailTileType(t) == RAIL_TILE_SIGNALS);
|
2007-05-31 22:21:04 +01:00
|
|
|
byte pos = (track == TRACK_LOWER || track == TRACK_RIGHT) ? 4 : 0;
|
|
|
|
SB(_m[t].m2, pos, 2, s);
|
|
|
|
if (track == INVALID_TRACK) SB(_m[t].m2, 4, 2, s);
|
2006-04-12 10:12:33 +01:00
|
|
|
}
|
|
|
|
|
2007-05-31 22:21:04 +01:00
|
|
|
static inline bool IsPresignalEntry(TileIndex t, Track track)
|
2006-04-12 10:12:33 +01:00
|
|
|
{
|
2007-05-31 22:21:04 +01:00
|
|
|
return GetSignalType(t, track) == SIGTYPE_ENTRY || GetSignalType(t, track) == SIGTYPE_COMBO;
|
2006-04-12 10:12:33 +01:00
|
|
|
}
|
|
|
|
|
2007-05-31 22:21:04 +01:00
|
|
|
static inline bool IsPresignalExit(TileIndex t, Track track)
|
2006-04-12 10:12:33 +01:00
|
|
|
{
|
2007-05-31 22:21:04 +01:00
|
|
|
return GetSignalType(t, track) == SIGTYPE_EXIT || GetSignalType(t, track) == SIGTYPE_COMBO;
|
2006-04-12 10:36:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void CycleSignalSide(TileIndex t, Track track)
|
|
|
|
{
|
|
|
|
byte sig;
|
2007-05-31 22:21:04 +01:00
|
|
|
byte pos = (track == TRACK_LOWER || track == TRACK_RIGHT) ? 4 : 6;
|
2006-04-12 10:36:27 +01:00
|
|
|
|
|
|
|
sig = GB(_m[t].m3, pos, 2);
|
|
|
|
if (--sig == 0) sig = 3;
|
|
|
|
SB(_m[t].m3, pos, 2, sig);
|
2006-03-01 08:56:38 +00:00
|
|
|
}
|
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/** Variant of the signal, i.e. how does the signal look? */
|
2007-03-07 12:11:48 +00:00
|
|
|
enum SignalVariant {
|
2007-04-27 22:29:36 +01:00
|
|
|
SIG_ELECTRIC = 0, ///< Light signal
|
|
|
|
SIG_SEMAPHORE = 1 ///< Old-fashioned semaphore signal
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-03-16 21:44:58 +00:00
|
|
|
|
2007-05-31 22:21:04 +01:00
|
|
|
static inline SignalVariant GetSignalVariant(TileIndex t, Track track)
|
2006-03-16 21:44:58 +00:00
|
|
|
{
|
2007-05-31 22:21:04 +01:00
|
|
|
byte pos = (track == TRACK_LOWER || track == TRACK_RIGHT) ? 6 : 2;
|
|
|
|
return (SignalVariant)GB(_m[t].m2, pos, 1);
|
2006-03-16 21:44:58 +00:00
|
|
|
}
|
|
|
|
|
2007-05-31 22:21:04 +01:00
|
|
|
static inline void SetSignalVariant(TileIndex t, Track track, SignalVariant v)
|
2006-03-16 21:44:58 +00:00
|
|
|
{
|
2007-05-31 22:21:04 +01:00
|
|
|
byte pos = (track == TRACK_LOWER || track == TRACK_RIGHT) ? 6 : 2;
|
|
|
|
SB(_m[t].m2, pos, 1, v);
|
|
|
|
if (track == INVALID_TRACK) SB(_m[t].m2, 6, 1, v);
|
2006-03-16 21:44:58 +00:00
|
|
|
}
|
|
|
|
|
2006-04-17 20:09:30 +01:00
|
|
|
/** These are states in which a signal can be. Currently these are only two, so
|
|
|
|
* simple boolean logic will do. But do try to compare to this enum instead of
|
|
|
|
* normal boolean evaluation, since that will make future additions easier.
|
|
|
|
*/
|
2007-03-07 12:11:48 +00:00
|
|
|
enum SignalState {
|
2007-04-27 22:29:36 +01:00
|
|
|
SIGNAL_STATE_RED = 0, ///< The signal is red
|
|
|
|
SIGNAL_STATE_GREEN = 1, ///< The signal is green
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-04-17 20:09:30 +01:00
|
|
|
|
2007-05-30 14:33:19 +01:00
|
|
|
/**
|
|
|
|
* Set the states of the signals (Along/AgainstTrackDir)
|
|
|
|
* @param tile the tile to set the states for
|
|
|
|
* @param state the new state
|
|
|
|
*/
|
|
|
|
static inline void SetSignalStates(TileIndex tile, uint state)
|
|
|
|
{
|
2007-05-31 22:21:04 +01:00
|
|
|
SB(_m[tile].m4, 4, 4, state);
|
2007-05-30 14:33:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the states of the signals (Along/AgainstTrackDir)
|
|
|
|
* @param tile the tile to set the states for
|
|
|
|
* @param state the new state
|
|
|
|
*/
|
|
|
|
static inline uint GetSignalStates(TileIndex tile)
|
|
|
|
{
|
2007-05-31 22:21:04 +01:00
|
|
|
return GB(_m[tile].m4, 4, 4);
|
2007-05-30 14:33:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the state of a single signal
|
|
|
|
* @param t the tile to get the signal state for
|
|
|
|
* @param signalbit the signal
|
|
|
|
* @return the state of the signal
|
|
|
|
*/
|
2006-04-17 20:09:30 +01:00
|
|
|
static inline SignalState GetSingleSignalState(TileIndex t, byte signalbit)
|
|
|
|
{
|
2007-11-19 21:02:30 +00:00
|
|
|
return (SignalState)HasBit(GetSignalStates(t), signalbit);
|
2006-04-17 20:09:30 +01:00
|
|
|
}
|
|
|
|
|
2007-05-30 14:33:19 +01:00
|
|
|
/**
|
|
|
|
* Set whether the given signals are present (Along/AgainstTrackDir)
|
|
|
|
* @param tile the tile to set the present signals for
|
|
|
|
* @param signals the signals that have to be present
|
|
|
|
*/
|
|
|
|
static inline void SetPresentSignals(TileIndex tile, uint signals)
|
|
|
|
{
|
|
|
|
SB(_m[tile].m3, 4, 4, signals);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whether the given signals are present (Along/AgainstTrackDir)
|
|
|
|
* @param tile the tile to get the present signals for
|
|
|
|
* @return the signals that are present
|
|
|
|
*/
|
|
|
|
static inline uint GetPresentSignals(TileIndex tile)
|
|
|
|
{
|
|
|
|
return GB(_m[tile].m3, 4, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the given signals is present
|
|
|
|
* @param t the tile to check on
|
|
|
|
* @param signalbit the signal
|
|
|
|
* @return true if and only if the signal is present
|
|
|
|
*/
|
|
|
|
static inline bool IsSignalPresent(TileIndex t, byte signalbit)
|
|
|
|
{
|
2007-11-19 21:02:30 +00:00
|
|
|
return HasBit(GetPresentSignals(t), signalbit);
|
2007-05-30 14:33:19 +01:00
|
|
|
}
|
2006-03-16 21:44:58 +00:00
|
|
|
|
2006-06-18 16:28:29 +01:00
|
|
|
/**
|
|
|
|
* Checks for the presence of signals (either way) on the given track on the
|
|
|
|
* given rail tile.
|
|
|
|
*/
|
|
|
|
static inline bool HasSignalOnTrack(TileIndex tile, Track track)
|
|
|
|
{
|
|
|
|
assert(IsValidTrack(track));
|
|
|
|
return
|
|
|
|
GetRailTileType(tile) == RAIL_TILE_SIGNALS &&
|
2007-05-30 14:33:19 +01:00
|
|
|
(GetPresentSignals(tile) & SignalOnTrack(track)) != 0;
|
2006-06-18 16:28:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks for the presence of signals along the given trackdir on the given
|
|
|
|
* rail tile.
|
|
|
|
*
|
|
|
|
* Along meaning if you are currently driving on the given trackdir, this is
|
|
|
|
* the signal that is facing us (for which we stop when it's red).
|
|
|
|
*/
|
|
|
|
static inline bool HasSignalOnTrackdir(TileIndex tile, Trackdir trackdir)
|
|
|
|
{
|
|
|
|
assert (IsValidTrackdir(trackdir));
|
|
|
|
return
|
|
|
|
GetRailTileType(tile) == RAIL_TILE_SIGNALS &&
|
2007-05-30 14:33:19 +01:00
|
|
|
GetPresentSignals(tile) & SignalAlongTrackdir(trackdir);
|
2006-06-18 16:28:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the state of the signal along the given trackdir.
|
|
|
|
*
|
|
|
|
* Along meaning if you are currently driving on the given trackdir, this is
|
|
|
|
* the signal that is facing us (for which we stop when it's red).
|
|
|
|
*/
|
|
|
|
static inline SignalState GetSignalStateByTrackdir(TileIndex tile, Trackdir trackdir)
|
|
|
|
{
|
|
|
|
assert(IsValidTrackdir(trackdir));
|
|
|
|
assert(HasSignalOnTrack(tile, TrackdirToTrack(trackdir)));
|
2007-05-30 14:33:19 +01:00
|
|
|
return GetSignalStates(tile) & SignalAlongTrackdir(trackdir) ?
|
2006-06-18 16:28:29 +01:00
|
|
|
SIGNAL_STATE_GREEN : SIGNAL_STATE_RED;
|
|
|
|
}
|
|
|
|
|
2008-01-09 23:00:59 +00:00
|
|
|
/**
|
|
|
|
* Sets the state of the signal along the given trackdir.
|
|
|
|
*/
|
|
|
|
static inline void SetSignalStateByTrackdir(TileIndex tile, Trackdir trackdir, SignalState state)
|
|
|
|
{
|
|
|
|
if (state == SIGNAL_STATE_GREEN) { // set 1
|
|
|
|
SetSignalStates(tile, GetSignalStates(tile) | SignalAlongTrackdir(trackdir));
|
|
|
|
} else {
|
|
|
|
SetSignalStates(tile, GetSignalStates(tile) & ~SignalAlongTrackdir(trackdir));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-18 16:28:29 +01: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);
|
2006-06-18 16:28:29 +01:00
|
|
|
|
2007-04-27 22:29:36 +01:00
|
|
|
/** The ground 'under' the rail */
|
2007-03-07 12:11:48 +00:00
|
|
|
enum RailGroundType {
|
2007-04-27 22:29:36 +01:00
|
|
|
RAIL_GROUND_BARREN = 0, ///< Nothing (dirt)
|
|
|
|
RAIL_GROUND_GRASS = 1, ///< Grassy
|
|
|
|
RAIL_GROUND_FENCE_NW = 2, ///< Grass with a fence at the NW edge
|
|
|
|
RAIL_GROUND_FENCE_SE = 3, ///< Grass with a fence at the SE edge
|
|
|
|
RAIL_GROUND_FENCE_SENW = 4, ///< Grass with a fence at the NW and SE edges
|
|
|
|
RAIL_GROUND_FENCE_NE = 5, ///< Grass with a fence at the NE edge
|
|
|
|
RAIL_GROUND_FENCE_SW = 6, ///< Grass with a fence at the SW edge
|
|
|
|
RAIL_GROUND_FENCE_NESW = 7, ///< Grass with a fence at the NE and SW edges
|
2007-07-23 17:08:58 +01:00
|
|
|
RAIL_GROUND_FENCE_VERT1 = 8, ///< Grass with a fence at the eastern side
|
|
|
|
RAIL_GROUND_FENCE_VERT2 = 9, ///< Grass with a fence at the western side
|
2007-04-27 22:29:36 +01:00
|
|
|
RAIL_GROUND_FENCE_HORIZ1 = 10, ///< Grass with a fence at the southern side
|
|
|
|
RAIL_GROUND_FENCE_HORIZ2 = 11, ///< Grass with a fence at the northern side
|
|
|
|
RAIL_GROUND_ICE_DESERT = 12, ///< Icy or sandy
|
2008-01-25 16:51:35 +00:00
|
|
|
RAIL_GROUND_WATER = 13, ///< Grass with a fence and shore or water on the free halftile
|
2008-02-10 11:35:05 +00:00
|
|
|
RAIL_GROUND_HALF_SNOW = 14, ///< Snow only on higher part of slope (steep or one corner raised)
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-04-12 12:58:07 +01:00
|
|
|
|
|
|
|
static inline void SetRailGroundType(TileIndex t, RailGroundType rgt)
|
|
|
|
{
|
2007-02-27 23:36:28 +00:00
|
|
|
SB(_m[t].m4, 0, 4, rgt);
|
2006-04-12 12:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline RailGroundType GetRailGroundType(TileIndex t)
|
|
|
|
{
|
2007-02-27 23:36:28 +00:00
|
|
|
return (RailGroundType)GB(_m[t].m4, 0, 4);
|
2006-04-12 12:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsSnowRailGround(TileIndex t)
|
|
|
|
{
|
|
|
|
return GetRailGroundType(t) == RAIL_GROUND_ICE_DESERT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-01 08:56:38 +00:00
|
|
|
static inline void MakeRailNormal(TileIndex t, Owner o, TrackBits b, RailType r)
|
|
|
|
{
|
|
|
|
SetTileType(t, MP_RAILWAY);
|
|
|
|
SetTileOwner(t, o);
|
|
|
|
_m[t].m2 = 0;
|
|
|
|
_m[t].m3 = r;
|
|
|
|
_m[t].m4 = 0;
|
2007-02-27 23:36:28 +00:00
|
|
|
_m[t].m5 = RAIL_TILE_NORMAL << 6 | b;
|
2006-03-01 08:56:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void MakeRailDepot(TileIndex t, Owner o, DiagDirection d, RailType r)
|
|
|
|
{
|
|
|
|
SetTileType(t, MP_RAILWAY);
|
|
|
|
SetTileOwner(t, o);
|
|
|
|
_m[t].m2 = 0;
|
|
|
|
_m[t].m3 = r;
|
|
|
|
_m[t].m4 = 0;
|
2007-02-27 23:36:28 +00:00
|
|
|
_m[t].m5 = RAIL_TILE_DEPOT << 6 | d;
|
2006-03-01 08:56:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void MakeRailWaypoint(TileIndex t, Owner o, Axis a, RailType r, uint index)
|
|
|
|
{
|
|
|
|
SetTileType(t, MP_RAILWAY);
|
|
|
|
SetTileOwner(t, o);
|
|
|
|
_m[t].m2 = index;
|
|
|
|
_m[t].m3 = r;
|
|
|
|
_m[t].m4 = 0;
|
2007-02-27 23:36:28 +00:00
|
|
|
_m[t].m5 = RAIL_TILE_WAYPOINT << 6 | a;
|
2006-03-01 08:56:38 +00:00
|
|
|
}
|
|
|
|
|
2006-09-28 19:42:35 +01:00
|
|
|
#endif /* RAIL_MAP_H */
|