OpenTTD
road_gui.cpp
Go to the documentation of this file.
1 /* $Id$ */
2 
3 /*
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/>.
8  */
9 
12 #include "stdafx.h"
13 #include "gui.h"
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 "road_cmd.h"
20 #include "station_func.h"
21 #include "window_func.h"
22 #include "vehicle_func.h"
23 #include "sound_func.h"
24 #include "company_func.h"
25 #include "tunnelbridge.h"
26 #include "tunnelbridge_map.h"
27 #include "tilehighlight_func.h"
28 #include "company_base.h"
29 #include "hotkeys.h"
30 #include "road_gui.h"
31 #include "zoom_func.h"
32 
33 #include "widgets/road_widget.h"
34 
35 #include "table/strings.h"
36 
37 #include "safeguards.h"
38 
39 static void ShowRVStationPicker(Window *parent, RoadStopType rs);
40 static void ShowRoadDepotPicker(Window *parent);
41 
42 static bool _remove_button_clicked;
43 static bool _one_way_button_clicked;
44 
49 enum RoadFlags {
50  RF_NONE = 0x00,
51  RF_START_HALFROAD_Y = 0x01, // The start tile in Y-dir should have only a half road
52  RF_END_HALFROAD_Y = 0x02, // The end tile in Y-dir should have only a half road
53  RF_DIR_Y = 0x04, // The direction is Y-dir
54  RF_DIR_X = RF_NONE, // Dummy; Dir X is set when RF_DIR_Y is not set
55  RF_START_HALFROAD_X = 0x08, // The start tile in X-dir should have only a half road
56  RF_END_HALFROAD_X = 0x10, // The end tile in X-dir should have only a half road
57 };
59 
60 static RoadFlags _place_road_flag;
61 
62 static RoadType _cur_roadtype;
63 
64 static DiagDirection _road_depot_orientation;
65 static DiagDirection _road_station_picker_orientation;
66 
67 void CcPlaySound_SPLAT_OTHER(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
68 {
69  if (result.Succeeded() && _settings_client.sound.confirm) SndPlayTileFx(SND_1F_SPLAT_OTHER, tile);
70 }
71 
76 static void PlaceRoad_Bridge(TileIndex tile, Window *w)
77 {
78  if (IsBridgeTile(tile)) {
79  TileIndex other_tile = GetOtherTunnelBridgeEnd(tile);
80  Point pt = {0, 0};
81  w->OnPlaceMouseUp(VPM_X_OR_Y, DDSP_BUILD_BRIDGE, pt, other_tile, tile);
82  } else {
84  }
85 }
86 
96 void CcBuildRoadTunnel(const CommandCost &result, TileIndex start_tile, uint32 p1, uint32 p2)
97 {
98  if (result.Succeeded()) {
99  if (_settings_client.sound.confirm) SndPlayTileFx(SND_1F_SPLAT_OTHER, start_tile);
101 
102  DiagDirection start_direction = ReverseDiagDir(GetTunnelBridgeDirection(start_tile));
103  ConnectRoadToStructure(start_tile, start_direction);
104 
105  TileIndex end_tile = GetOtherTunnelBridgeEnd(start_tile);
106  DiagDirection end_direction = ReverseDiagDir(GetTunnelBridgeDirection(end_tile));
107  ConnectRoadToStructure(end_tile, end_direction);
108  } else {
110  }
111 }
112 
114 struct RoadTypeInfo {
120 
123 
127 };
128 
130 static const RoadTypeInfo _road_type_infos[] = {
131  {
132  STR_ERROR_CAN_T_BUILD_ROAD_HERE,
133  STR_ERROR_CAN_T_REMOVE_ROAD_FROM,
134  STR_ERROR_CAN_T_BUILD_ROAD_DEPOT,
135  { STR_ERROR_CAN_T_BUILD_BUS_STATION, STR_ERROR_CAN_T_BUILD_TRUCK_STATION },
136  { STR_ERROR_CAN_T_REMOVE_BUS_STATION, STR_ERROR_CAN_T_REMOVE_TRUCK_STATION },
137  { STR_STATION_BUILD_BUS_ORIENTATION, STR_STATION_BUILD_TRUCK_ORIENTATION },
138  { STR_STATION_BUILD_BUS_ORIENTATION_TOOLTIP, STR_STATION_BUILD_TRUCK_ORIENTATION_TOOLTIP },
139 
140  SPR_CURSOR_ROAD_NESW,
141  SPR_CURSOR_ROAD_NWSE,
142  SPR_CURSOR_AUTOROAD,
143  },
144  {
145  STR_ERROR_CAN_T_BUILD_TRAMWAY_HERE,
146  STR_ERROR_CAN_T_REMOVE_TRAMWAY_FROM,
147  STR_ERROR_CAN_T_BUILD_TRAM_DEPOT,
148  { STR_ERROR_CAN_T_BUILD_PASSENGER_TRAM_STATION, STR_ERROR_CAN_T_BUILD_CARGO_TRAM_STATION },
149  { STR_ERROR_CAN_T_REMOVE_PASSENGER_TRAM_STATION, STR_ERROR_CAN_T_REMOVE_CARGO_TRAM_STATION },
150  { STR_STATION_BUILD_PASSENGER_TRAM_ORIENTATION, STR_STATION_BUILD_CARGO_TRAM_ORIENTATION },
151  { STR_STATION_BUILD_PASSENGER_TRAM_ORIENTATION_TOOLTIP, STR_STATION_BUILD_CARGO_TRAM_ORIENTATION_TOOLTIP },
152 
153  SPR_CURSOR_TRAMWAY_NESW,
154  SPR_CURSOR_TRAMWAY_NWSE,
155  SPR_CURSOR_AUTOTRAM,
156  },
157 };
158 
165 {
166  tile += TileOffsByDiagDir(direction);
167  /* if there is a roadpiece just outside of the station entrance, build a connecting route */
168  if (IsNormalRoadTile(tile)) {
169  if (GetRoadBits(tile, _cur_roadtype) != ROAD_NONE) {
170  DoCommandP(tile, _cur_roadtype << 4 | DiagDirToRoadBits(ReverseDiagDir(direction)), 0, CMD_BUILD_ROAD);
171  }
172  }
173 }
174 
175 void CcRoadDepot(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
176 {
177  if (result.Failed()) return;
178 
179  DiagDirection dir = (DiagDirection)GB(p1, 0, 2);
180  if (_settings_client.sound.confirm) SndPlayTileFx(SND_1F_SPLAT_OTHER, tile);
182  ConnectRoadToStructure(tile, dir);
183 }
184 
199 void CcRoadStop(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
200 {
201  if (result.Failed()) return;
202 
203  DiagDirection dir = (DiagDirection)GB(p2, 6, 2);
204  if (_settings_client.sound.confirm) SndPlayTileFx(SND_1F_SPLAT_OTHER, tile);
206  TileArea roadstop_area(tile, GB(p1, 0, 8), GB(p1, 8, 8));
207  TILE_AREA_LOOP(cur_tile, roadstop_area) {
208  ConnectRoadToStructure(cur_tile, dir);
209  /* For a drive-through road stop build connecting road for other entrance. */
210  if (HasBit(p2, 1)) ConnectRoadToStructure(cur_tile, ReverseDiagDir(dir));
211  }
212 }
213 
224 static void PlaceRoadStop(TileIndex start_tile, TileIndex end_tile, uint32 p2, uint32 cmd)
225 {
226  uint8 ddir = _road_station_picker_orientation;
227  SB(p2, 16, 16, INVALID_STATION); // no station to join
228 
229  if (ddir >= DIAGDIR_END) {
230  SetBit(p2, 1); // It's a drive-through stop.
231  ddir -= DIAGDIR_END; // Adjust picker result to actual direction.
232  }
233  p2 |= ddir << 6; // Set the DiagDirecion into p2 bits 6 and 7.
234 
235  TileArea ta(start_tile, end_tile);
236  CommandContainer cmdcont = { ta.tile, (uint32)(ta.w | ta.h << 8), p2, cmd, CcRoadStop, "" };
237  ShowSelectStationIfNeeded(cmdcont, ta);
238 }
239 
245 {
248  } else {
249  if (_road_station_picker_orientation < DIAGDIR_END) { // Not a drive-through stop.
250  VpStartPlaceSizing(tile, (DiagDirToAxis(_road_station_picker_orientation) == AXIS_X) ? VPM_X_LIMITED : VPM_Y_LIMITED, DDSP_BUILD_BUSSTOP);
251  } else {
253  }
254  VpSetPlaceSizingLimit(_settings_game.station.station_spread);
255  }
256 }
257 
263 {
266  } else {
267  if (_road_station_picker_orientation < DIAGDIR_END) { // Not a drive-through stop.
268  VpStartPlaceSizing(tile, (DiagDirToAxis(_road_station_picker_orientation) == AXIS_X) ? VPM_X_LIMITED : VPM_Y_LIMITED, DDSP_BUILD_TRUCKSTOP);
269  } else {
271  }
272  VpSetPlaceSizingLimit(_settings_game.station.station_spread);
273  }
274 }
275 
276 typedef void OnButtonClick(Window *w);
277 
283 {
287  SetSelectionRed(_remove_button_clicked);
288 }
289 
296 {
297  if (w->IsWidgetDisabled(WID_ROT_REMOVE)) return false;
298 
299  /* allow ctrl to switch remove mode only for these widgets */
300  for (uint i = WID_ROT_ROAD_X; i <= WID_ROT_AUTOROAD; i++) {
301  if (w->IsWidgetLowered(i)) {
303  return true;
304  }
305  }
306 
307  return false;
308 }
309 
313 
314  BuildRoadToolbarWindow(WindowDesc *desc, WindowNumber window_number) : Window(desc)
315  {
316  this->InitNested(window_number);
317  this->SetWidgetsDisabledState(true,
321 
322  this->OnInvalidateData();
323  this->last_started_action = WIDGET_LIST_END;
324 
326  }
327 
329  {
331  }
332 
338  virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
339  {
340  if (!gui_scope) return;
341 
342  bool can_build = CanBuildVehicleInfrastructure(VEH_ROAD);
343  this->SetWidgetsDisabledState(!can_build,
348  if (!can_build) {
352  }
353  }
354 
361  {
362  /* The remove and the one way button state is driven
363  * by the other buttons so they don't act on themselves.
364  * Both are only valid if they are able to apply as options. */
365  switch (clicked_widget) {
366  case WID_ROT_REMOVE:
367  this->RaiseWidget(WID_ROT_ONE_WAY);
368  this->SetWidgetDirty(WID_ROT_ONE_WAY);
369  break;
370 
371  case WID_ROT_ONE_WAY:
372  this->RaiseWidget(WID_ROT_REMOVE);
373  this->SetWidgetDirty(WID_ROT_REMOVE);
374  break;
375 
376  case WID_ROT_BUS_STATION:
378  this->DisableWidget(WID_ROT_ONE_WAY);
379  this->SetWidgetDisabledState(WID_ROT_REMOVE, !this->IsWidgetLowered(clicked_widget));
380  break;
381 
382  case WID_ROT_ROAD_X:
383  case WID_ROT_ROAD_Y:
384  case WID_ROT_AUTOROAD:
385  this->SetWidgetsDisabledState(!this->IsWidgetLowered(clicked_widget),
389  break;
390 
391  default:
392  /* When any other buttons than road/station, raise and
393  * disable the removal button */
394  this->SetWidgetsDisabledState(true,
398  this->SetWidgetsLoweredState(false,
402  break;
403  }
404  }
405 
406  virtual void OnClick(Point pt, int widget, int click_count)
407  {
408  _remove_button_clicked = false;
409  _one_way_button_clicked = false;
410  switch (widget) {
411  case WID_ROT_ROAD_X:
412  HandlePlacePushButton(this, WID_ROT_ROAD_X, _road_type_infos[_cur_roadtype].cursor_nwse, HT_RECT);
413  this->last_started_action = widget;
414  break;
415 
416  case WID_ROT_ROAD_Y:
417  HandlePlacePushButton(this, WID_ROT_ROAD_Y, _road_type_infos[_cur_roadtype].cursor_nesw, HT_RECT);
418  this->last_started_action = widget;
419  break;
420 
421  case WID_ROT_AUTOROAD:
422  HandlePlacePushButton(this, WID_ROT_AUTOROAD, _road_type_infos[_cur_roadtype].cursor_autoroad, HT_RECT);
423  this->last_started_action = widget;
424  break;
425 
426  case WID_ROT_DEMOLISH:
428  this->last_started_action = widget;
429  break;
430 
431  case WID_ROT_DEPOT:
432  if (_game_mode == GM_EDITOR || !CanBuildVehicleInfrastructure(VEH_ROAD)) return;
433  if (HandlePlacePushButton(this, WID_ROT_DEPOT, SPR_CURSOR_ROAD_DEPOT, HT_RECT)) {
434  ShowRoadDepotPicker(this);
435  this->last_started_action = widget;
436  }
437  break;
438 
439  case WID_ROT_BUS_STATION:
440  if (_game_mode == GM_EDITOR || !CanBuildVehicleInfrastructure(VEH_ROAD)) return;
441  if (HandlePlacePushButton(this, WID_ROT_BUS_STATION, SPR_CURSOR_BUS_STATION, HT_RECT)) {
442  ShowRVStationPicker(this, ROADSTOP_BUS);
443  this->last_started_action = widget;
444  }
445  break;
446 
448  if (_game_mode == GM_EDITOR || !CanBuildVehicleInfrastructure(VEH_ROAD)) return;
449  if (HandlePlacePushButton(this, WID_ROT_TRUCK_STATION, SPR_CURSOR_TRUCK_STATION, HT_RECT)) {
450  ShowRVStationPicker(this, ROADSTOP_TRUCK);
451  this->last_started_action = widget;
452  }
453  break;
454 
455  case WID_ROT_ONE_WAY:
456  if (this->IsWidgetDisabled(WID_ROT_ONE_WAY)) return;
457  this->SetDirty();
458  this->ToggleWidgetLoweredState(WID_ROT_ONE_WAY);
459  SetSelectionRed(false);
460  break;
461 
463  HandlePlacePushButton(this, WID_ROT_BUILD_BRIDGE, SPR_CURSOR_BRIDGE, HT_RECT);
464  this->last_started_action = widget;
465  break;
466 
468  HandlePlacePushButton(this, WID_ROT_BUILD_TUNNEL, SPR_CURSOR_ROAD_TUNNEL, HT_SPECIAL);
469  this->last_started_action = widget;
470  break;
471 
472  case WID_ROT_REMOVE:
473  if (this->IsWidgetDisabled(WID_ROT_REMOVE)) return;
474 
477  if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
478  break;
479 
480  default: NOT_REACHED();
481  }
482  this->UpdateOptionWidgetStatus((RoadToolbarWidgets)widget);
484  }
485 
486  virtual EventState OnHotkey(int hotkey)
487  {
488  MarkTileDirtyByTile(TileVirtXY(_thd.pos.x, _thd.pos.y)); // redraw tile selection
489  return Window::OnHotkey(hotkey);
490  }
491 
492  virtual void OnPlaceObject(Point pt, TileIndex tile)
493  {
494  _remove_button_clicked = this->IsWidgetLowered(WID_ROT_REMOVE);
495  _one_way_button_clicked = this->IsWidgetLowered(WID_ROT_ONE_WAY);
496  switch (this->last_started_action) {
497  case WID_ROT_ROAD_X:
498  _place_road_flag = RF_DIR_X;
499  if (_tile_fract_coords.x >= 8) _place_road_flag |= RF_START_HALFROAD_X;
501  break;
502 
503  case WID_ROT_ROAD_Y:
504  _place_road_flag = RF_DIR_Y;
505  if (_tile_fract_coords.y >= 8) _place_road_flag |= RF_START_HALFROAD_Y;
507  break;
508 
509  case WID_ROT_AUTOROAD:
510  _place_road_flag = RF_NONE;
511  if (_tile_fract_coords.x >= 8) _place_road_flag |= RF_START_HALFROAD_X;
512  if (_tile_fract_coords.y >= 8) _place_road_flag |= RF_START_HALFROAD_Y;
514  break;
515 
516  case WID_ROT_DEMOLISH:
518  break;
519 
520  case WID_ROT_DEPOT:
521  DoCommandP(tile, _cur_roadtype << 2 | _road_depot_orientation, 0,
522  CMD_BUILD_ROAD_DEPOT | CMD_MSG(_road_type_infos[_cur_roadtype].err_depot), CcRoadDepot);
523  break;
524 
525  case WID_ROT_BUS_STATION:
526  PlaceRoad_BusStation(tile);
527  break;
528 
531  break;
532 
534  PlaceRoad_Bridge(tile, this);
535  break;
536 
538  DoCommandP(tile, RoadTypeToRoadTypes(_cur_roadtype) | (TRANSPORT_ROAD << 8), 0,
539  CMD_BUILD_TUNNEL | CMD_MSG(STR_ERROR_CAN_T_BUILD_TUNNEL_HERE), CcBuildRoadTunnel);
540  break;
541 
542  default: NOT_REACHED();
543  }
544  }
545 
546  virtual void OnPlaceObjectAbort()
547  {
548  this->RaiseButtons();
549  this->SetWidgetsDisabledState(true,
553  this->SetWidgetDirty(WID_ROT_REMOVE);
554  this->SetWidgetDirty(WID_ROT_ONE_WAY);
555 
561  }
562 
563  virtual void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt)
564  {
565  /* Here we update the end tile flags
566  * of the road placement actions.
567  * At first we reset the end halfroad
568  * bits and if needed we set them again. */
569  switch (select_proc) {
571  _place_road_flag &= ~RF_END_HALFROAD_X;
572  if (pt.x & 8) _place_road_flag |= RF_END_HALFROAD_X;
573  break;
574 
576  _place_road_flag &= ~RF_END_HALFROAD_Y;
577  if (pt.y & 8) _place_road_flag |= RF_END_HALFROAD_Y;
578  break;
579 
580  case DDSP_PLACE_AUTOROAD:
581  _place_road_flag &= ~(RF_END_HALFROAD_Y | RF_END_HALFROAD_X);
582  if (pt.y & 8) _place_road_flag |= RF_END_HALFROAD_Y;
583  if (pt.x & 8) _place_road_flag |= RF_END_HALFROAD_X;
584 
585  /* For autoroad we need to update the
586  * direction of the road */
587  if (_thd.size.x > _thd.size.y || (_thd.size.x == _thd.size.y &&
588  ( (_tile_fract_coords.x < _tile_fract_coords.y && (_tile_fract_coords.x + _tile_fract_coords.y) < 16) ||
589  (_tile_fract_coords.x > _tile_fract_coords.y && (_tile_fract_coords.x + _tile_fract_coords.y) > 16) ))) {
590  /* Set dir = X */
591  _place_road_flag &= ~RF_DIR_Y;
592  } else {
593  /* Set dir = Y */
594  _place_road_flag |= RF_DIR_Y;
595  }
596 
597  break;
598 
599  default:
600  break;
601  }
602 
603  VpSelectTilesWithMethod(pt.x, pt.y, select_method);
604  }
605 
606  virtual void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile)
607  {
608  if (pt.x != -1) {
609  switch (select_proc) {
610  default: NOT_REACHED();
611  case DDSP_BUILD_BRIDGE:
613  ShowBuildBridgeWindow(start_tile, end_tile, TRANSPORT_ROAD, RoadTypeToRoadTypes(_cur_roadtype));
614  break;
615 
616  case DDSP_DEMOLISH_AREA:
617  GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
618  break;
619 
622  case DDSP_PLACE_AUTOROAD:
623  /* Flag description:
624  * Use the first three bits (0x07) if dir == Y
625  * else use the last 2 bits (X dir has
626  * not the 3rd bit set) */
627  _place_road_flag = (RoadFlags)((_place_road_flag & RF_DIR_Y) ? (_place_road_flag & 0x07) : (_place_road_flag >> 3));
628 
629  DoCommandP(start_tile, end_tile, _place_road_flag | (_cur_roadtype << 3) | (_one_way_button_clicked << 5),
631  CMD_REMOVE_LONG_ROAD | CMD_MSG(_road_type_infos[_cur_roadtype].err_remove_road) :
632  CMD_BUILD_LONG_ROAD | CMD_MSG(_road_type_infos[_cur_roadtype].err_build_road), CcPlaySound_SPLAT_OTHER);
633  break;
634 
635  case DDSP_BUILD_BUSSTOP:
636  case DDSP_REMOVE_BUSSTOP:
637  if (this->IsWidgetLowered(WID_ROT_BUS_STATION)) {
639  TileArea ta(start_tile, end_tile);
640  DoCommandP(ta.tile, ta.w | ta.h << 8, (_ctrl_pressed << 1) | ROADSTOP_BUS, CMD_REMOVE_ROAD_STOP | CMD_MSG(_road_type_infos[_cur_roadtype].err_remove_station[ROADSTOP_BUS]), CcPlaySound_SPLAT_OTHER);
641  } else {
642  PlaceRoadStop(start_tile, end_tile, (_ctrl_pressed << 5) | RoadTypeToRoadTypes(_cur_roadtype) << 2 | ROADSTOP_BUS, CMD_BUILD_ROAD_STOP | CMD_MSG(_road_type_infos[_cur_roadtype].err_build_station[ROADSTOP_BUS]));
643  }
644  }
645  break;
646 
649  if (this->IsWidgetLowered(WID_ROT_TRUCK_STATION)) {
651  TileArea ta(start_tile, end_tile);
652  DoCommandP(ta.tile, ta.w | ta.h << 8, (_ctrl_pressed << 1) | ROADSTOP_TRUCK, CMD_REMOVE_ROAD_STOP | CMD_MSG(_road_type_infos[_cur_roadtype].err_remove_station[ROADSTOP_TRUCK]), CcPlaySound_SPLAT_OTHER);
653  } else {
654  PlaceRoadStop(start_tile, end_tile, (_ctrl_pressed << 5) | RoadTypeToRoadTypes(_cur_roadtype) << 2 | ROADSTOP_TRUCK, CMD_BUILD_ROAD_STOP | CMD_MSG(_road_type_infos[_cur_roadtype].err_build_station[ROADSTOP_TRUCK]));
655  }
656  }
657  break;
658  }
659  }
660  }
661 
662  virtual void OnPlacePresize(Point pt, TileIndex tile)
663  {
664  DoCommand(tile, RoadTypeToRoadTypes(_cur_roadtype) | (TRANSPORT_ROAD << 8), 0, DC_AUTO, CMD_BUILD_TUNNEL);
666  }
667 
669  {
670  if (RoadToolbar_CtrlChanged(this)) return ES_HANDLED;
671  return ES_NOT_HANDLED;
672  }
673 
674  static HotkeyList hotkeys;
675 };
676 
683 {
684  Window *w = NULL;
685  switch (_game_mode) {
686  case GM_NORMAL: {
687  extern RoadType _last_built_roadtype;
688  w = ShowBuildRoadToolbar(_last_built_roadtype);
689  break;
690  }
691 
692  case GM_EDITOR:
694  break;
695 
696  default:
697  break;
698  }
699 
700  if (w == NULL) return ES_NOT_HANDLED;
701  return w->OnHotkey(hotkey);
702 }
703 
704 static Hotkey roadtoolbar_hotkeys[] = {
705  Hotkey('1', "build_x", WID_ROT_ROAD_X),
706  Hotkey('2', "build_y", WID_ROT_ROAD_Y),
707  Hotkey('3', "autoroad", WID_ROT_AUTOROAD),
708  Hotkey('4', "demolish", WID_ROT_DEMOLISH),
709  Hotkey('5', "depot", WID_ROT_DEPOT),
710  Hotkey('6', "bus_station", WID_ROT_BUS_STATION),
711  Hotkey('7', "truck_station", WID_ROT_TRUCK_STATION),
712  Hotkey('8', "oneway", WID_ROT_ONE_WAY),
713  Hotkey('B', "bridge", WID_ROT_BUILD_BRIDGE),
714  Hotkey('T', "tunnel", WID_ROT_BUILD_TUNNEL),
715  Hotkey('R', "remove", WID_ROT_REMOVE),
716  HOTKEY_LIST_END
717 };
718 HotkeyList BuildRoadToolbarWindow::hotkeys("roadtoolbar", roadtoolbar_hotkeys, RoadToolbarGlobalHotkeys);
719 
720 
721 static const NWidgetPart _nested_build_road_widgets[] = {
723  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
724  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_ROAD_TOOLBAR_ROAD_CONSTRUCTION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
725  NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
726  EndContainer(),
728  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_ROAD_X),
729  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_X_DIR, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_SECTION),
730  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_ROAD_Y),
731  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_Y_DIR, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_SECTION),
732  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_AUTOROAD),
733  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_AUTOROAD, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_AUTOROAD),
734  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_DEMOLISH),
735  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
736  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_DEPOT),
737  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_DEPOT, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_VEHICLE_DEPOT),
738  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_BUS_STATION),
739  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_BUS_STATION, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_BUS_STATION),
740  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_TRUCK_STATION),
741  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRUCK_BAY, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRUCK_LOADING_BAY),
742  NWidget(WWT_PANEL, COLOUR_DARK_GREEN, -1), SetMinimalSize(0, 22), SetFill(1, 1), EndContainer(),
743  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_ONE_WAY),
744  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_ONE_WAY, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_ONE_WAY_ROAD),
745  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_BUILD_BRIDGE),
746  SetFill(0, 1), SetMinimalSize(43, 22), SetDataTip(SPR_IMG_BRIDGE, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_BRIDGE),
747  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_BUILD_TUNNEL),
748  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_TUNNEL, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_TUNNEL),
749  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_REMOVE),
750  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_REMOVE, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_BUILD_REMOVE_FOR_ROAD),
751  EndContainer(),
752 };
753 
754 static WindowDesc _build_road_desc(
755  WDP_ALIGN_TOOLBAR, "toolbar_road", 0, 0,
758  _nested_build_road_widgets, lengthof(_nested_build_road_widgets),
759  &BuildRoadToolbarWindow::hotkeys
760 );
761 
762 static const NWidgetPart _nested_build_tramway_widgets[] = {
764  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
765  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_ROAD_TOOLBAR_TRAM_CONSTRUCTION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
766  NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
767  EndContainer(),
769  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_ROAD_X),
770  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRAMWAY_X_DIR, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_SECTION),
771  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_ROAD_Y),
772  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRAMWAY_Y_DIR, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_SECTION),
773  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_AUTOROAD),
774  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_AUTOTRAM, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_AUTOTRAM),
775  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_DEMOLISH),
776  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
777  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_DEPOT),
778  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_DEPOT, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAM_VEHICLE_DEPOT),
779  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_BUS_STATION),
780  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_BUS_STATION, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_PASSENGER_TRAM_STATION),
781  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_TRUCK_STATION),
782  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_TRUCK_BAY, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_CARGO_TRAM_STATION),
783  NWidget(WWT_PANEL, COLOUR_DARK_GREEN, -1), SetMinimalSize(0, 22), SetFill(1, 1), EndContainer(),
784  NWidget(WWT_EMPTY, COLOUR_DARK_GREEN, WID_ROT_ONE_WAY), SetMinimalSize(0, 0),
785  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_BUILD_BRIDGE),
786  SetFill(0, 1), SetMinimalSize(43, 22), SetDataTip(SPR_IMG_BRIDGE, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_BRIDGE),
787  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_BUILD_TUNNEL),
788  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_TUNNEL, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_TRAMWAY_TUNNEL),
789  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_REMOVE),
790  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_REMOVE, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_BUILD_REMOVE_FOR_TRAMWAYS),
791  EndContainer(),
792 };
793 
794 static WindowDesc _build_tramway_desc(
795  WDP_ALIGN_TOOLBAR, "toolbar_tramway", 0, 0,
798  _nested_build_tramway_widgets, lengthof(_nested_build_tramway_widgets),
799  &BuildRoadToolbarWindow::hotkeys
800 );
801 
810 {
811  if (!Company::IsValidID(_local_company)) return NULL;
812  _cur_roadtype = roadtype;
813 
815  return AllocateWindowDescFront<BuildRoadToolbarWindow>(roadtype == ROADTYPE_ROAD ? &_build_road_desc : &_build_tramway_desc, TRANSPORT_ROAD);
816 }
817 
818 static const NWidgetPart _nested_build_road_scen_widgets[] = {
820  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
821  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_ROAD_TOOLBAR_ROAD_CONSTRUCTION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
822  NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
823  EndContainer(),
825  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_ROAD_X),
826  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_X_DIR, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_SECTION),
827  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_ROAD_Y),
828  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_Y_DIR, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_SECTION),
829  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_AUTOROAD),
830  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_AUTOROAD, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_AUTOROAD),
831  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_DEMOLISH),
832  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
833  NWidget(WWT_PANEL, COLOUR_DARK_GREEN, -1), SetMinimalSize(0, 22), SetFill(1, 1), EndContainer(),
834  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_ONE_WAY),
835  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_ONE_WAY, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_ONE_WAY_ROAD),
836  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_BUILD_BRIDGE),
837  SetFill(0, 1), SetMinimalSize(43, 22), SetDataTip(SPR_IMG_BRIDGE, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_BRIDGE),
838  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_BUILD_TUNNEL),
839  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_ROAD_TUNNEL, STR_ROAD_TOOLBAR_TOOLTIP_BUILD_ROAD_TUNNEL),
840  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_ROT_REMOVE),
841  SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_REMOVE, STR_ROAD_TOOLBAR_TOOLTIP_TOGGLE_BUILD_REMOVE_FOR_ROAD),
842  EndContainer(),
843 };
844 
845 static WindowDesc _build_road_scen_desc(
846  WDP_AUTO, "toolbar_road_scen", 0, 0,
849  _nested_build_road_scen_widgets, lengthof(_nested_build_road_scen_widgets),
850  &BuildRoadToolbarWindow::hotkeys
851 );
852 
858 {
859  _cur_roadtype = ROADTYPE_ROAD;
860  return AllocateWindowDescFront<BuildRoadToolbarWindow>(&_build_road_scen_desc, TRANSPORT_ROAD);
861 }
862 
864  BuildRoadDepotWindow(WindowDesc *desc, Window *parent) : PickerWindowBase(desc, parent)
865  {
866  this->CreateNestedTree();
867 
868  this->LowerWidget(_road_depot_orientation + WID_BROD_DEPOT_NE);
869  if ( _cur_roadtype == ROADTYPE_TRAM) {
870  this->GetWidget<NWidgetCore>(WID_BROD_CAPTION)->widget_data = STR_BUILD_DEPOT_TRAM_ORIENTATION_CAPTION;
871  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;
872  }
873 
874  this->FinishInitNested(TRANSPORT_ROAD);
875  }
876 
877  virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
878  {
879  if (!IsInsideMM(widget, WID_BROD_DEPOT_NE, WID_BROD_DEPOT_NW + 1)) return;
880 
881  size->width = ScaleGUITrad(64) + 2;
882  size->height = ScaleGUITrad(48) + 2;
883  }
884 
885  virtual void DrawWidget(const Rect &r, int widget) const
886  {
887  if (!IsInsideMM(widget, WID_BROD_DEPOT_NE, WID_BROD_DEPOT_NW + 1)) return;
888 
889  DrawRoadDepotSprite(r.left + 1 + ScaleGUITrad(31), r.bottom - ScaleGUITrad(31), (DiagDirection)(widget - WID_BROD_DEPOT_NE + DIAGDIR_NE), _cur_roadtype);
890  }
891 
892  virtual void OnClick(Point pt, int widget, int click_count)
893  {
894  switch (widget) {
895  case WID_BROD_DEPOT_NW:
896  case WID_BROD_DEPOT_NE:
897  case WID_BROD_DEPOT_SW:
898  case WID_BROD_DEPOT_SE:
899  this->RaiseWidget(_road_depot_orientation + WID_BROD_DEPOT_NE);
900  _road_depot_orientation = (DiagDirection)(widget - WID_BROD_DEPOT_NE);
901  this->LowerWidget(_road_depot_orientation + WID_BROD_DEPOT_NE);
902  if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
903  this->SetDirty();
904  break;
905 
906  default:
907  break;
908  }
909  }
910 };
911 
912 static const NWidgetPart _nested_build_road_depot_widgets[] = {
914  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
915  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN, WID_BROD_CAPTION), SetDataTip(STR_BUILD_DEPOT_ROAD_ORIENTATION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
916  EndContainer(),
917  NWidget(WWT_PANEL, COLOUR_DARK_GREEN),
920  NWidget(NWID_SPACER), SetMinimalSize(3, 0), SetFill(1, 0),
922  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROD_DEPOT_NW), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_ROAD_ORIENTATION_SELECT_TOOLTIP),
923  EndContainer(),
925  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROD_DEPOT_SW), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_ROAD_ORIENTATION_SELECT_TOOLTIP),
926  EndContainer(),
927  EndContainer(),
930  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROD_DEPOT_NE), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_ROAD_ORIENTATION_SELECT_TOOLTIP),
931  EndContainer(),
933  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROD_DEPOT_SE), SetMinimalSize(66, 50), SetDataTip(0x0, STR_BUILD_DEPOT_ROAD_ORIENTATION_SELECT_TOOLTIP),
934  EndContainer(),
935  EndContainer(),
936  NWidget(NWID_SPACER), SetMinimalSize(3, 0), SetFill(1, 0),
937  EndContainer(),
939  EndContainer(),
940 };
941 
942 static WindowDesc _build_road_depot_desc(
943  WDP_AUTO, NULL, 0, 0,
946  _nested_build_road_depot_widgets, lengthof(_nested_build_road_depot_widgets)
947 );
948 
949 static void ShowRoadDepotPicker(Window *parent)
950 {
951  new BuildRoadDepotWindow(&_build_road_depot_desc, parent);
952 }
953 
955  BuildRoadStationWindow(WindowDesc *desc, Window *parent, RoadStopType rs) : PickerWindowBase(desc, parent)
956  {
957  this->CreateNestedTree();
958 
959  /* Trams don't have non-drivethrough stations */
960  if (_cur_roadtype == ROADTYPE_TRAM && _road_station_picker_orientation < DIAGDIR_END) {
961  _road_station_picker_orientation = DIAGDIR_END;
962  }
963 
964  this->GetWidget<NWidgetCore>(WID_BROS_CAPTION)->widget_data = _road_type_infos[_cur_roadtype].picker_title[rs];
965  for (uint i = (_cur_roadtype == ROADTYPE_TRAM ? WID_BROS_STATION_X : WID_BROS_STATION_NE); i < WID_BROS_LT_OFF; i++) {
966  this->GetWidget<NWidgetCore>(i)->tool_tip = _road_type_infos[_cur_roadtype].picker_tooltip[rs];
967  }
968 
969  this->LowerWidget(_road_station_picker_orientation + WID_BROS_STATION_NE);
970  this->LowerWidget(_settings_client.gui.station_show_coverage + WID_BROS_LT_OFF);
971 
972  this->FinishInitNested(TRANSPORT_ROAD);
973 
974  this->window_class = (rs == ROADSTOP_BUS) ? WC_BUS_STATION : WC_TRUCK_STATION;
975  }
976 
977  virtual ~BuildRoadStationWindow()
978  {
980  }
981 
982  virtual void OnPaint()
983  {
984  this->DrawWidgets();
985 
986  int rad = _settings_game.station.modified_catchment ? ((this->window_class == WC_BUS_STATION) ? CA_BUS : CA_TRUCK) : CA_UNMODIFIED;
988  SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad);
989  } else {
990  SetTileSelectSize(1, 1);
991  }
992 
993  /* 'Accepts' and 'Supplies' texts. */
995  int top = this->GetWidget<NWidgetBase>(WID_BROS_LT_ON)->pos_y + this->GetWidget<NWidgetBase>(WID_BROS_LT_ON)->current_y + WD_PAR_VSEP_NORMAL;
996  NWidgetBase *back_nwi = this->GetWidget<NWidgetBase>(WID_BROS_BACKGROUND);
997  int right = back_nwi->pos_x + back_nwi->current_x;
998  int bottom = back_nwi->pos_y + back_nwi->current_y;
999  top = DrawStationCoverageAreaText(back_nwi->pos_x + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, top, sct, rad, false) + WD_PAR_VSEP_NORMAL;
1000  top = DrawStationCoverageAreaText(back_nwi->pos_x + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, top, sct, rad, true) + WD_PAR_VSEP_NORMAL;
1001  /* Resize background if the window is too small.
1002  * Never make the window smaller to avoid oscillating if the size change affects the acceptance.
1003  * (This is the case, if making the window bigger moves the mouse into the window.) */
1004  if (top > bottom) {
1005  ResizeWindow(this, 0, top - bottom, false);
1006  }
1007  }
1008 
1009  virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
1010  {
1011  if (!IsInsideMM(widget, WID_BROS_STATION_NE, WID_BROS_STATION_Y + 1)) return;
1012 
1013  size->width = ScaleGUITrad(64) + 2;
1014  size->height = ScaleGUITrad(48) + 2;
1015  }
1016 
1017  virtual void DrawWidget(const Rect &r, int widget) const
1018  {
1019  if (!IsInsideMM(widget, WID_BROS_STATION_NE, WID_BROS_STATION_Y + 1)) return;
1020 
1021  StationType st = (this->window_class == WC_BUS_STATION) ? STATION_BUS : STATION_TRUCK;
1022  StationPickerDrawSprite(r.left + 1 + ScaleGUITrad(31), r.bottom - ScaleGUITrad(31), st, INVALID_RAILTYPE, widget < WID_BROS_STATION_X ? ROADTYPE_ROAD : _cur_roadtype, widget - WID_BROS_STATION_NE);
1023  }
1024 
1025  virtual void OnClick(Point pt, int widget, int click_count)
1026  {
1027  switch (widget) {
1028  case WID_BROS_STATION_NE:
1029  case WID_BROS_STATION_SE:
1030  case WID_BROS_STATION_SW:
1031  case WID_BROS_STATION_NW:
1032  case WID_BROS_STATION_X:
1033  case WID_BROS_STATION_Y:
1034  this->RaiseWidget(_road_station_picker_orientation + WID_BROS_STATION_NE);
1035  _road_station_picker_orientation = (DiagDirection)(widget - WID_BROS_STATION_NE);
1036  this->LowerWidget(_road_station_picker_orientation + WID_BROS_STATION_NE);
1037  if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
1038  this->SetDirty();
1040  break;
1041 
1042  case WID_BROS_LT_OFF:
1043  case WID_BROS_LT_ON:
1047  if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
1048  this->SetDirty();
1049  break;
1050 
1051  default:
1052  break;
1053  }
1054  }
1055 
1056  virtual void OnRealtimeTick(uint delta_ms)
1057  {
1059  }
1060 };
1061 
1065  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
1066  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN, WID_BROS_CAPTION),
1067  EndContainer(),
1068  NWidget(WWT_PANEL, COLOUR_DARK_GREEN, WID_BROS_BACKGROUND),
1070  NWidget(NWID_HORIZONTAL), SetPIP(0, 2, 0),
1071  NWidget(NWID_SPACER), SetFill(1, 0),
1072  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_NW), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1073  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_NE), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1074  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_X), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1075  NWidget(NWID_SPACER), SetFill(1, 0),
1076  EndContainer(),
1078  NWidget(NWID_HORIZONTAL), SetPIP(0, 2, 0),
1079  NWidget(NWID_SPACER), SetFill(1, 0),
1080  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_SW), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1081  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_SE), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1082  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_Y), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1083  NWidget(NWID_SPACER), SetFill(1, 0),
1084  EndContainer(),
1086  NWidget(NWID_HORIZONTAL), SetPIP(2, 0, 2),
1087  NWidget(WWT_LABEL, COLOUR_DARK_GREEN, WID_BROS_INFO), SetMinimalSize(140, 14), SetDataTip(STR_STATION_BUILD_COVERAGE_AREA_TITLE, STR_NULL),
1088  NWidget(NWID_SPACER), SetFill(1, 0),
1089  EndContainer(),
1090  NWidget(NWID_HORIZONTAL), SetPIP(2, 0, 2),
1091  NWidget(NWID_SPACER), SetFill(1, 0),
1092  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_BROS_LT_OFF), SetMinimalSize(60, 12),
1093  SetDataTip(STR_STATION_BUILD_COVERAGE_OFF, STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP),
1094  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_BROS_LT_ON), SetMinimalSize(60, 12),
1095  SetDataTip(STR_STATION_BUILD_COVERAGE_ON, STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP),
1096  NWidget(NWID_SPACER), SetFill(1, 0),
1097  EndContainer(),
1098  NWidget(NWID_SPACER), SetMinimalSize(0, 10), SetResize(0, 1),
1099  EndContainer(),
1100 };
1101 
1102 static WindowDesc _road_station_picker_desc(
1103  WDP_AUTO, NULL, 0, 0,
1106  _nested_road_station_picker_widgets, lengthof(_nested_road_station_picker_widgets)
1107 );
1108 
1112  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
1113  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN, WID_BROS_CAPTION),
1114  EndContainer(),
1115  NWidget(WWT_PANEL, COLOUR_DARK_GREEN, WID_BROS_BACKGROUND),
1117  NWidget(NWID_HORIZONTAL), SetPIP(0, 2, 0),
1118  NWidget(NWID_SPACER), SetFill(1, 0),
1119  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_X), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1120  NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_Y), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
1121  NWidget(NWID_SPACER), SetFill(1, 0),
1122  EndContainer(),
1124  NWidget(NWID_HORIZONTAL), SetPIP(2, 0, 2),
1125  NWidget(WWT_LABEL, COLOUR_DARK_GREEN, WID_BROS_INFO), SetMinimalSize(140, 14), SetDataTip(STR_STATION_BUILD_COVERAGE_AREA_TITLE, STR_NULL),
1126  NWidget(NWID_SPACER), SetFill(1, 0),
1127  EndContainer(),
1128  NWidget(NWID_HORIZONTAL), SetPIP(2, 0, 2),
1129  NWidget(NWID_SPACER), SetFill(1, 0),
1130  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_BROS_LT_OFF), SetMinimalSize(60, 12),
1131  SetDataTip(STR_STATION_BUILD_COVERAGE_OFF, STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP),
1132  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_BROS_LT_ON), SetMinimalSize(60, 12),
1133  SetDataTip(STR_STATION_BUILD_COVERAGE_ON, STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP),
1134  NWidget(NWID_SPACER), SetFill(1, 0),
1135  EndContainer(),
1136  NWidget(NWID_SPACER), SetMinimalSize(0, 10), SetResize(0, 1),
1137  EndContainer(),
1138 };
1139 
1140 static WindowDesc _tram_station_picker_desc(
1141  WDP_AUTO, NULL, 0, 0,
1144  _nested_tram_station_picker_widgets, lengthof(_nested_tram_station_picker_widgets)
1145 );
1146 
1147 static void ShowRVStationPicker(Window *parent, RoadStopType rs)
1148 {
1149  new BuildRoadStationWindow(_cur_roadtype == ROADTYPE_ROAD ? &_road_station_picker_desc : &_tram_station_picker_desc, parent, rs);
1150 }
1151 
1152 void InitializeRoadGui()
1153 {
1154  _road_depot_orientation = DIAGDIR_NW;
1155  _road_station_picker_orientation = DIAGDIR_NW;
1156 }
EventState
State of handling an event.
Definition: window_type.h:713
virtual void DrawWidget(const Rect &r, int widget) const
Draw the contents of a nested widget.
Definition: road_gui.cpp:885
ViewportDragDropSelectionProcess
Drag and drop selection process, or, what to do with an area of land when you&#39;ve selected it...
Definition: viewport_type.h:97
don&#39;t allow building on structures
Definition: command_type.h:346
Empty widget, place holder to reserve space in widget array.
Definition: widget_type.h:48
DECLARE_ENUM_AS_BIT_SET(GenderEthnicity) enum CompanyManagerFaceVariable
Bitgroups of the CompanyManagerFace variable.
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition: settings.cpp:77
int last_started_action
Last started user action.
Definition: road_gui.cpp:312
Definition of stuff that is very close to a company, like the company struct itself.
static void PlaceRoad_Bridge(TileIndex tile, Window *w)
Callback to start placing a bridge.
Definition: road_gui.cpp:76
Select station (when joining stations); Window numbers:
Definition: window_type.h:237
A standard stop for trucks.
Definition: station_type.h:49
bool link_terraform_toolbar
display terraform toolbar when displaying rail, road, water and airport toolbars
Definition: settings_type.h:96
virtual EventState OnHotkey(int hotkey)
A hotkey has been pressed.
Definition: window.cpp:593
Demolish.
Definition: road_widget.h:21
static NWidgetPart SetResize(int16 dx, int16 dy)
Widget part function for setting the resize step.
Definition: widget_type.h:930
void CheckRedrawStationCoverage(const Window *w)
Check whether we need to redraw the station coverage text.
Definition: station_gui.cpp:88
Point pos
Location, in tile "units", of the northern tile of the selected area.
Terminal station with NE entry.
Definition: road_widget.h:46
area of land of limited size
Definition: viewport_type.h:83
All data for a single hotkey.
Definition: hotkeys.h:24
High level window description.
Definition: window_gui.h:168
Road stop placement (trucks)
Build depot.
Definition: road_widget.h:22
build a complete road (not a "half" one)
Definition: command_type.h:201
static const CursorID ANIMCURSOR_DEMOLISH
704 - 707 - demolish dynamite
Definition: sprites.h:1472
static EventState RoadToolbarGlobalHotkeys(int hotkey)
Handler for global hotkeys of the BuildRoadToolbarWindow.
Definition: road_gui.cpp:682
Landscape generation (in Scenario Editor); Window numbers:
Definition: window_type.h:444
void ConnectRoadToStructure(TileIndex tile, DiagDirection direction)
If required, connects a new structure to an existing road or tram by building the missing roadbit...
Definition: road_gui.cpp:164
bool station_show_coverage
whether to highlight coverage area
Scenario build toolbar; Window numbers:
Definition: window_type.h:75
static bool IsBridgeTile(TileIndex t)
checks if there is a bridge on this tile
Definition: bridge_map.h:35
Hotkey related functions.
static bool IsInsideMM(const T x, const uint min, const uint max)
Checks if a value is in an interval.
Definition: math_func.hpp:266
Terminal station with NW entry.
Definition: road_widget.h:49
Centered label.
Definition: widget_type.h:57
Basic road type.
Definition: road_type.h:24
void ShowSelectStationIfNeeded(const CommandContainer &cmd, TileArea ta)
Show the station selection window when needed.
Contains enums and function declarations connected with stations GUI.
remove a complete road (not a "half" one)
Definition: command_type.h:202
Window * ShowTerraformToolbar(Window *link)
Show the toolbar for terraforming in the game.
void SetWidgetDirty(byte widget_index) const
Invalidate a widget, i.e.
Definition: window.cpp:580
Road stop removal (trucks)
Normal amount of vertical space between two paragraphs of text.
Definition: window_gui.h:139
static T SetBit(T &x, const uint8 y)
Set a bit in a variable.
Draw only passenger class cargoes.
Definition: station_gui.h:22
Horizontal container.
Definition: widget_type.h:75
Functions/types related to the road GUIs.
The passed event is not handled.
Definition: window_type.h:715
void SetTileSelectSize(int w, int h)
Highlight w by h tiles at the cursor.
Definition: viewport.cpp:2160
drag only in X axis
Definition: viewport_type.h:80
static int ScaleGUITrad(int value)
Scale traditional pixel dimensions to GUI zoom level.
Definition: zoom_func.h:82
Turn on area highlight.
Definition: road_widget.h:53
Autorail.
Definition: road_widget.h:20
Drag only in X axis with limited size.
Definition: viewport_type.h:86
virtual void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile)
The user has dragged over the map when the tile highlight mode has been set.
Definition: road_gui.cpp:606
Point size
Size, in tile "units", of the white/red selection area.
Window * ShowBuildRoadToolbar(RoadType roadtype)
Open the build road toolbar window.
Definition: road_gui.cpp:809
drag only in Y axis
Definition: viewport_type.h:81
Drag only in Y axis with limited size.
Definition: viewport_type.h:87
Functions related to vehicles.
Turn off area highlight.
Definition: road_widget.h:52
Drive-through station in y-direction.
Definition: road_widget.h:51
A standard stop for buses.
Definition: station_type.h:48
void DrawRoadDepotSprite(int x, int y, DiagDirection dir, RoadType rt)
Draw the road depot sprite.
Definition: road_cmd.cpp:1429
static RoadTypes RoadTypeToRoadTypes(RoadType rt)
Maps a RoadType to the corresponding RoadTypes value.
Definition: road_func.h:56
byte station_spread
amount a station may spread
Build depot; Window numbers:
Definition: window_type.h:412
void ToggleWidgetLoweredState(byte widget_index)
Invert the lowered/raised status of a widget.
Definition: window_gui.h:458
static RoadBits GetRoadBits(TileIndex t, RoadType rt)
Get the present road bits for a specific road type.
Definition: road_map.h:111
Northeast, upper right on your monitor.
Close box (at top-left of a window)
Definition: widget_type.h:69
void VpSetPresizeRange(TileIndex from, TileIndex to)
Highlights all tiles between a set of two tiles.
Definition: viewport.cpp:2378
Build bridge.
Definition: road_widget.h:26
build a "half" road
Definition: command_type.h:203
Road stop removal (buses)
void CcRoadStop(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
Command callback for building road stops.
Definition: road_gui.cpp:199
bool CanBuildVehicleInfrastructure(VehicleType type)
Check whether we can build infrastructure for the given vehicle type.
Definition: vehicle.cpp:1751
Caption of the window.
Definition: road_widget.h:44
Build road in x-direction.
Definition: road_widget.h:18
virtual void OnPlaceObject(Point pt, TileIndex tile)
The user clicked some place on the map when a tile highlight mode has been set.
Definition: road_gui.cpp:492
Station acceptance info.
Definition: road_widget.h:54
virtual void OnRealtimeTick(uint delta_ms)
Called periodically.
Definition: road_gui.cpp:1056
bool persistent_buildingtools
keep the building tools active after usage
Common return value for all commands.
Definition: command_type.h:25
Catchment for bus stops with "modified catchment" enabled.
Definition: station_type.h:82
RoadType
The different roadtypes we support.
Definition: road_type.h:22
StringID picker_title[2]
Title for the station picker for bus or truck stations.
Definition: road_gui.cpp:121
uint16 w
The width of the area.
Definition: tilearea_type.h:20
StationSettings station
settings related to station management
void UpdateOptionWidgetStatus(RoadToolbarWidgets clicked_widget)
Update the remove button lowered state of the road toolbar.
Definition: road_gui.cpp:360
RoadStopType
Types of RoadStops.
Definition: station_type.h:47
RoadToolbarWidgets
Widgets of the BuildRoadToolbarWindow class.
Definition: road_widget.h:16
static T SB(T &x, const uint8 s, const uint8 n, const U d)
Set n bits in x starting at bit s to d.
Functions, definitions and such used only by the GUI.
static void ToggleRoadButton_Remove(Window *w)
Toggles state of the Remove button of Build road toolbar.
Definition: road_gui.cpp:282
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
Update size and resize step of a widget in the window.
Definition: road_gui.cpp:1009
CompanyByte _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Definition: company_cmd.cpp:46
Terminal station with SE entry.
Definition: road_widget.h:47
StringID err_remove_road
Removing a normal piece of road.
Definition: road_gui.cpp:116
Partial widget specification to allow NWidgets to be written nested.
Definition: widget_type.h:910
Functions related to (drawing on) viewports.
Data structure for an opened window.
Definition: window_gui.h:271
Clear area.
Definition: viewport_type.h:98
Depot with NE entry.
Definition: road_widget.h:35
bool _ctrl_pressed
Is Ctrl pressed?
Definition: gfx.cpp:36
Road placement (X axis)
virtual void OnPaint()
The window must be repainted.
Definition: road_gui.cpp:982
virtual EventState OnHotkey(int hotkey)
A hotkey has been pressed.
Definition: road_gui.cpp:486
static RoadBits DiagDirToRoadBits(DiagDirection d)
Create the road-part which belongs to the given DiagDirection.
Definition: road_func.h:144
Build truck station.
Definition: road_widget.h:24
Structure holding information per roadtype for several functions.
Definition: road_gui.cpp:114
static TileIndexDiff TileOffsByDiagDir(DiagDirection dir)
Convert a DiagDirection to a TileIndexDiff.
Definition: map_func.h:343
Invisible widget that takes some space.
Definition: widget_type.h:79
static const NWidgetPart _nested_road_station_picker_widgets[]
Widget definition of the build road station window.
Definition: road_gui.cpp:1063
int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies)
Calculates and draws the accepted or supplied cargo around the selected tile(s)
Definition: station_gui.cpp:56
CommandCost DoCommand(const CommandContainer *container, DoCommandFlag flags)
Shorthand for calling the long DoCommand with a container.
Definition: command.cpp:440
uint pos_y
Vertical position of top-left corner of the widget in the window.
Definition: widget_type.h:178
This window is used for construction; close it whenever changing company.
Definition: window_gui.h:210
Road toolbar window handler.
Definition: road_gui.cpp:311
bool IsWidgetLowered(byte widget_index) const
Gets the lowered state of a widget.
Definition: window_gui.h:488
SoundSettings sound
sound effect settings
Header file for things common for tunnels and bridges.
void SetRedErrorSquare(TileIndex tile)
Set a tile to display a red error square.
Definition: viewport.cpp:2142
Depot with SE entry.
Definition: road_widget.h:36
uint current_y
Current vertical size (after resizing).
Definition: widget_type.h:175
void CcBuildRoadTunnel(const CommandCost &result, TileIndex start_tile, uint32 p1, uint32 p2)
Callback executed after a build road tunnel command has been called.
Definition: road_gui.cpp:96
ViewportPlaceMethod
Viewport place method (type of highlighted area and placed objects)
Definition: viewport_type.h:78
static DiagDirection ReverseDiagDir(DiagDirection d)
Returns the reverse direction of the given DiagDirection.
Structure for buffering the build command when selecting a station to join.
Definition: command_type.h:476
static NWidgetPart SetDataTip(uint32 data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1014
build a tunnel
Definition: command_type.h:190
drag in X or Y direction
Definition: viewport_type.h:79
ClientSettings _settings_client
The current settings for this game.
Definition: settings.cpp:76
static NWidgetPart SetMinimalSize(int16 x, int16 y)
Widget part function for setting the minimal size.
Definition: widget_type.h:947
bool Succeeded() const
Did this command succeed?
Definition: command_type.h:152
StationCoverageType
Types of cargo to display for station coverage.
Definition: station_gui.h:21
#define TILE_AREA_LOOP(var, ta)
A loop which iterates over the tiles of a TileArea.
Definition of base types and functions in a cross-platform compatible way.
A number of safeguards to prevent using unsafe methods.
virtual void OnInvalidateData(int data=0, bool gui_scope=true)
Some data on this window has become invalid.
Definition: road_gui.cpp:338
Trams.
Definition: road_type.h:25
List of hotkeys for a window.
Definition: hotkeys.h:42
rectangle (stations, depots, ...)
Depot with SW entry.
Definition: road_widget.h:37
Simple depressed panel.
Definition: widget_type.h:50
Road stop placement (buses)
Build one-way road.
Definition: road_widget.h:25
bool IsWidgetDisabled(byte widget_index) const
Gets the enabled/disabled status of a widget.
Definition: window_gui.h:416
Used for iterations.
No road-part is build.
Definition: road_type.h:56
Represents the covered area of e.g.
Definition: tilearea_type.h:18
GUI stuff related to terraforming.
virtual void OnClick(Point pt, int widget, int click_count)
A click with the left mouse button has been made on the window.
Definition: road_gui.cpp:406
static NWidgetPart NWidget(WidgetType tp, Colours col, int16 idx=-1)
Widget part function for starting a new &#39;real&#39; widget.
Definition: widget_type.h:1114
Northwest.
void MarkTileDirtyByTile(TileIndex tile, int bridge_level_offset, int tile_height_override)
Mark a tile given by its index dirty for repaint.
Definition: viewport.cpp:1785
TileIndex _build_tunnel_endtile
The end of a tunnel; as hidden return from the tunnel build command for GUI purposes.
Baseclass for nested widgets.
Definition: widget_type.h:126
virtual void OnPlacePresize(Point pt, TileIndex tile)
The user moves over the map when a tile highlight mode has been set when the special mouse mode has b...
Definition: road_gui.cpp:662
Functions related to stations.
bool DoCommandP(const CommandContainer *container, bool my_cmd)
Shortcut for the long DoCommandP when having a container with the data.
Definition: command.cpp:531
DiagDirection
Enumeration for diagonal directions.
void VpStartPlaceSizing(TileIndex tile, ViewportPlaceMethod method, ViewportDragDropSelectionProcess process)
highlighting tiles while only going over them with the mouse
Definition: viewport.cpp:2335
Catchment for truck stops with "modified catchment" enabled.
Definition: station_type.h:83
Catchment for all stations with "modified catchment" disabled.
Definition: station_type.h:87
#define lengthof(x)
Return the length of an fixed size array.
Definition: depend.cpp:42
void ShowBuildBridgeWindow(TileIndex start, TileIndex end, TransportType transport_type, byte road_rail_type)
Prepare the data for the build a bridge window.
Definition: bridge_gui.cpp:361
Build bridge; Window numbers:
Definition: window_type.h:384
void PlaceProc_DemolishArea(TileIndex tile)
Start a drag for demolishing an area.
Road vehicle type.
Definition: vehicle_type.h:27
Bridge placement.
uint pos_x
Horizontal position of top-left corner of the widget in the window.
Definition: widget_type.h:177
Also allow &#39;diagonal rectangles&#39;. Only usable in combination with HT_RECT or HT_POINT.
Functions related to sound.
StringID err_build_road
Building a normal piece of road.
Definition: road_gui.cpp:115
static DiagDirection GetTunnelBridgeDirection(TileIndex t)
Get the direction pointing to the other end.
build a road depot
Definition: command_type.h:204
uint32 StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:18
bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_tile, TileIndex end_tile)
A central place to handle all X_AND_Y dragged GUI functions.
void DeleteWindowByClass(WindowClass cls)
Delete all windows of a given class.
Definition: window.cpp:1156
bool Failed() const
Did this command fail?
Definition: command_type.h:161
static const RoadTypeInfo _road_type_infos[]
What errors/cursors must be shown for several types of roads.
Definition: road_gui.cpp:130
void VpSelectTilesWithMethod(int x, int y, ViewportPlaceMethod method)
Selects tiles while dragging.
Definition: viewport.cpp:2804
virtual void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt)
The user is dragging over the map when the tile highlight mode has been set.
Definition: road_gui.cpp:563
Road placement (auto)
static const int WIDGET_LIST_END
indicate the end of widgets&#39; list for vararg functions
Definition: widget_type.h:22
virtual void DrawWidget(const Rect &r, int widget) const
Draw the contents of a nested widget.
Definition: road_gui.cpp:1017
Build toolbar; Window numbers:
Definition: window_type.h:68
Road related functions.
TileIndex tile
The base tile of the area.
Definition: tilearea_type.h:19
Types related to the road widgets.
The X axis.
No window, redirects to WC_MAIN_WINDOW.
Definition: window_type.h:40
void DeleteWindowById(WindowClass cls, WindowNumber number, bool force)
Delete a window by its class and window number (if it is open).
Definition: window.cpp:1143
static Axis DiagDirToAxis(DiagDirection d)
Convert a DiagDirection to the axis.
static TileIndex GetOtherTunnelBridgeEnd(TileIndex t)
Determines type of the wormhole and returns its other end.
Functions related to companies.
SpriteID cursor_autoroad
Cursor for building autoroad.
Definition: road_gui.cpp:126
build a road stop
Definition: command_type.h:199
static TileIndex TileVirtXY(uint x, uint y)
Get a tile from the virtual XY-coordinate.
Definition: map_func.h:196
static bool _remove_button_clicked
Flag whether &#39;remove&#39; toggle-button is currently enabled.
Definition: rail_gui.cpp:47
StationType
Station types.
Definition: station_type.h:35
StringID err_depot
Building a depot.
Definition: road_gui.cpp:117
Build road in y-direction.
Definition: road_widget.h:19
area of land in X and Y directions
Definition: viewport_type.h:82
static bool IsNormalRoadTile(TileIndex t)
Return whether a tile is a normal road tile.
Definition: road_map.h:57
GUISettings gui
settings related to the GUI
Align toward the toolbar.
Definition: window_gui.h:158
Window caption (window title between closebox and stickybox)
Definition: widget_type.h:61
uint32 SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition: gfx_type.h:19
static void PlaceRoad_BusStation(TileIndex tile)
Callback for placing a bus station.
Definition: road_gui.cpp:244
SpriteID cursor_nwse
Cursor for building NW and SE bits.
Definition: road_gui.cpp:125
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:80
bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, HighLightStyle mode)
This code is shared for the majority of the pushbuttons.
Definition: main_gui.cpp:104
Draw all non-passenger class cargoes.
Definition: station_gui.h:23
bool modified_catchment
different-size catchment areas
Build bus station.
Definition: road_widget.h:23
Vertical container.
Definition: widget_type.h:77
Build truck station; Window numbers:
Definition: window_type.h:404
static NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME, WWT_INSET, or WWT_PANEL).
Definition: widget_type.h:999
static uint GB(const T x, const uint8 s, const uint8 n)
Fetch n bits from x, started at bit s.
Functions related to zooming.
Drive-through station in x-direction.
Definition: road_widget.h:50
uint current_x
Current horizontal size (after resizing).
Definition: widget_type.h:174
Transport by road vehicle.
StringID picker_tooltip[2]
Tooltip for the station picker for bus or truck stations.
Definition: road_gui.cpp:122
bool confirm
Play sound effect on succesful constructions or other actions.
Non-water non-rail construction.
Definition: sound_type.h:70
Functions related to commands.
Coordinates of a point in 2D.
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-NULL) Titem.
Definition: pool_type.hpp:235
special mode used for highlighting while dragging (and for tunnels/docks)
StringID err_build_station[2]
Building a bus or truck station.
Definition: road_gui.cpp:118
virtual EventState OnCTRLStateChange()
The state of the control key has changed.
Definition: road_gui.cpp:668
Functions that have tunnels and bridges in common.
Terminal station with SW entry.
Definition: road_widget.h:48
Build tunnel.
Definition: road_widget.h:27
Offset at right to draw the frame rectangular area.
Definition: window_gui.h:63
Road placement (Y axis)
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition: widget_type.h:66
Window * ShowBuildRoadScenToolbar()
Show the road building toolbar in the scenario editor.
Definition: road_gui.cpp:857
static NWidgetPart SetFill(uint fill_x, uint fill_y)
Widget part function for setting filling.
Definition: widget_type.h:983
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
Remove road.
Definition: road_widget.h:28
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
Update size and resize step of a widget in the window.
Definition: road_gui.cpp:877
static void PlaceRoad_TruckStation(TileIndex tile)
Callback for placing a truck station.
Definition: road_gui.cpp:262
#define CMD_MSG(x)
Used to combine a StringID with the command.
Definition: command_type.h:369
Build bus station; Window numbers:
Definition: window_type.h:398
int32 WindowNumber
Number to differentiate different windows of the same class.
Definition: window_type.h:707
void ResetObjectToPlace()
Reset the cursor and mouse mode handling back to default (normal cursor, only clicking in windows)...
Definition: viewport.cpp:3075
Specification of a rectangle with absolute coordinates of all edges.
The passed event is handled.
Definition: window_type.h:714
Flag for invalid railtype.
Definition: rail_type.h:36
Functions related to tile highlights.
Window functions not directly related to making/drawing windows.
Background of the window.
Definition: road_widget.h:45
Find a place automatically.
Definition: window_gui.h:156
static void PlaceRoadStop(TileIndex start_tile, TileIndex end_tile, uint32 p2, uint32 cmd)
Place a new road stop.
Definition: road_gui.cpp:224
(Toggle) Button with image
Definition: widget_type.h:52
SpriteID cursor_nesw
Cursor for building NE and SW bits.
Definition: road_gui.cpp:124
GUI functions that shouldn&#39;t be here.
virtual void OnClick(Point pt, int widget, int click_count)
A click with the left mouse button has been made on the window.
Definition: road_gui.cpp:892
uint16 h
The height of the area.
Definition: tilearea_type.h:21
static bool RoadToolbar_CtrlChanged(Window *w)
Updates the Remove button because of Ctrl state change.
Definition: road_gui.cpp:295
void ResizeWindow(Window *w, int delta_x, int delta_y, bool clamp_to_screen)
Resize the window.
Definition: window.cpp:2123
RoadFlags
Define the values of the RoadFlags.
Definition: road_gui.cpp:49
virtual void OnClick(Point pt, int widget, int click_count)
A click with the left mouse button has been made on the window.
Definition: road_gui.cpp:1025
virtual void OnPlaceObjectAbort()
The user cancelled a tile highlight mode that has been set.
Definition: road_gui.cpp:546
Dimensions (a width and height) of a rectangle in 2D.
bool click_beep
Beep on a random selection of buttons.
Offset at left to draw the frame rectangular area.
Definition: window_gui.h:62
Depot with NW entry.
Definition: road_widget.h:38
remove a road stop
Definition: command_type.h:200
StringID err_remove_station[2]
Removing of a bus or truck station.
Definition: road_gui.cpp:119
Horizontal container that doesn&#39;t change the order of the widgets for RTL languages.
Definition: widget_type.h:76
static NWidgetPart SetPIP(uint8 pre, uint8 inter, uint8 post)
Widget part function for setting a pre/inter/post spaces.
Definition: widget_type.h:1076
Base class for windows opened from a toolbar.
Definition: window_gui.h:841
static const NWidgetPart _nested_tram_station_picker_widgets[]
Widget definition of the build tram station window.
Definition: road_gui.cpp:1110
virtual void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile)
The user has dragged over the map when the tile highlight mode has been set.
Definition: window_gui.h:774
(Toggle) Button with text
Definition: widget_type.h:55
Caption of the window.
Definition: road_widget.h:34