src/road_gui.cpp
author rubidium
Fri, 04 Jul 2008 21:43:17 +0000
changeset 11119 abb5658c31c1
parent 11071 91ac7664ad1e
child 11161 7d0fac8f14cd
permissions -rw-r--r--
(svn r13677) -Fix [FS#2102]: in the case that elrails and 'realistic' acceleration are disabled all electrified engines would have no power on load, until the vehicle got turned around, loaded or got into a depot.
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
10429
1b99254f9607 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 10397
diff changeset
     3
/** @file road_gui.cpp GUI for building roads. */
6889
f7f6d9cb07a0 (svn r9523) -Cleanup: doxygen changes. Time to take care of "R"
belugas
parents: 6573
diff changeset
     4
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
#include "stdafx.h"
1891
92a3b0aa0946 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1363
diff changeset
     6
#include "openttd.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     7
#include "gui.h"
8603
88c5ce6a5215 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8602
diff changeset
     8
#include "window_gui.h"
88c5ce6a5215 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8602
diff changeset
     9
#include "station_gui.h"
8701
051036216675 (svn r11768) -Codechange: move some terraform related gui stuff from main_gui.cpp to terraform_gui.cpp (and introduce terraform_gui.h). Based on a patch by Roujin.
rubidium
parents: 8662
diff changeset
    10
#include "terraform_gui.h"
8720
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8719
diff changeset
    11
#include "viewport_func.h"
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8719
diff changeset
    12
#include "gfx_func.h"
8612
6414fc21c2f3 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8610
diff changeset
    13
#include "command_func.h"
2159
3b634157c3b2 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2049
diff changeset
    14
#include "variables.h"
8719
c13af43ef987 (svn r11786) -Codechange: shuffle more includes
peter1138
parents: 8701
diff changeset
    15
#include "road_type.h"
7162
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
    16
#include "road_cmd.h"
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
    17
#include "road_map.h"
6338
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
    18
#include "station_map.h"
8627
448ebf3a8291 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8617
diff changeset
    19
#include "functions.h"
448ebf3a8291 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8617
diff changeset
    20
#include "window_func.h"
8640
1e93b81e96d2 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8635
diff changeset
    21
#include "vehicle_func.h"
8653
a83f7a536919 (svn r11719) -Codechange: split sound.h in a header with types and one with functions.
rubidium
parents: 8640
diff changeset
    22
#include "sound_func.h"
8750
fdd6054e7bae (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8733
diff changeset
    23
#include "player_func.h"
8766
c86cfa3a7580 (svn r11834) -Codechange: only include settings_type.h if needed.
rubidium
parents: 8760
diff changeset
    24
#include "settings_type.h"
10233
c08376c16fb2 (svn r12765) -Codechange: move some stuff out of variables.h that required including other headers in variables.h.
rubidium
parents: 9342
diff changeset
    25
#include "tunnelbridge.h"
10445
2dd7d9d0a957 (svn r12987) -Codechange: split viewport and tile selection.
rubidium
parents: 10441
diff changeset
    26
#include "tilehighlight_func.h"
568
6eb7d394fb35 (svn r979) Allow more realistically sized catchment areas
Celestar
parents: 543
diff changeset
    27
8760
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    28
#include "table/sprites.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    29
#include "table/strings.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    30
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
    31
static void ShowRVStationPicker(Window *parent, RoadStopType rs);
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
    32
static void ShowRoadDepotPicker(Window *parent);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    33
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    34
static bool _remove_button_clicked;
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
    35
static bool _one_way_button_clicked;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    36
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    37
/**
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    38
 * Define the values of the RoadFlags
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    39
 * @see CmdBuildLongRoad
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    40
 */
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    41
enum RoadFlags {
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    42
	RF_NONE             = 0x00,
8290
2d3d2f515439 (svn r11344) -Codechange: Removes some magic numbers referring the highlighting mode in road_gui.cpp
belugas
parents: 8285
diff changeset
    43
	RF_START_HALFROAD_Y = 0x01,    // The start tile in Y-dir should have only a half road
2d3d2f515439 (svn r11344) -Codechange: Removes some magic numbers referring the highlighting mode in road_gui.cpp
belugas
parents: 8285
diff changeset
    44
	RF_END_HALFROAD_Y   = 0x02,    // The end tile in Y-dir should have only a half road
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    45
	RF_DIR_Y            = 0x04,    // The direction is Y-dir
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    46
	RF_DIR_X            = RF_NONE, // Dummy; Dir X is set when RF_DIR_Y is not set
8290
2d3d2f515439 (svn r11344) -Codechange: Removes some magic numbers referring the highlighting mode in road_gui.cpp
belugas
parents: 8285
diff changeset
    47
	RF_START_HALFROAD_X = 0x08,    // The start tile in X-dir should have only a half road
2d3d2f515439 (svn r11344) -Codechange: Removes some magic numbers referring the highlighting mode in road_gui.cpp
belugas
parents: 8285
diff changeset
    48
	RF_END_HALFROAD_X   = 0x10,    // The end tile in X-dir should have only a half road
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    49
};
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    50
DECLARE_ENUM_AS_BIT_SET(RoadFlags);
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    51
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    52
static RoadFlags _place_road_flag;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    53
7162
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
    54
static RoadType _cur_roadtype;
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
    55
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
    56
static DiagDirection _road_depot_orientation;
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
    57
static DiagDirection _road_station_picker_orientation;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    58
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
    59
void CcPlaySound1D(bool success, TileIndex tile, uint32 p1, uint32 p2)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    60
{
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 514
diff changeset
    61
	if (success) SndPlayTileFx(SND_1F_SPLAT, tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    62
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    63
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    64
/**
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    65
 * Set the initial flags for the road constuction.
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    66
 * The flags are:
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    67
 * @li The direction is the X-dir
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    68
 * @li The first tile has a partitial RoadBit (true or false)
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    69
 *
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    70
 * @param tile The start tile
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    71
 */
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    72
static void PlaceRoad_X_Dir(TileIndex tile)
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    73
{
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    74
	_place_road_flag = RF_DIR_X;
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    75
	if (_tile_fract_coords.x >= 8) _place_road_flag |= RF_START_HALFROAD_X;
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    76
	VpStartPlaceSizing(tile, VPM_FIX_Y, DDSP_PLACE_ROAD_X_DIR);
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    77
}
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    78
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    79
/**
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    80
 * Set the initial flags for the road constuction.
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    81
 * The flags are:
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    82
 * @li The direction is the Y-dir
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    83
 * @li The first tile has a partitial RoadBit (true or false)
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    84
 *
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    85
 * @param tile The start tile
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    86
 */
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    87
static void PlaceRoad_Y_Dir(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    88
{
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    89
	_place_road_flag = RF_DIR_Y;
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    90
	if (_tile_fract_coords.y >= 8) _place_road_flag |= RF_START_HALFROAD_Y;
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
    91
	VpStartPlaceSizing(tile, VPM_FIX_X, DDSP_PLACE_ROAD_Y_DIR);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    92
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    93
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    94
/**
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    95
 * Set the initial flags for the road constuction.
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    96
 * The flags are:
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    97
 * @li The direction is not set.
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    98
 * @li The first tile has a partitial RoadBit (true or false)
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
    99
 *
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   100
 * @param tile The start tile
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   101
 */
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   102
static void PlaceRoad_AutoRoad(TileIndex tile)
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   103
{
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   104
	_place_road_flag = RF_NONE;
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   105
	if (_tile_fract_coords.x >= 8) _place_road_flag |= RF_START_HALFROAD_X;
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   106
	if (_tile_fract_coords.y >= 8) _place_road_flag |= RF_START_HALFROAD_Y;
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   107
	VpStartPlaceSizing(tile, VPM_X_OR_Y, DDSP_PLACE_AUTOROAD);
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   108
}
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   109
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
   110
static void PlaceRoad_Bridge(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   111
{
7166
3937d5ea59df (svn r9901) -Codechange: Decide what to do with selected land areas based on the specific variable, not how it was highlighted.
maedhros
parents: 7165
diff changeset
   112
	VpStartPlaceSizing(tile, VPM_X_OR_Y, DDSP_BUILD_BRIDGE);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   113
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   114
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   115
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
   116
void CcBuildRoadTunnel(bool success, TileIndex tile, uint32 p1, uint32 p2)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   117
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   118
	if (success) {
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 514
diff changeset
   119
		SndPlayTileFx(SND_20_SPLAT_2, tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   120
		ResetObjectToPlace();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   121
	} else {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   122
		SetRedErrorSquare(_build_tunnel_endtile);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   123
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   124
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   125
7172
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   126
/** Structure holding information per roadtype for several functions */
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   127
struct RoadTypeInfo {
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   128
	StringID err_build_road;        ///< Building a normal piece of road
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   129
	StringID err_remove_road;       ///< Removing a normal piece of road
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   130
	StringID err_depot;             ///< Building a depot
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   131
	StringID err_build_station[2];  ///< Building a bus or truck station
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   132
	StringID err_remove_station[2]; ///< Removing of a bus or truck station
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   133
7189
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   134
	StringID picker_title[2];       ///< Title for the station picker for bus or truck stations
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   135
	StringID picker_tooltip[2];     ///< Tooltip for the station picker for bus or truck stations
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   136
7172
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   137
	SpriteID cursor_nesw;           ///< Cursor for building NE and SW bits
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   138
	SpriteID cursor_nwse;           ///< Cursor for building NW and SE bits
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   139
	SpriteID cursor_autoroad;       ///< Cursor for building autoroad
7172
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   140
};
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   141
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   142
/** What errors/cursors must be shown for several types of roads */
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   143
static const RoadTypeInfo _road_type_infos[] = {
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   144
	{
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   145
		STR_1804_CAN_T_BUILD_ROAD_HERE,
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   146
		STR_1805_CAN_T_REMOVE_ROAD_FROM,
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   147
		STR_1807_CAN_T_BUILD_ROAD_VEHICLE,
7189
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   148
		{ STR_1808_CAN_T_BUILD_BUS_STATION,        STR_1809_CAN_T_BUILD_TRUCK_STATION },
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   149
		{ STR_CAN_T_REMOVE_BUS_STATION,            STR_CAN_T_REMOVE_TRUCK_STATION     },
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   150
		{ STR_3042_BUS_STATION_ORIENTATION,        STR_3043_TRUCK_STATION_ORIENT      },
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   151
		{ STR_3051_SELECT_BUS_STATION_ORIENTATION, STR_3052_SELECT_TRUCK_LOADING_BAY  },
7172
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   152
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   153
		SPR_CURSOR_ROAD_NESW,
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   154
		SPR_CURSOR_ROAD_NWSE,
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   155
		SPR_CURSOR_AUTOROAD,
7172
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   156
	},
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   157
	{
8920
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8919
diff changeset
   158
		STR_CAN_T_BUILD_TRAMWAY_HERE,
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8919
diff changeset
   159
		STR_CAN_T_REMOVE_TRAMWAY_FROM,
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8919
diff changeset
   160
		STR_CAN_T_BUILD_TRAM_VEHICLE,
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8919
diff changeset
   161
		{ STR_CAN_T_BUILD_PASSENGER_TRAM_STATION,        STR_CAN_T_BUILD_CARGO_TRAM_STATION        },
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8919
diff changeset
   162
		{ STR_CAN_T_REMOVE_PASSENGER_TRAM_STATION,       STR_CAN_T_REMOVE_CARGO_TRAM_STATION       },
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8919
diff changeset
   163
		{ STR_PASSENGER_TRAM_STATION_ORIENTATION,        STR_CARGO_TRAM_STATION_ORIENT             },
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8919
diff changeset
   164
		{ STR_SELECT_PASSENGER_TRAM_STATION_ORIENTATION, STR_SELECT_CARGO_TRAM_STATION_ORIENTATION },
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   165
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   166
		SPR_CURSOR_TRAMWAY_NESW,
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   167
		SPR_CURSOR_TRAMWAY_NWSE,
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   168
		SPR_CURSOR_AUTOTRAM,
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   169
	},
7172
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   170
};
40781792e25f (svn r9907) -Codechange: prepare the road gui for more road types.
rubidium
parents: 7170
diff changeset
   171
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
   172
static void PlaceRoad_Tunnel(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   173
{
8017
8c46e61c510f (svn r11040) -Fix [FS#1179]: removing CMD_AUTO from some commands could remotely trigger an assertion.
rubidium
parents: 7866
diff changeset
   174
	DoCommandP(tile, 0x200 | RoadTypeToRoadTypes(_cur_roadtype), 0, CcBuildRoadTunnel, CMD_BUILD_TUNNEL | CMD_MSG(STR_5016_CAN_T_BUILD_TUNNEL_HERE));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   175
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   176
3151
78f09b2c72c5 (svn r3774) Remove some more magic numbers and types
tron
parents: 3150
diff changeset
   177
static void BuildRoadOutsideStation(TileIndex tile, DiagDirection direction)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   178
{
4559
c853d2440065 (svn r6406) -Codechange: Rename TileOffsByDir to TileOffsByDiagDir because it accepts
Darkvater
parents: 4435
diff changeset
   179
	tile += TileOffsByDiagDir(direction);
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   180
	/* if there is a roadpiece just outside of the station entrance, build a connecting route */
9059
04edde3eb0c6 (svn r12141) -Codechange: Introduce IsNormalRoad[Tile](), IsRoadDepot[Tile]() and HasTileRoadType(); and use them.
frosch
parents: 9053
diff changeset
   181
	if (IsNormalRoadTile(tile)) {
7162
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
   182
		if (GetRoadBits(tile, _cur_roadtype) != ROAD_NONE) {
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
   183
			DoCommandP(tile, _cur_roadtype << 4 | DiagDirToRoadBits(ReverseDiagDir(direction)), 0, NULL, CMD_BUILD_ROAD);
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
   184
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   185
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   186
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   187
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
   188
void CcRoadDepot(bool success, TileIndex tile, uint32 p1, uint32 p2)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   189
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   190
	if (success) {
7158
ffb31324aa5e (svn r9893) -Fix (r9892): various small bugs that only act up when using something different than plain roads.
rubidium
parents: 7157
diff changeset
   191
		DiagDirection dir = (DiagDirection)GB(p1, 0, 2);
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 514
diff changeset
   192
		SndPlayTileFx(SND_1F_SPLAT, tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   193
		ResetObjectToPlace();
7158
ffb31324aa5e (svn r9893) -Fix (r9892): various small bugs that only act up when using something different than plain roads.
rubidium
parents: 7157
diff changeset
   194
		BuildRoadOutsideStation(tile, dir);
6428
f018110cdd9a (svn r8837) -Fix [FS#626]: drive through stations did not connect to neighbouring roads (mart3p).
rubidium
parents: 6365
diff changeset
   195
		/* For a drive-through road stop build connecting road for other entrance */
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8409
diff changeset
   196
		if (HasBit(p2, 1)) BuildRoadOutsideStation(tile, ReverseDiagDir(dir));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   197
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   198
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   199
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
   200
static void PlaceRoad_Depot(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   201
{
8017
8c46e61c510f (svn r11040) -Fix [FS#1179]: removing CMD_AUTO from some commands could remotely trigger an assertion.
rubidium
parents: 7866
diff changeset
   202
	DoCommandP(tile, _cur_roadtype << 2 | _road_depot_orientation, 0, CcRoadDepot, CMD_BUILD_ROAD_DEPOT | CMD_NO_WATER | CMD_MSG(_road_type_infos[_cur_roadtype].err_depot));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   203
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   204
6338
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   205
static void PlaceRoadStop(TileIndex tile, uint32 p2, uint32 cmd)
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   206
{
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   207
	uint32 p1 = _road_station_picker_orientation;
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   208
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   209
	if (p1 >= DIAGDIR_END) {
8427
143b0be22af1 (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
skidd13
parents: 8424
diff changeset
   210
		SetBit(p2, 1); // It's a drive-through stop
6338
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   211
		p1 -= DIAGDIR_END; // Adjust picker result to actual direction
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   212
	}
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   213
	DoCommandP(tile, p1, p2, CcRoadDepot, cmd);
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   214
}
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   215
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
   216
static void PlaceRoad_BusStation(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   217
{
8452
93186e0f15cb (svn r11512) -Change: make the subsidy window able to resize to something smaller than 640x127 (especially the 640 part) when the screen is really too small.
rubidium
parents: 8445
diff changeset
   218
	if (_remove_button_clicked) {
9281
d8cd9ac52a68 (svn r12489) -Codechange: split station.h into station_base.h and station_func.h.
rubidium
parents: 9188
diff changeset
   219
		DoCommandP(tile, 0, ROADSTOP_BUS, CcPlaySound1D, CMD_REMOVE_ROAD_STOP | CMD_MSG(_road_type_infos[_cur_roadtype].err_remove_station[ROADSTOP_BUS]));
6338
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   220
	} else {
9281
d8cd9ac52a68 (svn r12489) -Codechange: split station.h into station_base.h and station_func.h.
rubidium
parents: 9188
diff changeset
   221
		PlaceRoadStop(tile, (_ctrl_pressed << 5) | RoadTypeToRoadTypes(_cur_roadtype) << 2 | ROADSTOP_BUS, CMD_BUILD_ROAD_STOP | CMD_NO_WATER | CMD_MSG(_road_type_infos[_cur_roadtype].err_build_station[ROADSTOP_BUS]));
6338
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   222
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   223
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   224
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
   225
static void PlaceRoad_TruckStation(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   226
{
8452
93186e0f15cb (svn r11512) -Change: make the subsidy window able to resize to something smaller than 640x127 (especially the 640 part) when the screen is really too small.
rubidium
parents: 8445
diff changeset
   227
	if (_remove_button_clicked) {
9281
d8cd9ac52a68 (svn r12489) -Codechange: split station.h into station_base.h and station_func.h.
rubidium
parents: 9188
diff changeset
   228
		DoCommandP(tile, 0, ROADSTOP_TRUCK, CcPlaySound1D, CMD_REMOVE_ROAD_STOP | CMD_MSG(_road_type_infos[_cur_roadtype].err_remove_station[ROADSTOP_TRUCK]));
6338
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   229
	} else {
9281
d8cd9ac52a68 (svn r12489) -Codechange: split station.h into station_base.h and station_func.h.
rubidium
parents: 9188
diff changeset
   230
		PlaceRoadStop(tile, (_ctrl_pressed << 5) | RoadTypeToRoadTypes(_cur_roadtype) << 2 | ROADSTOP_TRUCK, CMD_BUILD_ROAD_STOP | CMD_NO_WATER | CMD_MSG(_road_type_infos[_cur_roadtype].err_build_station[ROADSTOP_TRUCK]));
6338
0fb4f452873c (svn r8735) -Feature: drive-through road stops made possible by the hard work of mart3p.
rubidium
parents: 6144
diff changeset
   231
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   232
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   233
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   234
/** Enum referring to the widgets of the build road toolbar */
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   235
enum RoadToolbarWidgets {
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   236
	RTW_CLOSEBOX = 0,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   237
	RTW_CAPTION,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   238
	RTW_STICKY,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   239
	RTW_ROAD_X,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   240
	RTW_ROAD_Y,
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   241
	RTW_AUTOROAD,
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   242
	RTW_DEMOLISH,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   243
	RTW_DEPOT,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   244
	RTW_BUS_STATION,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   245
	RTW_TRUCK_STATION,
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   246
	RTW_ONE_WAY,
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   247
	RTW_BUILD_BRIDGE,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   248
	RTW_BUILD_TUNNEL,
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   249
	RTW_REMOVE,
5147
db717cde801d (svn r7239) Enumerate the widgets in the airport, dock, rail and road toolbars
tron
parents: 5105
diff changeset
   250
};
db717cde801d (svn r7239) Enumerate the widgets in the airport, dock, rail and road toolbars
tron
parents: 5105
diff changeset
   251
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   252
typedef void OnButtonClick(Window *w);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   253
9082
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   254
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   255
/** Toogles state of the Remove button of Build road toolbar
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   256
 * @param w window the button belongs to
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   257
 */
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   258
static void ToggleRoadButton_Remove(Window *w)
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   259
{
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   260
	w->ToggleWidgetLoweredState(RTW_REMOVE);
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   261
	w->InvalidateWidget(RTW_REMOVE);
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   262
	_remove_button_clicked = w->IsWidgetLowered(RTW_REMOVE);
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   263
	SetSelectionRed(_remove_button_clicked);
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   264
}
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   265
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   266
/** Updates the Remove button because of Ctrl state change
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   267
 * @param w window the button belongs to
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   268
 * @return true iff the remove buton was changed
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   269
 */
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   270
static bool RoadToolbar_CtrlChanged(Window *w)
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   271
{
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   272
	if (w->IsWidgetDisabled(RTW_REMOVE)) return false;
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   273
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   274
	/* allow ctrl to switch remove mode only for these widgets */
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   275
	for (uint i = RTW_ROAD_X; i <= RTW_AUTOROAD; i++) {
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   276
		if (w->IsWidgetLowered(i)) {
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   277
			ToggleRoadButton_Remove(w);
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   278
			return true;
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   279
		}
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   280
	}
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   281
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   282
	return false;
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   283
}
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   284
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   285
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   286
/**
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   287
 * Function that handles the click on the
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   288
 *  X road placement button.
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   289
 *
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   290
 * @param w The current window
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   291
 */
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   292
static void BuildRoadClick_X_Dir(Window *w)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   293
{
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   294
	HandlePlacePushButton(w, RTW_ROAD_X, _road_type_infos[_cur_roadtype].cursor_nwse, VHM_RECT, PlaceRoad_X_Dir);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   295
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   296
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   297
/**
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   298
 * Function that handles the click on the
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   299
 *  Y road placement button.
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   300
 *
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   301
 * @param w The current window
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   302
 */
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   303
static void BuildRoadClick_Y_Dir(Window *w)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   304
{
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   305
	HandlePlacePushButton(w, RTW_ROAD_Y, _road_type_infos[_cur_roadtype].cursor_nesw, VHM_RECT, PlaceRoad_Y_Dir);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   306
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   307
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   308
/**
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   309
 * Function that handles the click on the
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   310
 *  autoroad placement button.
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   311
 *
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   312
 * @param w The current window
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   313
 */
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   314
static void BuildRoadClick_AutoRoad(Window *w)
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   315
{
8290
2d3d2f515439 (svn r11344) -Codechange: Removes some magic numbers referring the highlighting mode in road_gui.cpp
belugas
parents: 8285
diff changeset
   316
	HandlePlacePushButton(w, RTW_AUTOROAD, _road_type_infos[_cur_roadtype].cursor_autoroad, VHM_RECT, PlaceRoad_AutoRoad);
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   317
}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   318
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   319
static void BuildRoadClick_Demolish(Window *w)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   320
{
10441
09655ce4bfa3 (svn r12983) -Codechange [FS#1987] : Unification of all dynamite tools calls to only one. Thanks to Roujin
belugas
parents: 10434
diff changeset
   321
	HandlePlacePushButton(w, RTW_DEMOLISH, ANIMCURSOR_DEMOLISH, VHM_RECT, PlaceProc_DemolishArea);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   322
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   323
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   324
static void BuildRoadClick_Depot(Window *w)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   325
{
7582
9f23c01ae23d (svn r10353) -Fix/Feature [FS#669]: disallow (in the GUI) the building of infrastructure you do not have available vehicles for. This means that the airport building button is disabled till you can actually build aircraft. The game itself will not disallow you to build the infrastructure and this "new" behaviour can be overriden with a patch setting.
rubidium
parents: 7275
diff changeset
   326
	if (_game_mode == GM_EDITOR || !CanBuildVehicleInfrastructure(VEH_ROAD)) return;
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   327
	if (HandlePlacePushButton(w, RTW_DEPOT, SPR_CURSOR_ROAD_DEPOT, VHM_RECT, PlaceRoad_Depot)) ShowRoadDepotPicker(w);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   328
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   329
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   330
static void BuildRoadClick_BusStation(Window *w)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   331
{
7582
9f23c01ae23d (svn r10353) -Fix/Feature [FS#669]: disallow (in the GUI) the building of infrastructure you do not have available vehicles for. This means that the airport building button is disabled till you can actually build aircraft. The game itself will not disallow you to build the infrastructure and this "new" behaviour can be overriden with a patch setting.
rubidium
parents: 7275
diff changeset
   332
	if (_game_mode == GM_EDITOR || !CanBuildVehicleInfrastructure(VEH_ROAD)) return;
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   333
	if (HandlePlacePushButton(w, RTW_BUS_STATION, SPR_CURSOR_BUS_STATION, VHM_RECT, PlaceRoad_BusStation)) ShowRVStationPicker(w, ROADSTOP_BUS);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   334
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   335
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   336
static void BuildRoadClick_TruckStation(Window *w)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   337
{
7582
9f23c01ae23d (svn r10353) -Fix/Feature [FS#669]: disallow (in the GUI) the building of infrastructure you do not have available vehicles for. This means that the airport building button is disabled till you can actually build aircraft. The game itself will not disallow you to build the infrastructure and this "new" behaviour can be overriden with a patch setting.
rubidium
parents: 7275
diff changeset
   338
	if (_game_mode == GM_EDITOR || !CanBuildVehicleInfrastructure(VEH_ROAD)) return;
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   339
	if (HandlePlacePushButton(w, RTW_TRUCK_STATION, SPR_CURSOR_TRUCK_STATION, VHM_RECT, PlaceRoad_TruckStation)) ShowRVStationPicker(w, ROADSTOP_TRUCK);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   340
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   341
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   342
/**
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   343
 * Function that handles the click on the
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   344
 *  one way road button.
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   345
 *
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   346
 * @param w The current window
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   347
 */
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   348
static void BuildRoadClick_OneWay(Window *w)
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   349
{
8493
3ab458f7cff4 (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium
parents: 8452
diff changeset
   350
	if (w->IsWidgetDisabled(RTW_ONE_WAY)) return;
10434
d6accd017341 (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 10433
diff changeset
   351
	w->SetDirty();
8493
3ab458f7cff4 (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium
parents: 8452
diff changeset
   352
	w->ToggleWidgetLoweredState(RTW_ONE_WAY);
8403
6686d3705b2c (svn r11459) -Fix: (r11457) The selection highlight color hasn't been reset
skidd13
parents: 8402
diff changeset
   353
	SetSelectionRed(false);
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   354
}
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   355
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   356
static void BuildRoadClick_Bridge(Window *w)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   357
{
8290
2d3d2f515439 (svn r11344) -Codechange: Removes some magic numbers referring the highlighting mode in road_gui.cpp
belugas
parents: 8285
diff changeset
   358
	HandlePlacePushButton(w, RTW_BUILD_BRIDGE, SPR_CURSOR_BRIDGE, VHM_RECT, PlaceRoad_Bridge);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   359
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   360
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   361
static void BuildRoadClick_Tunnel(Window *w)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   362
{
8290
2d3d2f515439 (svn r11344) -Codechange: Removes some magic numbers referring the highlighting mode in road_gui.cpp
belugas
parents: 8285
diff changeset
   363
	HandlePlacePushButton(w, RTW_BUILD_TUNNEL, SPR_CURSOR_ROAD_TUNNEL, VHM_SPECIAL, PlaceRoad_Tunnel);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   364
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   365
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   366
static void BuildRoadClick_Remove(Window *w)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   367
{
8493
3ab458f7cff4 (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium
parents: 8452
diff changeset
   368
	if (w->IsWidgetDisabled(RTW_REMOVE)) return;
9082
8217cb013e23 (svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed
smatz
parents: 9069
diff changeset
   369
	ToggleRoadButton_Remove(w);
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 514
diff changeset
   370
	SndPlayFx(SND_15_BEEP);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   371
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   372
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   373
/** Array with the handlers of the button-clicks for the road-toolbar */
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2635
diff changeset
   374
static OnButtonClick* const _build_road_button_proc[] = {
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   375
	BuildRoadClick_X_Dir,
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   376
	BuildRoadClick_Y_Dir,
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   377
	BuildRoadClick_AutoRoad,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   378
	BuildRoadClick_Demolish,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   379
	BuildRoadClick_Depot,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   380
	BuildRoadClick_BusStation,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   381
	BuildRoadClick_TruckStation,
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   382
	BuildRoadClick_OneWay,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   383
	BuildRoadClick_Bridge,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   384
	BuildRoadClick_Tunnel,
5933
0835f3342b79 (svn r8143) Remove the landscaping button from the build toolbars.
tron
parents: 5838
diff changeset
   385
	BuildRoadClick_Remove
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   386
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   387
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   388
/** Array with the keycode of the button-clicks for the road-toolbar */
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   389
static const uint16 _road_keycodes[] = {
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   390
	'1',
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   391
	'2',
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   392
	'3',
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   393
	'4',
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   394
	'5',
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   395
	'6',
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   396
	'7',
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   397
	'8',
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   398
	'B',
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   399
	'T',
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   400
	'R',
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   401
};
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   402
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   403
struct BuildRoadToolbarWindow : Window {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   404
	BuildRoadToolbarWindow(const WindowDesc *desc, WindowNumber window_number) : Window(desc, window_number)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   405
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   406
		this->SetWidgetsDisabledState(true,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   407
			RTW_REMOVE,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   408
			RTW_ONE_WAY,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   409
			WIDGET_LIST_END);
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   410
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   411
		this->FindWindowPlacementAndResize(desc);
10775
7061477bfbcf (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 10703
diff changeset
   412
		if (_settings_client.gui.link_terraform_toolbar) ShowTerraformToolbar(this);
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   413
	}
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   414
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   415
	~BuildRoadToolbarWindow()
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   416
	{
10775
7061477bfbcf (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 10703
diff changeset
   417
		if (_settings_client.gui.link_terraform_toolbar) DeleteWindowById(WC_SCEN_LAND_GEN, 0);
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   418
	}
5105
4332193c0aec (svn r7176) -Fix: remove button was not always disabled when it should have been (rail/road build toolbar)
glx
parents: 5072
diff changeset
   419
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   420
	/**
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   421
	 * Update the remove button lowered state of the road toolbar
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   422
	 *
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   423
	 * @param clicked_widget The widget which the player clicked just now
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   424
	 */
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   425
	void UpdateOptionWidgetStatus(RoadToolbarWidgets clicked_widget)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   426
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   427
		/* The remove and the one way button state is driven
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   428
		 * by the other buttons so they don't act on themselfs.
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   429
		 * Both are only valid if they are able to apply as options. */
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   430
		switch (clicked_widget) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   431
			case RTW_REMOVE:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   432
				this->RaiseWidget(RTW_ONE_WAY);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   433
				this->InvalidateWidget(RTW_ONE_WAY);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   434
				break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   435
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   436
			case RTW_ONE_WAY:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   437
				this->RaiseWidget(RTW_REMOVE);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   438
				this->InvalidateWidget(RTW_REMOVE);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   439
				break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   440
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   441
			case RTW_BUS_STATION:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   442
			case RTW_TRUCK_STATION:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   443
				this->DisableWidget(RTW_ONE_WAY);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   444
				this->SetWidgetDisabledState(RTW_REMOVE, !this->IsWidgetLowered(clicked_widget));
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   445
				break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   446
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   447
			case RTW_ROAD_X:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   448
			case RTW_ROAD_Y:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   449
			case RTW_AUTOROAD:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   450
				this->SetWidgetsDisabledState(!this->IsWidgetLowered(clicked_widget),
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   451
					RTW_REMOVE,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   452
					RTW_ONE_WAY,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   453
					WIDGET_LIST_END);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   454
				break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   455
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   456
			default:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   457
				/* When any other buttons than road/station, raise and
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   458
				 * disable the removal button */
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   459
				this->SetWidgetsDisabledState(true,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   460
					RTW_REMOVE,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   461
					RTW_ONE_WAY,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   462
					WIDGET_LIST_END);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   463
				this->SetWidgetsLoweredState (false,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   464
					RTW_REMOVE,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   465
					RTW_ONE_WAY,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   466
					WIDGET_LIST_END);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   467
				break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   468
		}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   469
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   470
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   471
	virtual void OnPaint()
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   472
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   473
		this->SetWidgetsDisabledState(!CanBuildVehicleInfrastructure(VEH_ROAD),
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   474
			RTW_DEPOT,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   475
			RTW_BUS_STATION,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   476
			RTW_TRUCK_STATION,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   477
			WIDGET_LIST_END);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   478
		this->DrawWidgets();
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   479
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   480
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   481
	virtual void OnClick(Point pt, int widget)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   482
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   483
		if (widget >= RTW_ROAD_X) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   484
			_remove_button_clicked = false;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   485
			_one_way_button_clicked = false;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   486
			_build_road_button_proc[widget - RTW_ROAD_X](this);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   487
		}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   488
		this->UpdateOptionWidgetStatus((RoadToolbarWidgets)widget);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   489
		if (_ctrl_pressed) RoadToolbar_CtrlChanged(this);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   490
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   491
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   492
	virtual EventState OnKeyPress(uint16 key, uint16 keycode)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   493
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   494
		EventState state = ES_NOT_HANDLED;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   495
		for (uint i = 0; i != lengthof(_road_keycodes); i++) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   496
			if (keycode == _road_keycodes[i]) {
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   497
				_remove_button_clicked = false;
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   498
				_one_way_button_clicked = false;
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   499
				_build_road_button_proc[i](this);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   500
				this->UpdateOptionWidgetStatus((RoadToolbarWidgets)(i + RTW_ROAD_X));
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   501
				if (_ctrl_pressed) RoadToolbar_CtrlChanged(this);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   502
				state = ES_HANDLED;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   503
				break;
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   504
			}
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   505
		}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   506
		MarkTileDirty(_thd.pos.x, _thd.pos.y); // redraw tile selection
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   507
		return state;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   508
	}
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   509
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   510
	virtual void OnPlaceObject(Point pt, TileIndex tile)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   511
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   512
		_remove_button_clicked = this->IsWidgetLowered(RTW_REMOVE);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   513
		_one_way_button_clicked = this->IsWidgetLowered(RTW_ONE_WAY);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   514
		_place_proc(tile);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   515
	}
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
   516
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   517
	virtual void OnPlaceObjectAbort()
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   518
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   519
		this->RaiseButtons();
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   520
		this->SetWidgetsDisabledState(true,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   521
			RTW_REMOVE,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   522
			RTW_ONE_WAY,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   523
			WIDGET_LIST_END);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   524
		this->InvalidateWidget(RTW_REMOVE);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   525
		this->InvalidateWidget(RTW_ONE_WAY);
7165
37eb253f3c06 (svn r9900) -Codechange: Separate the variables for how to highlight a land area and what to do with it afterwards.
maedhros
parents: 7162
diff changeset
   526
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   527
		delete FindWindowById(WC_BUS_STATION, 0);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   528
		delete FindWindowById(WC_TRUCK_STATION, 0);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   529
		delete FindWindowById(WC_BUILD_DEPOT, 0);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   530
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   531
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   532
	virtual void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   533
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   534
		/* Here we update the end tile flags
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   535
		 * of the road placement actions.
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   536
		 * At first we reset the end halfroad
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   537
		 * bits and if needed we set them again. */
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   538
		switch (select_proc) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   539
			case DDSP_PLACE_ROAD_X_DIR:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   540
				_place_road_flag &= ~RF_END_HALFROAD_X;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   541
				if (pt.x & 8) _place_road_flag |= RF_END_HALFROAD_X;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   542
				break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   543
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   544
			case DDSP_PLACE_ROAD_Y_DIR:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   545
				_place_road_flag &= ~RF_END_HALFROAD_Y;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   546
				if (pt.y & 8) _place_road_flag |= RF_END_HALFROAD_Y;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   547
				break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   548
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   549
			case DDSP_PLACE_AUTOROAD:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   550
				_place_road_flag &= ~(RF_END_HALFROAD_Y | RF_END_HALFROAD_X);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   551
				if (pt.y & 8) _place_road_flag |= RF_END_HALFROAD_Y;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   552
				if (pt.x & 8) _place_road_flag |= RF_END_HALFROAD_X;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   553
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   554
				/* For autoroad we need to update the
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   555
				 * direction of the road */
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   556
				if (_thd.size.x > _thd.size.y || (_thd.size.x == _thd.size.y &&
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   557
						( (_tile_fract_coords.x < _tile_fract_coords.y && (_tile_fract_coords.x + _tile_fract_coords.y) < 16) ||
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   558
						(_tile_fract_coords.x > _tile_fract_coords.y && (_tile_fract_coords.x + _tile_fract_coords.y) > 16) ))) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   559
					/* Set dir = X */
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   560
					_place_road_flag &= ~RF_DIR_Y;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   561
				} else {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   562
					/* Set dir = Y */
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   563
					_place_road_flag |= RF_DIR_Y;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   564
				}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   565
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   566
				break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   567
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   568
			default:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   569
				break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   570
		}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   571
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   572
		VpSelectTilesWithMethod(pt.x, pt.y, select_method);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   573
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   574
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   575
	virtual void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   576
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   577
		if (pt.x != -1) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   578
			switch (select_proc) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   579
				default: NOT_REACHED();
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   580
				case DDSP_BUILD_BRIDGE:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   581
					ResetObjectToPlace();
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   582
					ShowBuildBridgeWindow(start_tile, end_tile, TRANSPORT_ROAD, RoadTypeToRoadTypes(_cur_roadtype));
7165
37eb253f3c06 (svn r9900) -Codechange: Separate the variables for how to highlight a land area and what to do with it afterwards.
maedhros
parents: 7162
diff changeset
   583
					break;
37eb253f3c06 (svn r9900) -Codechange: Separate the variables for how to highlight a land area and what to do with it afterwards.
maedhros
parents: 7162
diff changeset
   584
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   585
				case DDSP_DEMOLISH_AREA:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   586
					GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   587
					break;
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   588
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   589
				case DDSP_PLACE_ROAD_X_DIR:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   590
				case DDSP_PLACE_ROAD_Y_DIR:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   591
				case DDSP_PLACE_AUTOROAD:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   592
					/* Flag description:
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   593
					* Use the first three bits (0x07) if dir == Y
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   594
					* else use the last 2 bits (X dir has
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   595
					* not the 3rd bit set) */
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   596
					_place_road_flag = (RoadFlags)((_place_road_flag & RF_DIR_Y) ? (_place_road_flag & 0x07) : (_place_road_flag >> 3));
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   597
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   598
					DoCommandP(end_tile, start_tile, _place_road_flag | (_cur_roadtype << 3) | (_one_way_button_clicked << 5), CcPlaySound1D,
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   599
						(_ctrl_pressed || _remove_button_clicked) ?
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   600
						CMD_REMOVE_LONG_ROAD | CMD_NO_WATER | CMD_MSG(_road_type_infos[_cur_roadtype].err_remove_road) :
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   601
						CMD_BUILD_LONG_ROAD | CMD_NO_WATER | CMD_MSG(_road_type_infos[_cur_roadtype].err_build_road));
7165
37eb253f3c06 (svn r9900) -Codechange: Separate the variables for how to highlight a land area and what to do with it afterwards.
maedhros
parents: 7162
diff changeset
   602
					break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   603
			}
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   604
		}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   605
	}
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   606
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   607
	virtual void OnPlacePresize(Point pt, TileIndex tile)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   608
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   609
		DoCommand(tile, 0x200 | RoadTypeToRoadTypes(_cur_roadtype), 0, DC_AUTO, CMD_BUILD_TUNNEL);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   610
		VpSetPresizeRange(tile, _build_tunnel_endtile == 0 ? tile : _build_tunnel_endtile);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   611
	}
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   612
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   613
	virtual EventState OnCTRLStateChange()
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   614
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   615
		if (RoadToolbar_CtrlChanged(this)) return ES_HANDLED;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   616
		return ES_NOT_HANDLED;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   617
	}
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   618
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   619
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   620
/** Widget definition of the build road toolbar */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   621
static const Widget _build_road_widgets[] = {
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   622
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                   STR_018B_CLOSE_WINDOW},             // RTW_CLOSEBOX
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   623
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   250,     0,    13, STR_1802_ROAD_CONSTRUCTION, STR_018C_WINDOW_TITLE_DRAG_THIS},   // RTW_CAPTION
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   624
{  WWT_STICKYBOX,   RESIZE_NONE,     7,   251,   262,     0,    13, 0x0,                        STR_STICKY_BUTTON},                 // RTW_STICKY
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   625
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   626
{     WWT_IMGBTN,   RESIZE_NONE,     7,     0,    21,    14,    35, SPR_IMG_ROAD_X_DIR,         STR_180B_BUILD_ROAD_SECTION},       // RTW_ROAD_X
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   627
{     WWT_IMGBTN,   RESIZE_NONE,     7,    22,    43,    14,    35, SPR_IMG_ROAD_Y_DIR,         STR_180B_BUILD_ROAD_SECTION},       // RTW_ROAD_Y
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   628
{     WWT_IMGBTN,   RESIZE_NONE,     7,    44,    65,    14,    35, SPR_IMG_AUTOROAD,           STR_BUILD_AUTOROAD_TIP},            // RTW_AUTOROAD
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   629
{     WWT_IMGBTN,   RESIZE_NONE,     7,    66,    87,    14,    35, SPR_IMG_DYNAMITE,           STR_018D_DEMOLISH_BUILDINGS_ETC},   // RTW_DEMOLISH
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   630
{     WWT_IMGBTN,   RESIZE_NONE,     7,    88,   109,    14,    35, SPR_IMG_ROAD_DEPOT,         STR_180C_BUILD_ROAD_VEHICLE_DEPOT}, // RTW_DEPOT
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   631
{     WWT_IMGBTN,   RESIZE_NONE,     7,   110,   131,    14,    35, SPR_IMG_BUS_STATION,        STR_180D_BUILD_BUS_STATION},        // RTW_BUS_STATION
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   632
{     WWT_IMGBTN,   RESIZE_NONE,     7,   132,   153,    14,    35, SPR_IMG_TRUCK_BAY,          STR_180E_BUILD_TRUCK_LOADING_BAY},  // RTW_TRUCK_STATION
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   633
{     WWT_IMGBTN,   RESIZE_NONE,     7,   154,   175,    14,    35, SPR_IMG_ROAD_ONE_WAY,       STR_TOGGLE_ONE_WAY_ROAD},           // RTW_ONE_WAY
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   634
{     WWT_IMGBTN,   RESIZE_NONE,     7,   176,   218,    14,    35, SPR_IMG_BRIDGE,             STR_180F_BUILD_ROAD_BRIDGE},        // RTW_BUILD_BRIDGE
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   635
{     WWT_IMGBTN,   RESIZE_NONE,     7,   219,   240,    14,    35, SPR_IMG_ROAD_TUNNEL,        STR_1810_BUILD_ROAD_TUNNEL},        // RTW_BUILD_TUNNEL
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   636
{     WWT_IMGBTN,   RESIZE_NONE,     7,   241,   262,    14,    35, SPR_IMG_REMOVE,             STR_1811_TOGGLE_BUILD_REMOVE_FOR},  // RTW_REMOVE
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   637
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 5
diff changeset
   638
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   639
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   640
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   641
static const WindowDesc _build_road_desc = {
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   642
	WDP_ALIGN_TBR, 22, 263, 36, 263, 36,
6144
5a0ffbf27ced (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 6111
diff changeset
   643
	WC_BUILD_TOOLBAR, WC_NONE,
756
d1f1dc31b6f4 (svn r1212) -Feature: sticky windows all build-toolbars
darkvater
parents: 679
diff changeset
   644
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   645
	_build_road_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   646
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   647
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   648
/** Widget definition of the build tram toolbar */
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   649
static const Widget _build_tramway_widgets[] = {
8936
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   650
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                       STR_018B_CLOSE_WINDOW},                // RTW_CLOSEBOX
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   651
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   228,     0,    13, STR_WHITE_TRAMWAY_CONSTRUCTION, STR_018C_WINDOW_TITLE_DRAG_THIS},      // RTW_CAPTION
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   652
{  WWT_STICKYBOX,   RESIZE_NONE,     7,   229,   240,     0,    13, 0x0,                            STR_STICKY_BUTTON},                    // RTW_STICKY
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   653
8936
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   654
{     WWT_IMGBTN,   RESIZE_NONE,     7,     0,    21,    14,    35, SPR_IMG_TRAMWAY_X_DIR,          STR_BUILD_TRAMWAY_SECTION},            // RTW_ROAD_X
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   655
{     WWT_IMGBTN,   RESIZE_NONE,     7,    22,    43,    14,    35, SPR_IMG_TRAMWAY_Y_DIR,          STR_BUILD_TRAMWAY_SECTION},            // RTW_ROAD_Y
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   656
{     WWT_IMGBTN,   RESIZE_NONE,     7,    44,    65,    14,    35, SPR_IMG_AUTOTRAM,               STR_BUILD_AUTOTRAM_TIP},               // RTW_AUTOROAD
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   657
{     WWT_IMGBTN,   RESIZE_NONE,     7,    66,    87,    14,    35, SPR_IMG_DYNAMITE,               STR_018D_DEMOLISH_BUILDINGS_ETC},      // RTW_DEMOLISH
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   658
{     WWT_IMGBTN,   RESIZE_NONE,     7,    88,   109,    14,    35, SPR_IMG_ROAD_DEPOT,             STR_BUILD_TRAM_VEHICLE_DEPOT},         // RTW_DEPOT
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   659
{     WWT_IMGBTN,   RESIZE_NONE,     7,   110,   131,    14,    35, SPR_IMG_BUS_STATION,            STR_BUILD_PASSENGER_TRAM_STATION},     // RTW_BUS_STATION
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   660
{     WWT_IMGBTN,   RESIZE_NONE,     7,   132,   153,    14,    35, SPR_IMG_TRUCK_BAY,              STR_BUILD_CARGO_TRAM_STATION},         // RTW_TRUCK_STATION
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   661
{      WWT_EMPTY,   RESIZE_NONE,     0,     0,     0,     0,     0, 0x0,                            STR_NULL},                             // RTW_ONE_WAY
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   662
{     WWT_IMGBTN,   RESIZE_NONE,     7,   154,   196,    14,    35, SPR_IMG_BRIDGE,                 STR_BUILD_TRAMWAY_BRIDGE},             // RTW_BUILD_BRIDGE
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   663
{     WWT_IMGBTN,   RESIZE_NONE,     7,   197,   218,    14,    35, SPR_IMG_ROAD_TUNNEL,            STR_BUILD_TRAMWAY_TUNNEL},             // RTW_BUILD_TUNNEL
8aa1c9403495 (svn r12010) -Fix (r11994): build tramway window should use STR_WHITE_TRAMWAY_CONSTRUCTION
smatz
parents: 8920
diff changeset
   664
{     WWT_IMGBTN,   RESIZE_NONE,     7,   219,   240,    14,    35, SPR_IMG_REMOVE,                 STR_TOGGLE_BUILD_REMOVE_FOR_TRAMWAYS}, // RTW_REMOVE
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   665
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   666
{   WIDGETS_END},
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   667
};
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   668
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   669
static const WindowDesc _build_tramway_desc = {
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   670
	WDP_ALIGN_TBR, 22, 241, 36, 241, 36,
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   671
	WC_BUILD_TOOLBAR, WC_NONE,
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   672
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   673
	_build_tramway_widgets,
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   674
};
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   675
7162
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
   676
void ShowBuildRoadToolbar(RoadType roadtype)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   677
{
5005
21e84e53c732 (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4938
diff changeset
   678
	if (!IsValidPlayer(_current_player)) return;
7162
b769c2b45103 (svn r9897) -Codechange: prepare the toolbar for more road types.
rubidium
parents: 7158
diff changeset
   679
	_cur_roadtype = roadtype;
5005
21e84e53c732 (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4938
diff changeset
   680
10397
84e97769583b (svn r12939) -Codechange: do not use the window proc to determine whether a toolbar is a rail toolbar, but use the window number.
rubidium
parents: 10233
diff changeset
   681
	DeleteWindowByClass(WC_BUILD_TOOLBAR);
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   682
	AllocateWindowDescFront<BuildRoadToolbarWindow>(roadtype == ROADTYPE_ROAD ? &_build_road_desc : &_build_tramway_desc, TRANSPORT_ROAD);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   683
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   684
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   685
/** Widget definition of the build road toolbar in the scenario editor */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   686
static const Widget _build_road_scen_widgets[] = {
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   687
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                   STR_018B_CLOSE_WINDOW},            // RTW_CLOSEBOX
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   688
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   184,     0,    13, STR_1802_ROAD_CONSTRUCTION, STR_018C_WINDOW_TITLE_DRAG_THIS},  // RTW_CAPTION
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   689
{  WWT_STICKYBOX,   RESIZE_NONE,     7,   185,   196,     0,    13, 0x0,                        STR_STICKY_BUTTON},                // RTW_STICKY
661
a0bdbdffb06a (svn r1095) -Fix: scenario editor road-build-gui works again altough shortcuts are screwed.
darkvater
parents: 651
diff changeset
   690
8391
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   691
{     WWT_IMGBTN,   RESIZE_NONE,     7,     0,    21,    14,    35, SPR_IMG_ROAD_X_DIR,         STR_180B_BUILD_ROAD_SECTION},      // RTW_ROAD_X
533d149e52a9 (svn r11446) -Codechange: change the naming of road related code parts to something more descriptive
skidd13
parents: 8290
diff changeset
   692
{     WWT_IMGBTN,   RESIZE_NONE,     7,    22,    43,    14,    35, SPR_IMG_ROAD_Y_DIR,         STR_180B_BUILD_ROAD_SECTION},      // RTW_ROAD_Y
8285
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   693
{     WWT_IMGBTN,   RESIZE_NONE,     7,    44,    65,    14,    35, SPR_IMG_AUTOROAD,           STR_BUILD_AUTOROAD_TIP},           // RTW_AUTOROAD
1f026f023f27 (svn r11339) -Add: autoroad; same as autorail, but for road and trams and only on X and Y direction. Patch by Octopussy and skidd13.
rubidium
parents: 8225
diff changeset
   694
{     WWT_IMGBTN,   RESIZE_NONE,     7,    66,    87,    14,    35, SPR_IMG_DYNAMITE,           STR_018D_DEMOLISH_BUILDINGS_ETC},  // RTW_DEMOLISH
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   695
{      WWT_EMPTY,   RESIZE_NONE,     0,     0,     0,     0,     0, 0x0,                        STR_NULL},                         // RTW_DEPOT
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   696
{      WWT_EMPTY,   RESIZE_NONE,     0,     0,     0,     0,     0, 0x0,                        STR_NULL},                         // RTW_BUS_STATION
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   697
{      WWT_EMPTY,   RESIZE_NONE,     0,     0,     0,     0,     0, 0x0,                        STR_NULL},                         // RTW_TRUCK_STATION
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   698
{     WWT_IMGBTN,   RESIZE_NONE,     7,    88,   109,    14,    35, SPR_IMG_ROAD_ONE_WAY,       STR_TOGGLE_ONE_WAY_ROAD},          // RTW_ONE_WAY
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   699
{     WWT_IMGBTN,   RESIZE_NONE,     7,   110,   152,    14,    35, SPR_IMG_BRIDGE,             STR_180F_BUILD_ROAD_BRIDGE},       // RTW_BUILD_BRIDGE
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   700
{     WWT_IMGBTN,   RESIZE_NONE,     7,   153,   174,    14,    35, SPR_IMG_ROAD_TUNNEL,        STR_1810_BUILD_ROAD_TUNNEL},       // RTW_BUILD_TUNNEL
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   701
{     WWT_IMGBTN,   RESIZE_NONE,     7,   175,   196,    14,    35, SPR_IMG_REMOVE,             STR_1811_TOGGLE_BUILD_REMOVE_FOR}, // RTW_REMOVE
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 5
diff changeset
   702
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   703
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   704
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   705
static const WindowDesc _build_road_scen_desc = {
8402
d2f50a0bac7f (svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads option
skidd13
parents: 8400
diff changeset
   706
	WDP_AUTO, WDP_AUTO, 197, 36, 197, 36,
11071
91ac7664ad1e (svn r13628) -Feature: enable building of aqueducts in the scenario editor
skidd13
parents: 10775
diff changeset
   707
	WC_SCEN_BUILD_TOOLBAR, WC_NONE,
777
3d7798da0f10 (svn r1243) -Fix: Scenario road-building toolbar also stickified. Thx for the notice teeone
darkvater
parents: 756
diff changeset
   708
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   709
	_build_road_scen_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   710
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   711
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6428
diff changeset
   712
void ShowBuildRoadScenToolbar()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   713
{
7275
301967cc2351 (svn r10015) -Fix: one could build (only) tram tracks when that was the last built roadtype (in a normal game).
rubidium
parents: 7260
diff changeset
   714
	_cur_roadtype = ROADTYPE_ROAD;
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   715
	AllocateWindowDescFront<BuildRoadToolbarWindow>(&_build_road_scen_desc, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   716
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   717
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   718
struct BuildRoadDepotWindow : public PickerWindowBase {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   719
private:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   720
	/** Enum referring to the widgets of the build road depot window */
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   721
	enum BuildRoadDepotWidgets {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   722
		BRDW_CLOSEBOX = 0,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   723
		BRDW_CAPTION,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   724
		BRDW_BACKGROUND,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   725
		BRDW_DEPOT_NE,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   726
		BRDW_DEPOT_SE,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   727
		BRDW_DEPOT_SW,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   728
		BRDW_DEPOT_NW,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   729
	};
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   730
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   731
public:
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   732
	BuildRoadDepotWindow(const WindowDesc *desc, Window *parent) : PickerWindowBase(desc, parent)
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   733
	{
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   734
		this->LowerWidget(_road_depot_orientation + BRDW_DEPOT_NE);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   735
		if ( _cur_roadtype == ROADTYPE_TRAM) {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   736
			this->widget[BRDW_CAPTION].data = STR_TRAM_DEPOT_ORIENTATION;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   737
			for (int i = BRDW_DEPOT_NE; i <= BRDW_DEPOT_NW; i++) this->widget[i].tooltips = STR_SELECT_TRAM_VEHICLE_DEPOT;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   738
		}
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   739
		this->FindWindowPlacementAndResize(desc);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   740
	}
1072
01bf9fc64236 (svn r1573) -Fix: Station and depot building mode is now terminated if the
celestar
parents: 1035
diff changeset
   741
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   742
	virtual void OnPaint()
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   743
	{
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   744
		this->DrawWidgets();
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   745
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   746
		DrawRoadDepotSprite(70, 17, DIAGDIR_NE, _cur_roadtype);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   747
		DrawRoadDepotSprite(70, 69, DIAGDIR_SE, _cur_roadtype);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   748
		DrawRoadDepotSprite( 2, 69, DIAGDIR_SW, _cur_roadtype);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   749
		DrawRoadDepotSprite( 2, 17, DIAGDIR_NW, _cur_roadtype);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   750
	}
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   751
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   752
	virtual void OnClick(Point pt, int widget)
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   753
	{
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   754
		switch (widget) {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   755
			case BRDW_DEPOT_NW:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   756
			case BRDW_DEPOT_NE:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   757
			case BRDW_DEPOT_SW:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   758
			case BRDW_DEPOT_SE:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   759
				this->RaiseWidget(_road_depot_orientation + BRDW_DEPOT_NE);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   760
				_road_depot_orientation = (DiagDirection)(widget - BRDW_DEPOT_NE);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   761
				this->LowerWidget(_road_depot_orientation + BRDW_DEPOT_NE);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   762
				SndPlayFx(SND_15_BEEP);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   763
				this->SetDirty();
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   764
				break;
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   765
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   766
			default:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   767
				break;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   768
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   769
	}
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   770
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   771
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   772
/** Widget definition of the build road depot window */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   773
static const Widget _build_road_depot_widgets[] = {
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   774
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                        STR_018B_CLOSE_WINDOW},              // BRDW_CLOSEBOX
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   775
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   139,     0,    13, STR_1806_ROAD_DEPOT_ORIENTATION, STR_018C_WINDOW_TITLE_DRAG_THIS},    // BRDW_CAPTION
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   776
{      WWT_PANEL,   RESIZE_NONE,     7,     0,   139,    14,   121, 0x0,                             STR_NULL},                           // BRDW_BACKGROUND
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   777
{      WWT_PANEL,   RESIZE_NONE,    14,    71,   136,    17,    66, 0x0,                             STR_1813_SELECT_ROAD_VEHICLE_DEPOT}, // BRDW_DEPOT_NE
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   778
{      WWT_PANEL,   RESIZE_NONE,    14,    71,   136,    69,   118, 0x0,                             STR_1813_SELECT_ROAD_VEHICLE_DEPOT}, // BRDW_DEPOT_SE
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   779
{      WWT_PANEL,   RESIZE_NONE,    14,     3,    68,    69,   118, 0x0,                             STR_1813_SELECT_ROAD_VEHICLE_DEPOT}, // BRDW_DEPOT_SW
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   780
{      WWT_PANEL,   RESIZE_NONE,    14,     3,    68,    17,    66, 0x0,                             STR_1813_SELECT_ROAD_VEHICLE_DEPOT}, // BRDW_DEPOT_NW
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 5
diff changeset
   781
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   782
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   783
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   784
static const WindowDesc _build_road_depot_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7835
diff changeset
   785
	WDP_AUTO, WDP_AUTO, 140, 122, 140, 122,
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
   786
	WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   787
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   788
	_build_road_depot_widgets,
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   789
};
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 7174
diff changeset
   790
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   791
static void ShowRoadDepotPicker(Window *parent)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   792
{
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   793
	new BuildRoadDepotWindow(&_build_road_depot_desc, parent);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   794
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   795
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   796
struct BuildRoadStationWindow : public PickerWindowBase {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   797
private:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   798
	/** Enum referring to the widgets of the build road station window */
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   799
	enum BuildRoadStationWidgets {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   800
		BRSW_CLOSEBOX = 0,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   801
		BRSW_CAPTION,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   802
		BRSW_BACKGROUND,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   803
		BRSW_STATION_NE,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   804
		BRSW_STATION_SE,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   805
		BRSW_STATION_SW,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   806
		BRSW_STATION_NW,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   807
		BRSW_STATION_X,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   808
		BRSW_STATION_Y,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   809
		BRSW_LT_OFF,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   810
		BRSW_LT_ON,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   811
		BRSW_INFO,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   812
	};
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   813
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   814
public:
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   815
	BuildRoadStationWindow(const WindowDesc *desc, Window *parent, RoadStopType rs) : PickerWindowBase(desc, parent)
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   816
	{
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   817
		/* Trams don't have non-drivethrough stations */
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   818
		if (_cur_roadtype == ROADTYPE_TRAM && _road_station_picker_orientation < DIAGDIR_END) {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   819
			_road_station_picker_orientation = DIAGDIR_END;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   820
		}
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   821
		this->SetWidgetsDisabledState(_cur_roadtype == ROADTYPE_TRAM,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   822
			BRSW_STATION_NE,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   823
			BRSW_STATION_SE,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   824
			BRSW_STATION_SW,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   825
			BRSW_STATION_NW,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   826
			WIDGET_LIST_END);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   827
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   828
		this->window_class = (rs == ROADSTOP_BUS) ? WC_BUS_STATION : WC_TRUCK_STATION;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   829
		this->widget[BRSW_CAPTION].data = _road_type_infos[_cur_roadtype].picker_title[rs];
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   830
		for (uint i = BRSW_STATION_NE; i < BRSW_LT_OFF; i++) this->widget[i].tooltips = _road_type_infos[_cur_roadtype].picker_tooltip[rs];
1109
1bab892228cd (svn r1610) Remove trailing whitespace (last time ever, i hope)
tron
parents: 1093
diff changeset
   831
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   832
		this->LowerWidget(_road_station_picker_orientation + BRSW_STATION_NE);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   833
		this->LowerWidget(_station_show_coverage + BRSW_LT_OFF);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   834
		this->FindWindowPlacementAndResize(desc);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   835
	}
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   836
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   837
	virtual void OnPaint()
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   838
	{
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   839
		this->DrawWidgets();
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   840
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   841
		if (_station_show_coverage) {
10775
7061477bfbcf (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 10703
diff changeset
   842
			int rad = _settings_game.station.modified_catchment ? CA_TRUCK /* = CA_BUS */ : CA_UNMODIFIED;
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   843
			SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   844
		} else {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   845
			SetTileSelectSize(1, 1);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   846
		}
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   847
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   848
		StationType st = (this->window_class == WC_BUS_STATION) ? STATION_BUS : STATION_TRUCK;
9317
191b8b10e545 (svn r12569) -Cleanup: variable scope and coding style in road*.cpp
smatz
parents: 9281
diff changeset
   849
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   850
		StationPickerDrawSprite(103, 35, st, INVALID_RAILTYPE, ROADTYPE_ROAD, 0);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   851
		StationPickerDrawSprite(103, 85, st, INVALID_RAILTYPE, ROADTYPE_ROAD, 1);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   852
		StationPickerDrawSprite( 35, 85, st, INVALID_RAILTYPE, ROADTYPE_ROAD, 2);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   853
		StationPickerDrawSprite( 35, 35, st, INVALID_RAILTYPE, ROADTYPE_ROAD, 3);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   854
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   855
		StationPickerDrawSprite(171, 35, st, INVALID_RAILTYPE, _cur_roadtype, 4);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   856
		StationPickerDrawSprite(171, 85, st, INVALID_RAILTYPE, _cur_roadtype, 5);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   857
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   858
		int text_end = DrawStationCoverageAreaText(2, 146,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   859
			(this->window_class == WC_BUS_STATION) ? SCT_PASSENGERS_ONLY : SCT_NON_PASSENGERS_ONLY,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   860
			3, false);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   861
		text_end = DrawStationCoverageAreaText(2, text_end + 4,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   862
			(this->window_class == WC_BUS_STATION) ? SCT_PASSENGERS_ONLY : SCT_NON_PASSENGERS_ONLY,
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   863
			3, true) + 4;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   864
		if (text_end > this->widget[BRSW_BACKGROUND].bottom) {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   865
			this->SetDirty();
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   866
			ResizeWindowForWidget(this, BRSW_BACKGROUND, 0, text_end - this->widget[BRSW_BACKGROUND].bottom);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   867
			this->SetDirty();
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   868
		}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   869
	}
10600
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   870
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   871
	virtual void OnClick(Point pt, int widget)
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   872
	{
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   873
		switch (widget) {
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   874
			case BRSW_STATION_NE:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   875
			case BRSW_STATION_SE:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   876
			case BRSW_STATION_SW:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   877
			case BRSW_STATION_NW:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   878
			case BRSW_STATION_X:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   879
			case BRSW_STATION_Y:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   880
				this->RaiseWidget(_road_station_picker_orientation + BRSW_STATION_NE);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   881
				_road_station_picker_orientation = (DiagDirection)(widget - BRSW_STATION_NE);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   882
				this->LowerWidget(_road_station_picker_orientation + BRSW_STATION_NE);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   883
				SndPlayFx(SND_15_BEEP);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   884
				this->SetDirty();
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   885
				break;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   886
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   887
			case BRSW_LT_OFF:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   888
			case BRSW_LT_ON:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   889
				this->RaiseWidget(_station_show_coverage + BRSW_LT_OFF);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   890
				_station_show_coverage = (widget != BRSW_LT_OFF);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   891
				this->LowerWidget(_station_show_coverage + BRSW_LT_OFF);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   892
				SndPlayFx(SND_15_BEEP);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   893
				this->SetDirty();
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   894
				break;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   895
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   896
			default:
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   897
				break;
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   898
		}
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   899
	}
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   900
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   901
	virtual void OnTick()
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   902
	{
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   903
		CheckRedrawStationCoverage(this);
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   904
	}
c2e353297912 (svn r13144) -Codechange: make classes of the BuildRoad[Depot|Station]Window.
glx
parents: 10595
diff changeset
   905
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   906
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   907
/** Widget definition of the build raod station window */
7189
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   908
static const Widget _rv_station_picker_widgets[] = {
8225
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   909
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                         STR_018B_CLOSE_WINDOW},             // BRSW_CLOSEBOX
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   910
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   206,     0,    13, STR_NULL,                         STR_018C_WINDOW_TITLE_DRAG_THIS},   // BRSW_CAPTION
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   911
{      WWT_PANEL,   RESIZE_NONE,     7,     0,   206,    14,   176, 0x0,                              STR_NULL},                          // BRSW_BACKGROUND
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   912
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   913
{      WWT_PANEL,   RESIZE_NONE,    14,    71,   136,    17,    66, 0x0,                              STR_NULL},                          // BRSW_STATION_NE
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   914
{      WWT_PANEL,   RESIZE_NONE,    14,    71,   136,    69,   118, 0x0,                              STR_NULL},                          // BRSW_STATION_SE
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   915
{      WWT_PANEL,   RESIZE_NONE,    14,     3,    68,    69,   118, 0x0,                              STR_NULL},                          // BRSW_STATION_SW
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   916
{      WWT_PANEL,   RESIZE_NONE,    14,     3,    68,    17,    66, 0x0,                              STR_NULL},                          // BRSW_STATION_NW
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   917
{      WWT_PANEL,   RESIZE_NONE,    14,   139,   204,    17,    66, 0x0,                              STR_NULL},                          // BRSW_STATION_X
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   918
{      WWT_PANEL,   RESIZE_NONE,    14,   139,   204,    69,   118, 0x0,                              STR_NULL},                          // BRSW_STATION_Y
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   919
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   920
{    WWT_TEXTBTN,   RESIZE_NONE,    14,    10,    69,   133,   144, STR_02DB_OFF,                     STR_3065_DON_T_HIGHLIGHT_COVERAGE}, // BRSW_LT_OFF
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   921
{    WWT_TEXTBTN,   RESIZE_NONE,    14,    70,   129,   133,   144, STR_02DA_ON,                      STR_3064_HIGHLIGHT_COVERAGE_AREA},  // BRSW_LT_ON
7cf635a89c7d (svn r11264) -Codechange: replace a lot of magic numbers with enums for the rail and road GUIs. Patch by skidd13.
rubidium
parents: 8017
diff changeset
   922
{      WWT_LABEL,   RESIZE_NONE,     7,     0,   139,   120,   133, STR_3066_COVERAGE_AREA_HIGHLIGHT, STR_NULL},                          // BRSW_INFO
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 5
diff changeset
   923
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   924
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   925
7189
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   926
static const WindowDesc _rv_station_picker_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7835
diff changeset
   927
	WDP_AUTO, WDP_AUTO, 207, 177, 207, 177,
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
   928
	WC_BUS_STATION, WC_BUILD_TOOLBAR,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   929
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
7189
38df4f4e68ef (svn r9925) -Fix: wrong tooltips in station picker.
rubidium
parents: 7187
diff changeset
   930
	_rv_station_picker_widgets,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   931
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   932
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   933
static void ShowRVStationPicker(Window *parent, RoadStopType rs)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   934
{
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10641
diff changeset
   935
	new BuildRoadStationWindow(&_rv_station_picker_desc, parent, rs);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   936
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   937
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6428
diff changeset
   938
void InitializeRoadGui()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   939
{
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   940
	_road_depot_orientation = DIAGDIR_NW;
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   941
	_road_station_picker_orientation = DIAGDIR_NW;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   942
}