2006-03-29 16:30:26 +00:00
|
|
|
/* $Id$ */
|
2008-05-06 15:11:33 +00:00
|
|
|
|
2007-02-23 01:48:53 +00:00
|
|
|
/** @file elrail.cpp
|
2006-09-04 20:40:33 +00:00
|
|
|
* This file deals with displaying wires and pylons for electric railways.
|
|
|
|
* <h2>Basics</h2>
|
|
|
|
*
|
|
|
|
* <h3>Tile Types</h3>
|
|
|
|
*
|
|
|
|
* We have two different types of tiles in the drawing code:
|
|
|
|
* Normal Railway Tiles (NRTs) which can have more than one track on it, and
|
|
|
|
* Special Railways tiles (SRTs) which have only one track (like crossings, depots
|
|
|
|
* stations, etc).
|
|
|
|
*
|
|
|
|
* <h3>Location Categories</h3>
|
|
|
|
*
|
|
|
|
* All tiles are categorized into three location groups (TLG):
|
|
|
|
* Group 0: Tiles with both an even X coordinate and an even Y coordinate
|
|
|
|
* Group 1: Tiles with an even X and an odd Y coordinate
|
|
|
|
* Group 2: Tiles with an odd X and an even Y coordinate
|
|
|
|
* Group 3: Tiles with both an odd X and Y coordnate.
|
|
|
|
*
|
|
|
|
* <h3>Pylon Points</h3>
|
|
|
|
* <h4>Control Points</h4>
|
|
|
|
* A Pylon Control Point (PCP) is a position where a wire (or rather two)
|
|
|
|
* is mounted onto a pylon.
|
|
|
|
* Each NRT does contain 4 PCPs which are bitmapped to a byte
|
|
|
|
* variable and are represented by the DiagDirection enum
|
|
|
|
*
|
|
|
|
* Each track ends on two PCPs and thus requires one pylon on each end. However,
|
|
|
|
* there is one exception: Straight-and-level tracks only have one pylon every
|
|
|
|
* other tile.
|
|
|
|
*
|
|
|
|
* Now on each edge there are two PCPs: One from each adjacent tile. Both PCPs
|
|
|
|
* are merged using an OR operation (i. e. if one tile needs a PCP at the postion
|
|
|
|
* in question, both tiles get it).
|
|
|
|
*
|
|
|
|
* <h4>Position Points</h4>
|
|
|
|
* A Pylon Position Point (PPP) is a position where a pylon is located on the
|
|
|
|
* ground. Each PCP owns 8 in (45 degree steps) PPPs that are located around
|
|
|
|
* it. PPPs are represented using the Direction enum. Each track bit has PPPs
|
|
|
|
* that are impossible (because the pylon would be situated on the track) and
|
|
|
|
* some that are preferred (because the pylon would be rectangular to the track).
|
|
|
|
*
|
|
|
|
* <img src="../../elrail_tile.png">
|
|
|
|
* <img src="../../elrail_track.png">
|
|
|
|
*
|
|
|
|
*/
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "openttd.h"
|
2006-03-30 09:08:43 +00:00
|
|
|
#include "station_map.h"
|
2008-01-09 09:45:45 +00:00
|
|
|
#include "viewport_func.h"
|
2007-04-12 13:07:15 +00:00
|
|
|
#include "landscape.h"
|
2006-11-17 19:31:44 +00:00
|
|
|
#include "train.h"
|
2007-12-21 07:38:36 +00:00
|
|
|
#include "rail_gui.h"
|
2007-12-16 15:38:51 +00:00
|
|
|
#include "tunnelbridge_map.h"
|
2007-12-27 13:35:39 +00:00
|
|
|
#include "vehicle_func.h"
|
2008-01-23 22:34:04 +00:00
|
|
|
#include "tunnelbridge.h"
|
2008-05-08 16:48:29 +00:00
|
|
|
#include "elrail_func.h"
|
2008-04-29 21:31:29 +00:00
|
|
|
#include "engine_base.h"
|
2007-12-16 15:38:51 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "table/sprites.h"
|
|
|
|
#include "table/elrail_data.h"
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
static inline TLG GetTLG(TileIndex t)
|
|
|
|
{
|
2007-11-19 21:02:30 +00:00
|
|
|
return (TLG)((HasBit(TileX(t), 0) << 1) + HasBit(TileY(t), 0));
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
|
2008-01-23 23:22:47 +00:00
|
|
|
/**
|
|
|
|
* Finds which Electrified Rail Bits are present on a given tile.
|
|
|
|
* @param t tile to check
|
|
|
|
* @param override pointer to PCP override, can be NULL
|
|
|
|
* @return trackbits of tile if it is electrified
|
2006-09-04 20:40:33 +00:00
|
|
|
*/
|
2006-03-29 16:30:26 +00:00
|
|
|
static TrackBits GetRailTrackBitsUniversal(TileIndex t, byte *override)
|
|
|
|
{
|
|
|
|
switch (GetTileType(t)) {
|
|
|
|
case MP_RAILWAY:
|
2008-03-25 12:10:13 +00:00
|
|
|
if (!HasCatenary(GetRailType(t))) return TRACK_BIT_NONE;
|
2006-03-29 16:30:26 +00:00
|
|
|
switch (GetRailTileType(t)) {
|
2006-05-09 08:17:33 +00:00
|
|
|
case RAIL_TILE_NORMAL: case RAIL_TILE_SIGNALS:
|
2006-03-29 16:30:26 +00:00
|
|
|
return GetTrackBits(t);
|
2007-02-27 23:36:28 +00:00
|
|
|
case RAIL_TILE_WAYPOINT:
|
|
|
|
return GetRailWaypointBits(t);
|
2006-03-29 16:30:26 +00:00
|
|
|
default:
|
2007-01-10 18:56:51 +00:00
|
|
|
return TRACK_BIT_NONE;
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-06-27 21:25:53 +00:00
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
case MP_TUNNELBRIDGE:
|
2008-03-25 12:10:13 +00:00
|
|
|
if (!HasCatenary(GetRailType(t))) return TRACK_BIT_NONE;
|
2008-01-23 23:22:47 +00:00
|
|
|
if (override != NULL && (IsTunnel(t) || GetTunnelBridgeLength(t, GetOtherBridgeEnd(t)) > 0)) {
|
2007-12-16 19:30:42 +00:00
|
|
|
*override = 1 << GetTunnelBridgeDirection(t);
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
2008-05-14 18:31:21 +00:00
|
|
|
return DiagDirToDiagTrackBits(GetTunnelBridgeDirection(t));
|
2006-06-27 21:25:53 +00:00
|
|
|
|
2007-07-29 23:42:59 +00:00
|
|
|
case MP_ROAD:
|
2008-02-14 15:59:16 +00:00
|
|
|
if (!IsLevelCrossing(t)) return TRACK_BIT_NONE;
|
2008-03-25 12:10:13 +00:00
|
|
|
if (!HasCatenary(GetRailType(t))) return TRACK_BIT_NONE;
|
2006-03-29 16:30:26 +00:00
|
|
|
return GetCrossingRailBits(t);
|
2006-06-27 21:25:53 +00:00
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
case MP_STATION:
|
2007-01-10 18:56:51 +00:00
|
|
|
if (!IsRailwayStation(t)) return TRACK_BIT_NONE;
|
2008-03-25 12:10:13 +00:00
|
|
|
if (!HasCatenary(GetRailType(t))) return TRACK_BIT_NONE;
|
2007-01-10 18:56:51 +00:00
|
|
|
if (!IsStationTileElectrifiable(t)) return TRACK_BIT_NONE;
|
2006-03-30 13:06:16 +00:00
|
|
|
return TrackToTrackBits(GetRailStationTrack(t));
|
2006-06-27 21:25:53 +00:00
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
default:
|
2007-01-10 18:56:51 +00:00
|
|
|
return TRACK_BIT_NONE;
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-05 01:33:59 +00:00
|
|
|
/**
|
|
|
|
* Masks out track bits when neighbouring tiles are unelectrified.
|
|
|
|
*/
|
|
|
|
static TrackBits MaskWireBits(TileIndex t, TrackBits tracks)
|
|
|
|
{
|
2009-05-18 01:35:15 +00:00
|
|
|
if (!IsPlainRailTile(t)) return tracks;
|
2009-02-05 01:33:59 +00:00
|
|
|
|
|
|
|
TrackdirBits neighbour_tdb = TRACKDIR_BIT_NONE;
|
|
|
|
for (DiagDirection d = DIAGDIR_BEGIN; d < DIAGDIR_END; d++) {
|
|
|
|
/* If the neighbor tile is either not electrified or has no tracks that can be reached
|
|
|
|
* from this tile, mark all trackdirs that can be reached from the neighbour tile
|
|
|
|
* as needing no catenary. */
|
|
|
|
RailType rt = GetTileRailType(TileAddByDiagDir(t, d));
|
|
|
|
if (rt == INVALID_RAILTYPE || !HasCatenary(rt) || (TrackStatusToTrackBits(GetTileTrackStatus(TileAddByDiagDir(t, d), TRANSPORT_RAIL, 0)) & DiagdirReachesTracks(d)) == TRACK_BIT_NONE) {
|
|
|
|
neighbour_tdb |= DiagdirReachesTrackdirs(ReverseDiagDir(d));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the tracks from either a diagonal crossing or don't overlap, both
|
|
|
|
* trackdirs have to be marked to mask the corresponding track bit. Else
|
|
|
|
* one marked trackdir is enough the mask the track bit. */
|
|
|
|
TrackBits mask;
|
|
|
|
if (tracks == TRACK_BIT_CROSS || !TracksOverlap(tracks)) {
|
|
|
|
/* If the tracks form either a diagonal crossing or don't overlap, both
|
|
|
|
* trackdirs have to be marked to mask the corresponding track bit. */
|
|
|
|
mask = ~(TrackBits)((neighbour_tdb & (neighbour_tdb >> 8)) & TRACK_BIT_MASK);
|
|
|
|
/* If that results in no masked tracks and it is not a diagonal crossing,
|
|
|
|
* require only one marked trackdir to mask. */
|
|
|
|
if (tracks != TRACK_BIT_CROSS && (mask & TRACK_BIT_MASK) == TRACK_BIT_MASK) mask = ~TrackdirBitsToTrackBits(neighbour_tdb);
|
|
|
|
} else {
|
|
|
|
/* Require only one marked trackdir to mask the track. */
|
|
|
|
mask = ~TrackdirBitsToTrackBits(neighbour_tdb);
|
|
|
|
/* If that results in an empty set, require both trackdirs for diagonal track. */
|
|
|
|
if ((tracks & mask) == TRACK_BIT_NONE) {
|
|
|
|
if ((neighbour_tdb & TRACKDIR_BIT_X_NE) == 0 || (neighbour_tdb & TRACKDIR_BIT_X_SW) == 0) mask |= TRACK_BIT_X;
|
|
|
|
if ((neighbour_tdb & TRACKDIR_BIT_Y_NW) == 0 || (neighbour_tdb & TRACKDIR_BIT_Y_SE) == 0) mask |= TRACK_BIT_Y;
|
|
|
|
/* If that still is not enough, require both trackdirs for any track. */
|
|
|
|
if ((tracks & mask) == TRACK_BIT_NONE) mask = ~(TrackBits)((neighbour_tdb & (neighbour_tdb >> 8)) & TRACK_BIT_MASK);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mask the tracks only if at least one track bit would remain. */
|
|
|
|
return (tracks & mask) != TRACK_BIT_NONE ? tracks & mask : tracks;
|
|
|
|
}
|
|
|
|
|
2009-01-25 19:27:13 +00:00
|
|
|
/**
|
|
|
|
* Get the base wire sprite to use.
|
|
|
|
*/
|
|
|
|
static inline SpriteID GetWireBase(TileIndex tile)
|
|
|
|
{
|
|
|
|
return SPR_WIRE_BASE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the base pylon sprite to use.
|
|
|
|
*/
|
|
|
|
static inline SpriteID GetPylonBase(TileIndex tile)
|
|
|
|
{
|
|
|
|
return SPR_PYLON_BASE;
|
|
|
|
}
|
|
|
|
|
2006-04-05 09:17:43 +00:00
|
|
|
/** Corrects the tileh for certain tile types. Returns an effective tileh for the track on the tile.
|
2006-09-04 20:40:33 +00:00
|
|
|
* @param tile The tile to analyse
|
|
|
|
* @param *tileh the tileh
|
|
|
|
*/
|
2006-07-26 03:33:12 +00:00
|
|
|
static void AdjustTileh(TileIndex tile, Slope *tileh)
|
2006-04-05 09:17:43 +00:00
|
|
|
{
|
2006-06-27 21:25:53 +00:00
|
|
|
if (IsTileType(tile, MP_TUNNELBRIDGE)) {
|
|
|
|
if (IsTunnel(tile)) {
|
2007-03-09 15:12:37 +00:00
|
|
|
*tileh = SLOPE_STEEP; // XXX - Hack to make tunnel entrances to always have a pylon
|
|
|
|
} else if (*tileh != SLOPE_FLAT) {
|
|
|
|
*tileh = SLOPE_FLAT;
|
2006-04-05 09:17:43 +00:00
|
|
|
} else {
|
2008-01-25 15:47:58 +00:00
|
|
|
*tileh = InclinedSlope(GetTunnelBridgeDirection(tile));
|
2006-04-05 09:17:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-07 21:11:12 +00:00
|
|
|
/**
|
|
|
|
* Returns the Z position of a Pylon Control Point.
|
|
|
|
*
|
|
|
|
* @param tile The tile the pylon should stand on.
|
|
|
|
* @param PCPpos The PCP of the tile.
|
|
|
|
* @return The Z position of the PCP.
|
|
|
|
*/
|
|
|
|
static byte GetPCPElevation(TileIndex tile, DiagDirection PCPpos)
|
|
|
|
{
|
|
|
|
/* The elevation of the "pylon"-sprite should be the elevation at the PCP.
|
|
|
|
* PCPs are always on a tile edge.
|
|
|
|
*
|
|
|
|
* This position can be outside of the tile, i.e. ?_pcp_offset == TILE_SIZE > TILE_SIZE - 1.
|
|
|
|
* So we have to move it inside the tile, because if the neighboured tile has a foundation,
|
|
|
|
* that does not smoothly connect to the current tile, we will get a wrong elevation from GetSlopeZ().
|
|
|
|
*
|
|
|
|
* When we move the position inside the tile, we will get a wrong elevation if we have a slope.
|
|
|
|
* To catch all cases we round the Z position to the next (TILE_HEIGHT / 2).
|
|
|
|
* This will return the correct elevation for slopes and will also detect non-continuous elevation on edges.
|
|
|
|
*
|
|
|
|
* Also note that the result of GetSlopeZ() is very special on bridge-ramps.
|
|
|
|
*/
|
|
|
|
|
|
|
|
byte z = GetSlopeZ(TileX(tile) * TILE_SIZE + min(x_pcp_offsets[PCPpos], TILE_SIZE - 1), TileY(tile) * TILE_SIZE + min(y_pcp_offsets[PCPpos], TILE_SIZE - 1));
|
|
|
|
return (z + 2) & ~3; // this means z = (z + TILE_HEIGHT / 4) / (TILE_HEIGHT / 2) * (TILE_HEIGHT / 2);
|
|
|
|
}
|
|
|
|
|
2007-09-19 16:36:42 +00:00
|
|
|
/**
|
|
|
|
* Draws wires on a tunnel tile
|
|
|
|
*
|
|
|
|
* DrawTile_TunnelBridge() calls this function to draw the wires as SpriteCombine with the tunnel roof.
|
|
|
|
*
|
|
|
|
* @param ti The Tileinfo to draw the tile for
|
|
|
|
*/
|
|
|
|
void DrawCatenaryOnTunnel(const TileInfo *ti)
|
|
|
|
{
|
|
|
|
/* xmin, ymin, xmax + 1, ymax + 1 of BB */
|
|
|
|
static const int _tunnel_wire_BB[4][4] = {
|
|
|
|
{ 0, 1, 16, 15 }, // NE
|
|
|
|
{ 1, 0, 15, 16 }, // SE
|
|
|
|
{ 0, 1, 16, 15 }, // SW
|
|
|
|
{ 1, 0, 15, 16 }, // NW
|
|
|
|
};
|
|
|
|
|
2007-12-16 15:38:51 +00:00
|
|
|
DiagDirection dir = GetTunnelBridgeDirection(ti->tile);
|
2007-09-19 16:36:42 +00:00
|
|
|
|
2009-01-25 19:27:13 +00:00
|
|
|
SpriteID wire_base = GetWireBase(ti->tile);
|
|
|
|
|
2007-09-19 16:36:42 +00:00
|
|
|
const SortableSpriteStruct *sss = &CatenarySpriteData_Tunnel[dir];
|
|
|
|
const int *BB_data = _tunnel_wire_BB[dir];
|
|
|
|
AddSortableSpriteToDraw(
|
2009-01-25 19:27:13 +00:00
|
|
|
wire_base + sss->image_offset, PAL_NONE, ti->x + sss->x_offset, ti->y + sss->y_offset,
|
2007-09-19 16:36:42 +00:00
|
|
|
BB_data[2] - sss->x_offset, BB_data[3] - sss->y_offset, BB_Z_SEPARATOR - sss->z_offset + 1,
|
|
|
|
GetTileZ(ti->tile) + sss->z_offset,
|
2008-02-10 15:53:26 +00:00
|
|
|
IsTransparencySet(TO_CATENARY),
|
2007-09-19 16:36:42 +00:00
|
|
|
BB_data[0] - sss->x_offset, BB_data[1] - sss->y_offset, BB_Z_SEPARATOR - sss->z_offset
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
/** Draws wires and, if required, pylons on a given tile
|
2006-09-04 20:40:33 +00:00
|
|
|
* @param ti The Tileinfo to draw the tile for
|
|
|
|
*/
|
2006-03-29 16:30:26 +00:00
|
|
|
static void DrawCatenaryRailway(const TileInfo *ti)
|
|
|
|
{
|
|
|
|
/* Pylons are placed on a tile edge, so we need to take into account
|
2006-09-04 20:40:33 +00:00
|
|
|
* the track configuration of 2 adjacent tiles. trackconfig[0] stores the
|
|
|
|
* current tile (home tile) while [1] holds the neighbour */
|
2006-03-29 16:30:26 +00:00
|
|
|
TrackBits trackconfig[TS_END];
|
2009-02-05 01:33:59 +00:00
|
|
|
TrackBits wireconfig[TS_END];
|
2006-03-29 16:30:26 +00:00
|
|
|
bool isflat[TS_END];
|
|
|
|
/* Note that ti->tileh has already been adjusted for Foundations */
|
2006-04-23 13:48:16 +00:00
|
|
|
Slope tileh[TS_END] = { ti->tileh, SLOPE_FLAT };
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2007-10-20 16:50:48 +00:00
|
|
|
/* Half tile slopes coincide only with horizontal/vertical track.
|
|
|
|
* Faking a flat slope results in the correct sprites on positions. */
|
|
|
|
if (IsHalftileSlope(tileh[TS_HOME])) tileh[TS_HOME] = SLOPE_FLAT;
|
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
TLG tlg = GetTLG(ti->tile);
|
|
|
|
byte PCPstatus = 0;
|
|
|
|
byte OverridePCP = 0;
|
2006-03-31 16:01:59 +00:00
|
|
|
byte PPPpreferred[DIAGDIR_END];
|
|
|
|
byte PPPallowed[DIAGDIR_END];
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
/* Find which rail bits are present, and select the override points.
|
2006-09-04 20:40:33 +00:00
|
|
|
* We don't draw a pylon:
|
|
|
|
* 1) INSIDE a tunnel (we wouldn't see it anyway)
|
|
|
|
* 2) on the "far" end of a bridge head (the one that connects to bridge middle),
|
|
|
|
* because that one is drawn on the bridge. Exception is for length 0 bridges
|
|
|
|
* which have no middle tiles */
|
2006-03-29 16:30:26 +00:00
|
|
|
trackconfig[TS_HOME] = GetRailTrackBitsUniversal(ti->tile, &OverridePCP);
|
2009-02-05 01:33:59 +00:00
|
|
|
wireconfig[TS_HOME] = MaskWireBits(ti->tile, trackconfig[TS_HOME]);
|
2006-03-29 16:30:26 +00:00
|
|
|
/* If a track bit is present that is not in the main direction, the track is level */
|
2007-01-10 18:56:51 +00:00
|
|
|
isflat[TS_HOME] = ((trackconfig[TS_HOME] & (TRACK_BIT_HORZ | TRACK_BIT_VERT)) != 0);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2006-04-05 09:17:43 +00:00
|
|
|
AdjustTileh(ti->tile, &tileh[TS_HOME]);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2009-01-25 19:27:13 +00:00
|
|
|
SpriteID pylon_base = GetPylonBase(ti->tile);
|
|
|
|
|
2009-02-05 01:33:59 +00:00
|
|
|
for (DiagDirection i = DIAGDIR_BEGIN; i < DIAGDIR_END; i++) {
|
2006-09-05 23:21:41 +00:00
|
|
|
TileIndex neighbour = ti->tile + TileOffsByDiagDir(i);
|
2007-07-26 16:51:10 +00:00
|
|
|
Foundation foundation = FOUNDATION_NONE;
|
2008-04-23 20:22:31 +00:00
|
|
|
byte elevation = GetPCPElevation(ti->tile, i);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
/* Here's one of the main headaches. GetTileSlope does not correct for possibly
|
2006-09-04 20:40:33 +00:00
|
|
|
* existing foundataions, so we do have to do that manually later on.*/
|
2006-03-29 16:30:26 +00:00
|
|
|
tileh[TS_NEIGHBOUR] = GetTileSlope(neighbour, NULL);
|
|
|
|
trackconfig[TS_NEIGHBOUR] = GetRailTrackBitsUniversal(neighbour, NULL);
|
2009-02-05 01:33:59 +00:00
|
|
|
wireconfig[TS_NEIGHBOUR] = MaskWireBits(neighbour, trackconfig[TS_NEIGHBOUR]);
|
|
|
|
if (IsTunnelTile(neighbour) && i != GetTunnelBridgeDirection(neighbour)) wireconfig[TS_NEIGHBOUR] = trackconfig[TS_NEIGHBOUR] = TRACK_BIT_NONE;
|
2007-09-07 21:11:12 +00:00
|
|
|
|
|
|
|
/* If the neighboured tile does not smoothly connect to the current tile (because of a foundation),
|
|
|
|
* we have to draw all pillars on the current tile. */
|
2009-02-05 01:33:59 +00:00
|
|
|
if (elevation != GetPCPElevation(neighbour, ReverseDiagDir(i))) wireconfig[TS_NEIGHBOUR] = trackconfig[TS_NEIGHBOUR] = TRACK_BIT_NONE;
|
2007-09-07 21:11:12 +00:00
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
isflat[TS_NEIGHBOUR] = ((trackconfig[TS_NEIGHBOUR] & (TRACK_BIT_HORZ | TRACK_BIT_VERT)) != 0);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2007-03-09 15:12:37 +00:00
|
|
|
PPPpreferred[i] = 0xFF; // We start with preferring everything (end-of-line in any direction)
|
2006-04-05 09:17:43 +00:00
|
|
|
PPPallowed[i] = AllowedPPPonPCP[i];
|
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
/* We cycle through all the existing tracks at a PCP and see what
|
2006-09-04 20:40:33 +00:00
|
|
|
* PPPs we want to have, or may not have at all */
|
2008-04-23 20:22:31 +00:00
|
|
|
for (uint k = 0; k < NUM_TRACKS_AT_PCP; k++) {
|
2006-03-29 16:30:26 +00:00
|
|
|
/* Next to us, we have a bridge head, don't worry about that one, if it shows away from us */
|
2006-04-05 09:17:43 +00:00
|
|
|
if (TrackSourceTile[i][k] == TS_NEIGHBOUR &&
|
2006-12-27 12:38:02 +00:00
|
|
|
IsBridgeTile(neighbour) &&
|
2007-12-16 15:38:51 +00:00
|
|
|
GetTunnelBridgeDirection(neighbour) == ReverseDiagDir(i)) {
|
2006-06-10 08:37:41 +00:00
|
|
|
continue;
|
|
|
|
}
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2006-04-05 09:17:43 +00:00
|
|
|
/* We check whether the track in question (k) is present in the tile
|
2006-09-04 20:40:33 +00:00
|
|
|
* (TrackSourceTile) */
|
2009-02-05 01:33:59 +00:00
|
|
|
DiagDirection PCPpos = i;
|
|
|
|
if (HasBit(wireconfig[TrackSourceTile[i][k]], TracksAtPCP[i][k])) {
|
2006-04-05 09:17:43 +00:00
|
|
|
/* track found, if track is in the neighbour tile, adjust the number
|
2006-09-04 20:40:33 +00:00
|
|
|
* of the PCP for preferred/allowed determination*/
|
2009-02-05 01:33:59 +00:00
|
|
|
PCPpos = (TrackSourceTile[i][k] == TS_HOME) ? i : ReverseDiagDir(i);
|
2007-11-20 13:35:54 +00:00
|
|
|
SetBit(PCPstatus, i); // This PCP is in use
|
2009-02-05 02:07:13 +00:00
|
|
|
PPPpreferred[i] &= PreferredPPPofTrackAtPCP[TracksAtPCP[i][k]][PCPpos];
|
2009-02-05 01:33:59 +00:00
|
|
|
}
|
2006-04-05 09:17:43 +00:00
|
|
|
|
2009-02-05 01:33:59 +00:00
|
|
|
if (HasBit(trackconfig[TrackSourceTile[i][k]], TracksAtPCP[i][k])) {
|
2006-04-05 09:17:43 +00:00
|
|
|
PPPallowed[i] &= ~DisallowedPPPofTrackAtPCP[TracksAtPCP[i][k]][PCPpos];
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Deactivate all PPPs if PCP is not used */
|
2008-04-23 20:22:31 +00:00
|
|
|
if (!HasBit(PCPstatus, i)) {
|
|
|
|
PPPpreferred[i] = 0;
|
|
|
|
PPPallowed[i] = 0;
|
|
|
|
}
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2006-05-20 21:04:43 +00:00
|
|
|
/* A station is always "flat", so adjust the tileh accordingly */
|
|
|
|
if (IsTileType(neighbour, MP_STATION)) tileh[TS_NEIGHBOUR] = SLOPE_FLAT;
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
/* Read the foundataions if they are present, and adjust the tileh */
|
2008-03-25 12:10:13 +00:00
|
|
|
if (trackconfig[TS_NEIGHBOUR] != TRACK_BIT_NONE && IsTileType(neighbour, MP_RAILWAY) && HasCatenary(GetRailType(neighbour))) foundation = GetRailFoundation(tileh[TS_NEIGHBOUR], trackconfig[TS_NEIGHBOUR]);
|
2006-12-27 12:38:02 +00:00
|
|
|
if (IsBridgeTile(neighbour)) {
|
2007-12-16 15:38:51 +00:00
|
|
|
foundation = GetBridgeFoundation(tileh[TS_NEIGHBOUR], DiagDirToAxis(GetTunnelBridgeDirection(neighbour)));
|
2006-03-30 09:26:17 +00:00
|
|
|
}
|
|
|
|
|
2007-07-26 16:51:10 +00:00
|
|
|
ApplyFoundationToSlope(foundation, &tileh[TS_NEIGHBOUR]);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2008-04-23 20:22:31 +00:00
|
|
|
/* Half tile slopes coincide only with horizontal/vertical track.
|
|
|
|
* Faking a flat slope results in the correct sprites on positions. */
|
2007-10-20 16:50:48 +00:00
|
|
|
if (IsHalftileSlope(tileh[TS_NEIGHBOUR])) tileh[TS_NEIGHBOUR] = SLOPE_FLAT;
|
|
|
|
|
2006-04-05 09:17:43 +00:00
|
|
|
AdjustTileh(neighbour, &tileh[TS_NEIGHBOUR]);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
/* If we have a straight (and level) track, we want a pylon only every 2 tiles
|
2009-03-15 00:32:18 +00:00
|
|
|
* Delete the PCP if this is the case.
|
|
|
|
* Level means that the slope is the same, or the track is flat */
|
2006-03-29 16:30:26 +00:00
|
|
|
if (tileh[TS_HOME] == tileh[TS_NEIGHBOUR] || (isflat[TS_HOME] && isflat[TS_NEIGHBOUR])) {
|
2008-04-23 20:22:31 +00:00
|
|
|
for (uint k = 0; k < NUM_IGNORE_GROUPS; k++) {
|
2007-11-19 21:32:20 +00:00
|
|
|
if (PPPpreferred[i] == IgnoredPCP[k][tlg][i]) ClrBit(PCPstatus, i);
|
2008-04-23 20:22:31 +00:00
|
|
|
}
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
|
2006-04-05 09:17:43 +00:00
|
|
|
/* Now decide where we draw our pylons. First try the preferred PPPs, but they may not exist.
|
2006-09-04 20:40:33 +00:00
|
|
|
* In that case, we try the any of the allowed ones. if they don't exist either, don't draw
|
|
|
|
* anything. Note that the preferred PPPs still contain the end-of-line markers.
|
|
|
|
* Remove those (simply by ANDing with allowed, since these markers are never allowed) */
|
2006-06-27 21:25:53 +00:00
|
|
|
if ((PPPallowed[i] & PPPpreferred[i]) != 0) PPPallowed[i] &= PPPpreferred[i];
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
if (MayHaveBridgeAbove(ti->tile) && IsBridgeAbove(ti->tile)) {
|
|
|
|
Track bridgetrack = GetBridgeAxis(ti->tile) == AXIS_X ? TRACK_X : TRACK_Y;
|
|
|
|
uint height = GetBridgeHeight(GetNorthernBridgeEnd(ti->tile));
|
|
|
|
|
2007-05-26 10:40:34 +00:00
|
|
|
if ((height <= GetTileMaxZ(ti->tile) + TILE_HEIGHT) &&
|
2007-03-09 15:12:37 +00:00
|
|
|
(i == PCPpositions[bridgetrack][0] || i == PCPpositions[bridgetrack][1])) {
|
2007-11-20 13:35:54 +00:00
|
|
|
SetBit(OverridePCP, i);
|
2007-03-09 15:12:37 +00:00
|
|
|
}
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (PPPallowed[i] != 0 && HasBit(PCPstatus, i) && !HasBit(OverridePCP, i)) {
|
2008-04-23 20:22:31 +00:00
|
|
|
for (Direction k = DIR_BEGIN; k < DIR_END; k++) {
|
2006-03-29 16:30:26 +00:00
|
|
|
byte temp = PPPorder[i][GetTLG(ti->tile)][k];
|
2006-06-27 21:25:53 +00:00
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(PPPallowed[i], temp)) {
|
2006-03-29 16:30:26 +00:00
|
|
|
uint x = ti->x + x_pcp_offsets[i] + x_ppp_offsets[temp];
|
|
|
|
uint y = ti->y + y_pcp_offsets[i] + y_ppp_offsets[temp];
|
|
|
|
|
|
|
|
/* Don't build the pylon if it would be outside the tile */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (!HasBit(OwnedPPPonPCP[i], temp)) {
|
2006-03-29 16:30:26 +00:00
|
|
|
/* We have a neighour that will draw it, bail out */
|
2009-02-05 01:33:59 +00:00
|
|
|
if (trackconfig[TS_NEIGHBOUR] != TRACK_BIT_NONE) break;
|
2009-03-15 00:32:18 +00:00
|
|
|
continue; // No neighbour, go looking for a better position
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
|
2009-01-25 19:27:13 +00:00
|
|
|
AddSortableSpriteToDraw(pylon_base + pylon_sprites[temp], PAL_NONE, x, y, 1, 1, BB_HEIGHT_UNDER_BRIDGE,
|
2008-04-23 20:22:31 +00:00
|
|
|
elevation, IsTransparencySet(TO_CATENARY), -1, -1);
|
|
|
|
|
2009-03-15 00:32:18 +00:00
|
|
|
break; // We already have drawn a pylon, bail out
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-11 19:44:30 +00:00
|
|
|
/* The wire above the tunnel is drawn together with the tunnel-roof (see DrawCatenaryOnTunnel()) */
|
|
|
|
if (IsTunnelTile(ti->tile)) return;
|
|
|
|
|
2006-08-31 11:18:30 +00:00
|
|
|
/* Don't draw a wire under a low bridge */
|
2008-02-10 15:53:26 +00:00
|
|
|
if (MayHaveBridgeAbove(ti->tile) && IsBridgeAbove(ti->tile) && !IsTransparencySet(TO_CATENARY)) {
|
2006-12-27 12:38:02 +00:00
|
|
|
uint height = GetBridgeHeight(GetNorthernBridgeEnd(ti->tile));
|
|
|
|
|
2007-05-26 10:40:34 +00:00
|
|
|
if (height <= GetTileMaxZ(ti->tile) + TILE_HEIGHT) return;
|
2006-08-31 11:18:30 +00:00
|
|
|
}
|
|
|
|
|
2009-01-25 19:27:13 +00:00
|
|
|
SpriteID wire_base = GetWireBase(ti->tile);
|
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
/* Drawing of pylons is finished, now draw the wires */
|
2008-04-23 20:22:31 +00:00
|
|
|
for (Track t = TRACK_BEGIN; t < TRACK_END; t++) {
|
2009-02-05 01:33:59 +00:00
|
|
|
if (HasBit(wireconfig[TS_HOME], t)) {
|
2007-11-19 21:02:30 +00:00
|
|
|
byte PCPconfig = HasBit(PCPstatus, PCPpositions[t][0]) +
|
|
|
|
(HasBit(PCPstatus, PCPpositions[t][1]) << 1);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
const SortableSpriteStruct *sss;
|
2009-03-15 00:32:18 +00:00
|
|
|
int tileh_selector = !(tileh[TS_HOME] % 3) * tileh[TS_HOME] / 3; // tileh for the slopes, 0 otherwise
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2009-03-15 00:32:18 +00:00
|
|
|
assert(PCPconfig != 0); // We have a pylon on neither end of the wire, that doesn't work (since we have no sprites for that)
|
2006-04-23 13:48:16 +00:00
|
|
|
assert(!IsSteepSlope(tileh[TS_HOME]));
|
2006-03-29 16:30:26 +00:00
|
|
|
sss = &CatenarySpriteData[Wires[tileh_selector][t][PCPconfig]];
|
|
|
|
|
2007-09-07 21:11:12 +00:00
|
|
|
/*
|
|
|
|
* The "wire"-sprite position is inside the tile, i.e. 0 <= sss->?_offset < TILE_SIZE.
|
2008-08-25 20:54:34 +00:00
|
|
|
* Therefore it is safe to use GetSlopeZ() for the elevation.
|
2007-09-07 21:11:12 +00:00
|
|
|
* Also note, that the result of GetSlopeZ() is very special for bridge-ramps.
|
|
|
|
*/
|
2009-01-25 19:27:13 +00:00
|
|
|
AddSortableSpriteToDraw(wire_base + sss->image_offset, PAL_NONE, ti->x + sss->x_offset, ti->y + sss->y_offset,
|
2007-09-07 21:11:12 +00:00
|
|
|
sss->x_size, sss->y_size, sss->z_size, GetSlopeZ(ti->x + sss->x_offset, ti->y + sss->y_offset) + sss->z_offset,
|
2008-02-10 15:53:26 +00:00
|
|
|
IsTransparencySet(TO_CATENARY));
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-23 19:47:23 +00:00
|
|
|
void DrawCatenaryOnBridge(const TileInfo *ti)
|
2006-03-29 16:30:26 +00:00
|
|
|
{
|
2006-04-04 12:31:29 +00:00
|
|
|
TileIndex end = GetSouthernBridgeEnd(ti->tile);
|
|
|
|
TileIndex start = GetOtherBridgeEnd(end);
|
|
|
|
|
2008-01-23 22:34:04 +00:00
|
|
|
uint length = GetTunnelBridgeLength(start, end);
|
|
|
|
uint num = GetTunnelBridgeLength(ti->tile, start) + 1;
|
2006-07-22 09:08:34 +00:00
|
|
|
uint height;
|
2006-04-04 12:31:29 +00:00
|
|
|
|
2006-03-29 16:30:26 +00:00
|
|
|
const SortableSpriteStruct *sss;
|
|
|
|
Axis axis = GetBridgeAxis(ti->tile);
|
|
|
|
TLG tlg = GetTLG(ti->tile);
|
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
CatenarySprite offset = (CatenarySprite)(axis == AXIS_X ? 0 : WIRE_Y_FLAT_BOTH - WIRE_X_FLAT_BOTH);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
|
|
|
if ((length % 2) && num == length) {
|
2006-04-04 12:31:29 +00:00
|
|
|
/* Draw the "short" wire on the southern end of the bridge
|
|
|
|
* only needed if the length of the bridge is odd */
|
2006-03-29 16:30:26 +00:00
|
|
|
sss = &CatenarySpriteData[WIRE_X_FLAT_BOTH + offset];
|
|
|
|
} else {
|
2006-04-04 12:31:29 +00:00
|
|
|
/* Draw "long" wires on all other tiles of the bridge (one pylon every two tiles) */
|
2006-03-29 16:30:26 +00:00
|
|
|
sss = &CatenarySpriteData[WIRE_X_FLAT_SW + (num % 2) + offset];
|
|
|
|
}
|
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
height = GetBridgeHeight(end);
|
2006-07-22 09:08:34 +00:00
|
|
|
|
2009-01-25 19:27:13 +00:00
|
|
|
SpriteID wire_base = GetWireBase(start);
|
|
|
|
|
|
|
|
AddSortableSpriteToDraw(wire_base + sss->image_offset, PAL_NONE, ti->x + sss->x_offset, ti->y + sss->y_offset,
|
2007-07-26 14:07:11 +00:00
|
|
|
sss->x_size, sss->y_size, sss->z_size, height + sss->z_offset,
|
2008-02-10 15:53:26 +00:00
|
|
|
IsTransparencySet(TO_CATENARY)
|
2006-07-22 09:08:34 +00:00
|
|
|
);
|
2006-04-04 12:31:29 +00:00
|
|
|
|
2009-01-25 19:27:13 +00:00
|
|
|
SpriteID pylon_base = GetPylonBase(start);
|
|
|
|
|
2009-03-15 00:32:18 +00:00
|
|
|
/* Finished with wires, draw pylons
|
|
|
|
* every other tile needs a pylon on the northern end */
|
2006-03-29 16:30:26 +00:00
|
|
|
if (num % 2) {
|
2007-09-07 21:11:12 +00:00
|
|
|
DiagDirection PCPpos = (axis == AXIS_X ? DIAGDIR_NE : DIAGDIR_NW);
|
|
|
|
Direction PPPpos = (axis == AXIS_X ? DIR_NW : DIR_NE);
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(tlg, (axis == AXIS_X ? 0 : 1))) PPPpos = ReverseDir(PPPpos);
|
2007-09-07 21:11:12 +00:00
|
|
|
uint x = ti->x + x_pcp_offsets[PCPpos] + x_ppp_offsets[PPPpos];
|
|
|
|
uint y = ti->y + y_pcp_offsets[PCPpos] + y_ppp_offsets[PPPpos];
|
2009-01-25 19:27:13 +00:00
|
|
|
AddSortableSpriteToDraw(pylon_base + pylon_sprites[PPPpos], PAL_NONE, x, y, 1, 1, BB_HEIGHT_UNDER_BRIDGE, height, IsTransparencySet(TO_CATENARY), -1, -1);
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
|
2006-04-04 12:31:29 +00:00
|
|
|
/* need a pylon on the southern end of the bridge */
|
2008-01-23 22:34:04 +00:00
|
|
|
if (GetTunnelBridgeLength(ti->tile, start) + 1 == length) {
|
2007-09-07 21:11:12 +00:00
|
|
|
DiagDirection PCPpos = (axis == AXIS_X ? DIAGDIR_SW : DIAGDIR_SE);
|
|
|
|
Direction PPPpos = (axis == AXIS_X ? DIR_NW : DIR_NE);
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(tlg, (axis == AXIS_X ? 0 : 1))) PPPpos = ReverseDir(PPPpos);
|
2007-09-07 21:11:12 +00:00
|
|
|
uint x = ti->x + x_pcp_offsets[PCPpos] + x_ppp_offsets[PPPpos];
|
|
|
|
uint y = ti->y + y_pcp_offsets[PCPpos] + y_ppp_offsets[PPPpos];
|
2009-01-25 19:27:13 +00:00
|
|
|
AddSortableSpriteToDraw(pylon_base + pylon_sprites[PPPpos], PAL_NONE, x, y, 1, 1, BB_HEIGHT_UNDER_BRIDGE, height, IsTransparencySet(TO_CATENARY), -1, -1);
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawCatenary(const TileInfo *ti)
|
|
|
|
{
|
|
|
|
switch (GetTileType(ti->tile)) {
|
|
|
|
case MP_RAILWAY:
|
2007-03-09 15:12:37 +00:00
|
|
|
if (IsRailDepot(ti->tile)) {
|
|
|
|
const SortableSpriteStruct *sss = &CatenarySpriteData_Depot[GetRailDepotDirection(ti->tile)];
|
2006-08-31 07:29:19 +00:00
|
|
|
|
2009-01-25 19:27:13 +00:00
|
|
|
SpriteID wire_base = GetWireBase(ti->tile);
|
|
|
|
|
2007-09-07 21:11:12 +00:00
|
|
|
/* This wire is not visible with the default depot sprites */
|
2006-08-31 07:29:19 +00:00
|
|
|
AddSortableSpriteToDraw(
|
2009-01-25 19:27:13 +00:00
|
|
|
wire_base + sss->image_offset, PAL_NONE, ti->x + sss->x_offset, ti->y + sss->y_offset,
|
2006-08-31 07:29:19 +00:00
|
|
|
sss->x_size, sss->y_size, sss->z_size,
|
2007-07-26 14:07:11 +00:00
|
|
|
GetTileMaxZ(ti->tile) + sss->z_offset,
|
2008-02-10 15:53:26 +00:00
|
|
|
IsTransparencySet(TO_CATENARY)
|
2006-08-31 07:29:19 +00:00
|
|
|
);
|
2006-03-29 16:30:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
2006-06-09 15:24:04 +00:00
|
|
|
|
|
|
|
case MP_TUNNELBRIDGE:
|
2007-07-29 23:42:59 +00:00
|
|
|
case MP_ROAD:
|
2006-12-27 12:38:02 +00:00
|
|
|
case MP_STATION:
|
2006-03-29 16:30:26 +00:00
|
|
|
break;
|
2006-06-09 15:24:04 +00:00
|
|
|
|
|
|
|
default: return;
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
2006-06-09 15:24:04 +00:00
|
|
|
DrawCatenaryRailway(ti);
|
2006-03-29 16:30:26 +00:00
|
|
|
}
|
2006-11-17 19:31:44 +00:00
|
|
|
|
2009-02-04 15:01:37 +00:00
|
|
|
bool SettingsDisableElrail(int32 p1)
|
2006-11-17 19:31:44 +00:00
|
|
|
{
|
2008-09-30 20:39:50 +00:00
|
|
|
Company *c;
|
2009-05-26 22:10:13 +00:00
|
|
|
Train *t;
|
2006-11-17 19:31:44 +00:00
|
|
|
bool disable = (p1 != 0);
|
|
|
|
|
|
|
|
/* we will now walk through all electric train engines and change their railtypes if it is the wrong one*/
|
|
|
|
const RailType old_railtype = disable ? RAILTYPE_ELECTRIC : RAILTYPE_RAIL;
|
|
|
|
const RailType new_railtype = disable ? RAILTYPE_RAIL : RAILTYPE_ELECTRIC;
|
|
|
|
|
|
|
|
/* walk through all train engines */
|
2008-04-29 21:31:29 +00:00
|
|
|
Engine *e;
|
|
|
|
FOR_ALL_ENGINES_OF_TYPE(e, VEH_TRAIN) {
|
|
|
|
RailVehicleInfo *rv_info = &e->u.rail;
|
2006-11-17 19:31:44 +00:00
|
|
|
/* if it is an electric rail engine and its railtype is the wrong one */
|
2007-01-24 07:14:09 +00:00
|
|
|
if (rv_info->engclass == 2 && rv_info->railtype == old_railtype) {
|
2006-11-17 19:31:44 +00:00
|
|
|
/* change it to the proper one */
|
2007-01-24 07:14:09 +00:00
|
|
|
rv_info->railtype = new_railtype;
|
2006-11-17 19:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* when disabling elrails, make sure that all existing trains can run on
|
2009-03-14 18:16:29 +00:00
|
|
|
* normal rail too */
|
2006-11-17 19:31:44 +00:00
|
|
|
if (disable) {
|
2009-05-26 22:10:13 +00:00
|
|
|
FOR_ALL_TRAINS(t) {
|
2009-05-22 22:33:05 +00:00
|
|
|
if (t->railtype == RAILTYPE_ELECTRIC) {
|
2006-11-17 19:31:44 +00:00
|
|
|
/* this railroad vehicle is now compatible only with elrail,
|
2009-03-14 18:16:29 +00:00
|
|
|
* so add there also normal rail compatibility */
|
2009-05-22 22:33:05 +00:00
|
|
|
t->compatible_railtypes |= RAILTYPES_RAIL;
|
|
|
|
t->railtype = RAILTYPE_RAIL;
|
|
|
|
SetBit(t->flags, VRF_EL_ENGINE_ALLOWED_NORMAL_RAIL);
|
2006-11-17 19:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-08 15:10:23 +00:00
|
|
|
/* Fix the total power and acceleration for trains */
|
2009-05-26 22:10:13 +00:00
|
|
|
FOR_ALL_TRAINS(t) {
|
2008-07-08 15:10:23 +00:00
|
|
|
/* power and acceleration is cached only for front engines */
|
2009-07-01 22:22:01 +00:00
|
|
|
if (t->IsFrontEngine()) {
|
2009-05-22 22:22:46 +00:00
|
|
|
TrainPowerChanged(t);
|
|
|
|
UpdateTrainAcceleration(t);
|
2008-07-08 15:10:23 +00:00
|
|
|
}
|
2006-11-17 19:31:44 +00:00
|
|
|
}
|
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
FOR_ALL_COMPANIES(c) c->avail_railtypes = GetCompanyRailtypes(c->index);
|
2006-11-17 19:31:44 +00:00
|
|
|
|
|
|
|
/* This resets the _last_built_railtype, which will be invalid for electric
|
2009-03-14 18:16:29 +00:00
|
|
|
* rails. It may have unintended consequences if that function is ever
|
|
|
|
* extended, though. */
|
2006-11-17 19:31:44 +00:00
|
|
|
ReinitGuiAfterToggleElrail(disable);
|
2009-02-04 15:01:37 +00:00
|
|
|
return true;
|
2006-11-17 19:31:44 +00:00
|
|
|
}
|