Go to the documentation of this file.
36 #include "table/strings.h"
46 std::vector<RailType> _sorted_railtypes;
72 {0,0,0,0,0,0,0,0,0,0,0,0},
76 0,
RAILTYPES_NONE,
RAILTYPES_NONE, 0, 0, 0,
RTFB_NONE, 0, 0, 0, 0, 0,
79 for (; i <
lengthof(_railtypes); i++) _railtypes[i] = empty_railtype;
87 if (cursors_base != 0) {
107 const SpriteID _signal_lookup[2][SIGTYPE_END] = {
108 {SPR_IMG_SIGNAL_ELECTRIC_NORM, SPR_IMG_SIGNAL_ELECTRIC_ENTRY, SPR_IMG_SIGNAL_ELECTRIC_EXIT,
109 SPR_IMG_SIGNAL_ELECTRIC_COMBO, SPR_IMG_SIGNAL_ELECTRIC_PBS, SPR_IMG_SIGNAL_ELECTRIC_PBS_OWAY},
111 {SPR_IMG_SIGNAL_SEMAPHORE_NORM, SPR_IMG_SIGNAL_SEMAPHORE_ENTRY, SPR_IMG_SIGNAL_SEMAPHORE_EXIT,
112 SPR_IMG_SIGNAL_SEMAPHORE_COMBO, SPR_IMG_SIGNAL_SEMAPHORE_PBS, SPR_IMG_SIGNAL_SEMAPHORE_PBS_OWAY},
119 rti->
gui_sprites.
signals[type][var][0] = (red != 0) ? red + SIGNAL_TO_SOUTH : _signal_lookup[var][type];
120 rti->
gui_sprites.
signals[type][var][1] = (green != 0) ? green + SIGNAL_TO_SOUTH : _signal_lookup[var][type] + 1;
143 ResolveRailTypeGUISprites(rti);
147 _sorted_railtypes.clear();
149 if (_railtypes[rt].label != 0 && !
HasBit(_railtypes_hidden_mask, rt)) {
150 _sorted_railtypes.push_back(rt);
153 std::sort(_sorted_railtypes.begin(), _sorted_railtypes.end(),
CompareRailTypes);
164 if (rti->
label == 0) {
191 static const byte _track_sloped_sprites[14] = {
261 if (current == future) {
422 static inline bool ValParamTrackOrientation(
Track track)
448 if (ret.
Failed())
return ret;
456 if (ret.
Failed())
return ret;
459 if (ret.
Failed())
return ret;
464 if (!auto_remove_signals)
return_cmd_error(STR_ERROR_MUST_REMOVE_SIGNALS_FIRST);
469 if (ret_remove_signals.
Failed())
return ret_remove_signals;
470 cost.
AddCost(ret_remove_signals);
481 if (ret.
Failed())
return ret;
510 if (ret.
Failed())
return ret;
519 RoadType roadtype_road = GetRoadTypeRoad(tile);
520 RoadType roadtype_tram = GetRoadTypeTram(tile);
535 if (ret.
Failed())
return ret;
539 if (num_new_road_pieces > 0) {
544 if (num_new_tram_pieces > 0) {
555 Company::Get(road_owner)->infrastructure.road[roadtype_road] += num_new_road_pieces;
559 Company::Get(tram_owner)->infrastructure.road[roadtype_tram] += num_new_tram_pieces;
578 if (ret.
Failed())
return ret;
582 if (ret.
Failed())
return ret;
586 cost.
AddCost(-_price[PR_CLEAR_WATER]);
587 cost.
AddCost(_price[PR_CLEAR_ROUGH]);
623 bool crossing =
false;
625 if (!ValParamTrackOrientation(track))
return CMD_ERROR;
642 if (ret.
Failed())
return ret;
647 if (ret.
Failed())
return ret;
676 if (ret.
Failed())
return ret;
680 if (ret.
Failed())
return ret;
683 if ((present & trackbit) == 0)
return_cmd_error(STR_ERROR_THERE_IS_NO_RAILROAD_TRACK);
771 bool flooded =
false;
780 TrackBits to_remove = lower_track & rail_bits;
781 if (to_remove != 0) {
785 if (!flooded)
return flooded;
786 rail_bits = rail_bits & ~to_remove;
787 if (rail_bits == 0) {
813 { -1, 0 }, { 0, 1 }, { -1, 0 }, { 0, 1 }, { 1, 0 }, { 0, 1 },
816 { 1, 0 }, { 0, -1 }, { 0, -1 }, { 1, 0 }, { 0, -1 }, { -1, 0 },
824 int x =
TileX(start);
825 int y =
TileY(start);
836 int trdx = _trackdelta[*trackdir].
x;
837 int trdy = _trackdelta[*trackdir].
y;
840 trdx += _trackdelta[*trackdir ^ 1].
x;
841 trdy += _trackdelta[*trackdir ^ 1].
y;
845 while ((trdx <= 0 && dx > 0) ||
846 (trdx >= 0 && dx < 0) ||
847 (trdy <= 0 && dy > 0) ||
848 (trdy >= 0 && dy < 0)) {
849 if (!
HasBit(*trackdir, 3)) {
861 trdx = _trackdelta[*trackdir].
x;
862 trdy = _trackdelta[*trackdir].
y;
890 CommandCost ret = ValidateAutoDrag(&trackdir, tile, end_tile);
891 if (ret.
Failed())
return ret;
893 bool had_success =
false;
900 if (last_error.
GetErrorMessage() != STR_ERROR_ALREADY_BUILT && !remove) {
901 if (fail_on_obstacle)
return last_error;
906 if (last_error.
GetErrorMessage() == STR_ERROR_OWNED_BY && remove)
break;
912 if (tile == end_tile)
break;
920 if (had_success)
return total_cost;
939 return CmdRailTrackHelper(flags, start_tile, end_tile, railtype, track,
false, auto_remove_signals, fail_on_obstacle);
988 cost.
AddCost(_price[PR_BUILD_FOUNDATION]);
992 if (cost.
Failed())
return cost;
1013 cost.
AddCost(_price[PR_BUILD_DEPOT_TRAIN]);
1037 CommandCost CmdBuildSingleSignal(
DoCommandFlag flags,
TileIndex tile,
Track track,
SignalType sigtype,
SignalVariant sigvar,
bool convert_signal,
bool skip_existing_signals,
bool ctrl_pressed,
SignalType cycle_start,
SignalType cycle_stop, uint8 num_dir_cycle,
byte signals_copy)
1040 if (cycle_start > cycle_stop || cycle_stop > SIGTYPE_LAST)
return CMD_ERROR;
1053 if (ret.
Failed())
return ret;
1069 if (signals_copy != 0 && sigvar != GetSignalVariant(tile, track)) {
1073 }
else if (convert_signal) {
1075 if (ctrl_pressed || GetSignalVariant(tile, track) != sigvar) {
1104 SetSignalType(tile, track, sigtype);
1105 SetSignalVariant(tile, track, sigvar);
1111 if (signals_copy == 0) {
1115 SetSignalType(tile, track, sigtype);
1116 SetSignalVariant(tile, track, sigvar);
1117 while (num_dir_cycle-- > 0) CycleSignalSide(tile, track);
1119 if (convert_signal) {
1125 sigtype = GetSignalType(tile, track);
1128 SetSignalType(tile, track, sigtype);
1129 SetSignalVariant(tile, track, sigvar);
1135 }
else if (ctrl_pressed) {
1137 sigtype = (
SignalType)(GetSignalType(tile, track) + 1);
1139 if (sigtype < cycle_start || sigtype > cycle_stop) sigtype = cycle_start;
1141 SetSignalType(tile, track, sigtype);
1147 CycleSignalSide(tile, track);
1149 sigtype = GetSignalType(tile, track);
1156 SetSignalVariant(tile, track, sigvar);
1157 SetSignalType(tile, track, sigtype);
1164 if (IsPbsSignal(sigtype)) {
1184 static bool AdvanceSignalAutoFill(
TileIndex &tile,
Trackdir &trackdir,
bool remove)
1223 default:
return false;
1243 static CommandCost CmdSignalTrackHelper(
DoCommandFlag flags,
TileIndex tile,
TileIndex end_tile,
Track track,
SignalType sigtype,
SignalVariant sigvar,
bool mode,
bool remove,
bool autofill,
bool minimise_gaps,
int signal_density)
1247 if (end_tile >=
MapSize() || !ValParamTrackOrientation(track))
return CMD_ERROR;
1248 if (signal_density == 0 || signal_density > 20)
return CMD_ERROR;
1255 signal_density *= TILE_AXIAL_DISTANCE;
1258 CommandCost ret = ValidateAutoDrag(&trackdir, tile, end_tile);
1259 if (ret.
Failed())
return ret;
1262 Trackdir start_trackdir = trackdir;
1271 assert(signals != 0);
1274 sigvar = GetSignalVariant(tile, track);
1276 sigtype = GetSignalType(tile, track);
1283 byte signal_dir = 0;
1300 int last_used_ctr = -signal_density;
1301 int last_suitable_ctr = 0;
1305 bool had_success =
false;
1313 CommandCost ret = remove ?
Command<CMD_REMOVE_SIGNALS>::Do(do_flags, tile,
TrackdirToTrack(trackdir)) :
Command<CMD_BUILD_SIGNALS>::Do(do_flags, tile,
TrackdirToTrack(trackdir), sigtype, sigvar,
false, signal_ctr == 0, mode,
SIGTYPE_NORMAL,
SIGTYPE_NORMAL, 0, signals);
1333 build_signal(tile, trackdir,
false);
1334 }
else if (minimise_gaps) {
1338 if (signal_ctr > last_used_ctr + signal_density && last_suitable_tile !=
INVALID_TILE) {
1340 if (build_signal(last_suitable_tile, last_suitable_trackdir,
false)) {
1342 last_used_ctr = last_suitable_ctr;
1346 if (signal_ctr == last_used_ctr + signal_density) {
1348 if (build_signal(tile, trackdir,
false)) {
1349 last_used_ctr = signal_ctr;
1354 if (build_signal(tile, trackdir,
true)) {
1355 last_suitable_tile = tile;
1356 last_suitable_ctr = signal_ctr;
1357 last_suitable_trackdir = trackdir;
1360 }
else if(signal_ctr >= last_used_ctr + signal_density) {
1362 build_signal(tile, trackdir,
false);
1363 last_used_ctr = signal_ctr;
1369 signal_ctr += (
IsDiagonalTrackdir(trackdir) ? TILE_AXIAL_DISTANCE : TILE_CORNER_DISTANCE);
1373 signal_ctr += TILE_AXIAL_DISTANCE;
1378 if (remove || minimise_gaps) {
1383 signal_ctr += TILE_AXIAL_DISTANCE;
1384 for(uint i = TILE_AXIAL_DISTANCE; i < len; i += TILE_AXIAL_DISTANCE) {
1385 if (signal_ctr >= last_used_ctr + signal_density) last_used_ctr = signal_ctr;
1386 signal_ctr += TILE_AXIAL_DISTANCE;
1395 if (!AdvanceSignalAutoFill(tile, trackdir, remove))
break;
1398 if (tile == start_tile && trackdir == start_trackdir)
break;
1400 if (tile == end_tile)
break;
1402 signal_ctr += (
IsDiagonalTrackdir(trackdir) ? TILE_AXIAL_DISTANCE : TILE_CORNER_DISTANCE);
1411 if (!remove && minimise_gaps && signal_ctr > last_used_ctr + signal_density && last_suitable_tile !=
INVALID_TILE) {
1412 build_signal(last_suitable_tile, last_suitable_trackdir,
false);
1415 return had_success ? total_cost : last_error;
1436 return CmdSignalTrackHelper(flags, tile, end_tile, track, sigtype, sigvar, mode,
false, autofill, minimise_gaps, signal_density);
1458 if (ret.
Failed())
return ret;
1466 }
else if (IsPbsSignal(GetSignalType(tile, track))) {
1469 for (
int i = 0; v ==
nullptr && i < 2; i++, td =
ReverseTrackdir(td)) {
1514 return CmdSignalTrackHelper(flags, tile, end_tile, track,
SIGTYPE_NORMAL,
SIG_ELECTRIC,
false,
true, autofill,
false, 1);
1549 bool found_convertible_track =
false;
1565 error.MakeError(STR_ERROR_CROSSING_DISALLOWED_RAIL);
1588 std::vector<Train *> vehicles_affected;
1608 vehicles_affected.push_back(v);
1645 found_convertible_track =
true;
1657 found_convertible_track =
true;
1668 if (endtile < tile) {
1692 vehicles_affected.push_back(v);
1720 found_convertible_track =
true;
1731 found_convertible_track =
true;
1736 for (uint i = 0; i < vehicles_affected.size(); ++i) {
1743 for (
Train *v : affected_trains) {
1749 return found_convertible_track ? cost :
error;
1756 if (ret.
Failed())
return ret;
1760 if (ret.
Failed())
return ret;
1776 delete Depot::GetByTile(tile);
1777 DoClearSquare(tile);
1813 if (ret.
Failed())
return ret;
1821 if (ret.
Failed())
return ret;
1825 DoClearSquare(tile);
1827 cost.AddCost(_price[PR_CLEAR_WATER]);
1834 return RemoveTrainDepot(tile, flags);
1854 return GetSlopePixelZ(x, y);
1861 case 0: side =
false;
break;
1862 case 2: side =
true;
break;
1865 static const Point SignalPositions[2][12] = {
1868 { 8, 5}, {14, 1}, { 1, 14}, { 9, 11}, { 1, 0}, { 3, 10},
1870 {11, 4}, {14, 14}, {11, 3}, { 4, 13}, { 3, 4}, {11, 13}
1873 {14, 1}, {12, 10}, { 4, 6}, { 1, 14}, {10, 4}, { 0, 1},
1875 {14, 14}, { 5, 12}, {11, 13}, { 4, 3}, {13, 4}, { 3, 11}
1882 SignalType type = GetSignalType(tile, track);
1891 sprite += type * 16 + variant * 64 + image * 2 + condition + (type > SIGTYPE_LAST_NOPBS ? 64 : 0);
1897 static uint32 _drawtile_track_palette;
1912 { CORNER_INVALID, 0, 1, 16, 1 },
1913 { CORNER_INVALID, 1, 0, 1, 16 },
1914 { CORNER_W, 8, 8, 1, 1 },
1915 { CORNER_N, 8, 8, 1, 1 },
1916 { CORNER_INVALID, 0, 1, 16, 1 },
1917 { CORNER_INVALID, 1, 0, 1, 16 },
1918 { CORNER_INVALID, 0, 1, 16, 1 },
1919 { CORNER_INVALID, 1, 0, 1, 16 },
1920 { CORNER_INVALID, 0, 15, 16, 1 },
1921 { CORNER_INVALID, 15, 0, 1, 16 },
1922 { CORNER_E, 8, 8, 1, 1 },
1923 { CORNER_S, 8, 8, 1, 1 },
1924 { CORNER_INVALID, 0, 15, 16, 1 },
1925 { CORNER_INVALID, 15, 0, 1, 16 },
1926 { CORNER_INVALID, 0, 15, 16, 1 },
1927 { CORNER_INVALID, 15, 0, 1, 16 },
2000 uint num_sprites = 0;
2002 if (base_image == 0) {
2003 base_image = SPR_TRACK_FENCE_FLAT_X;
2007 assert(num_sprites > 0);
2009 switch (GetRailGroundType(ti->
tile)) {
2031 switch (track_corner) {
2036 default: NOT_REACHED();
2045 static const int INF = 1000;
2046 static const SubSprite _halftile_sub_sprite[4] = {
2047 { -INF , -INF , 32 - 33, INF },
2048 { -INF , 0 + 7, INF , INF },
2049 { -31 + 33, -INF , INF , INF },
2050 { -INF , -INF , INF , 30 - 23 }
2062 Corner halftile_corner = CORNER_INVALID;
2079 DrawShoreTile(ti->
tileh);
2090 default: image = SPR_FLAT_GRASS_TILE;
break;
2105 }
else if (no_combine) {
2141 DrawTrackSprite(ground +
RTO_S, PAL_NONE, ti,
SLOPE_S);
break;
2143 DrawTrackSprite(ground +
RTO_W, PAL_NONE, ti,
SLOPE_W);
break;
2193 default: image = SPR_FLAT_GRASS_TILE;
break;
2198 DrawGroundSprite(image, PAL_NONE, &(_halftile_sub_sprite[halftile_corner]));
2204 default: NOT_REACHED();
2211 DrawTrackSprite(ground + offset, PAL_NONE, ti, fake_slope);
2213 DrawTrackSprite(overlay + offset,
PALETTE_CRASH, ti, fake_slope);
2227 if (rti->UsesOverlay()) {
2228 DrawTrackBitsOverlay(ti, track, rti);
2234 Corner halftile_corner = CORNER_INVALID;
2250 bool junction =
false;
2257 DrawShoreTile(ti->
tileh);
2260 image = SPR_FLAT_WATER_TILE;
2266 default: image = SPR_FLAT_GRASS_TILE;
break;
2307 DrawShoreTile(ti->
tileh);
2309 sub = &(_halftile_sub_sprite[track_corner]);
2368 static const byte _corner_to_track_sprite[] = {3, 1, 2, 0};
2376 #define MAYBE_DRAW_SIGNAL(x, y, z, t) if (IsSignalPresent(tile, x)) DrawSingleSignal(tile, rti, t, GetSingleSignalState(tile, x), y, z)
2381 MAYBE_DRAW_SIGNAL(2, SIGNAL_TO_NORTH, 0,
TRACK_LEFT);
2382 MAYBE_DRAW_SIGNAL(3, SIGNAL_TO_SOUTH, 1,
TRACK_LEFT);
2385 MAYBE_DRAW_SIGNAL(0, SIGNAL_TO_NORTH, 2,
TRACK_RIGHT);
2386 MAYBE_DRAW_SIGNAL(1, SIGNAL_TO_SOUTH, 3,
TRACK_RIGHT);
2389 MAYBE_DRAW_SIGNAL(3, SIGNAL_TO_WEST, 4,
TRACK_UPPER);
2390 MAYBE_DRAW_SIGNAL(2, SIGNAL_TO_EAST, 5,
TRACK_UPPER);
2393 MAYBE_DRAW_SIGNAL(1, SIGNAL_TO_WEST, 6,
TRACK_LOWER);
2394 MAYBE_DRAW_SIGNAL(0, SIGNAL_TO_EAST, 7,
TRACK_LOWER);
2397 MAYBE_DRAW_SIGNAL(3, SIGNAL_TO_SOUTHWEST, 8,
TRACK_X);
2398 MAYBE_DRAW_SIGNAL(2, SIGNAL_TO_NORTHEAST, 9,
TRACK_X);
2401 MAYBE_DRAW_SIGNAL(3, SIGNAL_TO_SOUTHEAST, 10,
TRACK_Y);
2402 MAYBE_DRAW_SIGNAL(2, SIGNAL_TO_NORTHWEST, 11,
TRACK_Y);
2406 static void DrawTile_Track(
TileInfo *ti)
2438 if (rti->UsesOverlay()) {
2439 image = SPR_FLAT_GRASS_TILE;
2446 if (IsSnowRailGround(ti->
tile)) {
2447 if (image != SPR_FLAT_GRASS_TILE) {
2450 image = SPR_FLAT_SNOW_DESERT_TILE;
2456 if (rti->UsesOverlay()) {
2527 void DrawTrainDepotSprite(
int x,
int y,
int dir,
RailType railtype)
2534 if (image != SPR_FLAT_GRASS_TILE) image += offset;
2539 if (rti->UsesOverlay()) {
2549 if (depot_sprite != 0) offset = depot_sprite - SPR_RAIL_DEPOT_SE_1;
2554 static int GetSlopePixelZ_Track(
TileIndex tile, uint x, uint y)
2573 static void TileLoop_Track(
TileIndex tile)
2685 default: NOT_REACHED();
2690 if (old_ground != new_ground) {
2691 SetRailGroundType(tile, new_ground);
2703 default: NOT_REACHED();
2718 default: NOT_REACHED();
2759 static bool ClickTile_Track(
TileIndex tile)
2775 td->
str = STR_LAI_RAIL_DESCRIPTION_TRACK;
2779 static const StringID signal_type[6][6] = {
2781 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_SIGNALS,
2782 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_PRESIGNALS,
2783 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_EXITSIGNALS,
2784 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_COMBOSIGNALS,
2785 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_PBSSIGNALS,
2786 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_NOENTRYSIGNALS
2789 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_PRESIGNALS,
2790 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRESIGNALS,
2791 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRE_EXITSIGNALS,
2792 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRE_COMBOSIGNALS,
2793 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRE_PBSSIGNALS,
2794 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRE_NOENTRYSIGNALS
2797 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_EXITSIGNALS,
2798 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRE_EXITSIGNALS,
2799 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_EXITSIGNALS,
2800 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_EXIT_COMBOSIGNALS,
2801 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_EXIT_PBSSIGNALS,
2802 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_EXIT_NOENTRYSIGNALS
2805 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_COMBOSIGNALS,
2806 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRE_COMBOSIGNALS,
2807 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_EXIT_COMBOSIGNALS,
2808 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_COMBOSIGNALS,
2809 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_COMBO_PBSSIGNALS,
2810 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_COMBO_NOENTRYSIGNALS
2813 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_PBSSIGNALS,
2814 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRE_PBSSIGNALS,
2815 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_EXIT_PBSSIGNALS,
2816 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_COMBO_PBSSIGNALS,
2817 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PBSSIGNALS,
2818 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PBS_NOENTRYSIGNALS
2821 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NORMAL_NOENTRYSIGNALS,
2822 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PRE_NOENTRYSIGNALS,
2823 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_EXIT_NOENTRYSIGNALS,
2824 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_COMBO_NOENTRYSIGNALS,
2825 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_PBS_NOENTRYSIGNALS,
2826 STR_LAI_RAIL_DESCRIPTION_TRACK_WITH_NOENTRYSIGNALS
2833 primary_signal = GetSignalType(tile,
TRACK_UPPER);
2836 secondary_signal = primary_signal = GetSignalType(tile,
TRACK_LOWER);
2839 td->
str = signal_type[secondary_signal][primary_signal];
2844 td->
str = STR_LAI_RAIL_DESCRIPTION_TRAIN_DEPOT;
2866 uint num_pieces = 1;
2873 Company::Get(old_owner)->infrastructure.rail[rt] -= num_pieces;
2874 Company::Get(new_owner)->infrastructure.rail[rt] += num_pieces;
2878 Company::Get(old_owner)->infrastructure.signal -= num_sigs;
2879 Company::Get(new_owner)->infrastructure.signal += num_sigs;
2888 static const byte _fractcoords_behind[4] = { 0x8F, 0x8, 0x80, 0xF8 };
2889 static const byte _fractcoords_enter[4] = { 0x8A, 0x48, 0x84, 0xA8 };
2890 static const int8 _deltacoord_leaveoffset[8] = {
2908 case DIAGDIR_NE:
return ((
int)(v->
x_pos & 0x0F) - ((_fractcoords_enter[dir] & 0x0F) - (length + 1)));
2909 case DIAGDIR_SE:
return -((int)(v->
y_pos & 0x0F) - ((_fractcoords_enter[dir] >> 4) + (length + 1)));
2910 case DIAGDIR_SW:
return -((int)(v->
x_pos & 0x0F) - ((_fractcoords_enter[dir] & 0x0F) + (length + 1)));
2911 case DIAGDIR_NW:
return ((
int)(v->
y_pos & 0x0F) - ((_fractcoords_enter[dir] >> 4) - (length + 1)));
2912 default: NOT_REACHED();
2928 byte fract_coord = (x & 0xF) + ((y & 0xF) << 4);
2940 byte fract_coord_leave =
2941 ((_fractcoords_enter[dir] & 0x0F) +
2942 (length + 1) * _deltacoord_leaveoffset[dir]) +
2943 (((_fractcoords_enter[dir] >> 4) +
2944 ((length + 1) * _deltacoord_leaveoffset[dir + 4])) << 4);
2946 if (fract_coord_leave == fract_coord) {
2948 if ((v = v->
Next()) !=
nullptr) {
2953 }
else if (_fractcoords_enter[dir] == fract_coord) {
2992 switch (rail_bits) {
3000 if (z_old != z_new || tileh_old != tileh_new)
return_cmd_error(STR_ERROR_MUST_REMOVE_RAILROAD_TRACK);
3007 if (z_old != z_new)
return_cmd_error(STR_ERROR_MUST_REMOVE_RAILROAD_TRACK);
3011 if (tileh_old != tileh_new) {
3044 switch (rail_bits) {
3049 default:
return autoslope_result;
3058 for (
Corner corner = (
Corner)0; corner < CORNER_END; corner = (
Corner)(corner + 1)) {
3059 if (allowed_corner == corner)
continue;
3078 GetSlopePixelZ_Track,
3082 GetTileTrackStatus_Track,
3086 ChangeTileOwner_Track,
3089 GetFoundation_Track,
3090 TerraformTile_Track,
static void DrawRailTileSeqInGUI(int x, int y, const DrawTileSprites *dts, int32 total_offset, uint32 newgrf_offset, PaletteID default_palette)
Draw tile sprite sequence in GUI with railroad specifics.
static Corner OppositeCorner(Corner corner)
Returns the opposite corner.
CursorID rail_nwse
Cursor for building rail in Y direction.
static bool RailNoLevelCrossings(RailType rt)
Test if a RailType disallows build of level crossings.
@ MP_HOUSE
A house by a town.
static byte SignalAgainstTrackdir(Trackdir trackdir)
Maps a trackdir to the bit that stores its status in the map arrays, in the direction against the tra...
void DeleteNewGRFInspectWindow(GrfSpecFeature feature, uint index)
Delete inspect window for a given feature and index.
static CommandCost CmdSignalTrackHelper(DoCommandFlag flags, TileIndex tile, TileIndex end_tile, Track track, SignalType sigtype, SignalVariant sigvar, bool mode, bool remove, bool autofill, bool minimise_gaps, int signal_density)
Build many signals by dragging; AutoSignals.
@ SLOPE_SE
south and east corner are raised
@ VETSB_CANNOT_ENTER
The vehicle cannot enter the tile.
@ TCX_UPPER_HALFTILE
Querying information about the upper part of a tile with halftile foundation.
CommandCost CmdRemoveSingleRail(DoCommandFlag flags, TileIndex tile, Track track)
Remove a single piece of track.
@ RTO_JUNCTION_SE
Ballast for junction 'pointing' SE.
@ TROPICZONE_DESERT
Tile is desert.
static TileIndex AddTileIndexDiffCWrap(TileIndex tile, TileIndexDiffC diff)
Add a TileIndexDiffC to a TileIndex and returns the new one.
static bool HasReservedTracks(TileIndex tile, TrackBits tracks)
Check whether some of tracks is reserved on a tile.
void InvalidateWindowData(WindowClass cls, WindowNumber number, int data, bool gui_scope)
Mark window data of the window of a given class and specific window number as invalid (in need of re-...
static constexpr bool IsInsideMM(const T x, const size_t min, const size_t max) noexcept
Checks if a value is in an interval.
SpriteID track_ns
two pieces of rail in North and South corner (East-West direction)
@ RTO_W
Piece of rail in western corner.
SpriteID single_x
single piece of rail in X direction, without ground
@ FOUNDATION_HALFTILE_N
Level north halftile non-continuously.
@ TRACK_BIT_NONE
No track.
Iterator to iterate over a diagonal area of the map.
uint16 max_speed
Maximum speed for vehicles travelling on this rail type.
bool IsType(OrderType type) const
Check whether this order is of the given type.
@ TRACKDIR_BIT_UPPER_W
Track upper, direction west.
static Titem * Get(size_t index)
Returns Titem with given index.
static TileIndexDiff TileOffsByDiagDir(DiagDirection dir)
Convert a DiagDirection to a TileIndexDiff.
static Foundation SpecialRailFoundation(Corner corner)
Returns the special rail foundation for single horizontal/vertical track.
@ TRACK_BIT_3WAY_SW
"Arrow" to the south-west
CommandCost CmdRemoveRailroadTrack(DoCommandFlag flags, TileIndex end_tile, TileIndex start_tile, Track track)
Build rail on a stretch of track.
@ RFO_SLOPE_NW_SW
Slope NW, Track Y, Fence SW.
@ RAIL_GROUND_HALF_SNOW
Snow only on higher part of slope (steep or one corner raised)
uint8 train_acceleration_model
realistic acceleration for trains
@ RFO_SLOPE_SW_SE
Slope SW, Track X, Fence SE.
static Trackdir RemoveFirstTrackdir(TrackdirBits *trackdirs)
Removes first Trackdir from TrackdirBits and returns it.
RailFenceOffset
Offsets from base sprite for fence sprites.
TrackdirBits
Enumeration of bitmasks for the TrackDirs.
static FenceOffset _fence_offsets[]
Offsets for drawing fences.
void YapfNotifyTrackLayoutChange(TileIndex tile, Track track)
Use this function to notify YAPF that track layout (or signal configuration) has change.
uint x
X position of the tile in unit coordinates.
SpriteID single_n
single piece of rail in the northern corner
bool forbid_90_deg
forbid trains to make 90 deg turns
static bool HasSignalOnTrack(TileIndex tile, Track track)
Checks for the presence of signals (either way) on the given track on the given rail tile.
static const CommandCost CMD_ERROR
Define a default return value for a failed command.
static bool AutoslopeCheckForEntranceEdge(TileIndex tile, int z_new, Slope tileh_new, DiagDirection entrance)
Autoslope check for tiles with an entrance on an edge.
CommandCost CmdBuildSignalTrack(DoCommandFlag flags, TileIndex tile, TileIndex end_tile, Track track, SignalType sigtype, SignalVariant sigvar, bool mode, bool autofill, bool minimise_gaps, byte signal_density)
Build signals on a stretch of track.
int TicksToLeaveDepot(const Train *v)
Compute number of ticks when next wagon will leave a depot.
@ TO_BUILDINGS
company buildings - depots, stations, HQ, ...
Tile information, used while rendering the tile.
bool HasVehicleOnPos(TileIndex tile, void *data, VehicleFromPosProc *proc)
Checks whether a vehicle is on a specific location.
byte landscape
the landscape we're currently in
Class to backup a specific variable and restore it later.
StringID railtype
Type of rail on the tile.
@ RAIL_GROUND_FENCE_SE
Grass with a fence at the SE edge.
SpriteID build_depot
button for building depots
T * Next() const
Get next vehicle in the chain.
TrackBits GetReservedTrackbits(TileIndex t)
Get the reserved trackbits for any tile, regardless of type.
Owner owner[4]
Name of the owner(s)
static CommandCost CmdRailTrackHelper(DoCommandFlag flags, TileIndex tile, TileIndex end_tile, RailType railtype, Track track, bool remove, bool auto_remove_signals, bool fail_on_obstacle)
Build or remove a stretch of railroad tracks.
@ SLOPE_NW
north and west corner are raised
static void SetTrackReservation(TileIndex t, TrackBits b)
Sets the reserved track bits of the tile.
static const uint LEVELCROSSING_TRACKBIT_FACTOR
Multiplier for how many regular track bits a level crossing counts.
CursorID convert
Cursor for converting track.
static VehicleEnterTileStatus VehicleEnter_Track(Vehicle *u, TileIndex tile, int x, int y)
Tile callback routine when vehicle enters tile.
@ TRACK_LOWER
Track in the lower corner of the tile (south)
static Axis DiagDirToAxis(DiagDirection d)
Convert a DiagDirection to the axis.
@ SIG_SEMAPHORE
Old-fashioned semaphore signal.
@ RAIL_TILE_SIGNALS
Normal rail tile with signals.
std::vector< RailTypeLabel > RailTypeLabelList
List of rail type labels.
void MarkDirtyAdjacentLevelCrossingTiles(TileIndex tile, Axis road_axis)
Find adjacent level crossing tiles in this multi-track crossing and mark them dirty.
int GetSlopeZInCorner(Slope tileh, Corner corner)
Determine the Z height of a corner relative to TileZ.
@ DIAGDIR_END
Used for iterations.
static Vehicle * UpdateTrainPowerProc(Vehicle *v, void *data)
Update power of train under which is the railtype being converted.
@ TRACK_BEGIN
Used for iterations.
Tindex index
Index of this pool item.
static Track GetRailStationTrack(TileIndex t)
Get the rail track of a rail station tile.
static bool HasPowerOnRail(RailType enginetype, RailType tiletype)
Checks if an engine of the given RailType got power on a tile with a given RailType.
@ TRACK_X
Track along the x-axis (north-east to south-west)
@ RAIL_GROUND_FENCE_NW
Grass with a fence at the NW edge.
bool FloodHalftile(TileIndex t)
Called from water_cmd if a non-flat rail-tile gets flooded and should be converted to shore.
SpriteID sprite
The 'real' sprite.
SpriteID single_y
single piece of rail in Y direction, without ground
@ SLOPE_ELEVATED
bit mask containing all 'simple' slopes
static T KillFirstBit(T value)
Clear the first bit in an integer.
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
static bool IsHalftileSlope(Slope s)
Checks for non-continuous slope on halftile foundations.
CursorID rail_swne
Cursor for building rail in X direction.
static constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
@ RTO_SLOPE_SW
Piece of rail on slope with south-west raised.
@ SIGNAL_STATE_GREEN
The signal is green.
This struct contains all the info that is needed to draw and construct tracks.
@ RAIL_GROUND_FENCE_VERT1
Grass with a fence at the eastern side.
bool include(std::vector< T > &vec, const T &item)
Helper function to append an item to a vector if it is not already contained Consider using std::set,...
@ VETSB_CONTINUE
Bit sets of the above specified bits.
static bool TracksOverlap(TrackBits bits)
Checks if the given tracks overlap, ie form a crossing.
SpriteID build_tunnel
button for building a tunnel
static const uint BB_HEIGHT_UNDER_BRIDGE
Some values for constructing bounding boxes (BB).
CursorID depot
Cursor for building a depot.
static Slope RemoveHalftileSlope(Slope s)
Removes a halftile slope from a slope.
static bool IsValidDiagDirection(DiagDirection d)
Checks if an integer value is a valid DiagDirection.
uint GetPartialPixelZ(int x, int y, Slope corners)
Determines height at given coordinate of a slope.
static const uint TILE_SIZE
Tile size in world coordinates.
SpriteID single_sloped
single piece of rail for slopes
@ RAIL_GROUND_BARREN
Nothing (dirt)
void DrawBridgeMiddle(const TileInfo *ti)
Draw the middle bits of a bridge.
SignalState
These are states in which a signal can be.
static TrackBits GetTrackBits(TileIndex tile)
Gets the track bits of the given tile.
@ RAIL_GROUND_FENCE_SENW
Grass with a fence at the NW and SE edges.
SpriteID auto_rail
button for the autorail construction
uint y
Y position of the tile in unit coordinates.
ClientSettings _settings_client
The current settings for this game.
void VehicleEnterDepot(Vehicle *v)
Vehicle entirely entered the depot, update its status, orders, vehicle windows, service it,...
static bool HasSignals(TileIndex t)
Checks if a rail tile has signals.
@ RAIL_GROUND_FENCE_VERT2
Grass with a fence at the western side.
SignalVariant
Variant of the signal, i.e.
@ MP_INDUSTRY
Part of an industry.
@ TRANSPORT_WATER
Transport over water.
static uint TileY(TileIndex tile)
Get the Y component of a tile.
@ SLOPE_S
the south corner of the tile is raised
void InitRailTypes()
Resolve sprites of custom rail types.
CompanyInfrastructure infrastructure
NOSAVE: Counts of company owned infrastructure.
static const uint32 VALID_LEVEL_CROSSING_SLOPES
Constant bitset with safe slopes for building a level crossing.
@ RFO_SLOPE_SW_NW
Slope SW, Track X, Fence NW.
static int GetSlopePixelZInCorner(Slope tileh, Corner corner)
Determine the Z height of a corner relative to TileZ.
static RoadBits GetCrossingRoadBits(TileIndex tile)
Get the road bits of a level crossing.
byte _display_opt
What do we want to draw/do?
CommandCost CmdBuildRailroadTrack(DoCommandFlag flags, TileIndex end_tile, TileIndex start_tile, RailType railtype, Track track, bool auto_remove_signals, bool fail_on_obstacle)
Build rail on a stretch of track.
byte road_side
the side of the road vehicles drive on
uint16 cur_speed
current speed
@ RAILTYPES_NONE
No rail types.
SpriteID build_ns_rail
button for building single rail in N-S direction
Represents a diagonal tile area.
Owner
Enum for all companies/owners.
@ DC_EXEC
execute the given command
static Money RailClearCost(RailType railtype)
Returns the 'cost' of clearing the specified railtype.
Used to only draw a part of the sprite.
@ RFO_SLOPE_SE_SW
Slope SE, Track Y, Fence SW.
@ MP_ROAD
A tile with road (or tram tracks)
StringID GetErrorMessage() const
Returns the error message of a command.
static bool IsRailDepot(TileIndex t)
Is this rail tile a rail depot?
Tile description for the 'land area information' tool.
static bool CanBuildDepotByTileh(DiagDirection direction, Slope tileh)
Find out if the slope of the tile is suitable to build a depot of given direction.
static Corner GetHighestSlopeCorner(Slope s)
Returns the highest corner of a slope (one corner raised or a steep slope).
@ SLOPE_E
the east corner of the tile is raised
static Track GetCrossingRailTrack(TileIndex tile)
Get the rail track of a level crossing.
static TownID GetTownIndex(TileIndex t)
Get the index of which town this house/street is attached to.
DoCommandFlag
List of flags for a command.
@ INVALID_ROADTYPE
flag for invalid roadtype
@ TRACK_RIGHT
Track in the right corner of the tile (east)
Foundation
Enumeration for Foundations.
byte sorting_order
The sorting order of this railtype for the toolbar dropdown.
static bool IsLevelCrossing(TileIndex t)
Return whether a tile is a level crossing.
CommandCost EnsureNoVehicleOnGround(TileIndex tile)
Ensure there is no vehicle at the ground at the given position.
static DiagDirection GetRailDepotDirection(TileIndex t)
Returns the direction the depot is facing to.
static Track RemoveFirstTrack(TrackBits *tracks)
Removes first Track from TrackBits and returns it.
RailType AllocateRailType(RailTypeLabel label)
Allocate a new rail type label.
static Foundation FlatteningFoundation(Slope s)
Returns the foundation needed to flatten a slope.
@ TRACK_BIT_UPPER
Upper track.
bool Succeeded() const
Did this command succeed?
@ RTO_JUNCTION_NE
Ballast for junction 'pointing' NE.
static TrackBits TrackToTrackBits(Track track)
Maps a Track to the corresponding TrackBits value.
static uint SlopeToSpriteOffset(Slope s)
Returns the Sprite offset for a given Slope.
static uint TileX(TileIndex tile)
Get the X component of a tile.
static TrackBits GetRailReservationTrackBits(TileIndex t)
Returns the reserved track bits of the tile.
SignalType
Type of signal, i.e.
static uint CountBits(T value)
Counts the number of set bits in a variable.
GameCreationSettings game_creation
settings used during the creation of a game (map)
TrackStatus GetTileTrackStatus(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
Returns information about trackdirs and signal states.
@ RAILTYPE_ELECTRIC
Electric rails.
@ TRACK_BIT_RIGHT
Right track.
static uint GetPresentSignals(TileIndex tile)
Get whether the given signals are present (Along/AgainstTrackDir)
Slope tileh
Slope of the tile.
uint32 SpriteID
The number of a sprite, without mapping bits and colourtables.
static void DrawTrackFence_SE(const TileInfo *ti, SpriteID base_image, uint num_sprites)
Draw fence at SE border matching the tile slope.
@ ROAD_X
Full road along the x-axis (south-west + north-east)
@ RTO_SLOPE_NE
Piece of rail on slope with north-east raised.
static void DrawTrackBits(TileInfo *ti, TrackBits track)
Draw ground sprite and track bits.
StringID name
Name of this rail type.
@ TRACK_BIT_CROSS
X-Y-axis cross.
Date build_date
Date of construction of tile contents.
PalSpriteID ground
Palette and sprite for the ground.
static const RailtypeInfo * GetRailTypeInfo(RailType railtype)
Returns a pointer to the Railtype information for a given railtype.
bool ValParamRailtype(const RailType rail)
Validate functions for rail building.
int x_offs
Bounding box X offset.
SpriteID build_x_rail
button for building single rail in X direction
CursorID rail_ns
Cursor for building rail in N-S direction.
static TileIndexDiff ToTileIndexDiff(TileIndexDiffC tidc)
Return the offset between two tiles from a TileIndexDiffC struct.
@ ROAD_Y
Full road along the y-axis (north-west + south-east)
static RoadBits GetRoadBits(TileIndex t, RoadTramType rtt)
Get the present road bits for a specific road type.
Slope
Enumeration for the slope-type.
Iterator to iterate over a tile area (rectangle) of the map.
PathfinderSettings pf
settings for all pathfinders
@ TRACK_BIT_VERT
Left and right track.
static void DrawRailTileSeq(const struct TileInfo *ti, const DrawTileSprites *dts, TransparencyOption to, int32 total_offset, uint32 newgrf_offset, PaletteID default_palette)
Draw tile sprite sequence on tile with railroad specifics.
static TrackdirBits TrackdirReachesTrackdirs(Trackdir trackdir)
Maps a trackdir to the trackdirs that can be reached from it (ie, when entering the next tile.
int16 y
The y value of the coordinate.
void CheckForDockingTile(TileIndex t)
Mark the supplied tile as a docking tile if it is suitable for docking.
@ VS_HIDDEN
Vehicle is not visible.
std::vector< Train * > TrainList
Helper type for lists/vectors of trains.
@ RAIL_GROUND_GRASS
Grassy.
@ TRANSPORT_RAIL
Transport by train.
CommandCost CheckOwnership(Owner owner, TileIndex tile)
Check whether the current owner owns something.
@ FOUNDATION_INCLINED_Y
The tile has an along Y-axis inclined foundation.
static Track TrackBitsToTrack(TrackBits tracks)
Converts TrackBits to Track.
#define return_cmd_error(errcode)
Returns from a function with a specific StringID as error.
static uint MapSize()
Get the size of the map.
@ RTO_N
Piece of rail in northern corner.
@ TRACKDIR_BIT_X_NE
Track x-axis, direction north-east.
SpriteID single_w
single piece of rail in the western corner
@ EXPENSES_CONSTRUCTION
Construction costs.
struct RailtypeInfo::@37 gui_sprites
struct containing the sprites for the rail GUI.
RailType
Enumeration for all possible railtypes.
static bool IsSteepSlope(Slope s)
Checks if a slope is steep.
SpriteID tunnel
tunnel sprites base
Common return value for all commands.
byte GetSnowLine()
Get the current snow line, either variable or static.
@ TRACK_Y
Track along the y-axis (north-west to south-east)
static const TrackBits _valid_tracks_on_leveled_foundation[15]
Valid TrackBits on a specific (non-steep)-slope with leveled foundation.
@ TRACKDIR_BIT_LOWER_E
Track lower, direction east.
Trackdir GetVehicleTrackdir() const override
Get the tracks of the train vehicle.
Date _date
Current date in days (day counter)
static bool HasStationRail(TileIndex t)
Has this station tile a rail? In other words, is this station tile a rail station or rail waypoint?
@ RTSG_GROUND_COMPLETE
Complete ground images.
@ SIG_ELECTRIC
Light signal.
@ FOUNDATION_STEEP_BOTH
The tile has a steep slope. The lowest corner is raised by a foundation and the upper halftile is lev...
@ SLOPE_NE
north and east corner are raised
static bool HasExactlyOneBit(T value)
Test whether value has exactly 1 bit set.
int y_offs
Bounding box Y offset.
@ RTF_HIDDEN
Bit number for hiding from selection.
static bool IsValidTrack(Track track)
Checks if a Track is valid.
void DirtyCompanyInfrastructureWindows(CompanyID company)
Redraw all windows with company infrastructure counts.
@ RTO_CROSSING_XY
Crossing of X and Y rail, with ballast.
Corner height_ref
Corner to use height offset from.
static TrackdirBits TrackBitsToTrackdirBits(TrackBits bits)
Converts TrackBits to TrackdirBits while allowing both directions.
static RailTileType GetRailTileType(TileIndex t)
Returns the RailTileType (normal with or without signals, waypoint or depot).
TileIndex tile
Current tile index.
static bool IsSlopeWithThreeCornersRaised(Slope s)
Tests if a specific slope has exactly three corners raised.
static bool IsNormalRoad(TileIndex t)
Return whether a tile is a normal road.
@ SIGNAL_STATE_RED
The signal is red.
RailTypeLabelList alternate_labels
Rail type labels this type provides in addition to the main label.
Base class for tile iterators.
SpriteID snow_offset
sprite number difference between a piece of track on a snowy ground and the corresponding one on norm...
static DiagDirection TrackdirToExitdir(Trackdir trackdir)
Maps a trackdir to the (4-way) direction the tile is exited when following that trackdir.
CommandCost CmdRemoveSingleSignal(DoCommandFlag flags, TileIndex tile, Track track)
Remove signals.
@ MP_OBJECT
Contains objects such as transmitters and owned land.
TransportType
Available types of transport.
struct RailtypeInfo::@36 base_sprites
Struct containing the main sprites.
@ INVALID_OWNER
An invalid owner.
static void MakeRoadCrossing(TileIndex t, Owner road, Owner tram, Owner rail, Axis roaddir, RailType rat, RoadType road_rt, RoadType tram_rt, uint town)
Make a level crossing.
@ FOUNDATION_INCLINED_X
The tile has an along X-axis inclined foundation.
SpriteID track_y
single piece of rail in Y direction, with ground
bool Failed() const
Did this command fail?
@ RTO_SLOPE_SE
Piece of rail on slope with south-east raised.
Corner
Enumeration of tile corners.
@ RTSG_FENCES
Fence images.
Order current_order
The current order (+ status, like: loading)
@ TRACK_UPPER
Track in the upper corner of the tile (north)
static TrackBits CornerToTrackBits(Corner corner)
Returns a single horizontal/vertical trackbit that is in a specific tile corner.
static Money RailConvertCost(RailType from, RailType to)
Calculates the cost of rail conversion.
static bool IsInvisibilitySet(TransparencyOption to)
Check if the invisibility option bit is set and if we aren't in the game menu (there's never transpar...
static bool HasSignalOnTrackdir(TileIndex tile, Trackdir trackdir)
Checks for the presence of signals along the given trackdir on the given rail tile.
Represents the covered area of e.g.
static void SetHasSignals(TileIndex tile, bool signals)
Add/remove the 'has signal' bit from the RailTileType.
static const uint TUNNELBRIDGE_TRACKBIT_FACTOR
Multiplier for how many regular track bits a tunnel/bridge counts.
Offsets for drawing fences.
static void SetSignalStates(TileIndex tile, uint state)
Set the states of the signals (Along/AgainstTrackDir)
static bool HasDepotReservation(TileIndex t)
Get the reservation state of the depot.
GameSettings _settings_game
Game settings of a running game or the scenario editor.
CursorID autorail
Cursor for autorail tool.
static Track DiagDirToDiagTrack(DiagDirection diagdir)
Maps a (4-way) direction to the diagonal track incidating with that diagdir.
static TropicZone GetTropicZone(TileIndex tile)
Get the tropic zone.
@ RFO_SLOPE_NE_NW
Slope NE, Track X, Fence NW.
static Money RailBuildCost(RailType railtype)
Returns the cost of building the specified railtype.
@ VS_STOPPED
Vehicle is stopped by the player.
Foundation GetRailFoundation(Slope tileh, TrackBits bits)
Checks if a track combination is valid on a specific slope and returns the needed foundation.
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
@ TRACK_BIT_X
X-axis track.
@ RTSG_CURSORS
Cursor and toolbar icon images.
static TrackStatus CombineTrackStatus(TrackdirBits trackdirbits, TrackdirBits red_signals)
Builds a TrackStatus.
static bool IsRailDepotTile(TileIndex t)
Is this tile rail tile and a rail depot?
@ TRACKDIR_BIT_LOWER_W
Track lower, direction west.
static void SetDockingTile(TileIndex t, bool b)
Set the docking tile state of a tile.
static void SetTrackBits(TileIndex t, TrackBits b)
Sets the track bits of the given tile.
'Train' is either a loco or a wagon.
static Direction DiagDirToDir(DiagDirection dir)
Convert a DiagDirection to a Direction.
static bool IsValidTile(TileIndex tile)
Checks if a tile is valid.
@ FOUNDATION_INVALID
Used inside "rail_cmd.cpp" to indicate invalid slope/track combination.
void FreeTrainTrackReservation(const Train *v)
Free the reserved path in front of a vehicle.
static DiagDirection ReverseDiagDir(DiagDirection d)
Returns the reverse direction of the given DiagDirection.
static TileIndex TileAddByDiagDir(TileIndex tile, DiagDirection dir)
Adds a DiagDir to a tile.
Slope GetTileSlope(TileIndex tile, int *h)
Return the slope of a given tile inside the map.
@ TRACK_LEFT
Track in the left corner of the tile (west)
static bool IsBridge(TileIndex t)
Checks if this is a bridge, instead of a tunnel.
@ TRACKDIR_BIT_Y_SE
Track y-axis, direction south-east.
static bool IsTileOwner(TileIndex tile, Owner owner)
Checks if a tile belongs to the given owner.
@ TRACKDIR_BIT_LEFT_S
Track left, direction south.
static bool IsNonContinuousFoundation(Foundation f)
Tests if a foundation is a non-continuous foundation, i.e.
bool IsSafeWaitingPosition(const Train *v, TileIndex tile, Trackdir trackdir, bool include_line_end, bool forbid_90deg)
Determine whether a certain track on a tile is a safe position to end a path.
Ground palette sprite of a tile, together with its sprite layout.
@ TRACKDIR_BIT_RIGHT_S
Track right, direction south.
@ TCX_NORMAL
Nothing special.
@ RFO_FLAT_LEFT
Slope FLAT, Track LEFT, Fence E.
static Slope SlopeWithThreeCornersRaised(Corner corner)
Returns the slope with all except one corner raised.
void UpdateAdjacentLevelCrossingTilesOnLevelCrossingRemoval(TileIndex tile, Axis road_axis)
Update adjacent level crossing tiles in this multi-track crossing, due to removal of a level crossing...
@ INVALID_DIAGDIR
Flag for an invalid DiagDirection.
@ TRACKDIR_BIT_LEFT_N
Track left, direction north.
static Corner GetHalftileSlopeCorner(Slope s)
Returns the leveled halftile of a halftile slope.
void DrawSprite(SpriteID img, PaletteID pal, int x, int y, const SubSprite *sub, ZoomLevel zoom)
Draw a sprite, not in a viewport.
@ MP_TUNNELBRIDGE
Tunnel entry/exit and bridge heads.
static bool AutoslopeEnabled()
Tests if autoslope is enabled for _current_company.
@ RTSG_GROUND
Main group of ground images.
@ INVALID_TRACKDIR
Flag for an invalid trackdir.
Coordinates of a point in 2D.
@ FOUNDATION_NONE
The tile has no foundation, the slope remains unchanged.
CommandCost CmdBuildSingleSignal(DoCommandFlag flags, TileIndex tile, Track track, SignalType sigtype, SignalVariant sigvar, bool convert_signal, bool skip_existing_signals, bool ctrl_pressed, SignalType cycle_start, SignalType cycle_stop, uint8 num_dir_cycle, byte signals_copy)
Build signals, alternate between double/single, signal/semaphore, pre/exit/combo-signals,...
void MarkBridgeDirty(TileIndex begin, TileIndex end, DiagDirection direction, uint bridge_height)
Mark bridge tiles dirty.
@ SLOPE_NS
north and south corner are raised
DiagDirection
Enumeration for diagonal directions.
static void DrawTrackFence_SW(const TileInfo *ti, SpriteID base_image, uint num_sprites)
Draw fence at SW border matching the tile slope.
@ TRACK_BIT_ALL
All possible tracks.
@ SIGTYPE_EXIT
presignal block exit
static bool IsRailStationTile(TileIndex t)
Is this tile a station tile and a rail station?
void AddCost(const Money &cost)
Adds the given cost to the cost of the command.
bool show_track_reservation
highlight reserved tracks.
@ TRACK_BIT_LOWER
Lower track.
@ DO_FULL_DETAIL
Also draw details of track and roads.
static bool IsOnewaySignal(TileIndex t, Track track)
One-way signals can't be passed the 'wrong' way.
Set of callback functions for performing tile operations of a given tile type.
@ DRD_NONE
None of the directions are disallowed.
@ DC_BANKRUPT
company bankrupts, skip money check, skip vehicle on tile check in some cases
static CommandCost CheckRailSlope(Slope tileh, TrackBits rail_bits, TrackBits existing, TileIndex tile)
Tests if a track can be build on a tile.
static void DrawTrackFence_NE(const TileInfo *ti, SpriteID base_image, uint num_sprites)
Draw fence at NE border matching the tile slope.
@ RTSG_OVERLAY
Images for overlaying track.
void TileLoop_Water(TileIndex tile)
Let a water tile floods its diagonal adjoining tiles called from tunnelbridge_cmd,...
RailTypes powered_railtypes
bitmask to the OTHER railtypes on which an engine of THIS railtype generates power
static bool IsTileType(TileIndex tile, TileType type)
Checks if a tile is a given tiletype.
static uint GetSaveSlopeZ(uint x, uint y, Track track)
Get surface height in point (x,y) On tiles with halftile foundations move (x,y) to a safe point wrt.
RailGroundType
The ground 'under' the rail.
static DiagDirection GetTunnelBridgeDirection(TileIndex t)
Get the direction pointing to the other end.
static Owner GetTileOwner(TileIndex tile)
Returns the owner of a tile.
void AddSortableSpriteToDraw(SpriteID image, PaletteID pal, int x, int y, int w, int h, int dz, int z, bool transparent, int bb_offset_x, int bb_offset_y, int bb_offset_z, const SubSprite *sub)
Draw a (transparent) sprite at given coordinates with a given bounding box.
@ SLOPE_W
the west corner of the tile is raised
static PaletteID GroundSpritePaletteTransform(SpriteID image, PaletteID pal, PaletteID default_pal)
Applies PALETTE_MODIFIER_COLOUR to a palette entry of a ground sprite.
@ RAIL_GROUND_WATER
Grass with a fence and shore or water on the free halftile.
Direction direction
facing
@ FOUNDATION_STEEP_LOWER
The tile has a steep slope. The lowest corner is raised by a foundation to allow building railroad on...
static uint ApplyPixelFoundationToSlope(Foundation f, Slope *s)
Applies a foundation to a slope.
@ TRACK_BIT_DEPOT
Bitflag for a depot.
A pair-construct of a TileIndexDiff.
static void DrawTrackDetails(const TileInfo *ti, const RailtypeInfo *rti)
Draw track fences.
void DrawFoundation(TileInfo *ti, Foundation f)
Draw foundation f at tile ti.
static const ObjectType OBJECT_OWNED_LAND
Owned land 'flag'.
@ RAILTYPE_RAIL
Standard non-electric rails.
@ TRACK_END
Used for iterations.
FloodingBehaviour GetFloodingBehaviour(TileIndex tile)
Returns the behaviour of a tile during flooding.
static Direction ReverseDir(Direction d)
Return the reverse of a direction.
bool IsStationTileBlocked(TileIndex tile)
Check whether a rail station tile is NOT traversable.
@ TRACK_BIT_HORZ
Upper and lower track.
void MakeDefaultName(T *obj)
Set the default name for a depot/waypoint.
uint32 StringID
Numeric value that represents a string, independent of the selected language.
@ RFO_FLAT_X_NW
Slope FLAT, Track X, Fence NW.
@ RFO_SLOPE_SE_NE
Slope SE, Track Y, Fence NE.
@ TRACKDIR_BIT_NONE
No track build.
static bool IsCompatibleRail(RailType enginetype, RailType tiletype)
Checks if an engine of the given RailType can drive on a tile with a given RailType.
static DisallowedRoadDirections GetDisallowedRoadDirections(TileIndex t)
Gets the disallowed directions.
SpriteID GetCustomRailSprite(const RailtypeInfo *rti, TileIndex tile, RailTypeSpriteGroup rtsg, TileContext context, uint *num_results)
Get the sprite to draw for the given tile.
CompanyID _current_company
Company currently doing an action.
@ SIGTYPE_ENTRY
presignal block entry
RailTypeFlags flags
Bit mask of rail type flags.
static bool IsValidCorner(Corner corner)
Rangecheck for Corner enumeration.
static const PaletteID PALETTE_CRASH
Recolour sprite greying of crashed vehicles.
static const PaletteID PALETTE_TO_BARE_LAND
sets colour to bare land stuff for rail, road and crossings
@ RAIL_GROUND_FENCE_HORIZ1
Grass with a fence at the southern side.
CommandCost EnsureNoTrainOnTrackBits(TileIndex tile, TrackBits track_bits)
Tests if a vehicle interacts with the specified track bits.
static Slope SlopeWithOneCornerRaised(Corner corner)
Returns the slope with a specific corner raised.
@ SLOPE_EW
east and west corner are raised
@ TRACK_BIT_LEFT
Left track.
static uint GetSignalStates(TileIndex tile)
Set the states of the signals (Along/AgainstTrackDir)
CommandCost CmdBuildTrainDepot(DoCommandFlag flags, TileIndex tile, RailType railtype, DiagDirection dir)
Build a train depot.
static bool IsPlainRail(TileIndex t)
Returns whether this is plain rails, with or without signals.
static void DrawTrackFence_NW(const TileInfo *ti, SpriteID base_image, uint num_sprites)
Draw fence at NW border matching the tile slope.
@ WC_BUILD_VEHICLE
Build vehicle; Window numbers:
void Restore()
Restore the variable.
@ TRACK_BIT_3WAY_NE
"Arrow" to the north-east
static bool IsSpecialRailFoundation(Foundation f)
Tests if a foundation is a special rail foundation for single horizontal/vertical track.
bool TryPathReserve(Train *v, bool mark_as_stuck=false, bool first_tile_okay=false)
Try to reserve a path to a safe position.
static CommandCost EnsureNoTrainOnTrack(TileIndex tile, Track track)
Tests if a vehicle interacts with the specified track.
static Train * From(Vehicle *v)
Converts a Vehicle to SpecializedVehicle with type checking.
static bool IsSlopeWithOneCornerRaised(Slope s)
Tests if a specific slope has exactly one corner raised.
@ SLOPE_N
the north corner of the tile is raised
TileType
The different types of tiles.
@ RFO_FLAT_UPPER
Slope FLAT, Track UPPER, Fence S.
@ TRACKDIR_BIT_Y_NW
Track y-axis, direction north-west.
@ RAILTYPE_END
Used for iterations.
static bool HasTunnelBridgeReservation(TileIndex t)
Get the reservation state of the rail tunnel/bridge.
uint32 PaletteID
The number of the palette.
static bool HasRailCatenaryDrawn(RailType rt)
Test if we should draw rail catenary.
bool build_on_slopes
allow building on slopes
@ RFO_SLOPE_NE_SE
Slope NE, Track X, Fence SE.
static CommandCost TestAutoslopeOnRailTile(TileIndex tile, uint flags, int z_old, Slope tileh_old, int z_new, Slope tileh_new, TrackBits rail_bits)
Tests if autoslope is allowed.
@ RTO_X
Piece of rail in X direction.
@ SLOPE_SW
south and west corner are raised
void MarkTileDirtyByTile(TileIndex tile, int bridge_level_offset, int tile_height_override)
Mark a tile given by its index dirty for repaint.
void AddSideToSignalBuffer(TileIndex tile, DiagDirection side, Owner owner)
Add side of tile to signal update buffer.
static void MakeShore(TileIndex t)
Helper function to make a coast tile.
@ FOUNDATION_LEVELED
The tile is leveled up to a flat slope.
uint32 rail[RAILTYPE_END]
Count of company owned track bits for each rail type.
static void MakeRoadNormal(TileIndex t, RoadBits bits, RoadType road_rt, RoadType tram_rt, TownID town, Owner road, Owner tram)
Make a normal road tile.
@ RTSG_DEPOT
Depot images.
static RailType GetRailType(TileIndex t)
Gets the rail type of the given tile.
@ TRACK_BIT_3WAY_SE
"Arrow" to the south-east
@ WC_VEHICLE_DEPOT
Depot view; Window numbers:
@ MP_STATION
A tile of a station.
@ RTO_JUNCTION_NSEW
Ballast for full junction.
RailTypeLabel label
Unique 32 bit rail type identifier.
@ RTFB_NONE
All flags cleared.
byte train_signal_side
show signals on left / driving / right side
void FindVehicleOnPos(TileIndex tile, void *data, VehicleFromPosProc *proc)
Find a vehicle from a specific location.
@ FLOOD_NONE
The tile does not flood neighboured tiles.
@ RTO_Y
Piece of rail in Y direction.
@ RAIL_TILE_NORMAL
Normal rail tile without signals.
static void SetPresentSignals(TileIndex tile, uint signals)
Set whether the given signals are present (Along/AgainstTrackDir)
static bool CanAllocateItem(size_t n=1)
Helper functions so we can use PoolItem::Function() instead of _poolitem_pool.Function()
SpriteID GetCustomSignalSprite(const RailtypeInfo *rti, TileIndex tile, SignalType type, SignalVariant var, SignalState state, bool gui)
Get the sprite to draw for a given signal.
bool disable_elrails
when true, the elrails are disabled
static const RailtypeInfo _original_railtypes[]
Global Railtype definition.
@ DIAGDIR_BEGIN
Used for iterations.
RoadType
The different roadtypes we support.
static TrackdirBits TrackStatusToTrackdirBits(TrackStatus ts)
Returns the present-trackdir-information of a TrackStatus.
@ RAIL_GROUND_FENCE_NE
Grass with a fence at the NE edge.
StringID str
Description of the tile.
SpriteID single_e
single piece of rail in the eastern corner
@ RTO_SLOPE_NW
Piece of rail on slope with north-west raised.
@ DC_AUTO
don't allow building on structures
void AddTrackToSignalBuffer(TileIndex tile, Track track, Owner owner)
Add track to signal update buffer.
@ RTO_E
Piece of rail in eastern corner.
static Foundation HalftileFoundation(Corner corner)
Returns the halftile foundation for single horizontal/vertical track.
static int GetTileMaxPixelZ(TileIndex tile)
Get top height of the tile.
@ RTF_NO_SPRITE_COMBINE
Bit number for using non-combined junctions.
static Track GetRailDepotTrack(TileIndex t)
Returns the track of a depot, ignoring direction.
static Track FindFirstTrack(TrackBits tracks)
Returns first Track from TrackBits or INVALID_TRACK.
RoadBits
Enumeration for the road parts on a tile.
static bool IsLevelCrossingTile(TileIndex t)
Return whether a tile is a level crossing tile.
static byte SignalOnTrack(Track track)
Maps a Track to the bits that store the status of the two signals that can be present on the given tr...
void UpdateLevelCrossing(TileIndex tile, bool sound=true, bool force_bar=false)
Update a level crossing to barred or open (crossing may include multiple adjacent tiles).
static T abs(const T a)
Returns the absolute value of (scalar) variable.
void CDECL error(const char *s,...)
Error handling for fatal non-user errors.
SpriteID build_ew_rail
button for building single rail in E-W direction
TrackBits
Bitfield corresponding to Track.
static bool IsDockingTile(TileIndex t)
Checks whether the tile is marked as a dockling tile.
CommandCost CheckTileOwnership(TileIndex tile)
Check whether the current owner owns the stuff on the given tile.
static uint GetTunnelBridgeLength(TileIndex begin, TileIndex end)
Calculates the length of a tunnel or a bridge (without end tiles)
Date build_date
Date of construction.
static T ToggleBit(T &x, const uint8 y)
Toggles a bit in a variable.
@ RFO_SLOPE_NW_NE
Slope NW, Track Y, Fence NE.
static T SetBit(T &x, const uint8 y)
Set a bit in a variable.
#define lengthof(x)
Return the length of an fixed size array.
uint16 rail_speed
Speed limit of rail (bridges and track)
@ ROAD_NONE
No road-part is build.
static TrackBits DiagDirToDiagTrackBits(DiagDirection diagdir)
Maps a (4-way) direction to the diagonal track bits incidating with that diagdir.
RailTypes compatible_railtypes
bitmask to the OTHER railtypes on which an engine of THIS railtype can physically travel
static const uint TILE_HEIGHT
Height of a height level in world coordinate AND in pixels in #ZOOM_LVL_BASE.
SignalOffsets
Enum holding the signal offset in the sprite sheet according to the side it is representing.
static bool IsPlainRailTile(TileIndex t)
Checks whether the tile is a rail tile or rail tile with signals.
void DrawRailCatenary(const TileInfo *ti)
Draws overhead wires and pylons for electric railways.
static Money RoadBuildCost(RoadType roadtype)
Returns the cost of building the specified roadtype.
struct RailtypeInfo::@38 cursor
Cursors associated with the rail type.
SpriteID single_s
single piece of rail in the southern corner
@ RFO_FLAT_Y_SW
Slope FLAT, Track Y, Fence SW.
static void DrawTrackFence(const TileInfo *ti, SpriteID base_image, uint num_sprites, RailFenceOffset rfo)
Draw a track fence.
static Owner GetRoadOwner(TileIndex t, RoadTramType rtt)
Get the owner of a specific road type.
CommandCost CmdConvertRail(DoCommandFlag flags, TileIndex tile, TileIndex area_start, RailType totype, bool diagonal)
Convert one rail type to the other.
CommandCost CmdBuildSingleRail(DoCommandFlag flags, TileIndex tile, RailType railtype, Track track, bool auto_remove_signals)
Build a single piece of rail.
static Axis GetCrossingRoadAxis(TileIndex t)
Get the road axis of a level crossing.
@ TRACKDIR_BIT_X_SW
Track x-axis, direction south-west.
static TileIndex GetOtherTunnelBridgeEnd(TileIndex t)
Determines type of the wormhole and returns its other end.
static Trackdir ReverseTrackdir(Trackdir trackdir)
Maps a trackdir to the reverse trackdir.
static void SetTileOwner(TileIndex tile, Owner owner)
Sets the owner of a tile.
@ RAIL_GROUND_FENCE_HORIZ2
Grass with a fence at the northern side.
@ TRACK_BIT_Y
Y-axis track.
TileIndex tile
Tile index.
int CalcNextVehicleOffset() const
Calculate the offset from this vehicle's center to the following center taking the vehicle lengths in...
ConstructionSettings construction
construction of things in-game
@ CCF_TRACK
Valid changes while vehicle is driving, and possibly changing tracks.
VehicleSettings vehicle
options for vehicles
static Vehicle * EnsureNoShipProc(Vehicle *v, void *data)
Test-procedure for HasVehicleOnPos to check for a ship.
Trackdir
Enumeration for tracks and directions.
@ RFO_FLAT_X_SE
Slope FLAT, Track X, Fence SE.
static const TrackBits _valid_tracks_without_foundation[15]
Valid TrackBits on a specific (non-steep)-slope without foundation.
@ RTO_S
Piece of rail in southern corner.
@ RFO_FLAT_RIGHT
Slope FLAT, Track RIGHT, Fence W.
static TileType GetTileType(TileIndex tile)
Get the tiletype of a given tile.
@ VEH_TRAIN
Train vehicle type.
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
CursorID rail_ew
Cursor for building rail in E-W direction.
struct RailtypeInfo::@39 strings
Strings associated with the rail type.
VehicleType type
Type of vehicle.
@ RAIL_TILE_DEPOT
Depot (one entrance)
T * First() const
Get the first vehicle in the chain.
void ResetRailTypes()
Reset all rail type information to its default values.
static bool RoadNoLevelCrossing(RoadType roadtype)
Test if road disallows level crossings.
static Slope GetTilePixelSlope(TileIndex tile, int *h)
Return the slope of a given tile.
Track
These are used to specify a single track.
static CommandCost CheckTrackCombination(TileIndex tile, TrackBits to_build, uint flags)
Check that the new track bits may be built.
static bool CompareRailTypes(const RailType &first, const RailType &second)
Compare railtypes based on their sorting order.
CommandCost CmdRemoveSignalTrack(DoCommandFlag flags, TileIndex tile, TileIndex end_tile, Track track, bool autofill)
Remove signals on a stretch of track.
uint ApplyFoundationToSlope(Foundation f, Slope *s)
Applies a foundation to a slope.
int x_size
Bounding box X size.
@ TRACKDIR_BIT_RIGHT_N
Track right, direction north.
SpriteID build_y_rail
button for building single rail in Y direction
SpriteID signals[SIGTYPE_END][2][2]
signal GUI sprites (type, variant, state)
void ShowDepotWindow(TileIndex tile, VehicleType type)
Opens a depot window.
static TransportType GetTunnelBridgeTransportType(TileIndex t)
Tunnel: Get the transport type of the tunnel (road or rail) Bridge: Get the transport type of the bri...
static TrackBits TrackdirBitsToTrackBits(TrackdirBits bits)
Discards all directional information from a TrackdirBits value.
static TrackBits GetCrossingRailBits(TileIndex tile)
Get the rail track bits of a level crossing.
@ DIAGDIR_NE
Northeast, upper right on your monitor.
@ VEH_SHIP
Ship vehicle type.
RailTypes
The different railtypes we support, but then a bitmask of them.
@ TRACK_BIT_3WAY_NW
"Arrow" to the north-west
static bool HasTrack(TileIndex tile, Track track)
Returns whether the given track is present on the given tile.
@ TRACKDIR_BIT_UPPER_E
Track upper, direction east.
static bool HasRoadWorks(TileIndex t)
Check if a tile has road works.
@ OWNER_WATER
The tile/execution is done by "water".
@ RTO_JUNCTION_SW
Ballast for junction 'pointing' SW.
@ RFO_FLAT_Y_NE
Slope FLAT, Track Y, Fence NE.
static void SetRailType(TileIndex t, RailType r)
Sets the rail type of the given tile.
int y_size
Bounding box Y size.
SpriteID ground
ground sprite for a 3-way switch
static Slope ComplementSlope(Slope s)
Return the complement of a slope.
@ RAIL_GROUND_ICE_DESERT
Icy or sandy.
static Corner GetHalftileFoundationCorner(Foundation f)
Returns the halftile corner of a halftile-foundation.
@ SIGTYPE_NORMAL
normal signal
uint GetRailtypeSpriteOffset() const
Offset between the current railtype and normal rail.
VehicleEnterTileStatus
The returned bits of VehicleEnterTile.
static bool IsObjectType(TileIndex t, ObjectType type)
Check whether the object on a tile is of a specific type.
static byte SignalAlongTrackdir(Trackdir trackdir)
Maps a trackdir to the bit that stores its status in the map arrays, in the direction along with the ...
CommandCost TunnelBridgeIsFree(TileIndex tile, TileIndex endtile, const Vehicle *ignore)
Finds vehicle in tunnel / bridge.
@ RAIL_GROUND_FENCE_SW
Grass with a fence at the SW edge.
void DrawGroundSprite(SpriteID image, PaletteID pal, const SubSprite *sub, int extra_offs_x, int extra_offs_y)
Draws a ground sprite for the current tile.
static bool IsDiagonalTrackdir(Trackdir trackdir)
Checks if a given Trackdir is diagonal.
static Track TrackdirToTrack(Trackdir trackdir)
Returns the Track that a given Trackdir represents.
static const StringID INVALID_STRING_ID
Constant representing an invalid string (16bit in case it is used in savegames)
static Trackdir TrackToTrackdir(Track track)
Returns a Trackdir for the given Track.
GUISettings gui
settings related to the GUI
@ RFO_FLAT_LOWER
Slope FLAT, Track LOWER, Fence N.
Train * GetTrainForReservation(TileIndex tile, Track track)
Find the train which has reserved a specific path.
SpriteID convert_rail
button for converting rail
@ VETSB_ENTERED_WORMHOLE
The vehicle either entered a bridge, tunnel or depot tile (this includes the last tile of the bridge/...
static bool IsBridgeAbove(TileIndex t)
checks if a bridge is set above the ground of this tile
@ INVALID_RAILTYPE
Flag for invalid railtype.
RailTypes introduces_railtypes
Bitmask of which other railtypes are introduced when this railtype is introduced.
@ RAILTYPE_BEGIN
Used for iterations.
int16 x
The x value of the coordinate.
@ INVALID_TRACK
Flag for an invalid track.
@ RTO_JUNCTION_NW
Ballast for junction 'pointing' NW.
@ RAIL_GROUND_FENCE_NESW
Grass with a fence at the NE and SW edges.