2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8 /** @file road_gui.cpp GUI for building roads. */
12 #include "window_gui.h"
13 #include "station_gui.h"
14 #include "terraform_gui.h"
15 #include "viewport_func.h"
16 #include "command_func.h"
18 #include "station_func.h"
19 #include "window_func.h"
20 #include "vehicle_func.h"
21 #include "sound_func.h"
22 #include "company_func.h"
23 #include "tunnelbridge.h"
24 #include "tunnelbridge_map.h"
25 #include "tilehighlight_func.h"
26 #include "company_base.h"
29 #include "zoom_func.h"
30 #include "engine_base.h"
31 #include "strings_func.h"
32 #include "core/geometry_func.hpp"
33 #include "date_func.h"
35 #include "widgets/road_widget.h"
37 #include "table/strings.h"
39 #include "safeguards.h"
41 static void ShowRVStationPicker(Window
*parent
, RoadStopType rs
);
42 static void ShowRoadDepotPicker(Window
*parent
);
44 static bool _remove_button_clicked
;
45 static bool _one_way_button_clicked
;
48 * Define the values of the RoadFlags
49 * @see CmdBuildLongRoad
53 RF_START_HALFROAD_Y
= 0x01, // The start tile in Y-dir should have only a half road
54 RF_END_HALFROAD_Y
= 0x02, // The end tile in Y-dir should have only a half road
55 RF_DIR_Y
= 0x04, // The direction is Y-dir
56 RF_DIR_X
= RF_NONE
, // Dummy; Dir X is set when RF_DIR_Y is not set
57 RF_START_HALFROAD_X
= 0x08, // The start tile in X-dir should have only a half road
58 RF_END_HALFROAD_X
= 0x10, // The end tile in X-dir should have only a half road
60 DECLARE_ENUM_AS_BIT_SET(RoadFlags
)
62 static RoadFlags _place_road_flag
;
64 static RoadType _cur_roadtype
;
66 static DiagDirection _road_depot_orientation
;
67 static DiagDirection _road_station_picker_orientation
;
69 void CcPlaySound_CONSTRUCTION_OTHER(const CommandCost
&result
, TileIndex tile
, uint32 p1
, uint32 p2
, uint32 cmd
)
71 if (result
.Succeeded() && _settings_client
.sound
.confirm
) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER
, tile
);
75 * Callback to start placing a bridge.
76 * @param tile Start tile of the bridge.
78 static void PlaceRoad_Bridge(TileIndex tile
, Window
*w
)
80 if (IsBridgeTile(tile
)) {
81 TileIndex other_tile
= GetOtherTunnelBridgeEnd(tile
);
83 w
->OnPlaceMouseUp(VPM_X_OR_Y
, DDSP_BUILD_BRIDGE
, pt
, other_tile
, tile
);
85 VpStartPlaceSizing(tile
, VPM_X_OR_Y
, DDSP_BUILD_BRIDGE
);
90 * Callback executed after a build road tunnel command has been called.
92 * @param result Whether the build succeeded.
93 * @param start_tile Starting tile of the tunnel.
94 * @param p1 bit 0-3 railtype or roadtypes
95 * bit 8-9 transport type
99 void CcBuildRoadTunnel(const CommandCost
&result
, TileIndex start_tile
, uint32 p1
, uint32 p2
, uint32 cmd
)
101 if (result
.Succeeded()) {
102 if (_settings_client
.sound
.confirm
) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER
, start_tile
);
103 if (!_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
105 DiagDirection start_direction
= ReverseDiagDir(GetTunnelBridgeDirection(start_tile
));
106 ConnectRoadToStructure(start_tile
, start_direction
);
108 TileIndex end_tile
= GetOtherTunnelBridgeEnd(start_tile
);
109 DiagDirection end_direction
= ReverseDiagDir(GetTunnelBridgeDirection(end_tile
));
110 ConnectRoadToStructure(end_tile
, end_direction
);
112 SetRedErrorSquare(_build_tunnel_endtile
);
117 * If required, connects a new structure to an existing road or tram by building the missing roadbit.
118 * @param tile Tile containing the structure to connect.
119 * @param direction Direction to check.
121 void ConnectRoadToStructure(TileIndex tile
, DiagDirection direction
)
123 tile
+= TileOffsByDiagDir(direction
);
124 /* if there is a roadpiece just outside of the station entrance, build a connecting route */
125 if (IsNormalRoadTile(tile
)) {
126 if (GetRoadBits(tile
, GetRoadTramType(_cur_roadtype
)) != ROAD_NONE
) {
127 DoCommandP(tile
, _cur_roadtype
<< 4 | DiagDirToRoadBits(ReverseDiagDir(direction
)), 0, CMD_BUILD_ROAD
);
132 void CcRoadDepot(const CommandCost
&result
, TileIndex tile
, uint32 p1
, uint32 p2
, uint32 cmd
)
134 if (result
.Failed()) return;
136 DiagDirection dir
= (DiagDirection
)GB(p1
, 0, 2);
137 if (_settings_client
.sound
.confirm
) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER
, tile
);
138 if (!_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
139 ConnectRoadToStructure(tile
, dir
);
143 * Command callback for building road stops.
144 * @param result Result of the build road stop command.
145 * @param tile Start tile.
146 * @param p1 bit 0..7: Width of the road stop.
147 * bit 8..15: Length of the road stop.
148 * @param p2 bit 0: 0 For bus stops, 1 for truck stops.
149 * bit 1: 0 For normal stops, 1 for drive-through.
150 * bit 2: Allow stations directly adjacent to other stations.
151 * bit 3..4: Entrance direction (#DiagDirection) for normal stops.
152 * bit 3: #Axis of the road for drive-through stops.
153 * bit 5..9: The roadtype.
154 * bit 16..31: Station ID to join (NEW_STATION if build new one).
156 * @see CmdBuildRoadStop
158 void CcRoadStop(const CommandCost
&result
, TileIndex tile
, uint32 p1
, uint32 p2
, uint32 cmd
)
160 if (result
.Failed()) return;
162 DiagDirection dir
= (DiagDirection
)GB(p2
, 3, 2);
163 if (_settings_client
.sound
.confirm
) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER
, tile
);
164 if (!_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
165 TileArea
roadstop_area(tile
, GB(p1
, 0, 8), GB(p1
, 8, 8));
166 for (TileIndex cur_tile
: roadstop_area
) {
167 ConnectRoadToStructure(cur_tile
, dir
);
168 /* For a drive-through road stop build connecting road for other entrance. */
169 if (HasBit(p2
, 1)) ConnectRoadToStructure(cur_tile
, ReverseDiagDir(dir
));
174 * Place a new road stop.
175 * @param start_tile First tile of the area.
176 * @param end_tile Last tile of the area.
177 * @param p2 bit 0: 0 For bus stops, 1 for truck stops.
178 * bit 2: Allow stations directly adjacent to other stations.
179 * bit 5..10: The roadtypes.
180 * @param cmd Command to use.
183 static void PlaceRoadStop(TileIndex start_tile
, TileIndex end_tile
, uint32 p2
, uint32 cmd
)
185 uint8 ddir
= _road_station_picker_orientation
;
186 SB(p2
, 16, 16, INVALID_STATION
); // no station to join
188 if (ddir
>= DIAGDIR_END
) {
189 SetBit(p2
, 1); // It's a drive-through stop.
190 ddir
-= DIAGDIR_END
; // Adjust picker result to actual direction.
192 p2
|= ddir
<< 3; // Set the DiagDirecion into p2 bits 3 and 4.
194 TileArea
ta(start_tile
, end_tile
);
195 CommandContainer cmdcont
= { ta
.tile
, (uint32
)(ta
.w
| ta
.h
<< 8), p2
, cmd
, CcRoadStop
, "" };
196 ShowSelectStationIfNeeded(cmdcont
, ta
);
200 * Callback for placing a bus station.
201 * @param tile Position to place the station.
203 static void PlaceRoad_BusStation(TileIndex tile
)
205 if (_remove_button_clicked
) {
206 VpStartPlaceSizing(tile
, VPM_X_AND_Y
, DDSP_REMOVE_BUSSTOP
);
208 if (_road_station_picker_orientation
< DIAGDIR_END
) { // Not a drive-through stop.
209 VpStartPlaceSizing(tile
, (DiagDirToAxis(_road_station_picker_orientation
) == AXIS_X
) ? VPM_X_LIMITED
: VPM_Y_LIMITED
, DDSP_BUILD_BUSSTOP
);
211 VpStartPlaceSizing(tile
, VPM_X_AND_Y_LIMITED
, DDSP_BUILD_BUSSTOP
);
213 VpSetPlaceSizingLimit(_settings_game
.station
.station_spread
);
218 * Callback for placing a truck station.
219 * @param tile Position to place the station.
221 static void PlaceRoad_TruckStation(TileIndex tile
)
223 if (_remove_button_clicked
) {
224 VpStartPlaceSizing(tile
, VPM_X_AND_Y
, DDSP_REMOVE_TRUCKSTOP
);
226 if (_road_station_picker_orientation
< DIAGDIR_END
) { // Not a drive-through stop.
227 VpStartPlaceSizing(tile
, (DiagDirToAxis(_road_station_picker_orientation
) == AXIS_X
) ? VPM_X_LIMITED
: VPM_Y_LIMITED
, DDSP_BUILD_TRUCKSTOP
);
229 VpStartPlaceSizing(tile
, VPM_X_AND_Y_LIMITED
, DDSP_BUILD_TRUCKSTOP
);
231 VpSetPlaceSizingLimit(_settings_game
.station
.station_spread
);
235 typedef void OnButtonClick(Window
*w
);
238 * Toggles state of the Remove button of Build road toolbar
239 * @param w window the button belongs to
241 static void ToggleRoadButton_Remove(Window
*w
)
243 w
->ToggleWidgetLoweredState(WID_ROT_REMOVE
);
244 w
->SetWidgetDirty(WID_ROT_REMOVE
);
245 _remove_button_clicked
= w
->IsWidgetLowered(WID_ROT_REMOVE
);
246 SetSelectionRed(_remove_button_clicked
);
250 * Updates the Remove button because of Ctrl state change
251 * @param w window the button belongs to
252 * @return true iff the remove button was changed
254 static bool RoadToolbar_CtrlChanged(Window
*w
)
256 if (w
->IsWidgetDisabled(WID_ROT_REMOVE
)) return false;
258 /* allow ctrl to switch remove mode only for these widgets */
259 for (uint i
= WID_ROT_ROAD_X
; i
<= WID_ROT_AUTOROAD
; i
++) {
260 if (w
->IsWidgetLowered(i
)) {
261 ToggleRoadButton_Remove(w
);
269 /** Road toolbar window handler. */
270 struct BuildRoadToolbarWindow
: Window
{
271 RoadType roadtype
; ///< Road type to build.
272 const RoadTypeInfo
*rti
; ///< Information about current road type
273 int last_started_action
; ///< Last started user action.
275 BuildRoadToolbarWindow(WindowDesc
*desc
, WindowNumber window_number
) : Window(desc
)
277 this->Initialize(_cur_roadtype
);
278 this->InitNested(window_number
);
279 this->SetupRoadToolbar();
280 this->SetWidgetDisabledState(WID_ROT_REMOVE
, true);
282 if (RoadTypeIsRoad(this->roadtype
)) {
283 this->SetWidgetDisabledState(WID_ROT_ONE_WAY
, true);
286 this->OnInvalidateData();
287 this->last_started_action
= WIDGET_LIST_END
;
289 if (_settings_client
.gui
.link_terraform_toolbar
) ShowTerraformToolbar(this);
292 void Close() override
294 if (_game_mode
== GM_NORMAL
&& (this->IsWidgetLowered(WID_ROT_BUS_STATION
) || this->IsWidgetLowered(WID_ROT_TRUCK_STATION
))) SetViewportCatchmentStation(nullptr, true);
295 if (_settings_client
.gui
.link_terraform_toolbar
) CloseWindowById(WC_SCEN_LAND_GEN
, 0, false);
296 this->Window::Close();
300 * Some data on this window has become invalid.
301 * @param data Information about the changed data.
302 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
304 void OnInvalidateData(int data
= 0, bool gui_scope
= true) override
306 if (!gui_scope
) return;
307 RoadTramType rtt
= GetRoadTramType(this->roadtype
);
309 bool can_build
= CanBuildVehicleInfrastructure(VEH_ROAD
, rtt
);
310 this->SetWidgetsDisabledState(!can_build
,
313 WID_ROT_TRUCK_STATION
,
316 CloseWindowById(WC_BUS_STATION
, TRANSPORT_ROAD
);
317 CloseWindowById(WC_TRUCK_STATION
, TRANSPORT_ROAD
);
318 CloseWindowById(WC_BUILD_DEPOT
, TRANSPORT_ROAD
);
321 if (_game_mode
!= GM_EDITOR
) {
323 /* Show in the tooltip why this button is disabled. */
324 this->GetWidget
<NWidgetCore
>(WID_ROT_DEPOT
)->SetToolTip(STR_TOOLBAR_DISABLED_NO_VEHICLE_AVAILABLE
);
325 this->GetWidget
<NWidgetCore
>(WID_ROT_BUS_STATION
)->SetToolTip(STR_TOOLBAR_DISABLED_NO_VEHICLE_AVAILABLE
);
326 this->GetWidget
<NWidgetCore
>(WID_ROT_TRUCK_STATION
)->SetToolTip(STR_TOOLBAR_DISABLED_NO_VEHICLE_AVAILABLE
);
328 this->GetWidget
<NWidgetCore
>(WID_ROT_DEPOT
)->SetToolTip(rtt
== RTT_ROAD
? STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_VEHICLE_DEPOT
: STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAM_VEHICLE_DEPOT
);
329 this->GetWidget
<NWidgetCore
>(WID_ROT_BUS_STATION
)->SetToolTip(rtt
== RTT_ROAD
? STR_ROAD_TOOLBAR_TOOLTIP_BUILD_BUS_STATION
: STR_ROAD_TOOLBAR_TOOLTIP_BUILD_PASSENGER_TRAM_STATION
);
330 this->GetWidget
<NWidgetCore
>(WID_ROT_TRUCK_STATION
)->SetToolTip(rtt
== RTT_ROAD
? STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRUCK_LOADING_BAY
: STR_ROAD_TOOLBAR_TOOLTIP_BUILD_CARGO_TRAM_STATION
);
335 void Initialize(RoadType roadtype
)
337 assert(roadtype
< ROADTYPE_END
);
338 this->roadtype
= roadtype
;
339 this->rti
= GetRoadTypeInfo(this->roadtype
);
343 * Configures the road toolbar for roadtype given
344 * @param roadtype the roadtype to display
346 void SetupRoadToolbar()
348 this->GetWidget
<NWidgetCore
>(WID_ROT_ROAD_X
)->widget_data
= rti
->gui_sprites
.build_x_road
;
349 this->GetWidget
<NWidgetCore
>(WID_ROT_ROAD_Y
)->widget_data
= rti
->gui_sprites
.build_y_road
;
350 this->GetWidget
<NWidgetCore
>(WID_ROT_AUTOROAD
)->widget_data
= rti
->gui_sprites
.auto_road
;
351 if (_game_mode
!= GM_EDITOR
) {
352 this->GetWidget
<NWidgetCore
>(WID_ROT_DEPOT
)->widget_data
= rti
->gui_sprites
.build_depot
;
354 this->GetWidget
<NWidgetCore
>(WID_ROT_CONVERT_ROAD
)->widget_data
= rti
->gui_sprites
.convert_road
;
355 this->GetWidget
<NWidgetCore
>(WID_ROT_BUILD_TUNNEL
)->widget_data
= rti
->gui_sprites
.build_tunnel
;
359 * Switch to another road type.
360 * @param roadtype New road type.
362 void ModifyRoadType(RoadType roadtype
)
364 this->Initialize(roadtype
);
365 this->SetupRoadToolbar();
369 void SetStringParameters(int widget
) const override
371 if (widget
== WID_ROT_CAPTION
) {
372 if (this->rti
->max_speed
> 0) {
373 SetDParam(0, STR_TOOLBAR_RAILTYPE_VELOCITY
);
374 SetDParam(1, this->rti
->strings
.toolbar_caption
);
375 SetDParam(2, this->rti
->max_speed
/ 2);
377 SetDParam(0, this->rti
->strings
.toolbar_caption
);
383 * Update the remove button lowered state of the road toolbar
385 * @param clicked_widget The widget which the client clicked just now
387 void UpdateOptionWidgetStatus(RoadToolbarWidgets clicked_widget
)
389 /* The remove and the one way button state is driven
390 * by the other buttons so they don't act on themselves.
391 * Both are only valid if they are able to apply as options. */
392 switch (clicked_widget
) {
394 if (RoadTypeIsRoad(this->roadtype
)) {
395 this->RaiseWidget(WID_ROT_ONE_WAY
);
396 this->SetWidgetDirty(WID_ROT_ONE_WAY
);
401 case WID_ROT_ONE_WAY
:
402 this->RaiseWidget(WID_ROT_REMOVE
);
403 this->SetWidgetDirty(WID_ROT_REMOVE
);
406 case WID_ROT_BUS_STATION
:
407 case WID_ROT_TRUCK_STATION
:
408 if (RoadTypeIsRoad(this->roadtype
)) this->DisableWidget(WID_ROT_ONE_WAY
);
409 this->SetWidgetDisabledState(WID_ROT_REMOVE
, !this->IsWidgetLowered(clicked_widget
));
414 case WID_ROT_AUTOROAD
:
415 this->SetWidgetDisabledState(WID_ROT_REMOVE
, !this->IsWidgetLowered(clicked_widget
));
416 if (RoadTypeIsRoad(this->roadtype
)) {
417 this->SetWidgetDisabledState(WID_ROT_ONE_WAY
, !this->IsWidgetLowered(clicked_widget
));
422 /* When any other buttons than road/station, raise and
423 * disable the removal button */
424 this->SetWidgetDisabledState(WID_ROT_REMOVE
, true);
425 this->SetWidgetLoweredState(WID_ROT_REMOVE
, false);
427 if (RoadTypeIsRoad(this->roadtype
)) {
428 this->SetWidgetDisabledState(WID_ROT_ONE_WAY
, true);
429 this->SetWidgetLoweredState(WID_ROT_ONE_WAY
, false);
436 void OnClick(Point pt
, int widget
, int click_count
) override
438 _remove_button_clicked
= false;
439 _one_way_button_clicked
= false;
442 HandlePlacePushButton(this, WID_ROT_ROAD_X
, this->rti
->cursor
.road_nwse
, HT_RECT
);
443 this->last_started_action
= widget
;
447 HandlePlacePushButton(this, WID_ROT_ROAD_Y
, this->rti
->cursor
.road_swne
, HT_RECT
);
448 this->last_started_action
= widget
;
451 case WID_ROT_AUTOROAD
:
452 HandlePlacePushButton(this, WID_ROT_AUTOROAD
, this->rti
->cursor
.autoroad
, HT_RECT
);
453 this->last_started_action
= widget
;
456 case WID_ROT_DEMOLISH
:
457 HandlePlacePushButton(this, WID_ROT_DEMOLISH
, ANIMCURSOR_DEMOLISH
, HT_RECT
| HT_DIAGONAL
);
458 this->last_started_action
= widget
;
462 if (HandlePlacePushButton(this, WID_ROT_DEPOT
, this->rti
->cursor
.depot
, HT_RECT
)) {
463 ShowRoadDepotPicker(this);
464 this->last_started_action
= widget
;
468 case WID_ROT_BUS_STATION
:
469 if (HandlePlacePushButton(this, WID_ROT_BUS_STATION
, SPR_CURSOR_BUS_STATION
, HT_RECT
)) {
470 ShowRVStationPicker(this, ROADSTOP_BUS
);
471 this->last_started_action
= widget
;
475 case WID_ROT_TRUCK_STATION
:
476 if (HandlePlacePushButton(this, WID_ROT_TRUCK_STATION
, SPR_CURSOR_TRUCK_STATION
, HT_RECT
)) {
477 ShowRVStationPicker(this, ROADSTOP_TRUCK
);
478 this->last_started_action
= widget
;
482 case WID_ROT_ONE_WAY
:
483 if (this->IsWidgetDisabled(WID_ROT_ONE_WAY
)) return;
485 this->ToggleWidgetLoweredState(WID_ROT_ONE_WAY
);
486 SetSelectionRed(false);
489 case WID_ROT_BUILD_BRIDGE
:
490 HandlePlacePushButton(this, WID_ROT_BUILD_BRIDGE
, SPR_CURSOR_BRIDGE
, HT_RECT
);
491 this->last_started_action
= widget
;
494 case WID_ROT_BUILD_TUNNEL
:
495 HandlePlacePushButton(this, WID_ROT_BUILD_TUNNEL
, this->rti
->cursor
.tunnel
, HT_SPECIAL
);
496 this->last_started_action
= widget
;
500 if (this->IsWidgetDisabled(WID_ROT_REMOVE
)) return;
502 CloseWindowById(WC_SELECT_STATION
, 0);
503 ToggleRoadButton_Remove(this);
504 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
507 case WID_ROT_CONVERT_ROAD
:
508 HandlePlacePushButton(this, WID_ROT_CONVERT_ROAD
, this->rti
->cursor
.convert_road
, HT_RECT
);
509 this->last_started_action
= widget
;
512 default: NOT_REACHED();
514 this->UpdateOptionWidgetStatus((RoadToolbarWidgets
)widget
);
515 if (_ctrl_pressed
) RoadToolbar_CtrlChanged(this);
518 EventState
OnHotkey(int hotkey
) override
520 MarkTileDirtyByTile(TileVirtXY(_thd
.pos
.x
, _thd
.pos
.y
)); // redraw tile selection
521 return Window::OnHotkey(hotkey
);
524 void OnPlaceObject(Point pt
, TileIndex tile
) override
526 _remove_button_clicked
= this->IsWidgetLowered(WID_ROT_REMOVE
);
527 _one_way_button_clicked
= RoadTypeIsRoad(this->roadtype
) ? this->IsWidgetLowered(WID_ROT_ONE_WAY
) : false;
528 switch (this->last_started_action
) {
530 _place_road_flag
= RF_DIR_X
;
531 if (_tile_fract_coords
.x
>= 8) _place_road_flag
|= RF_START_HALFROAD_X
;
532 VpStartPlaceSizing(tile
, VPM_FIX_Y
, DDSP_PLACE_ROAD_X_DIR
);
536 _place_road_flag
= RF_DIR_Y
;
537 if (_tile_fract_coords
.y
>= 8) _place_road_flag
|= RF_START_HALFROAD_Y
;
538 VpStartPlaceSizing(tile
, VPM_FIX_X
, DDSP_PLACE_ROAD_Y_DIR
);
541 case WID_ROT_AUTOROAD
:
542 _place_road_flag
= RF_NONE
;
543 if (_tile_fract_coords
.x
>= 8) _place_road_flag
|= RF_START_HALFROAD_X
;
544 if (_tile_fract_coords
.y
>= 8) _place_road_flag
|= RF_START_HALFROAD_Y
;
545 VpStartPlaceSizing(tile
, VPM_X_OR_Y
, DDSP_PLACE_AUTOROAD
);
548 case WID_ROT_DEMOLISH
:
549 PlaceProc_DemolishArea(tile
);
553 DoCommandP(tile
, _cur_roadtype
<< 2 | _road_depot_orientation
, 0,
554 CMD_BUILD_ROAD_DEPOT
| CMD_MSG(this->rti
->strings
.err_depot
), CcRoadDepot
);
557 case WID_ROT_BUS_STATION
:
558 PlaceRoad_BusStation(tile
);
561 case WID_ROT_TRUCK_STATION
:
562 PlaceRoad_TruckStation(tile
);
565 case WID_ROT_BUILD_BRIDGE
:
566 PlaceRoad_Bridge(tile
, this);
569 case WID_ROT_BUILD_TUNNEL
:
570 DoCommandP(tile
, _cur_roadtype
| (TRANSPORT_ROAD
<< 8), 0,
571 CMD_BUILD_TUNNEL
| CMD_MSG(STR_ERROR_CAN_T_BUILD_TUNNEL_HERE
), CcBuildRoadTunnel
);
574 case WID_ROT_CONVERT_ROAD
:
575 VpStartPlaceSizing(tile
, VPM_X_AND_Y
, DDSP_CONVERT_ROAD
);
578 default: NOT_REACHED();
582 void OnPlaceObjectAbort() override
584 if (_game_mode
!= GM_EDITOR
&& (this->IsWidgetLowered(WID_ROT_BUS_STATION
) || this->IsWidgetLowered(WID_ROT_TRUCK_STATION
))) SetViewportCatchmentStation(nullptr, true);
586 this->RaiseButtons();
587 this->SetWidgetDisabledState(WID_ROT_REMOVE
, true);
588 this->SetWidgetDirty(WID_ROT_REMOVE
);
590 if (RoadTypeIsRoad(this->roadtype
)) {
591 this->SetWidgetDisabledState(WID_ROT_ONE_WAY
, true);
592 this->SetWidgetDirty(WID_ROT_ONE_WAY
);
595 CloseWindowById(WC_BUS_STATION
, TRANSPORT_ROAD
);
596 CloseWindowById(WC_TRUCK_STATION
, TRANSPORT_ROAD
);
597 CloseWindowById(WC_BUILD_DEPOT
, TRANSPORT_ROAD
);
598 CloseWindowById(WC_SELECT_STATION
, 0);
599 CloseWindowByClass(WC_BUILD_BRIDGE
);
602 void OnPlaceDrag(ViewportPlaceMethod select_method
, ViewportDragDropSelectionProcess select_proc
, Point pt
) override
604 /* Here we update the end tile flags
605 * of the road placement actions.
606 * At first we reset the end halfroad
607 * bits and if needed we set them again. */
608 switch (select_proc
) {
609 case DDSP_PLACE_ROAD_X_DIR
:
610 _place_road_flag
&= ~RF_END_HALFROAD_X
;
611 if (pt
.x
& 8) _place_road_flag
|= RF_END_HALFROAD_X
;
614 case DDSP_PLACE_ROAD_Y_DIR
:
615 _place_road_flag
&= ~RF_END_HALFROAD_Y
;
616 if (pt
.y
& 8) _place_road_flag
|= RF_END_HALFROAD_Y
;
619 case DDSP_PLACE_AUTOROAD
:
620 _place_road_flag
&= ~(RF_END_HALFROAD_Y
| RF_END_HALFROAD_X
);
621 if (pt
.y
& 8) _place_road_flag
|= RF_END_HALFROAD_Y
;
622 if (pt
.x
& 8) _place_road_flag
|= RF_END_HALFROAD_X
;
624 /* For autoroad we need to update the
625 * direction of the road */
626 if (_thd
.size
.x
> _thd
.size
.y
|| (_thd
.size
.x
== _thd
.size
.y
&&
627 ( (_tile_fract_coords
.x
< _tile_fract_coords
.y
&& (_tile_fract_coords
.x
+ _tile_fract_coords
.y
) < 16) ||
628 (_tile_fract_coords
.x
> _tile_fract_coords
.y
&& (_tile_fract_coords
.x
+ _tile_fract_coords
.y
) > 16) ))) {
630 _place_road_flag
&= ~RF_DIR_Y
;
633 _place_road_flag
|= RF_DIR_Y
;
642 VpSelectTilesWithMethod(pt
.x
, pt
.y
, select_method
);
645 void OnPlaceMouseUp(ViewportPlaceMethod select_method
, ViewportDragDropSelectionProcess select_proc
, Point pt
, TileIndex start_tile
, TileIndex end_tile
) override
648 switch (select_proc
) {
649 default: NOT_REACHED();
650 case DDSP_BUILD_BRIDGE
:
651 if (!_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
652 ShowBuildBridgeWindow(start_tile
, end_tile
, TRANSPORT_ROAD
, _cur_roadtype
);
655 case DDSP_DEMOLISH_AREA
:
656 GUIPlaceProcDragXY(select_proc
, start_tile
, end_tile
);
659 case DDSP_PLACE_ROAD_X_DIR
:
660 case DDSP_PLACE_ROAD_Y_DIR
:
661 case DDSP_PLACE_AUTOROAD
:
663 * Use the first three bits (0x07) if dir == Y
664 * else use the last 2 bits (X dir has
665 * not the 3rd bit set) */
667 /* Even if _cur_roadtype_id is a uint8 we only use 5 bits so
668 * we could ignore the last 3 bits and reuse them for other
670 _place_road_flag
= (RoadFlags
)((_place_road_flag
& RF_DIR_Y
) ? (_place_road_flag
& 0x07) : (_place_road_flag
>> 3));
672 DoCommandP(start_tile
, end_tile
, _place_road_flag
| (_cur_roadtype
<< 3) | (_one_way_button_clicked
<< 10),
673 _remove_button_clicked
?
674 CMD_REMOVE_LONG_ROAD
| CMD_MSG(this->rti
->strings
.err_remove_road
) :
675 CMD_BUILD_LONG_ROAD
| CMD_MSG(this->rti
->strings
.err_build_road
), CcPlaySound_CONSTRUCTION_OTHER
);
678 case DDSP_BUILD_BUSSTOP
:
679 case DDSP_REMOVE_BUSSTOP
:
680 if (this->IsWidgetLowered(WID_ROT_BUS_STATION
)) {
681 if (_remove_button_clicked
) {
682 TileArea
ta(start_tile
, end_tile
);
683 DoCommandP(ta
.tile
, ta
.w
| ta
.h
<< 8, (_ctrl_pressed
<< 1) | ROADSTOP_BUS
, CMD_REMOVE_ROAD_STOP
| CMD_MSG(this->rti
->strings
.err_remove_station
[ROADSTOP_BUS
]), CcPlaySound_CONSTRUCTION_OTHER
);
685 PlaceRoadStop(start_tile
, end_tile
, _cur_roadtype
<< 5 | (_ctrl_pressed
<< 2) | ROADSTOP_BUS
, CMD_BUILD_ROAD_STOP
| CMD_MSG(this->rti
->strings
.err_build_station
[ROADSTOP_BUS
]));
690 case DDSP_BUILD_TRUCKSTOP
:
691 case DDSP_REMOVE_TRUCKSTOP
:
692 if (this->IsWidgetLowered(WID_ROT_TRUCK_STATION
)) {
693 if (_remove_button_clicked
) {
694 TileArea
ta(start_tile
, end_tile
);
695 DoCommandP(ta
.tile
, ta
.w
| ta
.h
<< 8, (_ctrl_pressed
<< 1) | ROADSTOP_TRUCK
, CMD_REMOVE_ROAD_STOP
| CMD_MSG(this->rti
->strings
.err_remove_station
[ROADSTOP_TRUCK
]), CcPlaySound_CONSTRUCTION_OTHER
);
697 PlaceRoadStop(start_tile
, end_tile
, _cur_roadtype
<< 5 | (_ctrl_pressed
<< 2) | ROADSTOP_TRUCK
, CMD_BUILD_ROAD_STOP
| CMD_MSG(this->rti
->strings
.err_build_station
[ROADSTOP_TRUCK
]));
702 case DDSP_CONVERT_ROAD
:
703 DoCommandP(end_tile
, start_tile
, _cur_roadtype
, CMD_CONVERT_ROAD
| CMD_MSG(rti
->strings
.err_convert_road
), CcPlaySound_CONSTRUCTION_OTHER
);
709 void OnPlacePresize(Point pt
, TileIndex tile
) override
711 DoCommand(tile
, _cur_roadtype
| (TRANSPORT_ROAD
<< 8), 0, DC_AUTO
, CMD_BUILD_TUNNEL
);
712 VpSetPresizeRange(tile
, _build_tunnel_endtile
== 0 ? tile
: _build_tunnel_endtile
);
715 EventState
OnCTRLStateChange() override
717 if (RoadToolbar_CtrlChanged(this)) return ES_HANDLED
;
718 return ES_NOT_HANDLED
;
721 static HotkeyList road_hotkeys
;
722 static HotkeyList tram_hotkeys
;
726 * Handler for global hotkeys of the BuildRoadToolbarWindow.
727 * @param hotkey Hotkey
728 * @param last_build Last build road type
729 * @return ES_HANDLED if hotkey was accepted.
731 static EventState
RoadTramToolbarGlobalHotkeys(int hotkey
, RoadType last_build
, RoadTramType rtt
)
734 switch (_game_mode
) {
736 w
= ShowBuildRoadToolbar(last_build
);
740 if ((GetRoadTypes(true) & ((rtt
== RTT_ROAD
) ? ~_roadtypes_type
: _roadtypes_type
)) == ROADTYPES_NONE
) return ES_NOT_HANDLED
;
741 w
= ShowBuildRoadScenToolbar(last_build
);
748 if (w
== nullptr) return ES_NOT_HANDLED
;
749 return w
->OnHotkey(hotkey
);
752 static EventState
RoadToolbarGlobalHotkeys(int hotkey
)
754 extern RoadType _last_built_roadtype
;
755 return RoadTramToolbarGlobalHotkeys(hotkey
, _last_built_roadtype
, RTT_ROAD
);
758 static EventState
TramToolbarGlobalHotkeys(int hotkey
)
760 extern RoadType _last_built_tramtype
;
761 return RoadTramToolbarGlobalHotkeys(hotkey
, _last_built_tramtype
, RTT_TRAM
);
764 static Hotkey roadtoolbar_hotkeys
[] = {
765 Hotkey('1', "build_x", WID_ROT_ROAD_X
),
766 Hotkey('2', "build_y", WID_ROT_ROAD_Y
),
767 Hotkey('3', "autoroad", WID_ROT_AUTOROAD
),
768 Hotkey('4', "demolish", WID_ROT_DEMOLISH
),
769 Hotkey('5', "depot", WID_ROT_DEPOT
),
770 Hotkey('6', "bus_station", WID_ROT_BUS_STATION
),
771 Hotkey('7', "truck_station", WID_ROT_TRUCK_STATION
),
772 Hotkey('8', "oneway", WID_ROT_ONE_WAY
),
773 Hotkey('B', "bridge", WID_ROT_BUILD_BRIDGE
),
774 Hotkey('T', "tunnel", WID_ROT_BUILD_TUNNEL
),
775 Hotkey('R', "remove", WID_ROT_REMOVE
),
776 Hotkey('C', "convert", WID_ROT_CONVERT_ROAD
),
779 HotkeyList
BuildRoadToolbarWindow::road_hotkeys("roadtoolbar", roadtoolbar_hotkeys
, RoadToolbarGlobalHotkeys
);
781 static Hotkey tramtoolbar_hotkeys
[] = {
782 Hotkey('1', "build_x", WID_ROT_ROAD_X
),
783 Hotkey('2', "build_y", WID_ROT_ROAD_Y
),
784 Hotkey('3', "autoroad", WID_ROT_AUTOROAD
),
785 Hotkey('4', "demolish", WID_ROT_DEMOLISH
),
786 Hotkey('5', "depot", WID_ROT_DEPOT
),
787 Hotkey('6', "bus_station", WID_ROT_BUS_STATION
),
788 Hotkey('7', "truck_station", WID_ROT_TRUCK_STATION
),
789 Hotkey('B', "bridge", WID_ROT_BUILD_BRIDGE
),
790 Hotkey('T', "tunnel", WID_ROT_BUILD_TUNNEL
),
791 Hotkey('R', "remove", WID_ROT_REMOVE
),
792 Hotkey('C', "convert", WID_ROT_CONVERT_ROAD
),
795 HotkeyList
BuildRoadToolbarWindow::tram_hotkeys("tramtoolbar", tramtoolbar_hotkeys
, TramToolbarGlobalHotkeys
);
798 static const NWidgetPart _nested_build_road_widgets
[] = {
799 NWidget(NWID_HORIZONTAL
),
800 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
801 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_ROT_CAPTION
), SetDataTip(STR_WHITE_STRING
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
802 NWidget(WWT_STICKYBOX
, COLOUR_DARK_GREEN
),
804 NWidget(NWID_HORIZONTAL
),
805 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ROAD_X
),
806 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_X_DIR
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_SECTION
),
807 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ROAD_Y
),
808 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_Y_DIR
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_SECTION
),
809 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_AUTOROAD
),
810 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_AUTOROAD
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_AUTOROAD
),
811 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_DEMOLISH
),
812 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE
, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC
),
813 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_DEPOT
),
814 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_DEPOT
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_VEHICLE_DEPOT
),
815 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUS_STATION
),
816 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_BUS_STATION
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_BUS_STATION
),
817 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_TRUCK_STATION
),
818 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRUCK_BAY
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRUCK_LOADING_BAY
),
819 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, -1), SetMinimalSize(0, 22), SetFill(1, 1), EndContainer(),
820 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ONE_WAY
),
821 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_ONE_WAY
, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_ONE_WAY_ROAD
),
822 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUILD_BRIDGE
),
823 SetFill(0, 1), SetMinimalSize(43, 22), SetDataTip(SPR_IMG_BRIDGE
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_BRIDGE
),
824 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUILD_TUNNEL
),
825 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_TUNNEL
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_TUNNEL
),
826 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_REMOVE
),
827 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_REMOVE
, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_BUILD_REMOVE_FOR_ROAD
),
828 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_CONVERT_ROAD
),
829 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_CONVERT_ROAD
, STR_ROAD_TOOLBAR_TOOLTIP_CONVERT_ROAD
),
833 static WindowDesc
_build_road_desc(
834 WDP_ALIGN_TOOLBAR
, "toolbar_road", 0, 0,
835 WC_BUILD_TOOLBAR
, WC_NONE
,
837 _nested_build_road_widgets
, lengthof(_nested_build_road_widgets
),
838 &BuildRoadToolbarWindow::road_hotkeys
841 static const NWidgetPart _nested_build_tramway_widgets
[] = {
842 NWidget(NWID_HORIZONTAL
),
843 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
844 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_ROT_CAPTION
), SetDataTip(STR_WHITE_STRING
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
845 NWidget(WWT_STICKYBOX
, COLOUR_DARK_GREEN
),
847 NWidget(NWID_HORIZONTAL
),
848 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ROAD_X
),
849 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRAMWAY_X_DIR
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_SECTION
),
850 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ROAD_Y
),
851 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRAMWAY_Y_DIR
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_SECTION
),
852 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_AUTOROAD
),
853 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_AUTOTRAM
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_AUTOTRAM
),
854 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_DEMOLISH
),
855 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE
, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC
),
856 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_DEPOT
),
857 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_DEPOT
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAM_VEHICLE_DEPOT
),
858 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUS_STATION
),
859 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_BUS_STATION
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_PASSENGER_TRAM_STATION
),
860 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_TRUCK_STATION
),
861 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRUCK_BAY
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_CARGO_TRAM_STATION
),
862 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, -1), SetMinimalSize(0, 22), SetFill(1, 1), EndContainer(),
863 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUILD_BRIDGE
),
864 SetFill(0, 1), SetMinimalSize(43, 22), SetDataTip(SPR_IMG_BRIDGE
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_BRIDGE
),
865 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUILD_TUNNEL
),
866 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_TUNNEL
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_TUNNEL
),
867 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_REMOVE
),
868 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_REMOVE
, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_BUILD_REMOVE_FOR_TRAMWAYS
),
869 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_CONVERT_ROAD
),
870 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_CONVERT_ROAD
, STR_ROAD_TOOLBAR_TOOLTIP_CONVERT_TRAM
),
874 static WindowDesc
_build_tramway_desc(
875 WDP_ALIGN_TOOLBAR
, "toolbar_tramway", 0, 0,
876 WC_BUILD_TOOLBAR
, WC_NONE
,
878 _nested_build_tramway_widgets
, lengthof(_nested_build_tramway_widgets
),
879 &BuildRoadToolbarWindow::tram_hotkeys
883 * Open the build road toolbar window
885 * If the terraform toolbar is linked to the toolbar, that window is also opened.
887 * @return newly opened road toolbar, or nullptr if the toolbar could not be opened.
889 Window
*ShowBuildRoadToolbar(RoadType roadtype
)
891 if (!Company::IsValidID(_local_company
)) return nullptr;
892 if (!ValParamRoadType(roadtype
)) return nullptr;
894 CloseWindowByClass(WC_BUILD_TOOLBAR
);
895 _cur_roadtype
= roadtype
;
897 return AllocateWindowDescFront
<BuildRoadToolbarWindow
>(RoadTypeIsRoad(_cur_roadtype
) ? &_build_road_desc
: &_build_tramway_desc
, TRANSPORT_ROAD
);
900 static const NWidgetPart _nested_build_road_scen_widgets
[] = {
901 NWidget(NWID_HORIZONTAL
),
902 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
903 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_ROT_CAPTION
), SetDataTip(STR_WHITE_STRING
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
904 NWidget(WWT_STICKYBOX
, COLOUR_DARK_GREEN
),
906 NWidget(NWID_HORIZONTAL
),
907 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ROAD_X
),
908 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_X_DIR
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_SECTION
),
909 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ROAD_Y
),
910 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_Y_DIR
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_SECTION
),
911 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_AUTOROAD
),
912 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_AUTOROAD
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_AUTOROAD
),
913 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_DEMOLISH
),
914 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE
, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC
),
915 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, -1), SetMinimalSize(0, 22), SetFill(1, 1), EndContainer(),
916 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ONE_WAY
),
917 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_ONE_WAY
, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_ONE_WAY_ROAD
),
918 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUILD_BRIDGE
),
919 SetFill(0, 1), SetMinimalSize(43, 22), SetDataTip(SPR_IMG_BRIDGE
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_BRIDGE
),
920 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUILD_TUNNEL
),
921 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_TUNNEL
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_TUNNEL
),
922 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_REMOVE
),
923 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_REMOVE
, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_BUILD_REMOVE_FOR_ROAD
),
924 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_CONVERT_ROAD
),
925 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_CONVERT_ROAD
, STR_ROAD_TOOLBAR_TOOLTIP_CONVERT_ROAD
),
929 static WindowDesc
_build_road_scen_desc(
930 WDP_AUTO
, "toolbar_road_scen", 0, 0,
931 WC_SCEN_BUILD_TOOLBAR
, WC_NONE
,
933 _nested_build_road_scen_widgets
, lengthof(_nested_build_road_scen_widgets
),
934 &BuildRoadToolbarWindow::road_hotkeys
937 static const NWidgetPart _nested_build_tramway_scen_widgets
[] = {
938 NWidget(NWID_HORIZONTAL
),
939 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
940 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_ROT_CAPTION
), SetDataTip(STR_WHITE_STRING
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
941 NWidget(WWT_STICKYBOX
, COLOUR_DARK_GREEN
),
943 NWidget(NWID_HORIZONTAL
),
944 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ROAD_X
),
945 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRAMWAY_X_DIR
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_SECTION
),
946 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_ROAD_Y
),
947 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRAMWAY_Y_DIR
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_SECTION
),
948 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_AUTOROAD
),
949 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_AUTOTRAM
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_AUTOTRAM
),
950 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_DEMOLISH
),
951 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE
, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC
),
952 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, -1), SetMinimalSize(0, 22), SetFill(1, 1), EndContainer(),
953 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUILD_BRIDGE
),
954 SetFill(0, 1), SetMinimalSize(43, 22), SetDataTip(SPR_IMG_BRIDGE
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_BRIDGE
),
955 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_BUILD_TUNNEL
),
956 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_TUNNEL
, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_TUNNEL
),
957 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_REMOVE
),
958 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_REMOVE
, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_BUILD_REMOVE_FOR_TRAMWAYS
),
959 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_ROT_CONVERT_ROAD
),
960 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_CONVERT_ROAD
, STR_ROAD_TOOLBAR_TOOLTIP_CONVERT_TRAM
),
964 static WindowDesc
_build_tramway_scen_desc(
965 WDP_AUTO
, "toolbar_tram_scen", 0, 0,
966 WC_SCEN_BUILD_TOOLBAR
, WC_NONE
,
968 _nested_build_tramway_scen_widgets
, lengthof(_nested_build_tramway_scen_widgets
),
969 &BuildRoadToolbarWindow::tram_hotkeys
973 * Show the road building toolbar in the scenario editor.
974 * @return The just opened toolbar, or \c nullptr if the toolbar was already open.
976 Window
*ShowBuildRoadScenToolbar(RoadType roadtype
)
978 CloseWindowById(WC_SCEN_BUILD_TOOLBAR
, TRANSPORT_ROAD
);
979 _cur_roadtype
= roadtype
;
981 return AllocateWindowDescFront
<BuildRoadToolbarWindow
>(RoadTypeIsRoad(_cur_roadtype
) ? &_build_road_scen_desc
: &_build_tramway_scen_desc
, TRANSPORT_ROAD
);
984 struct BuildRoadDepotWindow
: public PickerWindowBase
{
985 BuildRoadDepotWindow(WindowDesc
*desc
, Window
*parent
) : PickerWindowBase(desc
, parent
)
987 this->CreateNestedTree();
989 this->LowerWidget(_road_depot_orientation
+ WID_BROD_DEPOT_NE
);
990 if (RoadTypeIsTram(_cur_roadtype
)) {
991 this->GetWidget
<NWidgetCore
>(WID_BROD_CAPTION
)->widget_data
= STR_BUILD_DEPOT_TRAM_ORIENTATION_CAPTION
;
992 for (int i
= WID_BROD_DEPOT_NE
; i
<= WID_BROD_DEPOT_NW
; i
++) this->GetWidget
<NWidgetCore
>(i
)->tool_tip
= STR_BUILD_DEPOT_TRAM_ORIENTATION_SELECT_TOOLTIP
;
995 this->FinishInitNested(TRANSPORT_ROAD
);
998 void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
) override
1000 if (!IsInsideMM(widget
, WID_BROD_DEPOT_NE
, WID_BROD_DEPOT_NW
+ 1)) return;
1002 size
->width
= ScaleGUITrad(64) + 2;
1003 size
->height
= ScaleGUITrad(48) + 2;
1006 void DrawWidget(const Rect
&r
, int widget
) const override
1008 if (!IsInsideMM(widget
, WID_BROD_DEPOT_NE
, WID_BROD_DEPOT_NW
+ 1)) return;
1010 DrawRoadDepotSprite(r
.left
+ 1 + ScaleGUITrad(31), r
.bottom
- ScaleGUITrad(31), (DiagDirection
)(widget
- WID_BROD_DEPOT_NE
+ DIAGDIR_NE
), _cur_roadtype
);
1013 void OnClick(Point pt
, int widget
, int click_count
) override
1016 case WID_BROD_DEPOT_NW
:
1017 case WID_BROD_DEPOT_NE
:
1018 case WID_BROD_DEPOT_SW
:
1019 case WID_BROD_DEPOT_SE
:
1020 this->RaiseWidget(_road_depot_orientation
+ WID_BROD_DEPOT_NE
);
1021 _road_depot_orientation
= (DiagDirection
)(widget
- WID_BROD_DEPOT_NE
);
1022 this->LowerWidget(_road_depot_orientation
+ WID_BROD_DEPOT_NE
);
1023 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1033 static const NWidgetPart _nested_build_road_depot_widgets
[] = {
1034 NWidget(NWID_HORIZONTAL
),
1035 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
1036 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_BROD_CAPTION
), SetDataTip(STR_BUILD_DEPOT_ROAD_ORIENTATION_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
1038 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
),
1039 NWidget(NWID_SPACER
), SetMinimalSize(0, 3),
1040 NWidget(NWID_HORIZONTAL_LTR
),
1041 NWidget(NWID_SPACER
), SetMinimalSize(3, 0), SetFill(1, 0),
1042 NWidget(NWID_VERTICAL
),
1043 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROD_DEPOT_NW
), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_ROAD_ORIENTATION_SELECT_TOOLTIP
),
1045 NWidget(NWID_SPACER
), SetMinimalSize(0, 2),
1046 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROD_DEPOT_SW
), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_ROAD_ORIENTATION_SELECT_TOOLTIP
),
1049 NWidget(NWID_SPACER
), SetMinimalSize(2, 0),
1050 NWidget(NWID_VERTICAL
),
1051 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROD_DEPOT_NE
), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_ROAD_ORIENTATION_SELECT_TOOLTIP
),
1053 NWidget(NWID_SPACER
), SetMinimalSize(0, 2),
1054 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROD_DEPOT_SE
), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_ROAD_ORIENTATION_SELECT_TOOLTIP
),
1057 NWidget(NWID_SPACER
), SetMinimalSize(3, 0), SetFill(1, 0),
1059 NWidget(NWID_SPACER
), SetMinimalSize(0, 3),
1063 static WindowDesc
_build_road_depot_desc(
1064 WDP_AUTO
, nullptr, 0, 0,
1065 WC_BUILD_DEPOT
, WC_BUILD_TOOLBAR
,
1067 _nested_build_road_depot_widgets
, lengthof(_nested_build_road_depot_widgets
)
1070 static void ShowRoadDepotPicker(Window
*parent
)
1072 new BuildRoadDepotWindow(&_build_road_depot_desc
, parent
);
1075 struct BuildRoadStationWindow
: public PickerWindowBase
{
1076 BuildRoadStationWindow(WindowDesc
*desc
, Window
*parent
, RoadStopType rs
) : PickerWindowBase(desc
, parent
)
1078 this->CreateNestedTree();
1080 /* Trams don't have non-drivethrough stations */
1081 if (RoadTypeIsTram(_cur_roadtype
) && _road_station_picker_orientation
< DIAGDIR_END
) {
1082 _road_station_picker_orientation
= DIAGDIR_END
;
1084 const RoadTypeInfo
*rti
= GetRoadTypeInfo(_cur_roadtype
);
1085 this->GetWidget
<NWidgetCore
>(WID_BROS_CAPTION
)->widget_data
= rti
->strings
.picker_title
[rs
];
1087 for (uint i
= RoadTypeIsTram(_cur_roadtype
) ? WID_BROS_STATION_X
: WID_BROS_STATION_NE
; i
< WID_BROS_LT_OFF
; i
++) {
1088 this->GetWidget
<NWidgetCore
>(i
)->tool_tip
= rti
->strings
.picker_tooltip
[rs
];
1091 this->LowerWidget(_road_station_picker_orientation
+ WID_BROS_STATION_NE
);
1092 this->LowerWidget(_settings_client
.gui
.station_show_coverage
+ WID_BROS_LT_OFF
);
1094 this->FinishInitNested(TRANSPORT_ROAD
);
1096 this->window_class
= (rs
== ROADSTOP_BUS
) ? WC_BUS_STATION
: WC_TRUCK_STATION
;
1099 void Close() override
1101 CloseWindowById(WC_SELECT_STATION
, 0);
1102 this->PickerWindowBase::Close();
1105 void OnPaint() override
1107 this->DrawWidgets();
1109 int rad
= _settings_game
.station
.modified_catchment
? ((this->window_class
== WC_BUS_STATION
) ? CA_BUS
: CA_TRUCK
) : CA_UNMODIFIED
;
1110 if (_settings_client
.gui
.station_show_coverage
) {
1111 SetTileSelectBigSize(-rad
, -rad
, 2 * rad
, 2 * rad
);
1113 SetTileSelectSize(1, 1);
1116 /* 'Accepts' and 'Supplies' texts. */
1117 StationCoverageType sct
= (this->window_class
== WC_BUS_STATION
) ? SCT_PASSENGERS_ONLY
: SCT_NON_PASSENGERS_ONLY
;
1118 int top
= this->GetWidget
<NWidgetBase
>(WID_BROS_LT_ON
)->pos_y
+ this->GetWidget
<NWidgetBase
>(WID_BROS_LT_ON
)->current_y
+ WD_PAR_VSEP_NORMAL
;
1119 NWidgetBase
*back_nwi
= this->GetWidget
<NWidgetBase
>(WID_BROS_BACKGROUND
);
1120 int right
= back_nwi
->pos_x
+ back_nwi
->current_x
;
1121 int bottom
= back_nwi
->pos_y
+ back_nwi
->current_y
;
1122 top
= DrawStationCoverageAreaText(back_nwi
->pos_x
+ WD_FRAMERECT_LEFT
, right
- WD_FRAMERECT_RIGHT
, top
, sct
, rad
, false) + WD_PAR_VSEP_NORMAL
;
1123 top
= DrawStationCoverageAreaText(back_nwi
->pos_x
+ WD_FRAMERECT_LEFT
, right
- WD_FRAMERECT_RIGHT
, top
, sct
, rad
, true) + WD_PAR_VSEP_NORMAL
;
1124 /* Resize background if the window is too small.
1125 * Never make the window smaller to avoid oscillating if the size change affects the acceptance.
1126 * (This is the case, if making the window bigger moves the mouse into the window.) */
1128 ResizeWindow(this, 0, top
- bottom
, false);
1132 void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
) override
1134 if (!IsInsideMM(widget
, WID_BROS_STATION_NE
, WID_BROS_STATION_Y
+ 1)) return;
1136 size
->width
= ScaleGUITrad(64) + 2;
1137 size
->height
= ScaleGUITrad(48) + 2;
1140 void DrawWidget(const Rect
&r
, int widget
) const override
1142 if (!IsInsideMM(widget
, WID_BROS_STATION_NE
, WID_BROS_STATION_Y
+ 1)) return;
1144 StationType st
= (this->window_class
== WC_BUS_STATION
) ? STATION_BUS
: STATION_TRUCK
;
1145 StationPickerDrawSprite(r
.left
+ 1 + ScaleGUITrad(31), r
.bottom
- ScaleGUITrad(31), st
, INVALID_RAILTYPE
, _cur_roadtype
, widget
- WID_BROS_STATION_NE
);
1148 void OnClick(Point pt
, int widget
, int click_count
) override
1151 case WID_BROS_STATION_NE
:
1152 case WID_BROS_STATION_SE
:
1153 case WID_BROS_STATION_SW
:
1154 case WID_BROS_STATION_NW
:
1155 case WID_BROS_STATION_X
:
1156 case WID_BROS_STATION_Y
:
1157 this->RaiseWidget(_road_station_picker_orientation
+ WID_BROS_STATION_NE
);
1158 _road_station_picker_orientation
= (DiagDirection
)(widget
- WID_BROS_STATION_NE
);
1159 this->LowerWidget(_road_station_picker_orientation
+ WID_BROS_STATION_NE
);
1160 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1162 CloseWindowById(WC_SELECT_STATION
, 0);
1165 case WID_BROS_LT_OFF
:
1166 case WID_BROS_LT_ON
:
1167 this->RaiseWidget(_settings_client
.gui
.station_show_coverage
+ WID_BROS_LT_OFF
);
1168 _settings_client
.gui
.station_show_coverage
= (widget
!= WID_BROS_LT_OFF
);
1169 this->LowerWidget(_settings_client
.gui
.station_show_coverage
+ WID_BROS_LT_OFF
);
1170 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1172 SetViewportCatchmentStation(nullptr, true);
1180 void OnRealtimeTick(uint delta_ms
) override
1182 CheckRedrawStationCoverage(this);
1186 /** Widget definition of the build road station window */
1187 static const NWidgetPart _nested_road_station_picker_widgets
[] = {
1188 NWidget(NWID_HORIZONTAL
),
1189 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
1190 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_BROS_CAPTION
),
1192 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BROS_BACKGROUND
),
1193 NWidget(NWID_SPACER
), SetMinimalSize(0, 3),
1194 NWidget(NWID_HORIZONTAL
), SetPIP(0, 2, 0),
1195 NWidget(NWID_SPACER
), SetFill(1, 0),
1196 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROS_STATION_NW
), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1197 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROS_STATION_NE
), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1198 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROS_STATION_X
), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1199 NWidget(NWID_SPACER
), SetFill(1, 0),
1201 NWidget(NWID_SPACER
), SetMinimalSize(0, 2),
1202 NWidget(NWID_HORIZONTAL
), SetPIP(0, 2, 0),
1203 NWidget(NWID_SPACER
), SetFill(1, 0),
1204 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROS_STATION_SW
), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1205 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROS_STATION_SE
), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1206 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROS_STATION_Y
), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1207 NWidget(NWID_SPACER
), SetFill(1, 0),
1209 NWidget(NWID_SPACER
), SetMinimalSize(0, 1),
1210 NWidget(NWID_HORIZONTAL
), SetPIP(2, 0, 2),
1211 NWidget(WWT_LABEL
, COLOUR_DARK_GREEN
, WID_BROS_INFO
), SetMinimalSize(140, 14), SetDataTip(STR_STATION_BUILD_COVERAGE_AREA_TITLE
, STR_NULL
),
1212 NWidget(NWID_SPACER
), SetFill(1, 0),
1214 NWidget(NWID_HORIZONTAL
), SetPIP(2, 0, 2),
1215 NWidget(NWID_SPACER
), SetFill(1, 0),
1216 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BROS_LT_OFF
), SetMinimalSize(60, 12),
1217 SetDataTip(STR_STATION_BUILD_COVERAGE_OFF
, STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP
),
1218 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BROS_LT_ON
), SetMinimalSize(60, 12),
1219 SetDataTip(STR_STATION_BUILD_COVERAGE_ON
, STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP
),
1220 NWidget(NWID_SPACER
), SetFill(1, 0),
1222 NWidget(NWID_SPACER
), SetMinimalSize(0, 10), SetResize(0, 1),
1226 static WindowDesc
_road_station_picker_desc(
1227 WDP_AUTO
, nullptr, 0, 0,
1228 WC_BUS_STATION
, WC_BUILD_TOOLBAR
,
1230 _nested_road_station_picker_widgets
, lengthof(_nested_road_station_picker_widgets
)
1233 /** Widget definition of the build tram station window */
1234 static const NWidgetPart _nested_tram_station_picker_widgets
[] = {
1235 NWidget(NWID_HORIZONTAL
),
1236 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
1237 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_BROS_CAPTION
),
1239 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BROS_BACKGROUND
),
1240 NWidget(NWID_SPACER
), SetMinimalSize(0, 3),
1241 NWidget(NWID_HORIZONTAL
), SetPIP(0, 2, 0),
1242 NWidget(NWID_SPACER
), SetFill(1, 0),
1243 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROS_STATION_X
), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1244 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BROS_STATION_Y
), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1245 NWidget(NWID_SPACER
), SetFill(1, 0),
1247 NWidget(NWID_SPACER
), SetMinimalSize(0, 1),
1248 NWidget(NWID_HORIZONTAL
), SetPIP(2, 0, 2),
1249 NWidget(WWT_LABEL
, COLOUR_DARK_GREEN
, WID_BROS_INFO
), SetMinimalSize(140, 14), SetDataTip(STR_STATION_BUILD_COVERAGE_AREA_TITLE
, STR_NULL
),
1250 NWidget(NWID_SPACER
), SetFill(1, 0),
1252 NWidget(NWID_HORIZONTAL
), SetPIP(2, 0, 2),
1253 NWidget(NWID_SPACER
), SetFill(1, 0),
1254 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BROS_LT_OFF
), SetMinimalSize(60, 12),
1255 SetDataTip(STR_STATION_BUILD_COVERAGE_OFF
, STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP
),
1256 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BROS_LT_ON
), SetMinimalSize(60, 12),
1257 SetDataTip(STR_STATION_BUILD_COVERAGE_ON
, STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP
),
1258 NWidget(NWID_SPACER
), SetFill(1, 0),
1260 NWidget(NWID_SPACER
), SetMinimalSize(0, 10), SetResize(0, 1),
1264 static WindowDesc
_tram_station_picker_desc(
1265 WDP_AUTO
, nullptr, 0, 0,
1266 WC_BUS_STATION
, WC_BUILD_TOOLBAR
,
1268 _nested_tram_station_picker_widgets
, lengthof(_nested_tram_station_picker_widgets
)
1271 static void ShowRVStationPicker(Window
*parent
, RoadStopType rs
)
1273 new BuildRoadStationWindow(RoadTypeIsRoad(_cur_roadtype
) ? &_road_station_picker_desc
: &_tram_station_picker_desc
, parent
, rs
);
1276 void InitializeRoadGui()
1278 _road_depot_orientation
= DIAGDIR_NW
;
1279 _road_station_picker_orientation
= DIAGDIR_NW
;
1283 * I really don't know why rail_gui.cpp has this too, shouldn't be included in the other one?
1285 void InitializeRoadGUI()
1287 BuildRoadToolbarWindow
*w
= dynamic_cast<BuildRoadToolbarWindow
*>(FindWindowById(WC_BUILD_TOOLBAR
, TRANSPORT_ROAD
));
1288 if (w
!= nullptr) w
->ModifyRoadType(_cur_roadtype
);
1291 DropDownList
GetRoadTypeDropDownList(RoadTramTypes rtts
, bool for_replacement
, bool all_option
)
1293 RoadTypes used_roadtypes
;
1294 RoadTypes avail_roadtypes
;
1296 const Company
*c
= Company::Get(_local_company
);
1298 /* Find the used roadtypes. */
1299 if (for_replacement
) {
1300 avail_roadtypes
= GetCompanyRoadTypes(c
->index
, false);
1301 used_roadtypes
= GetRoadTypes(false);
1303 avail_roadtypes
= c
->avail_roadtypes
;
1304 used_roadtypes
= GetRoadTypes(true);
1307 /* Filter listed road types */
1308 if (!HasBit(rtts
, RTT_ROAD
)) used_roadtypes
&= _roadtypes_type
;
1309 if (!HasBit(rtts
, RTT_TRAM
)) used_roadtypes
&= ~_roadtypes_type
;
1314 list
.emplace_back(new DropDownListStringItem(STR_REPLACE_ALL_ROADTYPE
, INVALID_ROADTYPE
, false));
1317 Dimension d
= { 0, 0 };
1318 /* Get largest icon size, to ensure text is aligned on each menu item. */
1319 if (!for_replacement
) {
1320 for (const auto &rt
: _sorted_roadtypes
) {
1321 if (!HasBit(used_roadtypes
, rt
)) continue;
1322 const RoadTypeInfo
*rti
= GetRoadTypeInfo(rt
);
1323 d
= maxdim(d
, GetSpriteSize(rti
->gui_sprites
.build_x_road
));
1327 for (const auto &rt
: _sorted_roadtypes
) {
1328 /* If it's not used ever, don't show it to the user. */
1329 if (!HasBit(used_roadtypes
, rt
)) continue;
1331 const RoadTypeInfo
*rti
= GetRoadTypeInfo(rt
);
1333 DropDownListParamStringItem
*item
;
1334 if (for_replacement
) {
1335 item
= new DropDownListParamStringItem(rti
->strings
.replace_text
, rt
, !HasBit(avail_roadtypes
, rt
));
1337 StringID str
= rti
->max_speed
> 0 ? STR_TOOLBAR_RAILTYPE_VELOCITY
: STR_JUST_STRING
;
1338 DropDownListIconItem
*iconitem
= new DropDownListIconItem(rti
->gui_sprites
.build_x_road
, PAL_NONE
, str
, rt
, !HasBit(avail_roadtypes
, rt
));
1339 iconitem
->SetDimension(d
);
1342 item
->SetParam(0, rti
->strings
.menu_text
);
1343 item
->SetParam(1, rti
->max_speed
/ 2);
1344 list
.emplace_back(item
);
1347 if (list
.size() == 0) {
1348 /* Empty dropdowns are not allowed */
1349 list
.emplace_back(new DropDownListStringItem(STR_NONE
, INVALID_ROADTYPE
, true));
1355 DropDownList
GetScenRoadTypeDropDownList(RoadTramTypes rtts
)
1357 RoadTypes avail_roadtypes
= GetRoadTypes(false);
1358 avail_roadtypes
= AddDateIntroducedRoadTypes(avail_roadtypes
, _date
);
1359 RoadTypes used_roadtypes
= GetRoadTypes(true);
1361 /* Filter listed road types */
1362 if (!HasBit(rtts
, RTT_ROAD
)) used_roadtypes
&= _roadtypes_type
;
1363 if (!HasBit(rtts
, RTT_TRAM
)) used_roadtypes
&= ~_roadtypes_type
;
1367 /* If it's not used ever, don't show it to the user. */
1368 Dimension d
= { 0, 0 };
1369 for (const auto &rt
: _sorted_roadtypes
) {
1370 if (!HasBit(used_roadtypes
, rt
)) continue;
1371 const RoadTypeInfo
*rti
= GetRoadTypeInfo(rt
);
1372 d
= maxdim(d
, GetSpriteSize(rti
->gui_sprites
.build_x_road
));
1374 for (const auto &rt
: _sorted_roadtypes
) {
1375 if (!HasBit(used_roadtypes
, rt
)) continue;
1377 const RoadTypeInfo
*rti
= GetRoadTypeInfo(rt
);
1379 StringID str
= rti
->max_speed
> 0 ? STR_TOOLBAR_RAILTYPE_VELOCITY
: STR_JUST_STRING
;
1380 DropDownListIconItem
*item
= new DropDownListIconItem(rti
->gui_sprites
.build_x_road
, PAL_NONE
, str
, rt
, !HasBit(avail_roadtypes
, rt
));
1381 item
->SetDimension(d
);
1382 item
->SetParam(0, rti
->strings
.menu_text
);
1383 item
->SetParam(1, rti
->max_speed
/ 2);
1384 list
.emplace_back(item
);
1387 if (list
.size() == 0) {
1388 /* Empty dropdowns are not allowed */
1389 list
.emplace_back(new DropDownListStringItem(STR_NONE
, -1, true));