4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
10 /** @file rail_gui.cpp %File for dealing with rail construction user interface */
14 #include "window_gui.h"
15 #include "station_gui.h"
16 #include "terraform_gui.h"
17 #include "viewport_func.h"
18 #include "command_func.h"
19 #include "waypoint_func.h"
20 #include "newgrf_station.h"
21 #include "company_base.h"
22 #include "strings_func.h"
23 #include "window_func.h"
24 #include "date_func.h"
25 #include "sound_func.h"
26 #include "company_func.h"
27 #include "widgets/dropdown_type.h"
28 #include "tunnelbridge.h"
29 #include "tilehighlight_func.h"
30 #include "spritecache.h"
31 #include "core/geometry_func.hpp"
33 #include "engine_base.h"
34 #include "vehicle_func.h"
35 #include "zoom_func.h"
38 #include "station_map.h"
39 #include "tunnelbridge_map.h"
41 #include "widgets/rail_widget.h"
43 #include "safeguards.h"
46 static RailType _cur_railtype
; ///< Rail type of the current build-rail toolbar.
47 static bool _remove_button_clicked
; ///< Flag whether 'remove' toggle-button is currently enabled
48 static DiagDirection _build_depot_direction
; ///< Currently selected depot direction
49 static byte _waypoint_count
= 1; ///< Number of waypoint types
50 static byte _cur_waypoint_type
; ///< Currently selected waypoint type
51 static bool _convert_signal_button
; ///< convert signal button in the signal GUI pressed
52 static SignalVariant _cur_signal_variant
; ///< set the signal variant (for signal GUI)
53 static SignalType _cur_signal_type
; ///< set the signal type (for signal GUI)
55 /* Map the setting: default_signal_type to the corresponding signal type */
56 static const SignalType _default_signal_type
[] = {SIGTYPE_NORMAL
, SIGTYPE_PBS
, SIGTYPE_PBS_ONEWAY
};
58 struct RailStationGUISettings
{
59 Axis orientation
; ///< Currently selected rail station orientation
61 bool newstations
; ///< Are custom station definitions available?
62 StationClassID station_class
; ///< Currently selected custom station class (if newstations is \c true )
63 byte station_type
; ///< %Station type within the currently selected custom station class (if newstations is \c true )
64 byte station_count
; ///< Number of custom stations (if newstations is \c true )
66 static RailStationGUISettings _railstation
; ///< Settings of the station builder GUI
69 static void HandleStationPlacement(TileIndex start
, TileIndex end
);
70 static void ShowBuildTrainDepotPicker(Window
*parent
);
71 static void ShowBuildWaypointPicker(Window
*parent
);
72 static void ShowStationBuilder(Window
*parent
);
73 static void ShowSignalBuilder(Window
*parent
);
76 * Check whether a station type can be build.
77 * @return true if building is allowed.
79 static bool IsStationAvailable(const StationSpec
*statspec
)
81 if (statspec
== NULL
|| !HasBit(statspec
->callback_mask
, CBM_STATION_AVAIL
)) return true;
83 uint16 cb_res
= GetStationCallback(CBID_STATION_AVAILABILITY
, 0, 0, statspec
, NULL
, INVALID_TILE
);
84 if (cb_res
== CALLBACK_FAILED
) return true;
86 return Convert8bitBooleanCallback(statspec
->grf_prop
.grffile
, CBID_STATION_AVAILABILITY
, cb_res
);
89 void CcPlaySound_SPLAT_RAIL(const CommandCost
&result
, TileIndex tile
, uint32 p1
, uint32 p2
)
91 if (result
.Succeeded() && _settings_client
.sound
.confirm
) SndPlayTileFx(SND_20_SPLAT_RAIL
, tile
);
94 static void GenericPlaceRail(TileIndex tile
, int cmd
)
96 DoCommandP(tile
, _cur_railtype
, cmd
,
97 _remove_button_clicked
?
98 CMD_REMOVE_SINGLE_RAIL
| CMD_MSG(STR_ERROR_CAN_T_REMOVE_RAILROAD_TRACK
) :
99 CMD_BUILD_SINGLE_RAIL
| CMD_MSG(STR_ERROR_CAN_T_BUILD_RAILROAD_TRACK
),
100 CcPlaySound_SPLAT_RAIL
);
104 * Try to add an additional rail-track at the entrance of a depot
105 * @param tile Tile to use for adding the rail-track
106 * @param dir Direction to check for already present tracks
107 * @param track Track to add
110 static void PlaceExtraDepotRail(TileIndex tile
, DiagDirection dir
, Track track
)
112 if (GetRailTileType(tile
) != RAIL_TILE_NORMAL
) return;
113 if ((GetTrackBits(tile
) & DiagdirReachesTracks(dir
)) == 0) return;
115 DoCommandP(tile
, _cur_railtype
, track
, CMD_BUILD_SINGLE_RAIL
);
118 /** Additional pieces of track to add at the entrance of a depot. */
119 static const Track _place_depot_extra_track
[12] = {
120 TRACK_LEFT
, TRACK_UPPER
, TRACK_UPPER
, TRACK_RIGHT
, // First additional track for directions 0..3
121 TRACK_X
, TRACK_Y
, TRACK_X
, TRACK_Y
, // Second additional track
122 TRACK_LOWER
, TRACK_LEFT
, TRACK_RIGHT
, TRACK_LOWER
, // Third additional track
125 /** Direction to check for existing track pieces. */
126 static const DiagDirection _place_depot_extra_dir
[12] = {
127 DIAGDIR_SE
, DIAGDIR_SW
, DIAGDIR_SE
, DIAGDIR_SW
,
128 DIAGDIR_SW
, DIAGDIR_NW
, DIAGDIR_NE
, DIAGDIR_SE
,
129 DIAGDIR_NW
, DIAGDIR_NE
, DIAGDIR_NW
, DIAGDIR_NE
,
132 void CcRailDepot(const CommandCost
&result
, TileIndex tile
, uint32 p1
, uint32 p2
)
134 if (result
.Failed()) return;
136 DiagDirection dir
= (DiagDirection
)p2
;
138 if (_settings_client
.sound
.confirm
) SndPlayTileFx(SND_20_SPLAT_RAIL
, tile
);
139 if (!_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
141 tile
+= TileOffsByDiagDir(dir
);
143 if (IsTileType(tile
, MP_RAILWAY
)) {
144 PlaceExtraDepotRail(tile
, _place_depot_extra_dir
[dir
], _place_depot_extra_track
[dir
]);
145 PlaceExtraDepotRail(tile
, _place_depot_extra_dir
[dir
+ 4], _place_depot_extra_track
[dir
+ 4]);
146 PlaceExtraDepotRail(tile
, _place_depot_extra_dir
[dir
+ 8], _place_depot_extra_track
[dir
+ 8]);
151 * Place a rail waypoint.
152 * @param tile Position to start dragging a waypoint.
154 static void PlaceRail_Waypoint(TileIndex tile
)
156 if (_remove_button_clicked
) {
157 VpStartPlaceSizing(tile
, VPM_X_AND_Y
, DDSP_REMOVE_STATION
);
161 Axis axis
= GetAxisForNewWaypoint(tile
);
162 if (IsValidAxis(axis
)) {
163 /* Valid tile for waypoints */
164 VpStartPlaceSizing(tile
, axis
== AXIS_X
? VPM_X_LIMITED
: VPM_Y_LIMITED
, DDSP_BUILD_STATION
);
165 VpSetPlaceSizingLimit(_settings_game
.station
.station_spread
);
167 /* Tile where we can't build rail waypoints. This is always going to fail,
168 * but provides the user with a proper error message. */
169 DoCommandP(tile
, 1 << 8 | 1 << 16, STAT_CLASS_WAYP
| INVALID_STATION
<< 16, CMD_BUILD_RAIL_WAYPOINT
| CMD_MSG(STR_ERROR_CAN_T_BUILD_TRAIN_WAYPOINT
));
173 void CcStation(const CommandCost
&result
, TileIndex tile
, uint32 p1
, uint32 p2
)
175 if (result
.Failed()) return;
177 if (_settings_client
.sound
.confirm
) SndPlayTileFx(SND_20_SPLAT_RAIL
, tile
);
178 /* Only close the station builder window if the default station and non persistent building is chosen. */
179 if (_railstation
.station_class
== STAT_CLASS_DFLT
&& _railstation
.station_type
== 0 && !_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
183 * Place a rail station.
184 * @param tile Position to place or start dragging a station.
186 static void PlaceRail_Station(TileIndex tile
)
188 if (_remove_button_clicked
) {
189 VpStartPlaceSizing(tile
, VPM_X_AND_Y_LIMITED
, DDSP_REMOVE_STATION
);
190 VpSetPlaceSizingLimit(-1);
191 } else if (_settings_client
.gui
.station_dragdrop
) {
192 VpStartPlaceSizing(tile
, VPM_X_AND_Y_LIMITED
, DDSP_BUILD_STATION
);
193 VpSetPlaceSizingLimit(_settings_game
.station
.station_spread
);
195 uint32 p1
= _cur_railtype
| _railstation
.orientation
<< 4 | _settings_client
.gui
.station_numtracks
<< 8 | _settings_client
.gui
.station_platlength
<< 16 | _ctrl_pressed
<< 24;
196 uint32 p2
= _railstation
.station_class
| _railstation
.station_type
<< 8 | INVALID_STATION
<< 16;
198 int w
= _settings_client
.gui
.station_numtracks
;
199 int h
= _settings_client
.gui
.station_platlength
;
200 if (!_railstation
.orientation
) Swap(w
, h
);
202 CommandContainer cmdcont
= { tile
, p1
, p2
, CMD_BUILD_RAIL_STATION
| CMD_MSG(STR_ERROR_CAN_T_BUILD_RAILROAD_STATION
), CcStation
, "" };
203 ShowSelectStationIfNeeded(cmdcont
, TileArea(tile
, w
, h
));
208 * Build a new signal or edit/remove a present signal, use CmdBuildSingleSignal() or CmdRemoveSingleSignal() in rail_cmd.cpp
210 * @param tile The tile where the signal will build or edit
212 static void GenericPlaceSignals(TileIndex tile
)
214 TrackBits trackbits
= TrackStatusToTrackBits(GetTileTrackStatus(tile
, TRANSPORT_RAIL
, 0));
216 if (trackbits
& TRACK_BIT_VERT
) { // N-S direction
217 trackbits
= (_tile_fract_coords
.x
<= _tile_fract_coords
.y
) ? TRACK_BIT_RIGHT
: TRACK_BIT_LEFT
;
220 if (trackbits
& TRACK_BIT_HORZ
) { // E-W direction
221 trackbits
= (_tile_fract_coords
.x
+ _tile_fract_coords
.y
<= 15) ? TRACK_BIT_UPPER
: TRACK_BIT_LOWER
;
224 Track track
= FindFirstTrack(trackbits
);
226 if (_remove_button_clicked
) {
227 DoCommandP(tile
, track
, 0, CMD_REMOVE_SIGNALS
| CMD_MSG(STR_ERROR_CAN_T_REMOVE_SIGNALS_FROM
), CcPlaySound_SPLAT_RAIL
);
229 const Window
*w
= FindWindowById(WC_BUILD_SIGNAL
, 0);
231 /* Map the setting cycle_signal_types to the lower and upper allowed signal type. */
232 static const uint cycle_bounds
[] = {SIGTYPE_NORMAL
| (SIGTYPE_LAST_NOPBS
<< 3), SIGTYPE_PBS
| (SIGTYPE_LAST
<< 3), SIGTYPE_NORMAL
| (SIGTYPE_LAST
<< 3)};
234 /* various bitstuffed elements for CmdBuildSingleSignal() */
238 /* signal GUI is used */
239 SB(p1
, 3, 1, _ctrl_pressed
);
240 SB(p1
, 4, 1, _cur_signal_variant
);
241 SB(p1
, 5, 3, _cur_signal_type
);
242 SB(p1
, 8, 1, _convert_signal_button
);
243 SB(p1
, 9, 6, cycle_bounds
[_settings_client
.gui
.cycle_signal_types
]);
245 SB(p1
, 3, 1, _ctrl_pressed
);
246 SB(p1
, 4, 1, (_cur_year
< _settings_client
.gui
.semaphore_build_before
? SIG_SEMAPHORE
: SIG_ELECTRIC
));
247 SB(p1
, 5, 3, _default_signal_type
[_settings_client
.gui
.default_signal_type
]);
249 SB(p1
, 9, 6, cycle_bounds
[_settings_client
.gui
.cycle_signal_types
]);
252 DoCommandP(tile
, p1
, 0, CMD_BUILD_SIGNALS
|
253 CMD_MSG((w
!= NULL
&& _convert_signal_button
) ? STR_ERROR_SIGNAL_CAN_T_CONVERT_SIGNALS_HERE
: STR_ERROR_CAN_T_BUILD_SIGNALS_HERE
),
254 CcPlaySound_SPLAT_RAIL
);
259 * Start placing a rail bridge.
260 * @param tile Position of the first tile of the bridge.
261 * @param w Rail toolbar window.
263 static void PlaceRail_Bridge(TileIndex tile
, Window
*w
)
265 if (IsBridgeTile(tile
)) {
266 TileIndex other_tile
= GetOtherTunnelBridgeEnd(tile
);
268 w
->OnPlaceMouseUp(VPM_X_OR_Y
, DDSP_BUILD_BRIDGE
, pt
, other_tile
, tile
);
270 VpStartPlaceSizing(tile
, VPM_X_OR_Y
, DDSP_BUILD_BRIDGE
);
274 /** Command callback for building a tunnel */
275 void CcBuildRailTunnel(const CommandCost
&result
, TileIndex tile
, uint32 p1
, uint32 p2
)
277 if (result
.Succeeded()) {
278 if (_settings_client
.sound
.confirm
) SndPlayTileFx(SND_20_SPLAT_RAIL
, tile
);
279 if (!_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
281 SetRedErrorSquare(_build_tunnel_endtile
);
286 * Toggles state of the Remove button of Build rail toolbar
287 * @param w window the button belongs to
289 static void ToggleRailButton_Remove(Window
*w
)
291 DeleteWindowById(WC_SELECT_STATION
, 0);
292 w
->ToggleWidgetLoweredState(WID_RAT_REMOVE
);
293 w
->SetWidgetDirty(WID_RAT_REMOVE
);
294 _remove_button_clicked
= w
->IsWidgetLowered(WID_RAT_REMOVE
);
295 SetSelectionRed(_remove_button_clicked
);
299 * Updates the Remove button because of Ctrl state change
300 * @param w window the button belongs to
301 * @return true iff the remove button was changed
303 static bool RailToolbar_CtrlChanged(Window
*w
)
305 if (w
->IsWidgetDisabled(WID_RAT_REMOVE
)) return false;
307 /* allow ctrl to switch remove mode only for these widgets */
308 for (uint i
= WID_RAT_BUILD_NS
; i
<= WID_RAT_BUILD_STATION
; i
++) {
309 if ((i
<= WID_RAT_AUTORAIL
|| i
>= WID_RAT_BUILD_WAYPOINT
) && w
->IsWidgetLowered(i
)) {
310 ToggleRailButton_Remove(w
);
320 * The "remove"-button click proc of the build-rail toolbar.
321 * @param w Build-rail toolbar window
322 * @see BuildRailToolbarWindow::OnClick()
324 static void BuildRailClick_Remove(Window
*w
)
326 if (w
->IsWidgetDisabled(WID_RAT_REMOVE
)) return;
327 ToggleRailButton_Remove(w
);
328 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
330 /* handle station builder */
331 if (w
->IsWidgetLowered(WID_RAT_BUILD_STATION
)) {
332 if (_remove_button_clicked
) {
333 /* starting drag & drop remove */
334 if (!_settings_client
.gui
.station_dragdrop
) {
335 SetTileSelectSize(1, 1);
337 VpSetPlaceSizingLimit(-1);
340 /* starting station build mode */
341 if (!_settings_client
.gui
.station_dragdrop
) {
342 int x
= _settings_client
.gui
.station_numtracks
;
343 int y
= _settings_client
.gui
.station_platlength
;
344 if (_railstation
.orientation
== 0) Swap(x
, y
);
345 SetTileSelectSize(x
, y
);
347 VpSetPlaceSizingLimit(_settings_game
.station
.station_spread
);
353 static void DoRailroadTrack(int mode
)
355 DoCommandP(TileVirtXY(_thd
.selstart
.x
, _thd
.selstart
.y
), TileVirtXY(_thd
.selend
.x
, _thd
.selend
.y
), _cur_railtype
| (mode
<< 4),
356 _remove_button_clicked
?
357 CMD_REMOVE_RAILROAD_TRACK
| CMD_MSG(STR_ERROR_CAN_T_REMOVE_RAILROAD_TRACK
) :
358 CMD_BUILD_RAILROAD_TRACK
| CMD_MSG(STR_ERROR_CAN_T_BUILD_RAILROAD_TRACK
),
359 CcPlaySound_SPLAT_RAIL
);
362 static void HandleAutodirPlacement()
364 int trackstat
= _thd
.drawstyle
& HT_DIR_MASK
; // 0..5
366 if (_thd
.drawstyle
& HT_RAIL
) { // one tile case
367 GenericPlaceRail(TileVirtXY(_thd
.selend
.x
, _thd
.selend
.y
), trackstat
);
371 DoRailroadTrack(trackstat
);
375 * Build new signals or remove signals or (if only one tile marked) edit a signal.
377 * If one tile marked abort and use GenericPlaceSignals()
378 * else use CmdBuildSingleSignal() or CmdRemoveSingleSignal() in rail_cmd.cpp to build many signals
380 static void HandleAutoSignalPlacement()
382 uint32 p2
= GB(_thd
.drawstyle
, 0, 3); // 0..5
384 if ((_thd
.drawstyle
& HT_DRAG_MASK
) == HT_RECT
) { // one tile case
385 GenericPlaceSignals(TileVirtXY(_thd
.selend
.x
, _thd
.selend
.y
));
389 const Window
*w
= FindWindowById(WC_BUILD_SIGNAL
, 0);
392 /* signal GUI is used */
394 SB(p2
, 4, 1, _cur_signal_variant
);
395 SB(p2
, 6, 1, _ctrl_pressed
);
396 SB(p2
, 7, 3, _cur_signal_type
);
397 SB(p2
, 24, 8, _settings_client
.gui
.drag_signals_density
);
398 SB(p2
, 10, 1, !_settings_client
.gui
.drag_signals_fixed_distance
);
401 SB(p2
, 4, 1, (_cur_year
< _settings_client
.gui
.semaphore_build_before
? SIG_SEMAPHORE
: SIG_ELECTRIC
));
402 SB(p2
, 6, 1, _ctrl_pressed
);
403 SB(p2
, 7, 3, _default_signal_type
[_settings_client
.gui
.default_signal_type
]);
404 SB(p2
, 24, 8, _settings_client
.gui
.drag_signals_density
);
405 SB(p2
, 10, 1, !_settings_client
.gui
.drag_signals_fixed_distance
);
408 /* _settings_client.gui.drag_signals_density is given as a parameter such that each user
409 * in a network game can specify his/her own signal density */
410 DoCommandP(TileVirtXY(_thd
.selstart
.x
, _thd
.selstart
.y
), TileVirtXY(_thd
.selend
.x
, _thd
.selend
.y
), p2
,
411 _remove_button_clicked
?
412 CMD_REMOVE_SIGNAL_TRACK
| CMD_MSG(STR_ERROR_CAN_T_REMOVE_SIGNALS_FROM
) :
413 CMD_BUILD_SIGNAL_TRACK
| CMD_MSG(STR_ERROR_CAN_T_BUILD_SIGNALS_HERE
),
414 CcPlaySound_SPLAT_RAIL
);
418 /** Rail toolbar management class. */
419 struct BuildRailToolbarWindow
: Window
{
420 RailType railtype
; ///< Rail type to build.
421 int last_user_action
; ///< Last started user action.
423 BuildRailToolbarWindow(WindowDesc
*desc
, RailType railtype
) : Window(desc
)
425 this->InitNested(TRANSPORT_RAIL
);
426 this->SetupRailToolbar(railtype
);
427 this->DisableWidget(WID_RAT_REMOVE
);
428 this->last_user_action
= WIDGET_LIST_END
;
430 if (_settings_client
.gui
.link_terraform_toolbar
) ShowTerraformToolbar(this);
433 ~BuildRailToolbarWindow()
435 if (_settings_client
.gui
.link_terraform_toolbar
) DeleteWindowById(WC_SCEN_LAND_GEN
, 0, false);
439 * Some data on this window has become invalid.
440 * @param data Information about the changed data.
441 * @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.
443 virtual void OnInvalidateData(int data
= 0, bool gui_scope
= true)
445 if (!gui_scope
) return;
447 if (!CanBuildVehicleInfrastructure(VEH_TRAIN
)) delete this;
451 * Configures the rail toolbar for railtype given
452 * @param railtype the railtype to display
454 void SetupRailToolbar(RailType railtype
)
456 this->railtype
= railtype
;
457 const RailtypeInfo
*rti
= GetRailTypeInfo(railtype
);
459 assert(railtype
< RAILTYPE_END
);
460 this->GetWidget
<NWidgetCore
>(WID_RAT_BUILD_NS
)->widget_data
= rti
->gui_sprites
.build_ns_rail
;
461 this->GetWidget
<NWidgetCore
>(WID_RAT_BUILD_X
)->widget_data
= rti
->gui_sprites
.build_x_rail
;
462 this->GetWidget
<NWidgetCore
>(WID_RAT_BUILD_EW
)->widget_data
= rti
->gui_sprites
.build_ew_rail
;
463 this->GetWidget
<NWidgetCore
>(WID_RAT_BUILD_Y
)->widget_data
= rti
->gui_sprites
.build_y_rail
;
464 this->GetWidget
<NWidgetCore
>(WID_RAT_AUTORAIL
)->widget_data
= rti
->gui_sprites
.auto_rail
;
465 this->GetWidget
<NWidgetCore
>(WID_RAT_BUILD_DEPOT
)->widget_data
= rti
->gui_sprites
.build_depot
;
466 this->GetWidget
<NWidgetCore
>(WID_RAT_CONVERT_RAIL
)->widget_data
= rti
->gui_sprites
.convert_rail
;
467 this->GetWidget
<NWidgetCore
>(WID_RAT_BUILD_TUNNEL
)->widget_data
= rti
->gui_sprites
.build_tunnel
;
471 * Switch to another rail type.
472 * @param railtype New rail type.
474 void ModifyRailType(RailType railtype
)
476 this->SetupRailToolbar(railtype
);
480 void UpdateRemoveWidgetStatus(int clicked_widget
)
482 switch (clicked_widget
) {
484 /* If it is the removal button that has been clicked, do nothing,
485 * as it is up to the other buttons to drive removal status */
488 case WID_RAT_BUILD_NS
:
489 case WID_RAT_BUILD_X
:
490 case WID_RAT_BUILD_EW
:
491 case WID_RAT_BUILD_Y
:
492 case WID_RAT_AUTORAIL
:
493 case WID_RAT_BUILD_WAYPOINT
:
494 case WID_RAT_BUILD_STATION
:
495 case WID_RAT_BUILD_SIGNALS
:
496 /* Removal button is enabled only if the rail/signal/waypoint/station
497 * button is still lowered. Once raised, it has to be disabled */
498 this->SetWidgetDisabledState(WID_RAT_REMOVE
, !this->IsWidgetLowered(clicked_widget
));
502 /* When any other buttons than rail/signal/waypoint/station, raise and
503 * disable the removal button */
504 this->DisableWidget(WID_RAT_REMOVE
);
505 this->RaiseWidget(WID_RAT_REMOVE
);
510 virtual void SetStringParameters(int widget
) const
512 if (widget
== WID_RAT_CAPTION
) {
513 const RailtypeInfo
*rti
= GetRailTypeInfo(this->railtype
);
514 if (rti
->max_speed
> 0) {
515 SetDParam(0, STR_TOOLBAR_RAILTYPE_VELOCITY
);
516 SetDParam(1, rti
->strings
.toolbar_caption
);
517 SetDParam(2, rti
->max_speed
);
519 SetDParam(0, rti
->strings
.toolbar_caption
);
524 virtual void OnClick(Point pt
, int widget
, int click_count
)
526 if (widget
< WID_RAT_BUILD_NS
) return;
528 _remove_button_clicked
= false;
530 case WID_RAT_BUILD_NS
:
531 HandlePlacePushButton(this, WID_RAT_BUILD_NS
, GetRailTypeInfo(_cur_railtype
)->cursor
.rail_ns
, HT_LINE
| HT_DIR_VL
);
532 this->last_user_action
= widget
;
535 case WID_RAT_BUILD_X
:
536 HandlePlacePushButton(this, WID_RAT_BUILD_X
, GetRailTypeInfo(_cur_railtype
)->cursor
.rail_swne
, HT_LINE
| HT_DIR_X
);
537 this->last_user_action
= widget
;
540 case WID_RAT_BUILD_EW
:
541 HandlePlacePushButton(this, WID_RAT_BUILD_EW
, GetRailTypeInfo(_cur_railtype
)->cursor
.rail_ew
, HT_LINE
| HT_DIR_HL
);
542 this->last_user_action
= widget
;
545 case WID_RAT_BUILD_Y
:
546 HandlePlacePushButton(this, WID_RAT_BUILD_Y
, GetRailTypeInfo(_cur_railtype
)->cursor
.rail_nwse
, HT_LINE
| HT_DIR_Y
);
547 this->last_user_action
= widget
;
550 case WID_RAT_AUTORAIL
:
551 HandlePlacePushButton(this, WID_RAT_AUTORAIL
, GetRailTypeInfo(_cur_railtype
)->cursor
.autorail
, HT_RAIL
);
552 this->last_user_action
= widget
;
555 case WID_RAT_DEMOLISH
:
556 HandlePlacePushButton(this, WID_RAT_DEMOLISH
, ANIMCURSOR_DEMOLISH
, HT_RECT
| HT_DIAGONAL
);
557 this->last_user_action
= widget
;
560 case WID_RAT_BUILD_DEPOT
:
561 if (HandlePlacePushButton(this, WID_RAT_BUILD_DEPOT
, GetRailTypeInfo(_cur_railtype
)->cursor
.depot
, HT_RECT
)) {
562 ShowBuildTrainDepotPicker(this);
563 this->last_user_action
= widget
;
567 case WID_RAT_BUILD_WAYPOINT
:
568 this->last_user_action
= widget
;
569 _waypoint_count
= StationClass::Get(STAT_CLASS_WAYP
)->GetSpecCount();
570 if (HandlePlacePushButton(this, WID_RAT_BUILD_WAYPOINT
, SPR_CURSOR_WAYPOINT
, HT_RECT
) && _waypoint_count
> 1) {
571 ShowBuildWaypointPicker(this);
575 case WID_RAT_BUILD_STATION
:
576 if (HandlePlacePushButton(this, WID_RAT_BUILD_STATION
, SPR_CURSOR_RAIL_STATION
, HT_RECT
)) {
577 ShowStationBuilder(this);
578 this->last_user_action
= widget
;
582 case WID_RAT_BUILD_SIGNALS
: {
583 this->last_user_action
= widget
;
584 bool started
= HandlePlacePushButton(this, WID_RAT_BUILD_SIGNALS
, ANIMCURSOR_BUILDSIGNALS
, HT_RECT
);
585 if (started
&& _settings_client
.gui
.enable_signal_gui
!= _ctrl_pressed
) {
586 ShowSignalBuilder(this);
591 case WID_RAT_BUILD_BRIDGE
:
592 HandlePlacePushButton(this, WID_RAT_BUILD_BRIDGE
, SPR_CURSOR_BRIDGE
, HT_RECT
);
593 this->last_user_action
= widget
;
596 case WID_RAT_BUILD_TUNNEL
:
597 HandlePlacePushButton(this, WID_RAT_BUILD_TUNNEL
, GetRailTypeInfo(_cur_railtype
)->cursor
.tunnel
, HT_SPECIAL
);
598 this->last_user_action
= widget
;
602 BuildRailClick_Remove(this);
605 case WID_RAT_CONVERT_RAIL
:
606 HandlePlacePushButton(this, WID_RAT_CONVERT_RAIL
, GetRailTypeInfo(_cur_railtype
)->cursor
.convert
, HT_RECT
| HT_DIAGONAL
);
607 this->last_user_action
= widget
;
610 default: NOT_REACHED();
612 this->UpdateRemoveWidgetStatus(widget
);
613 if (_ctrl_pressed
) RailToolbar_CtrlChanged(this);
616 virtual EventState
OnHotkey(int hotkey
)
618 MarkTileDirtyByTile(TileVirtXY(_thd
.pos
.x
, _thd
.pos
.y
)); // redraw tile selection
619 return Window::OnHotkey(hotkey
);
622 virtual void OnPlaceObject(Point pt
, TileIndex tile
)
624 switch (this->last_user_action
) {
625 case WID_RAT_BUILD_NS
:
626 VpStartPlaceSizing(tile
, VPM_FIX_VERTICAL
| VPM_RAILDIRS
, DDSP_PLACE_RAIL
);
629 case WID_RAT_BUILD_X
:
630 VpStartPlaceSizing(tile
, VPM_FIX_Y
| VPM_RAILDIRS
, DDSP_PLACE_RAIL
);
633 case WID_RAT_BUILD_EW
:
634 VpStartPlaceSizing(tile
, VPM_FIX_HORIZONTAL
| VPM_RAILDIRS
, DDSP_PLACE_RAIL
);
637 case WID_RAT_BUILD_Y
:
638 VpStartPlaceSizing(tile
, VPM_FIX_X
| VPM_RAILDIRS
, DDSP_PLACE_RAIL
);
641 case WID_RAT_AUTORAIL
:
642 VpStartPlaceSizing(tile
, VPM_RAILDIRS
, DDSP_PLACE_RAIL
);
645 case WID_RAT_DEMOLISH
:
646 PlaceProc_DemolishArea(tile
);
649 case WID_RAT_BUILD_DEPOT
:
650 DoCommandP(tile
, _cur_railtype
, _build_depot_direction
,
651 CMD_BUILD_TRAIN_DEPOT
| CMD_MSG(STR_ERROR_CAN_T_BUILD_TRAIN_DEPOT
),
655 case WID_RAT_BUILD_WAYPOINT
:
656 PlaceRail_Waypoint(tile
);
659 case WID_RAT_BUILD_STATION
:
660 PlaceRail_Station(tile
);
663 case WID_RAT_BUILD_SIGNALS
:
664 VpStartPlaceSizing(tile
, VPM_SIGNALDIRS
, DDSP_BUILD_SIGNALS
);
667 case WID_RAT_BUILD_BRIDGE
:
668 PlaceRail_Bridge(tile
, this);
671 case WID_RAT_BUILD_TUNNEL
:
672 DoCommandP(tile
, _cur_railtype
| (TRANSPORT_RAIL
<< 8), 0, CMD_BUILD_TUNNEL
| CMD_MSG(STR_ERROR_CAN_T_BUILD_TUNNEL_HERE
), CcBuildRailTunnel
);
675 case WID_RAT_CONVERT_RAIL
:
676 VpStartPlaceSizing(tile
, VPM_X_AND_Y
, DDSP_CONVERT_RAIL
);
679 default: NOT_REACHED();
683 virtual void OnPlaceDrag(ViewportPlaceMethod select_method
, ViewportDragDropSelectionProcess select_proc
, Point pt
)
685 /* no dragging if you have pressed the convert button */
686 if (FindWindowById(WC_BUILD_SIGNAL
, 0) != NULL
&& _convert_signal_button
&& this->IsWidgetLowered(WID_RAT_BUILD_SIGNALS
)) return;
688 VpSelectTilesWithMethod(pt
.x
, pt
.y
, select_method
);
691 virtual void OnPlaceMouseUp(ViewportPlaceMethod select_method
, ViewportDragDropSelectionProcess select_proc
, Point pt
, TileIndex start_tile
, TileIndex end_tile
)
694 switch (select_proc
) {
695 default: NOT_REACHED();
696 case DDSP_BUILD_BRIDGE
:
697 if (!_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
698 ShowBuildBridgeWindow(start_tile
, end_tile
, TRANSPORT_RAIL
, _cur_railtype
);
701 case DDSP_PLACE_RAIL
:
702 HandleAutodirPlacement();
705 case DDSP_BUILD_SIGNALS
:
706 HandleAutoSignalPlacement();
709 case DDSP_DEMOLISH_AREA
:
710 GUIPlaceProcDragXY(select_proc
, start_tile
, end_tile
);
713 case DDSP_CONVERT_RAIL
:
714 DoCommandP(end_tile
, start_tile
, _cur_railtype
| (_ctrl_pressed
? 0x10 : 0), CMD_CONVERT_RAIL
| CMD_MSG(STR_ERROR_CAN_T_CONVERT_RAIL
), CcPlaySound_SPLAT_RAIL
);
717 case DDSP_REMOVE_STATION
:
718 case DDSP_BUILD_STATION
:
719 if (this->IsWidgetLowered(WID_RAT_BUILD_STATION
)) {
721 if (_remove_button_clicked
) {
722 DoCommandP(end_tile
, start_tile
, _ctrl_pressed
? 0 : 1, CMD_REMOVE_FROM_RAIL_STATION
| CMD_MSG(STR_ERROR_CAN_T_REMOVE_PART_OF_STATION
), CcPlaySound_SPLAT_RAIL
);
724 HandleStationPlacement(start_tile
, end_tile
);
728 if (_remove_button_clicked
) {
729 DoCommandP(end_tile
, start_tile
, _ctrl_pressed
? 0 : 1, CMD_REMOVE_FROM_RAIL_WAYPOINT
| CMD_MSG(STR_ERROR_CAN_T_REMOVE_TRAIN_WAYPOINT
), CcPlaySound_SPLAT_RAIL
);
731 TileArea
ta(start_tile
, end_tile
);
732 uint32 p1
= _cur_railtype
| (select_method
== VPM_X_LIMITED
? AXIS_X
: AXIS_Y
) << 4 | ta
.w
<< 8 | ta
.h
<< 16 | _ctrl_pressed
<< 24;
733 uint32 p2
= STAT_CLASS_WAYP
| _cur_waypoint_type
<< 8 | INVALID_STATION
<< 16;
735 CommandContainer cmdcont
= { ta
.tile
, p1
, p2
, CMD_BUILD_RAIL_WAYPOINT
| CMD_MSG(STR_ERROR_CAN_T_BUILD_TRAIN_WAYPOINT
), CcPlaySound_SPLAT_RAIL
, "" };
736 ShowSelectWaypointIfNeeded(cmdcont
, ta
);
744 virtual void OnPlaceObjectAbort()
746 this->RaiseButtons();
747 this->DisableWidget(WID_RAT_REMOVE
);
748 this->SetWidgetDirty(WID_RAT_REMOVE
);
750 DeleteWindowById(WC_BUILD_SIGNAL
, TRANSPORT_RAIL
);
751 DeleteWindowById(WC_BUILD_STATION
, TRANSPORT_RAIL
);
752 DeleteWindowById(WC_BUILD_DEPOT
, TRANSPORT_RAIL
);
753 DeleteWindowById(WC_BUILD_WAYPOINT
, TRANSPORT_RAIL
);
754 DeleteWindowById(WC_SELECT_STATION
, 0);
755 DeleteWindowByClass(WC_BUILD_BRIDGE
);
758 virtual void OnPlacePresize(Point pt
, TileIndex tile
)
760 DoCommand(tile
, _cur_railtype
| (TRANSPORT_RAIL
<< 8), 0, DC_AUTO
, CMD_BUILD_TUNNEL
);
761 VpSetPresizeRange(tile
, _build_tunnel_endtile
== 0 ? tile
: _build_tunnel_endtile
);
764 virtual EventState
OnCTRLStateChange()
766 /* do not toggle Remove button by Ctrl when placing station */
767 if (!this->IsWidgetLowered(WID_RAT_BUILD_STATION
) && !this->IsWidgetLowered(WID_RAT_BUILD_WAYPOINT
) && RailToolbar_CtrlChanged(this)) return ES_HANDLED
;
768 return ES_NOT_HANDLED
;
771 static HotkeyList hotkeys
;
775 * Handler for global hotkeys of the BuildRailToolbarWindow.
776 * @param hotkey Hotkey
777 * @return ES_HANDLED if hotkey was accepted.
779 static EventState
RailToolbarGlobalHotkeys(int hotkey
)
781 if (_game_mode
!= GM_NORMAL
|| !CanBuildVehicleInfrastructure(VEH_TRAIN
)) return ES_NOT_HANDLED
;
782 extern RailType _last_built_railtype
;
783 Window
*w
= ShowBuildRailToolbar(_last_built_railtype
);
784 if (w
== NULL
) return ES_NOT_HANDLED
;
785 return w
->OnHotkey(hotkey
);
788 const uint16 _railtoolbar_autorail_keys
[] = {'5', 'A' | WKC_GLOBAL_HOTKEY
, 0};
790 static Hotkey railtoolbar_hotkeys
[] = {
791 Hotkey('1', "build_ns", WID_RAT_BUILD_NS
),
792 Hotkey('2', "build_x", WID_RAT_BUILD_X
),
793 Hotkey('3', "build_ew", WID_RAT_BUILD_EW
),
794 Hotkey('4', "build_y", WID_RAT_BUILD_Y
),
795 Hotkey(_railtoolbar_autorail_keys
, "autorail", WID_RAT_AUTORAIL
),
796 Hotkey('6', "demolish", WID_RAT_DEMOLISH
),
797 Hotkey('7', "depot", WID_RAT_BUILD_DEPOT
),
798 Hotkey('8', "waypoint", WID_RAT_BUILD_WAYPOINT
),
799 Hotkey('9', "station", WID_RAT_BUILD_STATION
),
800 Hotkey('S', "signal", WID_RAT_BUILD_SIGNALS
),
801 Hotkey('B', "bridge", WID_RAT_BUILD_BRIDGE
),
802 Hotkey('T', "tunnel", WID_RAT_BUILD_TUNNEL
),
803 Hotkey('R', "remove", WID_RAT_REMOVE
),
804 Hotkey('C', "convert", WID_RAT_CONVERT_RAIL
),
807 HotkeyList
BuildRailToolbarWindow::hotkeys("railtoolbar", railtoolbar_hotkeys
, RailToolbarGlobalHotkeys
);
809 static const NWidgetPart _nested_build_rail_widgets
[] = {
810 NWidget(NWID_HORIZONTAL
),
811 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
812 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_RAT_CAPTION
), SetDataTip(STR_WHITE_STRING
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
813 NWidget(WWT_STICKYBOX
, COLOUR_DARK_GREEN
),
815 NWidget(NWID_HORIZONTAL
),
816 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_NS
),
817 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_RAIL_NS
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_RAILROAD_TRACK
),
818 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_X
),
819 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_RAIL_NE
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_RAILROAD_TRACK
),
820 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_EW
),
821 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_RAIL_EW
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_RAILROAD_TRACK
),
822 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_Y
),
823 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_RAIL_NW
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_RAILROAD_TRACK
),
824 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_AUTORAIL
),
825 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_AUTORAIL
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_AUTORAIL
),
827 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
), SetMinimalSize(4, 22), SetDataTip(0x0, STR_NULL
), EndContainer(),
829 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_DEMOLISH
),
830 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE
, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC
),
831 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_DEPOT
),
832 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DEPOT_RAIL
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_TRAIN_DEPOT_FOR_BUILDING
),
833 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_WAYPOINT
),
834 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_WAYPOINT
, STR_RAIL_TOOLBAR_TOOLTIP_CONVERT_RAIL_TO_WAYPOINT
),
835 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_STATION
),
836 SetFill(0, 1), SetMinimalSize(42, 22), SetDataTip(SPR_IMG_RAIL_STATION
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_RAILROAD_STATION
),
837 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_SIGNALS
),
838 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_RAIL_SIGNALS
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_RAILROAD_SIGNALS
),
839 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_BRIDGE
),
840 SetFill(0, 1), SetMinimalSize(42, 22), SetDataTip(SPR_IMG_BRIDGE
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_RAILROAD_BRIDGE
),
841 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_BUILD_TUNNEL
),
842 SetFill(0, 1), SetMinimalSize(20, 22), SetDataTip(SPR_IMG_TUNNEL_RAIL
, STR_RAIL_TOOLBAR_TOOLTIP_BUILD_RAILROAD_TUNNEL
),
843 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_REMOVE
),
844 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_REMOVE
, STR_RAIL_TOOLBAR_TOOLTIP_TOGGLE_BUILD_REMOVE_FOR
),
845 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_RAT_CONVERT_RAIL
),
846 SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_CONVERT_RAIL
, STR_RAIL_TOOLBAR_TOOLTIP_CONVERT_RAIL
),
850 static WindowDesc
_build_rail_desc(
851 WDP_ALIGN_TOOLBAR
, "toolbar_rail", 0, 0,
852 WC_BUILD_TOOLBAR
, WC_NONE
,
854 _nested_build_rail_widgets
, lengthof(_nested_build_rail_widgets
),
855 &BuildRailToolbarWindow::hotkeys
860 * Open the build rail toolbar window for a specific rail type.
862 * If the terraform toolbar is linked to the toolbar, that window is also opened.
864 * @param railtype Rail type to open the window for
865 * @return newly opened rail toolbar, or NULL if the toolbar could not be opened.
867 Window
*ShowBuildRailToolbar(RailType railtype
)
869 if (!Company::IsValidID(_local_company
)) return NULL
;
870 if (!ValParamRailtype(railtype
)) return NULL
;
872 DeleteWindowByClass(WC_BUILD_TOOLBAR
);
873 _cur_railtype
= railtype
;
874 _remove_button_clicked
= false;
875 return new BuildRailToolbarWindow(&_build_rail_desc
, railtype
);
878 /* TODO: For custom stations, respect their allowed platforms/lengths bitmasks!
881 static void HandleStationPlacement(TileIndex start
, TileIndex end
)
883 TileArea
ta(start
, end
);
884 uint numtracks
= ta
.w
;
885 uint platlength
= ta
.h
;
887 if (_railstation
.orientation
== AXIS_X
) Swap(numtracks
, platlength
);
889 uint32 p1
= _cur_railtype
| _railstation
.orientation
<< 4 | numtracks
<< 8 | platlength
<< 16 | _ctrl_pressed
<< 24;
890 uint32 p2
= _railstation
.station_class
| _railstation
.station_type
<< 8 | INVALID_STATION
<< 16;
892 CommandContainer cmdcont
= { ta
.tile
, p1
, p2
, CMD_BUILD_RAIL_STATION
| CMD_MSG(STR_ERROR_CAN_T_BUILD_RAILROAD_STATION
), CcStation
, "" };
893 ShowSelectStationIfNeeded(cmdcont
, ta
);
896 struct BuildRailStationWindow
: public PickerWindowBase
{
898 uint line_height
; ///< Height of a single line in the newstation selection matrix (#WID_BRAS_NEWST_LIST widget).
899 uint coverage_height
; ///< Height of the coverage texts.
900 Scrollbar
*vscroll
; ///< Vertical scrollbar of the new station list.
901 Scrollbar
*vscroll2
; ///< Vertical scrollbar of the matrix with new stations.
904 * Verify whether the currently selected station size is allowed after selecting a new station class/type.
905 * If not, change the station size variables ( _settings_client.gui.station_numtracks and _settings_client.gui.station_platlength ).
906 * @param statspec Specification of the new station class/type
908 void CheckSelectedSize(const StationSpec
*statspec
)
910 if (statspec
== NULL
|| _settings_client
.gui
.station_dragdrop
) return;
912 /* If current number of tracks is not allowed, make it as big as possible */
913 if (HasBit(statspec
->disallowed_platforms
, _settings_client
.gui
.station_numtracks
- 1)) {
914 this->RaiseWidget(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
);
915 _settings_client
.gui
.station_numtracks
= 1;
916 if (statspec
->disallowed_platforms
!= UINT8_MAX
) {
917 while (HasBit(statspec
->disallowed_platforms
, _settings_client
.gui
.station_numtracks
- 1)) {
918 _settings_client
.gui
.station_numtracks
++;
920 this->LowerWidget(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
);
924 if (HasBit(statspec
->disallowed_lengths
, _settings_client
.gui
.station_platlength
- 1)) {
925 this->RaiseWidget(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
);
926 _settings_client
.gui
.station_platlength
= 1;
927 if (statspec
->disallowed_lengths
!= UINT8_MAX
) {
928 while (HasBit(statspec
->disallowed_lengths
, _settings_client
.gui
.station_platlength
- 1)) {
929 _settings_client
.gui
.station_platlength
++;
931 this->LowerWidget(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
);
937 BuildRailStationWindow(WindowDesc
*desc
, Window
*parent
, bool newstation
) : PickerWindowBase(desc
, parent
)
939 this->coverage_height
= 2 * FONT_HEIGHT_NORMAL
+ 3 * WD_PAR_VSEP_NORMAL
;
940 this->vscroll
= NULL
;
941 _railstation
.newstations
= newstation
;
943 this->CreateNestedTree();
944 NWidgetStacked
*newst_additions
= this->GetWidget
<NWidgetStacked
>(WID_BRAS_SHOW_NEWST_ADDITIONS
);
945 newst_additions
->SetDisplayedPlane(newstation
? 0 : SZSP_NONE
);
946 newst_additions
= this->GetWidget
<NWidgetStacked
>(WID_BRAS_SHOW_NEWST_MATRIX
);
947 newst_additions
->SetDisplayedPlane(newstation
? 0 : SZSP_NONE
);
948 newst_additions
= this->GetWidget
<NWidgetStacked
>(WID_BRAS_SHOW_NEWST_DEFSIZE
);
949 newst_additions
->SetDisplayedPlane(newstation
? 0 : SZSP_NONE
);
950 newst_additions
= this->GetWidget
<NWidgetStacked
>(WID_BRAS_SHOW_NEWST_RESIZE
);
951 newst_additions
->SetDisplayedPlane(newstation
? 0 : SZSP_NONE
);
953 this->vscroll
= this->GetScrollbar(WID_BRAS_NEWST_SCROLL
);
954 this->vscroll2
= this->GetScrollbar(WID_BRAS_MATRIX_SCROLL
);
956 this->FinishInitNested(TRANSPORT_RAIL
);
958 this->LowerWidget(_railstation
.orientation
+ WID_BRAS_PLATFORM_DIR_X
);
959 if (_settings_client
.gui
.station_dragdrop
) {
960 this->LowerWidget(WID_BRAS_PLATFORM_DRAG_N_DROP
);
962 this->LowerWidget(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
);
963 this->LowerWidget(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
);
965 this->SetWidgetLoweredState(WID_BRAS_HIGHLIGHT_OFF
, !_settings_client
.gui
.station_show_coverage
);
966 this->SetWidgetLoweredState(WID_BRAS_HIGHLIGHT_ON
, _settings_client
.gui
.station_show_coverage
);
968 if (!newstation
|| _railstation
.station_class
>= (int)StationClass::GetClassCount()) {
969 /* New stations are not available or changed, so ensure the default station
970 * type is 'selected'. */
971 _railstation
.station_class
= STAT_CLASS_DFLT
;
972 _railstation
.station_type
= 0;
973 this->vscroll2
= NULL
;
976 _railstation
.station_count
= StationClass::Get(_railstation
.station_class
)->GetSpecCount();
977 _railstation
.station_type
= min(_railstation
.station_type
, _railstation
.station_count
- 1);
980 for (uint i
= 0; i
< StationClass::GetClassCount(); i
++) {
981 if (i
== STAT_CLASS_WAYP
) continue;
984 this->vscroll
->SetCount(count
);
985 this->vscroll
->SetPosition(Clamp(_railstation
.station_class
- 2, 0, max(this->vscroll
->GetCount() - this->vscroll
->GetCapacity(), 0)));
987 NWidgetMatrix
*matrix
= this->GetWidget
<NWidgetMatrix
>(WID_BRAS_MATRIX
);
988 matrix
->SetScrollbar(this->vscroll2
);
989 matrix
->SetCount(_railstation
.station_count
);
990 matrix
->SetClicked(_railstation
.station_type
);
994 virtual ~BuildRailStationWindow()
996 DeleteWindowById(WC_SELECT_STATION
, 0);
999 virtual void OnPaint()
1001 bool newstations
= _railstation
.newstations
;
1002 const StationSpec
*statspec
= newstations
? StationClass::Get(_railstation
.station_class
)->GetSpec(_railstation
.station_type
) : NULL
;
1004 if (_settings_client
.gui
.station_dragdrop
) {
1005 SetTileSelectSize(1, 1);
1007 int x
= _settings_client
.gui
.station_numtracks
;
1008 int y
= _settings_client
.gui
.station_platlength
;
1009 if (_railstation
.orientation
== AXIS_X
) Swap(x
, y
);
1010 if (!_remove_button_clicked
) {
1011 SetTileSelectSize(x
, y
);
1015 int rad
= (_settings_game
.station
.modified_catchment
) ? CA_TRAIN
: CA_UNMODIFIED
;
1017 if (_settings_client
.gui
.station_show_coverage
) SetTileSelectBigSize(-rad
, -rad
, 2 * rad
, 2 * rad
);
1019 for (uint bits
= 0; bits
< 7; bits
++) {
1020 bool disable
= bits
>= _settings_game
.station
.station_spread
;
1021 if (statspec
== NULL
) {
1022 this->SetWidgetDisabledState(bits
+ WID_BRAS_PLATFORM_NUM_1
, disable
);
1023 this->SetWidgetDisabledState(bits
+ WID_BRAS_PLATFORM_LEN_1
, disable
);
1025 this->SetWidgetDisabledState(bits
+ WID_BRAS_PLATFORM_NUM_1
, HasBit(statspec
->disallowed_platforms
, bits
) || disable
);
1026 this->SetWidgetDisabledState(bits
+ WID_BRAS_PLATFORM_LEN_1
, HasBit(statspec
->disallowed_lengths
, bits
) || disable
);
1030 this->DrawWidgets();
1032 /* 'Accepts' and 'Supplies' texts. */
1033 NWidgetBase
*cov
= this->GetWidget
<NWidgetBase
>(WID_BRAS_COVERAGE_TEXTS
);
1034 int top
= cov
->pos_y
+ WD_PAR_VSEP_NORMAL
;
1035 int left
= cov
->pos_x
+ WD_FRAMERECT_LEFT
;
1036 int right
= cov
->pos_x
+ cov
->current_x
- WD_FRAMERECT_RIGHT
;
1037 int bottom
= cov
->pos_y
+ cov
->current_y
;
1038 top
= DrawStationCoverageAreaText(left
, right
, top
, SCT_ALL
, rad
, false) + WD_PAR_VSEP_NORMAL
;
1039 top
= DrawStationCoverageAreaText(left
, right
, top
, SCT_ALL
, rad
, true) + WD_PAR_VSEP_NORMAL
;
1040 /* Resize background if the window is too small.
1041 * Never make the window smaller to avoid oscillating if the size change affects the acceptance.
1042 * (This is the case, if making the window bigger moves the mouse into the window.) */
1044 this->coverage_height
+= top
- bottom
;
1049 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
1052 case WID_BRAS_NEWST_LIST
: {
1053 Dimension d
= {0, 0};
1054 for (uint i
= 0; i
< StationClass::GetClassCount(); i
++) {
1055 if (i
== STAT_CLASS_WAYP
) continue;
1056 d
= maxdim(d
, GetStringBoundingBox(StationClass::Get((StationClassID
)i
)->name
));
1058 size
->width
= max(size
->width
, d
.width
+ padding
.width
);
1059 this->line_height
= FONT_HEIGHT_NORMAL
+ WD_MATRIX_TOP
+ WD_MATRIX_BOTTOM
;
1060 size
->height
= 5 * this->line_height
;
1061 resize
->height
= this->line_height
;
1065 case WID_BRAS_SHOW_NEWST_TYPE
: {
1066 if (!_railstation
.newstations
) {
1072 /* If newstations exist, compute the non-zero minimal size. */
1073 Dimension d
= {0, 0};
1074 StringID str
= this->GetWidget
<NWidgetCore
>(widget
)->widget_data
;
1075 for (StationClassID statclass
= STAT_CLASS_BEGIN
; statclass
< (StationClassID
)StationClass::GetClassCount(); statclass
++) {
1076 if (statclass
== STAT_CLASS_WAYP
) continue;
1077 StationClass
*stclass
= StationClass::Get(statclass
);
1078 for (uint16 j
= 0; j
< stclass
->GetSpecCount(); j
++) {
1079 const StationSpec
*statspec
= stclass
->GetSpec(j
);
1080 SetDParam(0, (statspec
!= NULL
&& statspec
->name
!= 0) ? statspec
->name
: STR_STATION_CLASS_DFLT
);
1081 d
= maxdim(d
, GetStringBoundingBox(str
));
1084 size
->width
= max(size
->width
, d
.width
+ padding
.width
);
1088 case WID_BRAS_PLATFORM_DIR_X
:
1089 case WID_BRAS_PLATFORM_DIR_Y
:
1090 case WID_BRAS_IMAGE
:
1091 size
->width
= ScaleGUITrad(64) + 2;
1092 size
->height
= ScaleGUITrad(58) + 2;
1095 case WID_BRAS_COVERAGE_TEXTS
:
1096 size
->height
= this->coverage_height
;
1099 case WID_BRAS_MATRIX
:
1106 virtual void DrawWidget(const Rect
&r
, int widget
) const
1108 DrawPixelInfo tmp_dpi
;
1110 switch (GB(widget
, 0, 16)) {
1111 case WID_BRAS_PLATFORM_DIR_X
:
1112 /* Set up a clipping area for the '/' station preview */
1113 if (FillDrawPixelInfo(&tmp_dpi
, r
.left
, r
.top
, r
.right
- r
.left
+ 1, r
.bottom
- r
.top
+ 1)) {
1114 DrawPixelInfo
*old_dpi
= _cur_dpi
;
1115 _cur_dpi
= &tmp_dpi
;
1116 int x
= ScaleGUITrad(31) + 1;
1117 int y
= r
.bottom
- r
.top
- ScaleGUITrad(31);
1118 if (!DrawStationTile(x
, y
, _cur_railtype
, AXIS_X
, _railstation
.station_class
, _railstation
.station_type
)) {
1119 StationPickerDrawSprite(x
, y
, STATION_RAIL
, _cur_railtype
, INVALID_ROADTYPE
, 2);
1125 case WID_BRAS_PLATFORM_DIR_Y
:
1126 /* Set up a clipping area for the '\' station preview */
1127 if (FillDrawPixelInfo(&tmp_dpi
, r
.left
, r
.top
, r
.right
- r
.left
+ 1, r
.bottom
- r
.top
+ 1)) {
1128 DrawPixelInfo
*old_dpi
= _cur_dpi
;
1129 _cur_dpi
= &tmp_dpi
;
1130 int x
= ScaleGUITrad(31) + 1;
1131 int y
= r
.bottom
- r
.top
- ScaleGUITrad(31);
1132 if (!DrawStationTile(x
, y
, _cur_railtype
, AXIS_Y
, _railstation
.station_class
, _railstation
.station_type
)) {
1133 StationPickerDrawSprite(x
, y
, STATION_RAIL
, _cur_railtype
, INVALID_ROADTYPE
, 3);
1139 case WID_BRAS_NEWST_LIST
: {
1142 for (uint i
= 0; i
< StationClass::GetClassCount(); i
++) {
1143 if (i
== STAT_CLASS_WAYP
) continue;
1144 if (this->vscroll
->IsVisible(statclass
)) {
1145 DrawString(r
.left
+ WD_MATRIX_LEFT
, r
.right
- WD_MATRIX_RIGHT
, row
* this->line_height
+ r
.top
+ WD_MATRIX_TOP
,
1146 StationClass::Get((StationClassID
)i
)->name
,
1147 (StationClassID
)i
== _railstation
.station_class
? TC_WHITE
: TC_BLACK
);
1155 case WID_BRAS_IMAGE
: {
1156 byte type
= GB(widget
, 16, 16);
1157 assert(type
< _railstation
.station_count
);
1158 /* Check station availability callback */
1159 const StationSpec
*statspec
= StationClass::Get(_railstation
.station_class
)->GetSpec(type
);
1160 if (!IsStationAvailable(statspec
)) {
1161 GfxFillRect(r
.left
+ 1, r
.top
+ 1, r
.right
- 1, r
.bottom
- 1, PC_BLACK
, FILLRECT_CHECKER
);
1164 /* Set up a clipping area for the station preview. */
1165 if (FillDrawPixelInfo(&tmp_dpi
, r
.left
, r
.top
, r
.right
- r
.left
+ 1, r
.bottom
- r
.top
+ 1)) {
1166 DrawPixelInfo
*old_dpi
= _cur_dpi
;
1167 _cur_dpi
= &tmp_dpi
;
1168 int x
= ScaleGUITrad(31) + 1;
1169 int y
= r
.bottom
- r
.top
- ScaleGUITrad(31);
1170 if (!DrawStationTile(x
, y
, _cur_railtype
, _railstation
.orientation
, _railstation
.station_class
, type
)) {
1171 StationPickerDrawSprite(x
, y
, STATION_RAIL
, _cur_railtype
, INVALID_ROADTYPE
, 2 + _railstation
.orientation
);
1180 virtual void OnResize()
1182 if (this->vscroll
!= NULL
) { // New stations available.
1183 this->vscroll
->SetCapacityFromWidget(this, WID_BRAS_NEWST_LIST
);
1187 virtual void SetStringParameters(int widget
) const
1189 if (widget
== WID_BRAS_SHOW_NEWST_TYPE
) {
1190 const StationSpec
*statspec
= StationClass::Get(_railstation
.station_class
)->GetSpec(_railstation
.station_type
);
1191 SetDParam(0, (statspec
!= NULL
&& statspec
->name
!= 0) ? statspec
->name
: STR_STATION_CLASS_DFLT
);
1195 virtual void OnClick(Point pt
, int widget
, int click_count
)
1197 switch (GB(widget
, 0, 16)) {
1198 case WID_BRAS_PLATFORM_DIR_X
:
1199 case WID_BRAS_PLATFORM_DIR_Y
:
1200 this->RaiseWidget(_railstation
.orientation
+ WID_BRAS_PLATFORM_DIR_X
);
1201 _railstation
.orientation
= (Axis
)(widget
- WID_BRAS_PLATFORM_DIR_X
);
1202 this->LowerWidget(_railstation
.orientation
+ WID_BRAS_PLATFORM_DIR_X
);
1203 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1205 DeleteWindowById(WC_SELECT_STATION
, 0);
1208 case WID_BRAS_PLATFORM_NUM_1
:
1209 case WID_BRAS_PLATFORM_NUM_2
:
1210 case WID_BRAS_PLATFORM_NUM_3
:
1211 case WID_BRAS_PLATFORM_NUM_4
:
1212 case WID_BRAS_PLATFORM_NUM_5
:
1213 case WID_BRAS_PLATFORM_NUM_6
:
1214 case WID_BRAS_PLATFORM_NUM_7
: {
1215 this->RaiseWidget(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
);
1216 this->RaiseWidget(WID_BRAS_PLATFORM_DRAG_N_DROP
);
1218 _settings_client
.gui
.station_numtracks
= widget
- WID_BRAS_PLATFORM_NUM_BEGIN
;
1219 _settings_client
.gui
.station_dragdrop
= false;
1221 _settings_client
.gui
.station_dragdrop
= false;
1223 const StationSpec
*statspec
= _railstation
.newstations
? StationClass::Get(_railstation
.station_class
)->GetSpec(_railstation
.station_type
) : NULL
;
1224 if (statspec
!= NULL
&& HasBit(statspec
->disallowed_lengths
, _settings_client
.gui
.station_platlength
- 1)) {
1225 /* The previously selected number of platforms in invalid */
1226 for (uint i
= 0; i
< 7; i
++) {
1227 if (!HasBit(statspec
->disallowed_lengths
, i
)) {
1228 this->RaiseWidget(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
);
1229 _settings_client
.gui
.station_platlength
= i
+ 1;
1235 this->LowerWidget(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
);
1236 this->LowerWidget(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
);
1237 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1239 DeleteWindowById(WC_SELECT_STATION
, 0);
1243 case WID_BRAS_PLATFORM_LEN_1
:
1244 case WID_BRAS_PLATFORM_LEN_2
:
1245 case WID_BRAS_PLATFORM_LEN_3
:
1246 case WID_BRAS_PLATFORM_LEN_4
:
1247 case WID_BRAS_PLATFORM_LEN_5
:
1248 case WID_BRAS_PLATFORM_LEN_6
:
1249 case WID_BRAS_PLATFORM_LEN_7
: {
1250 this->RaiseWidget(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
);
1251 this->RaiseWidget(WID_BRAS_PLATFORM_DRAG_N_DROP
);
1253 _settings_client
.gui
.station_platlength
= widget
- WID_BRAS_PLATFORM_LEN_BEGIN
;
1254 _settings_client
.gui
.station_dragdrop
= false;
1256 _settings_client
.gui
.station_dragdrop
= false;
1258 const StationSpec
*statspec
= _railstation
.newstations
? StationClass::Get(_railstation
.station_class
)->GetSpec(_railstation
.station_type
) : NULL
;
1259 if (statspec
!= NULL
&& HasBit(statspec
->disallowed_platforms
, _settings_client
.gui
.station_numtracks
- 1)) {
1260 /* The previously selected number of tracks in invalid */
1261 for (uint i
= 0; i
< 7; i
++) {
1262 if (!HasBit(statspec
->disallowed_platforms
, i
)) {
1263 this->RaiseWidget(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
);
1264 _settings_client
.gui
.station_numtracks
= i
+ 1;
1270 this->LowerWidget(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
);
1271 this->LowerWidget(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
);
1272 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1274 DeleteWindowById(WC_SELECT_STATION
, 0);
1278 case WID_BRAS_PLATFORM_DRAG_N_DROP
: {
1279 _settings_client
.gui
.station_dragdrop
^= true;
1281 this->ToggleWidgetLoweredState(WID_BRAS_PLATFORM_DRAG_N_DROP
);
1283 /* get the first allowed length/number of platforms */
1284 const StationSpec
*statspec
= _railstation
.newstations
? StationClass::Get(_railstation
.station_class
)->GetSpec(_railstation
.station_type
) : NULL
;
1285 if (statspec
!= NULL
&& HasBit(statspec
->disallowed_lengths
, _settings_client
.gui
.station_platlength
- 1)) {
1286 for (uint i
= 0; i
< 7; i
++) {
1287 if (!HasBit(statspec
->disallowed_lengths
, i
)) {
1288 this->RaiseWidget(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
);
1289 _settings_client
.gui
.station_platlength
= i
+ 1;
1294 if (statspec
!= NULL
&& HasBit(statspec
->disallowed_platforms
, _settings_client
.gui
.station_numtracks
- 1)) {
1295 for (uint i
= 0; i
< 7; i
++) {
1296 if (!HasBit(statspec
->disallowed_platforms
, i
)) {
1297 this->RaiseWidget(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
);
1298 _settings_client
.gui
.station_numtracks
= i
+ 1;
1304 this->SetWidgetLoweredState(_settings_client
.gui
.station_numtracks
+ WID_BRAS_PLATFORM_NUM_BEGIN
, !_settings_client
.gui
.station_dragdrop
);
1305 this->SetWidgetLoweredState(_settings_client
.gui
.station_platlength
+ WID_BRAS_PLATFORM_LEN_BEGIN
, !_settings_client
.gui
.station_dragdrop
);
1306 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1308 DeleteWindowById(WC_SELECT_STATION
, 0);
1312 case WID_BRAS_HIGHLIGHT_OFF
:
1313 case WID_BRAS_HIGHLIGHT_ON
:
1314 _settings_client
.gui
.station_show_coverage
= (widget
!= WID_BRAS_HIGHLIGHT_OFF
);
1316 this->SetWidgetLoweredState(WID_BRAS_HIGHLIGHT_OFF
, !_settings_client
.gui
.station_show_coverage
);
1317 this->SetWidgetLoweredState(WID_BRAS_HIGHLIGHT_ON
, _settings_client
.gui
.station_show_coverage
);
1318 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1322 case WID_BRAS_NEWST_LIST
: {
1323 int y
= this->vscroll
->GetScrolledRowFromWidget(pt
.y
, this, WID_BRAS_NEWST_LIST
, 0, this->line_height
);
1324 if (y
>= (int)StationClass::GetClassCount()) return;
1325 for (uint i
= 0; i
< StationClass::GetClassCount(); i
++) {
1326 if (i
== STAT_CLASS_WAYP
) continue;
1328 if (_railstation
.station_class
!= (StationClassID
)i
) {
1329 _railstation
.station_class
= (StationClassID
)i
;
1330 StationClass
*stclass
= StationClass::Get(_railstation
.station_class
);
1331 _railstation
.station_count
= stclass
->GetSpecCount();
1332 _railstation
.station_type
= min((int)_railstation
.station_type
, max(0, (int)_railstation
.station_count
- 1));
1334 this->CheckSelectedSize(stclass
->GetSpec(_railstation
.station_type
));
1336 NWidgetMatrix
*matrix
= this->GetWidget
<NWidgetMatrix
>(WID_BRAS_MATRIX
);
1337 matrix
->SetCount(_railstation
.station_count
);
1338 matrix
->SetClicked(_railstation
.station_type
);
1340 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1342 DeleteWindowById(WC_SELECT_STATION
, 0);
1350 case WID_BRAS_IMAGE
: {
1351 int y
= GB(widget
, 16, 16);
1352 if (y
>= _railstation
.station_count
) return;
1354 /* Check station availability callback */
1355 const StationSpec
*statspec
= StationClass::Get(_railstation
.station_class
)->GetSpec(y
);
1356 if (!IsStationAvailable(statspec
)) return;
1358 _railstation
.station_type
= y
;
1360 this->CheckSelectedSize(statspec
);
1361 this->GetWidget
<NWidgetMatrix
>(WID_BRAS_MATRIX
)->SetClicked(_railstation
.station_type
);
1363 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1365 DeleteWindowById(WC_SELECT_STATION
, 0);
1371 virtual void OnTick()
1373 CheckRedrawStationCoverage(this);
1377 static const NWidgetPart _nested_station_builder_widgets
[] = {
1378 NWidget(NWID_HORIZONTAL
),
1379 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
1380 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
), SetDataTip(STR_STATION_BUILD_RAIL_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
1381 NWidget(NWID_SELECTION
, INVALID_COLOUR
, WID_BRAS_SHOW_NEWST_DEFSIZE
),
1382 NWidget(WWT_DEFSIZEBOX
, COLOUR_DARK_GREEN
),
1385 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
),
1386 NWidget(NWID_HORIZONTAL
),
1387 NWidget(NWID_VERTICAL
),
1388 NWidget(NWID_SELECTION
, INVALID_COLOUR
, WID_BRAS_SHOW_NEWST_ADDITIONS
),
1389 NWidget(NWID_HORIZONTAL
), SetPIP(7, 0, 7), SetPadding(2, 0, 1, 0),
1390 NWidget(WWT_MATRIX
, COLOUR_GREY
, WID_BRAS_NEWST_LIST
), SetMinimalSize(122, 71), SetFill(1, 0),
1391 SetMatrixDataTip(1, 0, STR_STATION_BUILD_STATION_CLASS_TOOLTIP
), SetScrollbar(WID_BRAS_NEWST_SCROLL
),
1392 NWidget(NWID_VSCROLLBAR
, COLOUR_GREY
, WID_BRAS_NEWST_SCROLL
),
1395 NWidget(WWT_LABEL
, COLOUR_DARK_GREEN
), SetMinimalSize(144, 11), SetDataTip(STR_STATION_BUILD_ORIENTATION
, STR_NULL
), SetPadding(1, 2, 0, 2),
1396 NWidget(NWID_HORIZONTAL
),
1397 NWidget(NWID_SPACER
), SetMinimalSize(7, 0), SetFill(1, 0),
1398 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BRAS_PLATFORM_DIR_X
), SetMinimalSize(66, 60), SetFill(0, 0), SetDataTip(0x0, STR_STATION_BUILD_RAILROAD_ORIENTATION_TOOLTIP
), EndContainer(),
1399 NWidget(NWID_SPACER
), SetMinimalSize(2, 0), SetFill(1, 0),
1400 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BRAS_PLATFORM_DIR_Y
), SetMinimalSize(66, 60), SetFill(0, 0), SetDataTip(0x0, STR_STATION_BUILD_RAILROAD_ORIENTATION_TOOLTIP
), EndContainer(),
1401 NWidget(NWID_SPACER
), SetMinimalSize(7, 0), SetFill(1, 0),
1403 NWidget(WWT_LABEL
, COLOUR_DARK_GREEN
, WID_BRAS_SHOW_NEWST_TYPE
), SetMinimalSize(144, 11), SetDataTip(STR_ORANGE_STRING
, STR_NULL
), SetPadding(1, 2, 4, 2),
1404 NWidget(WWT_LABEL
, COLOUR_DARK_GREEN
), SetMinimalSize(144, 11), SetDataTip(STR_STATION_BUILD_NUMBER_OF_TRACKS
, STR_NULL
), SetPadding(0, 2, 0, 2),
1405 NWidget(NWID_HORIZONTAL
),
1406 NWidget(NWID_SPACER
), SetFill(1, 0),
1407 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_NUM_1
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_1
, STR_STATION_BUILD_NUMBER_OF_TRACKS_TOOLTIP
),
1408 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_NUM_2
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_2
, STR_STATION_BUILD_NUMBER_OF_TRACKS_TOOLTIP
),
1409 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_NUM_3
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_3
, STR_STATION_BUILD_NUMBER_OF_TRACKS_TOOLTIP
),
1410 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_NUM_4
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_4
, STR_STATION_BUILD_NUMBER_OF_TRACKS_TOOLTIP
),
1411 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_NUM_5
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_5
, STR_STATION_BUILD_NUMBER_OF_TRACKS_TOOLTIP
),
1412 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_NUM_6
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_6
, STR_STATION_BUILD_NUMBER_OF_TRACKS_TOOLTIP
),
1413 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_NUM_7
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_7
, STR_STATION_BUILD_NUMBER_OF_TRACKS_TOOLTIP
),
1414 NWidget(NWID_SPACER
), SetFill(1, 0),
1416 NWidget(WWT_LABEL
, COLOUR_DARK_GREEN
), SetMinimalSize(144, 11), SetDataTip(STR_STATION_BUILD_PLATFORM_LENGTH
, STR_NULL
), SetPadding(2, 2, 0, 2),
1417 NWidget(NWID_HORIZONTAL
),
1418 NWidget(NWID_SPACER
), SetFill(1, 0),
1419 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_LEN_1
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_1
, STR_STATION_BUILD_PLATFORM_LENGTH_TOOLTIP
),
1420 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_LEN_2
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_2
, STR_STATION_BUILD_PLATFORM_LENGTH_TOOLTIP
),
1421 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_LEN_3
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_3
, STR_STATION_BUILD_PLATFORM_LENGTH_TOOLTIP
),
1422 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_LEN_4
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_4
, STR_STATION_BUILD_PLATFORM_LENGTH_TOOLTIP
),
1423 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_LEN_5
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_5
, STR_STATION_BUILD_PLATFORM_LENGTH_TOOLTIP
),
1424 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_LEN_6
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_6
, STR_STATION_BUILD_PLATFORM_LENGTH_TOOLTIP
),
1425 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_LEN_7
), SetMinimalSize(15, 12), SetDataTip(STR_BLACK_7
, STR_STATION_BUILD_PLATFORM_LENGTH_TOOLTIP
),
1426 NWidget(NWID_SPACER
), SetFill(1, 0),
1428 NWidget(NWID_SPACER
), SetMinimalSize(0, 2),
1429 NWidget(NWID_HORIZONTAL
),
1430 NWidget(NWID_SPACER
), SetMinimalSize(2, 0), SetFill(1, 0),
1431 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_PLATFORM_DRAG_N_DROP
), SetMinimalSize(75, 12), SetDataTip(STR_STATION_BUILD_DRAG_DROP
, STR_STATION_BUILD_DRAG_DROP_TOOLTIP
),
1432 NWidget(NWID_SPACER
), SetMinimalSize(2, 0), SetFill(1, 0),
1434 NWidget(WWT_LABEL
, COLOUR_DARK_GREEN
), SetMinimalSize(144, 11), SetDataTip(STR_STATION_BUILD_COVERAGE_AREA_TITLE
, STR_NULL
), SetPadding(3, 2, 0, 2),
1435 NWidget(NWID_HORIZONTAL
),
1436 NWidget(NWID_SPACER
), SetMinimalSize(2, 0), SetFill(1, 0),
1437 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_HIGHLIGHT_OFF
), SetMinimalSize(60, 12),
1438 SetDataTip(STR_STATION_BUILD_COVERAGE_OFF
, STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP
),
1439 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_BRAS_HIGHLIGHT_ON
), SetMinimalSize(60, 12),
1440 SetDataTip(STR_STATION_BUILD_COVERAGE_ON
, STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP
),
1441 NWidget(NWID_SPACER
), SetMinimalSize(2, 0), SetFill(1, 0),
1444 NWidget(NWID_SELECTION
, INVALID_COLOUR
, WID_BRAS_SHOW_NEWST_MATRIX
),
1445 /* We need an additional background for the matrix, as the matrix cannot handle the scrollbar due to not being an NWidgetCore. */
1446 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
), SetScrollbar(WID_BRAS_MATRIX_SCROLL
),
1447 NWidget(NWID_HORIZONTAL
),
1448 NWidget(NWID_MATRIX
, COLOUR_DARK_GREEN
, WID_BRAS_MATRIX
), SetScrollbar(WID_BRAS_MATRIX_SCROLL
), SetPIP(0, 2, 0), SetPadding(2, 0, 0, 0),
1449 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BRAS_IMAGE
), SetMinimalSize(66, 60),
1450 SetFill(0, 0), SetResize(0, 0), SetDataTip(0x0, STR_STATION_BUILD_STATION_TYPE_TOOLTIP
), SetScrollbar(WID_BRAS_MATRIX_SCROLL
),
1453 NWidget(NWID_VSCROLLBAR
, COLOUR_DARK_GREEN
, WID_BRAS_MATRIX_SCROLL
),
1458 NWidget(NWID_HORIZONTAL
),
1459 NWidget(WWT_EMPTY
, INVALID_COLOUR
, WID_BRAS_COVERAGE_TEXTS
), SetFill(1, 1), SetResize(1, 0),
1460 NWidget(NWID_SELECTION
, INVALID_COLOUR
, WID_BRAS_SHOW_NEWST_RESIZE
),
1461 NWidget(NWID_VERTICAL
),
1462 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
), SetFill(0, 1), EndContainer(),
1463 NWidget(WWT_RESIZEBOX
, COLOUR_DARK_GREEN
),
1470 /** High level window description of the station-build window (default & newGRF) */
1471 static WindowDesc
_station_builder_desc(
1472 WDP_AUTO
, "build_station_rail", 350, 0,
1473 WC_BUILD_STATION
, WC_BUILD_TOOLBAR
,
1475 _nested_station_builder_widgets
, lengthof(_nested_station_builder_widgets
)
1478 /** Open station build window */
1479 static void ShowStationBuilder(Window
*parent
)
1481 bool newstations
= StationClass::GetClassCount() > 2 || StationClass::Get(STAT_CLASS_DFLT
)->GetSpecCount() != 1;
1482 new BuildRailStationWindow(&_station_builder_desc
, parent
, newstations
);
1485 struct BuildSignalWindow
: public PickerWindowBase
{
1487 Dimension sig_sprite_size
; ///< Maximum size of signal GUI sprites.
1488 int sig_sprite_bottom_offset
; ///< Maximum extent of signal GUI sprite from reference point towards bottom.
1491 * Draw dynamic a signal-sprite in a button in the signal GUI
1492 * Draw the sprite +1px to the right and down if the button is lowered
1494 * @param widget_index index of this widget in the window
1495 * @param image the sprite to draw
1497 void DrawSignalSprite(byte widget_index
, SpriteID image
) const
1500 Dimension sprite_size
= GetSpriteSize(image
, &offset
);
1501 const NWidgetBase
*widget
= this->GetWidget
<NWidgetBase
>(widget_index
);
1502 int x
= widget
->pos_x
- offset
.x
+
1503 (widget
->current_x
- sprite_size
.width
+ offset
.x
) / 2; // centered
1504 int y
= widget
->pos_y
- sig_sprite_bottom_offset
+ WD_IMGBTN_TOP
+
1505 (widget
->current_y
- WD_IMGBTN_TOP
- WD_IMGBTN_BOTTOM
+ sig_sprite_size
.height
) / 2; // aligned to bottom
1507 DrawSprite(image
, PAL_NONE
,
1508 x
+ this->IsWidgetLowered(widget_index
),
1509 y
+ this->IsWidgetLowered(widget_index
));
1513 BuildSignalWindow(WindowDesc
*desc
, Window
*parent
) : PickerWindowBase(desc
, parent
)
1515 this->InitNested(TRANSPORT_RAIL
);
1516 this->OnInvalidateData();
1519 ~BuildSignalWindow()
1521 _convert_signal_button
= false;
1524 virtual void OnInit()
1526 /* Calculate maximum signal sprite size. */
1527 this->sig_sprite_size
.width
= 0;
1528 this->sig_sprite_size
.height
= 0;
1529 this->sig_sprite_bottom_offset
= 0;
1530 const RailtypeInfo
*rti
= GetRailTypeInfo(_cur_railtype
);
1531 for (uint type
= SIGTYPE_NORMAL
; type
< SIGTYPE_END
; type
++) {
1532 for (uint variant
= SIG_ELECTRIC
; variant
<= SIG_SEMAPHORE
; variant
++) {
1533 for (uint lowered
= 0; lowered
< 2; lowered
++) {
1535 Dimension sprite_size
= GetSpriteSize(rti
->gui_sprites
.signals
[type
][variant
][lowered
], &offset
);
1536 this->sig_sprite_bottom_offset
= max
<int>(this->sig_sprite_bottom_offset
, sprite_size
.height
);
1537 this->sig_sprite_size
.width
= max
<int>(this->sig_sprite_size
.width
, sprite_size
.width
- offset
.x
);
1538 this->sig_sprite_size
.height
= max
<int>(this->sig_sprite_size
.height
, sprite_size
.height
- offset
.y
);
1544 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
1546 if (widget
== WID_BS_DRAG_SIGNALS_DENSITY_LABEL
) {
1547 /* Two digits for signals density. */
1548 size
->width
= max(size
->width
, 2 * GetDigitWidth() + padding
.width
+ WD_FRAMERECT_LEFT
+ WD_FRAMERECT_RIGHT
);
1549 } else if (IsInsideMM(widget
, WID_BS_SEMAPHORE_NORM
, WID_BS_ELECTRIC_PBS_OWAY
+ 1)) {
1550 size
->width
= max(size
->width
, this->sig_sprite_size
.width
+ WD_IMGBTN_LEFT
+ WD_IMGBTN_RIGHT
);
1551 size
->height
= max(size
->height
, this->sig_sprite_size
.height
+ WD_IMGBTN_TOP
+ WD_IMGBTN_BOTTOM
);
1555 virtual void SetStringParameters(int widget
) const
1558 case WID_BS_DRAG_SIGNALS_DENSITY_LABEL
:
1559 SetDParam(0, _settings_client
.gui
.drag_signals_density
);
1564 virtual void DrawWidget(const Rect
&r
, int widget
) const
1566 if (IsInsideMM(widget
, WID_BS_SEMAPHORE_NORM
, WID_BS_ELECTRIC_PBS_OWAY
+ 1)) {
1567 /* Extract signal from widget number. */
1568 int type
= (widget
- WID_BS_SEMAPHORE_NORM
) % SIGTYPE_END
;
1569 int var
= SIG_SEMAPHORE
- (widget
- WID_BS_SEMAPHORE_NORM
) / SIGTYPE_END
; // SignalVariant order is reversed compared to the widgets.
1570 SpriteID sprite
= GetRailTypeInfo(_cur_railtype
)->gui_sprites
.signals
[type
][var
][this->IsWidgetLowered(widget
)];
1572 this->DrawSignalSprite(widget
, sprite
);
1576 virtual void OnClick(Point pt
, int widget
, int click_count
)
1579 case WID_BS_SEMAPHORE_NORM
:
1580 case WID_BS_SEMAPHORE_ENTRY
:
1581 case WID_BS_SEMAPHORE_EXIT
:
1582 case WID_BS_SEMAPHORE_COMBO
:
1583 case WID_BS_SEMAPHORE_PBS
:
1584 case WID_BS_SEMAPHORE_PBS_OWAY
:
1585 case WID_BS_ELECTRIC_NORM
:
1586 case WID_BS_ELECTRIC_ENTRY
:
1587 case WID_BS_ELECTRIC_EXIT
:
1588 case WID_BS_ELECTRIC_COMBO
:
1589 case WID_BS_ELECTRIC_PBS
:
1590 case WID_BS_ELECTRIC_PBS_OWAY
:
1591 this->RaiseWidget((_cur_signal_variant
== SIG_ELECTRIC
? WID_BS_ELECTRIC_NORM
: WID_BS_SEMAPHORE_NORM
) + _cur_signal_type
);
1593 _cur_signal_type
= (SignalType
)((uint
)((widget
- WID_BS_SEMAPHORE_NORM
) % (SIGTYPE_LAST
+ 1)));
1594 _cur_signal_variant
= widget
>= WID_BS_ELECTRIC_NORM
? SIG_ELECTRIC
: SIG_SEMAPHORE
;
1596 /* If 'remove' button of rail build toolbar is active, disable it. */
1597 if (_remove_button_clicked
) {
1598 Window
*w
= FindWindowById(WC_BUILD_TOOLBAR
, TRANSPORT_RAIL
);
1599 if (w
!= NULL
) ToggleRailButton_Remove(w
);
1604 case WID_BS_CONVERT
:
1605 _convert_signal_button
= !_convert_signal_button
;
1608 case WID_BS_DRAG_SIGNALS_DENSITY_DECREASE
:
1609 if (_settings_client
.gui
.drag_signals_density
> 1) {
1610 _settings_client
.gui
.drag_signals_density
--;
1611 SetWindowDirty(WC_GAME_OPTIONS
, WN_GAME_OPTIONS_GAME_SETTINGS
);
1615 case WID_BS_DRAG_SIGNALS_DENSITY_INCREASE
:
1616 if (_settings_client
.gui
.drag_signals_density
< 20) {
1617 _settings_client
.gui
.drag_signals_density
++;
1618 SetWindowDirty(WC_GAME_OPTIONS
, WN_GAME_OPTIONS_GAME_SETTINGS
);
1625 this->InvalidateData();
1629 * Some data on this window has become invalid.
1630 * @param data Information about the changed data.
1631 * @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.
1633 virtual void OnInvalidateData(int data
= 0, bool gui_scope
= true)
1635 if (!gui_scope
) return;
1636 this->LowerWidget((_cur_signal_variant
== SIG_ELECTRIC
? WID_BS_ELECTRIC_NORM
: WID_BS_SEMAPHORE_NORM
) + _cur_signal_type
);
1638 this->SetWidgetLoweredState(WID_BS_CONVERT
, _convert_signal_button
);
1640 this->SetWidgetDisabledState(WID_BS_DRAG_SIGNALS_DENSITY_DECREASE
, _settings_client
.gui
.drag_signals_density
== 1);
1641 this->SetWidgetDisabledState(WID_BS_DRAG_SIGNALS_DENSITY_INCREASE
, _settings_client
.gui
.drag_signals_density
== 20);
1645 /** Nested widget definition of the build signal window */
1646 static const NWidgetPart _nested_signal_builder_widgets
[] = {
1647 NWidget(NWID_HORIZONTAL
),
1648 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
1649 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
), SetDataTip(STR_BUILD_SIGNAL_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
1651 NWidget(NWID_VERTICAL
, NC_EQUALSIZE
),
1652 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
),
1653 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_SEMAPHORE_NORM
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_SEMAPHORE_NORM_TOOLTIP
), EndContainer(), SetFill(1, 1),
1654 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_SEMAPHORE_ENTRY
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_SEMAPHORE_ENTRY_TOOLTIP
), EndContainer(), SetFill(1, 1),
1655 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_SEMAPHORE_EXIT
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_SEMAPHORE_EXIT_TOOLTIP
), EndContainer(), SetFill(1, 1),
1656 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_SEMAPHORE_COMBO
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_SEMAPHORE_COMBO_TOOLTIP
), EndContainer(), SetFill(1, 1),
1657 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_SEMAPHORE_PBS
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_SEMAPHORE_PBS_TOOLTIP
), EndContainer(), SetFill(1, 1),
1658 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_SEMAPHORE_PBS_OWAY
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_SEMAPHORE_PBS_OWAY_TOOLTIP
), EndContainer(), SetFill(1, 1),
1659 NWidget(WWT_IMGBTN
, COLOUR_DARK_GREEN
, WID_BS_CONVERT
), SetDataTip(SPR_IMG_SIGNAL_CONVERT
, STR_BUILD_SIGNAL_CONVERT_TOOLTIP
), SetFill(1, 1),
1661 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
),
1662 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_ELECTRIC_NORM
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_ELECTRIC_NORM_TOOLTIP
), EndContainer(), SetFill(1, 1),
1663 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_ELECTRIC_ENTRY
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_ELECTRIC_ENTRY_TOOLTIP
), EndContainer(), SetFill(1, 1),
1664 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_ELECTRIC_EXIT
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_ELECTRIC_EXIT_TOOLTIP
), EndContainer(), SetFill(1, 1),
1665 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_ELECTRIC_COMBO
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_ELECTRIC_COMBO_TOOLTIP
), EndContainer(), SetFill(1, 1),
1666 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_ELECTRIC_PBS
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_ELECTRIC_PBS_TOOLTIP
), EndContainer(), SetFill(1, 1),
1667 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BS_ELECTRIC_PBS_OWAY
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_ELECTRIC_PBS_OWAY_TOOLTIP
), EndContainer(), SetFill(1, 1),
1668 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
), SetDataTip(STR_NULL
, STR_BUILD_SIGNAL_DRAG_SIGNALS_DENSITY_TOOLTIP
), SetFill(1, 1),
1669 NWidget(WWT_LABEL
, COLOUR_DARK_GREEN
, WID_BS_DRAG_SIGNALS_DENSITY_LABEL
), SetDataTip(STR_ORANGE_INT
, STR_BUILD_SIGNAL_DRAG_SIGNALS_DENSITY_TOOLTIP
), SetFill(1, 1),
1670 NWidget(NWID_HORIZONTAL
), SetPIP(2, 0, 2),
1671 NWidget(NWID_SPACER
), SetFill(1, 0),
1672 NWidget(WWT_PUSHARROWBTN
, COLOUR_GREY
, WID_BS_DRAG_SIGNALS_DENSITY_DECREASE
), SetMinimalSize(9, 12), SetDataTip(AWV_DECREASE
, STR_BUILD_SIGNAL_DRAG_SIGNALS_DENSITY_DECREASE_TOOLTIP
),
1673 NWidget(WWT_PUSHARROWBTN
, COLOUR_GREY
, WID_BS_DRAG_SIGNALS_DENSITY_INCREASE
), SetMinimalSize(9, 12), SetDataTip(AWV_INCREASE
, STR_BUILD_SIGNAL_DRAG_SIGNALS_DENSITY_INCREASE_TOOLTIP
),
1674 NWidget(NWID_SPACER
), SetFill(1, 0),
1676 NWidget(NWID_SPACER
), SetMinimalSize(0, 2), SetFill(1, 0),
1682 /** Signal selection window description */
1683 static WindowDesc
_signal_builder_desc(
1684 WDP_AUTO
, "build_signal", 0, 0,
1685 WC_BUILD_SIGNAL
, WC_BUILD_TOOLBAR
,
1687 _nested_signal_builder_widgets
, lengthof(_nested_signal_builder_widgets
)
1691 * Open the signal selection window
1693 static void ShowSignalBuilder(Window
*parent
)
1695 new BuildSignalWindow(&_signal_builder_desc
, parent
);
1698 struct BuildRailDepotWindow
: public PickerWindowBase
{
1699 BuildRailDepotWindow(WindowDesc
*desc
, Window
*parent
) : PickerWindowBase(desc
, parent
)
1701 this->InitNested(TRANSPORT_RAIL
);
1702 this->LowerWidget(_build_depot_direction
+ WID_BRAD_DEPOT_NE
);
1705 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
1707 if (!IsInsideMM(widget
, WID_BRAD_DEPOT_NE
, WID_BRAD_DEPOT_NW
+ 1)) return;
1709 size
->width
= ScaleGUITrad(64) + 2;
1710 size
->height
= ScaleGUITrad(48) + 2;
1713 virtual void DrawWidget(const Rect
&r
, int widget
) const
1715 if (!IsInsideMM(widget
, WID_BRAD_DEPOT_NE
, WID_BRAD_DEPOT_NW
+ 1)) return;
1717 DrawTrainDepotSprite(r
.left
+ 1 + ScaleGUITrad(31), r
.bottom
- ScaleGUITrad(31), widget
- WID_BRAD_DEPOT_NE
+ DIAGDIR_NE
, _cur_railtype
);
1720 virtual void OnClick(Point pt
, int widget
, int click_count
)
1723 case WID_BRAD_DEPOT_NE
:
1724 case WID_BRAD_DEPOT_SE
:
1725 case WID_BRAD_DEPOT_SW
:
1726 case WID_BRAD_DEPOT_NW
:
1727 this->RaiseWidget(_build_depot_direction
+ WID_BRAD_DEPOT_NE
);
1728 _build_depot_direction
= (DiagDirection
)(widget
- WID_BRAD_DEPOT_NE
);
1729 this->LowerWidget(_build_depot_direction
+ WID_BRAD_DEPOT_NE
);
1730 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1737 /** Nested widget definition of the build rail depot window */
1738 static const NWidgetPart _nested_build_depot_widgets
[] = {
1739 NWidget(NWID_HORIZONTAL
),
1740 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
1741 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
), SetDataTip(STR_BUILD_DEPOT_TRAIN_ORIENTATION_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
1743 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
),
1744 NWidget(NWID_SPACER
), SetMinimalSize(0, 3),
1745 NWidget(NWID_HORIZONTAL_LTR
),
1746 NWidget(NWID_SPACER
), SetMinimalSize(3, 0), SetFill(1, 0),
1747 NWidget(NWID_VERTICAL
),
1748 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BRAD_DEPOT_NW
), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_TRAIN_ORIENTATION_TOOLTIP
),
1750 NWidget(NWID_SPACER
), SetMinimalSize(0, 2),
1751 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BRAD_DEPOT_SW
), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_TRAIN_ORIENTATION_TOOLTIP
),
1754 NWidget(NWID_SPACER
), SetMinimalSize(2, 0),
1755 NWidget(NWID_VERTICAL
),
1756 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BRAD_DEPOT_NE
), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_TRAIN_ORIENTATION_TOOLTIP
),
1758 NWidget(NWID_SPACER
), SetMinimalSize(0, 2),
1759 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_BRAD_DEPOT_SE
), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_TRAIN_ORIENTATION_TOOLTIP
),
1762 NWidget(NWID_SPACER
), SetMinimalSize(3, 0), SetFill(1, 0),
1764 NWidget(NWID_SPACER
), SetMinimalSize(0, 3),
1768 static WindowDesc
_build_depot_desc(
1769 WDP_AUTO
, NULL
, 0, 0,
1770 WC_BUILD_DEPOT
, WC_BUILD_TOOLBAR
,
1772 _nested_build_depot_widgets
, lengthof(_nested_build_depot_widgets
)
1775 static void ShowBuildTrainDepotPicker(Window
*parent
)
1777 new BuildRailDepotWindow(&_build_depot_desc
, parent
);
1780 struct BuildRailWaypointWindow
: PickerWindowBase
{
1781 BuildRailWaypointWindow(WindowDesc
*desc
, Window
*parent
) : PickerWindowBase(desc
, parent
)
1783 this->CreateNestedTree();
1785 NWidgetMatrix
*matrix
= this->GetWidget
<NWidgetMatrix
>(WID_BRW_WAYPOINT_MATRIX
);
1786 matrix
->SetScrollbar(this->GetScrollbar(WID_BRW_SCROLL
));
1788 this->FinishInitNested(TRANSPORT_RAIL
);
1790 matrix
->SetCount(_waypoint_count
);
1791 matrix
->SetClicked(_cur_waypoint_type
);
1794 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
1797 case WID_BRW_WAYPOINT_MATRIX
:
1798 /* Three blobs high and wide. */
1799 size
->width
+= resize
->width
* 2;
1800 size
->height
+= resize
->height
* 2;
1802 /* Resizing in X direction only at blob size, but at pixel level in Y. */
1806 case WID_BRW_WAYPOINT
:
1807 size
->width
= ScaleGUITrad(64) + 2;
1808 size
->height
= ScaleGUITrad(58) + 2;
1813 virtual void DrawWidget(const Rect
&r
, int widget
) const
1815 switch (GB(widget
, 0, 16)) {
1816 case WID_BRW_WAYPOINT
: {
1817 byte type
= GB(widget
, 16, 16);
1818 const StationSpec
*statspec
= StationClass::Get(STAT_CLASS_WAYP
)->GetSpec(type
);
1819 DrawWaypointSprite(r
.left
+ 1 + ScaleGUITrad(31), r
.bottom
- ScaleGUITrad(31), type
, _cur_railtype
);
1821 if (!IsStationAvailable(statspec
)) {
1822 GfxFillRect(r
.left
+ 1, r
.top
+ 1, r
.right
- 1, r
.bottom
- 1, PC_BLACK
, FILLRECT_CHECKER
);
1828 virtual void OnClick(Point pt
, int widget
, int click_count
)
1830 switch (GB(widget
, 0, 16)) {
1831 case WID_BRW_WAYPOINT
: {
1832 byte type
= GB(widget
, 16, 16);
1833 this->GetWidget
<NWidgetMatrix
>(WID_BRW_WAYPOINT_MATRIX
)->SetClicked(_cur_waypoint_type
);
1835 /* Check station availability callback */
1836 const StationSpec
*statspec
= StationClass::Get(STAT_CLASS_WAYP
)->GetSpec(type
);
1837 if (!IsStationAvailable(statspec
)) return;
1839 _cur_waypoint_type
= type
;
1840 this->GetWidget
<NWidgetMatrix
>(WID_BRW_WAYPOINT_MATRIX
)->SetClicked(_cur_waypoint_type
);
1841 if (_settings_client
.sound
.click_beep
) SndPlayFx(SND_15_BEEP
);
1849 /** Nested widget definition for the build NewGRF rail waypoint window */
1850 static const NWidgetPart _nested_build_waypoint_widgets
[] = {
1851 NWidget(NWID_HORIZONTAL
),
1852 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
1853 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
), SetDataTip(STR_WAYPOINT_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
1854 NWidget(WWT_DEFSIZEBOX
, COLOUR_DARK_GREEN
),
1856 NWidget(NWID_HORIZONTAL
),
1857 NWidget(NWID_MATRIX
, COLOUR_DARK_GREEN
, WID_BRW_WAYPOINT_MATRIX
), SetPIP(3, 2, 3), SetScrollbar(WID_BRW_SCROLL
),
1858 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_BRW_WAYPOINT
), SetMinimalSize(66, 60), SetDataTip(0x0, STR_WAYPOINT_GRAPHICS_TOOLTIP
), SetScrollbar(WID_BRW_SCROLL
), EndContainer(),
1860 NWidget(NWID_VERTICAL
),
1861 NWidget(NWID_VSCROLLBAR
, COLOUR_DARK_GREEN
, WID_BRW_SCROLL
),
1862 NWidget(WWT_RESIZEBOX
, COLOUR_DARK_GREEN
),
1867 static WindowDesc
_build_waypoint_desc(
1868 WDP_AUTO
, "build_waypoint", 0, 0,
1869 WC_BUILD_WAYPOINT
, WC_BUILD_TOOLBAR
,
1871 _nested_build_waypoint_widgets
, lengthof(_nested_build_waypoint_widgets
)
1874 static void ShowBuildWaypointPicker(Window
*parent
)
1876 new BuildRailWaypointWindow(&_build_waypoint_desc
, parent
);
1880 * Initialize rail building GUI settings
1882 void InitializeRailGui()
1884 _build_depot_direction
= DIAGDIR_NW
;
1888 * Re-initialize rail-build toolbar after toggling support for electric trains
1889 * @param disable Boolean whether electric trains are disabled (removed from the game)
1891 void ReinitGuiAfterToggleElrail(bool disable
)
1893 extern RailType _last_built_railtype
;
1894 if (disable
&& _last_built_railtype
== RAILTYPE_ELECTRIC
) {
1895 _last_built_railtype
= _cur_railtype
= RAILTYPE_RAIL
;
1896 BuildRailToolbarWindow
*w
= dynamic_cast<BuildRailToolbarWindow
*>(FindWindowById(WC_BUILD_TOOLBAR
, TRANSPORT_RAIL
));
1897 if (w
!= NULL
) w
->ModifyRailType(_cur_railtype
);
1899 MarkWholeScreenDirty();
1902 /** Set the initial (default) railtype to use */
1903 static void SetDefaultRailGui()
1905 if (_local_company
== COMPANY_SPECTATOR
|| !Company::IsValidID(_local_company
)) return;
1907 extern RailType _last_built_railtype
;
1908 RailType rt
= (RailType
)(_settings_client
.gui
.default_rail_type
+ RAILTYPE_END
);
1909 if (rt
== DEF_RAILTYPE_MOST_USED
) {
1910 /* Find the most used rail type */
1911 RailType count
[RAILTYPE_END
];
1912 memset(count
, 0, sizeof(count
));
1913 for (TileIndex t
= 0; t
< MapSize(); t
++) {
1914 if (IsTileType(t
, MP_RAILWAY
) || IsLevelCrossingTile(t
) || HasStationTileRail(t
) ||
1915 (IsTileType(t
, MP_TUNNELBRIDGE
) && GetTunnelBridgeTransportType(t
) == TRANSPORT_RAIL
)) {
1916 count
[GetRailType(t
)]++;
1921 for (RailType r
= RAILTYPE_ELECTRIC
; r
< RAILTYPE_END
; r
++) {
1922 if (count
[r
] >= count
[rt
]) rt
= r
;
1925 /* No rail, just get the first available one */
1926 if (count
[rt
] == 0) rt
= DEF_RAILTYPE_FIRST
;
1929 case DEF_RAILTYPE_FIRST
:
1931 while (rt
< RAILTYPE_END
&& !HasRailtypeAvail(_local_company
, rt
)) rt
++;
1934 case DEF_RAILTYPE_LAST
:
1935 rt
= GetBestRailtype(_local_company
);
1942 _last_built_railtype
= _cur_railtype
= rt
;
1943 BuildRailToolbarWindow
*w
= dynamic_cast<BuildRailToolbarWindow
*>(FindWindowById(WC_BUILD_TOOLBAR
, TRANSPORT_RAIL
));
1944 if (w
!= NULL
) w
->ModifyRailType(_cur_railtype
);
1948 * Updates the current signal variant used in the signal GUI
1949 * to the one adequate to current year.
1950 * @param p needed to be called when a setting changes
1951 * @return success, needed for settings
1953 bool ResetSignalVariant(int32 p
)
1955 SignalVariant new_variant
= (_cur_year
< _settings_client
.gui
.semaphore_build_before
? SIG_SEMAPHORE
: SIG_ELECTRIC
);
1957 if (new_variant
!= _cur_signal_variant
) {
1958 Window
*w
= FindWindowById(WC_BUILD_SIGNAL
, 0);
1961 w
->RaiseWidget((_cur_signal_variant
== SIG_ELECTRIC
? WID_BS_ELECTRIC_NORM
: WID_BS_SEMAPHORE_NORM
) + _cur_signal_type
);
1963 _cur_signal_variant
= new_variant
;
1970 * Resets the rail GUI - sets default railtype to build
1971 * and resets the signal GUI
1973 void InitializeRailGUI()
1975 SetDefaultRailGui();
1977 _convert_signal_button
= false;
1978 _cur_signal_type
= _default_signal_type
[_settings_client
.gui
.default_signal_type
];
1979 ResetSignalVariant();
1983 * Create a drop down list for all the rail types of the local company.
1984 * @param for_replacement Whether this list is for the replacement window.
1985 * @param all_option Whether to add an 'all types' item.
1986 * @return The populated and sorted #DropDownList.
1988 DropDownList
*GetRailTypeDropDownList(bool for_replacement
, bool all_option
)
1990 RailTypes used_railtypes
= RAILTYPES_NONE
;
1992 /* Find the used railtypes. */
1994 FOR_ALL_ENGINES_OF_TYPE(e
, VEH_TRAIN
) {
1995 if (!HasBit(e
->info
.climates
, _settings_game
.game_creation
.landscape
)) continue;
1997 used_railtypes
|= GetRailTypeInfo(e
->u
.rail
.railtype
)->introduces_railtypes
;
2000 /* Get the date introduced railtypes as well. */
2001 used_railtypes
= AddDateIntroducedRailTypes(used_railtypes
, MAX_DAY
);
2003 const Company
*c
= Company::Get(_local_company
);
2004 DropDownList
*list
= new DropDownList();
2007 DropDownListStringItem
*item
= new DropDownListStringItem(STR_REPLACE_ALL_RAILTYPE
, INVALID_RAILTYPE
, false);
2008 *list
->Append() = item
;
2012 FOR_ALL_SORTED_RAILTYPES(rt
) {
2013 /* If it's not used ever, don't show it to the user. */
2014 if (!HasBit(used_railtypes
, rt
)) continue;
2016 const RailtypeInfo
*rti
= GetRailTypeInfo(rt
);
2018 StringID str
= for_replacement
? rti
->strings
.replace_text
: (rti
->max_speed
> 0 ? STR_TOOLBAR_RAILTYPE_VELOCITY
: STR_JUST_STRING
);
2019 DropDownListParamStringItem
*item
= new DropDownListParamStringItem(str
, rt
, !HasBit(c
->avail_railtypes
, rt
));
2020 item
->SetParam(0, rti
->strings
.menu_text
);
2021 item
->SetParam(1, rti
->max_speed
);
2022 *list
->Append() = item
;