OpenTTD
dock_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 "terraform_gui.h"
14 #include "window_gui.h"
15 #include "station_gui.h"
16 #include "command_func.h"
17 #include "water.h"
18 #include "window_func.h"
19 #include "vehicle_func.h"
20 #include "sound_func.h"
21 #include "viewport_func.h"
22 #include "gfx_func.h"
23 #include "company_func.h"
24 #include "slope_func.h"
25 #include "tilehighlight_func.h"
26 #include "company_base.h"
27 #include "hotkeys.h"
28 #include "gui.h"
29 #include "zoom_func.h"
30 
31 #include "widgets/dock_widget.h"
32 
33 #include "table/sprites.h"
34 #include "table/strings.h"
35 
36 #include "safeguards.h"
37 
38 static void ShowBuildDockStationPicker(Window *parent);
39 static void ShowBuildDocksDepotPicker(Window *parent);
40 
41 static Axis _ship_depot_direction;
42 
43 void CcBuildDocks(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2, uint32 cmd)
44 {
45  if (result.Failed()) return;
46 
47  if (_settings_client.sound.confirm) SndPlayTileFx(SND_02_SPLAT_WATER, tile);
49 }
50 
51 void CcPlaySound_SPLAT_WATER(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2, uint32 cmd)
52 {
53  if (result.Succeeded() && _settings_client.sound.confirm) SndPlayTileFx(SND_02_SPLAT_WATER, tile);
54 }
55 
56 
63 static TileIndex GetOtherAqueductEnd(TileIndex tile_from, TileIndex *tile_to = nullptr)
64 {
65  int z;
67 
68  /* If the direction isn't right, just return the next tile so the command
69  * complains about the wrong slope instead of the ends not matching up.
70  * Make sure the coordinate is always a valid tile within the map, so we
71  * don't go "off" the map. That would cause the wrong error message. */
72  if (!IsValidDiagDirection(dir)) return TILE_ADDXY(tile_from, TileX(tile_from) > 2 ? -1 : 1, 0);
73 
74  /* Direction the aqueduct is built to. */
76  /* The maximum length of the aqueduct. */
78 
79  TileIndex endtile = tile_from;
80  for (int length = 0; IsValidTile(endtile) && TileX(endtile) != 0 && TileY(endtile) != 0; length++) {
81  endtile = TILE_ADD(endtile, offset);
82 
83  if (length > max_length) break;
84 
85  if (GetTileMaxZ(endtile) > z) {
86  if (tile_to != nullptr) *tile_to = endtile;
87  break;
88  }
89  }
90 
91  return endtile;
92 }
93 
97 
99  {
100  this->last_clicked_widget = WID_DT_INVALID;
101  this->InitNested(window_number);
102  this->OnInvalidateData();
104  }
105 
107  {
108  if (_game_mode == GM_NORMAL && this->IsWidgetLowered(WID_DT_STATION)) SetViewportCatchmentStation(nullptr, true);
110  }
111 
117  void OnInvalidateData(int data = 0, bool gui_scope = true) override
118  {
119  if (!gui_scope) return;
120 
121  bool can_build = CanBuildVehicleInfrastructure(VEH_SHIP);
122  this->SetWidgetsDisabledState(!can_build,
123  WID_DT_DEPOT,
125  WID_DT_BUOY,
127  if (!can_build) {
130  }
131  }
132 
133  void OnClick(Point pt, int widget, int click_count) override
134  {
135  switch (widget) {
136  case WID_DT_CANAL: // Build canal button
137  HandlePlacePushButton(this, WID_DT_CANAL, SPR_CURSOR_CANAL, HT_RECT);
138  break;
139 
140  case WID_DT_LOCK: // Build lock button
141  HandlePlacePushButton(this, WID_DT_LOCK, SPR_CURSOR_LOCK, HT_SPECIAL);
142  break;
143 
144  case WID_DT_DEMOLISH: // Demolish aka dynamite button
146  break;
147 
148  case WID_DT_DEPOT: // Build depot button
150  if (HandlePlacePushButton(this, WID_DT_DEPOT, SPR_CURSOR_SHIP_DEPOT, HT_RECT)) ShowBuildDocksDepotPicker(this);
151  break;
152 
153  case WID_DT_STATION: // Build station button
155  if (HandlePlacePushButton(this, WID_DT_STATION, SPR_CURSOR_DOCK, HT_SPECIAL)) ShowBuildDockStationPicker(this);
156  break;
157 
158  case WID_DT_BUOY: // Build buoy button
160  HandlePlacePushButton(this, WID_DT_BUOY, SPR_CURSOR_BUOY, HT_RECT);
161  break;
162 
163  case WID_DT_RIVER: // Build river button (in scenario editor)
164  if (_game_mode != GM_EDITOR) return;
165  HandlePlacePushButton(this, WID_DT_RIVER, SPR_CURSOR_RIVER, HT_RECT);
166  break;
167 
168  case WID_DT_BUILD_AQUEDUCT: // Build aqueduct button
169  HandlePlacePushButton(this, WID_DT_BUILD_AQUEDUCT, SPR_CURSOR_AQUEDUCT, HT_SPECIAL);
170  break;
171 
172  default: return;
173  }
174  this->last_clicked_widget = (DockToolbarWidgets)widget;
175  }
176 
177  void OnPlaceObject(Point pt, TileIndex tile) override
178  {
179  switch (this->last_clicked_widget) {
180  case WID_DT_CANAL: // Build canal button
181  VpStartPlaceSizing(tile, (_game_mode == GM_EDITOR) ? VPM_X_AND_Y : VPM_X_OR_Y, DDSP_CREATE_WATER);
182  break;
183 
184  case WID_DT_LOCK: // Build lock button
185  DoCommandP(tile, 0, 0, CMD_BUILD_LOCK | CMD_MSG(STR_ERROR_CAN_T_BUILD_LOCKS), CcBuildDocks);
186  break;
187 
188  case WID_DT_DEMOLISH: // Demolish aka dynamite button
190  break;
191 
192  case WID_DT_DEPOT: // Build depot button
193  DoCommandP(tile, _ship_depot_direction, 0, CMD_BUILD_SHIP_DEPOT | CMD_MSG(STR_ERROR_CAN_T_BUILD_SHIP_DEPOT), CcBuildDocks);
194  break;
195 
196  case WID_DT_STATION: { // Build station button
197  uint32 p2 = (uint32)INVALID_STATION << 16; // no station to join
198 
199  /* tile is always the land tile, so need to evaluate _thd.pos */
200  CommandContainer cmdcont = { tile, _ctrl_pressed, p2, CMD_BUILD_DOCK | CMD_MSG(STR_ERROR_CAN_T_BUILD_DOCK_HERE), CcBuildDocks, "" };
201 
202  /* Determine the watery part of the dock. */
204  TileIndex tile_to = (dir != INVALID_DIAGDIR ? TileAddByDiagDir(tile, ReverseDiagDir(dir)) : tile);
205 
206  ShowSelectStationIfNeeded(cmdcont, TileArea(tile, tile_to));
207  break;
208  }
209 
210  case WID_DT_BUOY: // Build buoy button
211  DoCommandP(tile, 0, 0, CMD_BUILD_BUOY | CMD_MSG(STR_ERROR_CAN_T_POSITION_BUOY_HERE), CcBuildDocks);
212  break;
213 
214  case WID_DT_RIVER: // Build river button (in scenario editor)
216  break;
217 
218  case WID_DT_BUILD_AQUEDUCT: // Build aqueduct button
219  DoCommandP(tile, GetOtherAqueductEnd(tile), TRANSPORT_WATER << 15, CMD_BUILD_BRIDGE | CMD_MSG(STR_ERROR_CAN_T_BUILD_AQUEDUCT_HERE), CcBuildBridge);
220  break;
221 
222  default: NOT_REACHED();
223  }
224  }
225 
226  void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt) override
227  {
228  VpSelectTilesWithMethod(pt.x, pt.y, select_method);
229  }
230 
231  void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile) override
232  {
233  if (pt.x != -1) {
234  switch (select_proc) {
235  case DDSP_DEMOLISH_AREA:
236  GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
237  break;
238  case DDSP_CREATE_WATER:
239  DoCommandP(end_tile, start_tile, (_game_mode == GM_EDITOR && _ctrl_pressed) ? WATER_CLASS_SEA : WATER_CLASS_CANAL, CMD_BUILD_CANAL | CMD_MSG(STR_ERROR_CAN_T_BUILD_CANALS), CcPlaySound_SPLAT_WATER);
240  break;
241  case DDSP_CREATE_RIVER:
242  DoCommandP(end_tile, start_tile, WATER_CLASS_RIVER, CMD_BUILD_CANAL | CMD_MSG(STR_ERROR_CAN_T_PLACE_RIVERS), CcPlaySound_SPLAT_WATER);
243  break;
244 
245  default: break;
246  }
247  }
248  }
249 
250  void OnPlaceObjectAbort() override
251  {
252  if (_game_mode != GM_EDITOR && this->IsWidgetLowered(WID_DT_STATION)) SetViewportCatchmentStation(nullptr, true);
253 
254  this->RaiseButtons();
255 
260  }
261 
262  void OnPlacePresize(Point pt, TileIndex tile_from) override
263  {
264  TileIndex tile_to = tile_from;
265 
266  if (this->last_clicked_widget == WID_DT_BUILD_AQUEDUCT) {
267  GetOtherAqueductEnd(tile_from, &tile_to);
268  } else {
270  if (IsValidDiagDirection(dir)) {
271  /* Locks and docks always select the tile "down" the slope. */
272  tile_to = TileAddByDiagDir(tile_from, ReverseDiagDir(dir));
273  /* Locks also select the tile "up" the slope. */
274  if (this->last_clicked_widget == WID_DT_LOCK) tile_from = TileAddByDiagDir(tile_from, dir);
275  }
276  }
277 
278  VpSetPresizeRange(tile_from, tile_to);
279  }
280 
281  static HotkeyList hotkeys;
282 };
283 
290 {
291  if (_game_mode != GM_NORMAL) return ES_NOT_HANDLED;
293  if (w == nullptr) return ES_NOT_HANDLED;
294  return w->OnHotkey(hotkey);
295 }
296 
297 const uint16 _dockstoolbar_aqueduct_keys[] = {'B', '8', 0};
298 
299 static Hotkey dockstoolbar_hotkeys[] = {
300  Hotkey('1', "canal", WID_DT_CANAL),
301  Hotkey('2', "lock", WID_DT_LOCK),
302  Hotkey('3', "demolish", WID_DT_DEMOLISH),
303  Hotkey('4', "depot", WID_DT_DEPOT),
304  Hotkey('5', "dock", WID_DT_STATION),
305  Hotkey('6', "buoy", WID_DT_BUOY),
306  Hotkey('7', "river", WID_DT_RIVER),
307  Hotkey(_dockstoolbar_aqueduct_keys, "aqueduct", WID_DT_BUILD_AQUEDUCT),
308  HOTKEY_LIST_END
309 };
310 HotkeyList BuildDocksToolbarWindow::hotkeys("dockstoolbar", dockstoolbar_hotkeys, DockToolbarGlobalHotkeys);
311 
318  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
319  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_WATERWAYS_TOOLBAR_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
320  NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
321  EndContainer(),
323  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_CANAL), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_BUILD_CANAL, STR_WATERWAYS_TOOLBAR_BUILD_CANALS_TOOLTIP),
324  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_LOCK), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_BUILD_LOCK, STR_WATERWAYS_TOOLBAR_BUILD_LOCKS_TOOLTIP),
325  NWidget(WWT_PANEL, COLOUR_DARK_GREEN), SetMinimalSize(5, 22), SetFill(1, 1), EndContainer(),
326  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_DEMOLISH), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
327  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_DEPOT), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_SHIP_DEPOT, STR_WATERWAYS_TOOLBAR_BUILD_DEPOT_TOOLTIP),
328  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_STATION), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_SHIP_DOCK, STR_WATERWAYS_TOOLBAR_BUILD_DOCK_TOOLTIP),
329  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_BUOY), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_BUOY, STR_WATERWAYS_TOOLBAR_BUOY_TOOLTIP),
330  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_BUILD_AQUEDUCT), SetMinimalSize(23, 22), SetFill(0, 1), SetDataTip(SPR_IMG_AQUEDUCT, STR_WATERWAYS_TOOLBAR_BUILD_AQUEDUCT_TOOLTIP),
331  EndContainer(),
332 };
333 
334 static WindowDesc _build_docks_toolbar_desc(
335  WDP_ALIGN_TOOLBAR, "toolbar_water", 0, 0,
338  _nested_build_docks_toolbar_widgets, lengthof(_nested_build_docks_toolbar_widgets),
339  &BuildDocksToolbarWindow::hotkeys
340 );
341 
350 {
351  if (!Company::IsValidID(_local_company)) return nullptr;
352 
354  return AllocateWindowDescFront<BuildDocksToolbarWindow>(&_build_docks_toolbar_desc, TRANSPORT_WATER);
355 }
356 
363  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
364  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_WATERWAYS_TOOLBAR_CAPTION_SE, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
365  NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
366  EndContainer(),
368  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_CANAL), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_BUILD_CANAL, STR_WATERWAYS_TOOLBAR_CREATE_LAKE_TOOLTIP),
369  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_LOCK), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_BUILD_LOCK, STR_WATERWAYS_TOOLBAR_BUILD_LOCKS_TOOLTIP),
370  NWidget(WWT_PANEL, COLOUR_DARK_GREEN), SetMinimalSize(5, 22), SetFill(1, 1), EndContainer(),
371  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_DEMOLISH), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
372  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_RIVER), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_BUILD_RIVER, STR_WATERWAYS_TOOLBAR_CREATE_RIVER_TOOLTIP),
373  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_DT_BUILD_AQUEDUCT), SetMinimalSize(22, 22), SetFill(0, 1), SetDataTip(SPR_IMG_AQUEDUCT, STR_WATERWAYS_TOOLBAR_BUILD_AQUEDUCT_TOOLTIP),
374  EndContainer(),
375 };
376 
379  WDP_AUTO, "toolbar_water_scen", 0, 0,
382  _nested_build_docks_scen_toolbar_widgets, lengthof(_nested_build_docks_scen_toolbar_widgets)
383 );
384 
391 {
392  return AllocateWindowDescFront<BuildDocksToolbarWindow>(&_build_docks_scen_toolbar_desc, TRANSPORT_WATER);
393 }
394 
401 };
402 
404 public:
406  {
409  }
410 
411  virtual ~BuildDocksStationWindow()
412  {
414  }
415 
416  void OnPaint() override
417  {
419 
420  this->DrawWidgets();
421 
423  SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad);
424  } else {
425  SetTileSelectSize(1, 1);
426  }
427 
428  /* strings such as 'Size' and 'Coverage Area' */
429  int top = this->GetWidget<NWidgetBase>(BDSW_LT_OFF)->pos_y + this->GetWidget<NWidgetBase>(BDSW_LT_OFF)->current_y + WD_PAR_VSEP_NORMAL;
430  NWidgetBase *back_nwi = this->GetWidget<NWidgetBase>(BDSW_BACKGROUND);
431  int right = back_nwi->pos_x + back_nwi->current_x;
432  int bottom = back_nwi->pos_y + back_nwi->current_y;
435  /* Resize background if the window is too small.
436  * Never make the window smaller to avoid oscillating if the size change affects the acceptance.
437  * (This is the case, if making the window bigger moves the mouse into the window.) */
438  if (top > bottom) {
439  ResizeWindow(this, 0, top - bottom, false);
440  }
441  }
442 
443  void OnClick(Point pt, int widget, int click_count) override
444  {
445  switch (widget) {
446  case BDSW_LT_OFF:
447  case BDSW_LT_ON:
451  if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
452  this->SetDirty();
453  break;
454  }
455  }
456 
457  void OnRealtimeTick(uint delta_ms) override
458  {
460  }
461 };
462 
466  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
467  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_STATION_BUILD_DOCK_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
468  EndContainer(),
469  NWidget(WWT_PANEL, COLOUR_DARK_GREEN, BDSW_BACKGROUND),
471  NWidget(WWT_LABEL, COLOUR_DARK_GREEN, BDSW_INFO), SetMinimalSize(148, 14), SetDataTip(STR_STATION_BUILD_COVERAGE_AREA_TITLE, STR_NULL),
472  NWidget(NWID_HORIZONTAL), SetPIP(14, 0, 14),
473  NWidget(WWT_TEXTBTN, COLOUR_GREY, BDSW_LT_OFF), SetMinimalSize(40, 12), SetFill(1, 0), SetDataTip(STR_STATION_BUILD_COVERAGE_OFF, STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP),
474  NWidget(WWT_TEXTBTN, COLOUR_GREY, BDSW_LT_ON), SetMinimalSize(40, 12), SetFill(1, 0), SetDataTip(STR_STATION_BUILD_COVERAGE_ON, STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP),
475  EndContainer(),
477  EndContainer(),
478 };
479 
480 static WindowDesc _build_dock_station_desc(
481  WDP_AUTO, nullptr, 0, 0,
484  _nested_build_dock_station_widgets, lengthof(_nested_build_dock_station_widgets)
485 );
486 
487 static void ShowBuildDockStationPicker(Window *parent)
488 {
489  new BuildDocksStationWindow(&_build_dock_station_desc, parent);
490 }
491 
493 private:
494  static void UpdateDocksDirection()
495  {
496  if (_ship_depot_direction != AXIS_X) {
497  SetTileSelectSize(1, 2);
498  } else {
499  SetTileSelectSize(2, 1);
500  }
501  }
502 
503 public:
504  BuildDocksDepotWindow(WindowDesc *desc, Window *parent) : PickerWindowBase(desc, parent)
505  {
507  this->LowerWidget(_ship_depot_direction + WID_BDD_X);
508  UpdateDocksDirection();
509  }
510 
511  void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
512  {
513  switch (widget) {
514  case WID_BDD_X:
515  case WID_BDD_Y:
516  size->width = ScaleGUITrad(96) + 2;
517  size->height = ScaleGUITrad(64) + 2;
518  break;
519  }
520  }
521 
522  void OnPaint() override
523  {
524  this->DrawWidgets();
525 
526  int x1 = ScaleGUITrad(63) + 1;
527  int x2 = ScaleGUITrad(31) + 1;
528  int y1 = ScaleGUITrad(17) + 1;
529  int y2 = ScaleGUITrad(33) + 1;
530 
531  DrawShipDepotSprite(this->GetWidget<NWidgetBase>(WID_BDD_X)->pos_x + x1, this->GetWidget<NWidgetBase>(WID_BDD_X)->pos_y + y1, AXIS_X, DEPOT_PART_NORTH);
532  DrawShipDepotSprite(this->GetWidget<NWidgetBase>(WID_BDD_X)->pos_x + x2, this->GetWidget<NWidgetBase>(WID_BDD_X)->pos_y + y2, AXIS_X, DEPOT_PART_SOUTH);
533  DrawShipDepotSprite(this->GetWidget<NWidgetBase>(WID_BDD_Y)->pos_x + x2, this->GetWidget<NWidgetBase>(WID_BDD_Y)->pos_y + y1, AXIS_Y, DEPOT_PART_NORTH);
534  DrawShipDepotSprite(this->GetWidget<NWidgetBase>(WID_BDD_Y)->pos_x + x1, this->GetWidget<NWidgetBase>(WID_BDD_Y)->pos_y + y2, AXIS_Y, DEPOT_PART_SOUTH);
535  }
536 
537  void OnClick(Point pt, int widget, int click_count) override
538  {
539  switch (widget) {
540  case WID_BDD_X:
541  case WID_BDD_Y:
542  this->RaiseWidget(_ship_depot_direction + WID_BDD_X);
543  _ship_depot_direction = (widget == WID_BDD_X ? AXIS_X : AXIS_Y);
544  this->LowerWidget(_ship_depot_direction + WID_BDD_X);
545  if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
546  UpdateDocksDirection();
547  this->SetDirty();
548  break;
549  }
550  }
551 };
552 
553 static const NWidgetPart _nested_build_docks_depot_widgets[] = {
555  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
556  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_DEPOT_BUILD_SHIP_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
557  EndContainer(),
558  NWidget(WWT_PANEL, COLOUR_DARK_GREEN, WID_BDD_BACKGROUND),
562  NWidget(WWT_PANEL, COLOUR_GREY, WID_BDD_X), SetMinimalSize(98, 66), SetDataTip(0x0, STR_DEPOT_BUILD_SHIP_ORIENTATION_TOOLTIP),
563  EndContainer(),
565  NWidget(WWT_PANEL, COLOUR_GREY, WID_BDD_Y), SetMinimalSize(98, 66), SetDataTip(0x0, STR_DEPOT_BUILD_SHIP_ORIENTATION_TOOLTIP),
566  EndContainer(),
568  EndContainer(),
570  EndContainer(),
571 };
572 
573 static WindowDesc _build_docks_depot_desc(
574  WDP_AUTO, nullptr, 0, 0,
577  _nested_build_docks_depot_widgets, lengthof(_nested_build_docks_depot_widgets)
578 );
579 
580 
581 static void ShowBuildDocksDepotPicker(Window *parent)
582 {
583  new BuildDocksDepotWindow(&_build_docks_depot_desc, parent);
584 }
585 
586 
587 void InitializeDockGui()
588 {
589  _ship_depot_direction = AXIS_X;
590 }
EventState
State of handling an event.
Definition: window_type.h:713
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
Draw all cargoes.
Definition: station_gui.h:24
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition: settings.cpp:81
Definition of stuff that is very close to a company, like the company struct itself.
Select station (when joining stations); Window numbers:
Definition: window_type.h:237
bool link_terraform_toolbar
display terraform toolbar when displaying rail, road, water and airport toolbars
Definition: settings_type.h:96
ResizeInfo resize
Resize information.
Definition: window_gui.h:324
virtual EventState OnHotkey(int hotkey)
A hotkey has been pressed.
Definition: window.cpp:594
static NWidgetPart SetResize(int16 dx, int16 dy)
Widget part function for setting the resize step.
Definition: widget_type.h:930
Build river button (in scenario editor).
Definition: dock_widget.h:30
void CheckRedrawStationCoverage(const Window *w)
Check whether we need to redraw the station coverage text.
build a dock
Definition: command_type.h:209
Window * parent
Parent window.
Definition: window_gui.h:339
All data for a single hotkey.
Definition: hotkeys.h:24
High level window description.
Definition: window_gui.h:168
static const CursorID ANIMCURSOR_DEMOLISH
704 - 707 - demolish dynamite
Definition: sprites.h:1487
Landscape generation (in Scenario Editor); Window numbers:
Definition: window_type.h:444
int32 TileIndexDiff
An offset value between to tiles.
Definition: map_func.h:156
void DrawWidgets() const
Paint all widgets of a window.
Definition: widget.cpp:604
bool station_show_coverage
whether to highlight coverage area
Scenario build toolbar; Window numbers:
Definition: window_type.h:75
Hotkey related functions.
Build depot button.
Definition: dock_widget.h:27
Centered label.
Definition: widget_type.h:57
&#39;Coverage highlight&#39; label.
Definition: dock_gui.cpp:400
void ShowSelectStationIfNeeded(const CommandContainer &cmd, TileArea ta)
Show the station selection window when needed.
Contains enums and function declarations connected with stations GUI.
Window * ShowTerraformToolbar(Window *link)
Show the toolbar for terraforming in the game.
Build station button.
Definition: dock_widget.h:28
Normal amount of vertical space between two paragraphs of text.
Definition: window_gui.h:139
Horizontal container.
Definition: widget_type.h:75
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:2444
void CDECL SetWidgetsDisabledState(bool disab_stat, int widgets,...)
Sets the enabled/disabled status of a list of widgets.
Definition: window.cpp:520
Background of the window.
Definition: dock_widget.h:17
static int ScaleGUITrad(int value)
Scale traditional pixel dimensions to GUI zoom level.
Definition: zoom_func.h:78
Ship vehicle type.
Definition: vehicle_type.h:28
Transport over water.
void OnPlacePresize(Point pt, TileIndex tile_from) override
The user moves over the map when a tile highlight mode has been set when the special mouse mode has b...
Definition: dock_gui.cpp:262
DockToolbarWidgets last_clicked_widget
Contains the last widget that has been clicked on this toolbar.
Definition: dock_gui.cpp:96
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
Definition: dock_gui.cpp:250
Functions related to vehicles.
static uint TileX(TileIndex tile)
Get the X component of a tile.
Definition: map_func.h:207
Y-direction button.
Definition: dock_widget.h:19
Window * ShowBuildDocksToolbar()
Open the build water toolbar window.
Definition: dock_gui.cpp:349
static TileIndex TileAddByDiagDir(TileIndex tile, DiagDirection dir)
Adds a DiagDir to a tile.
Definition: map_func.h:384
int top
y position of top edge of the window
Definition: window_gui.h:320
X-direction button.
Definition: dock_widget.h:18
Build depot; Window numbers:
Definition: window_type.h:412
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:2669
static EventState DockToolbarGlobalHotkeys(int hotkey)
Handler for global hotkeys of the BuildDocksToolbarWindow.
Definition: dock_gui.cpp:289
Flag for an invalid DiagDirection.
bool persistent_buildingtools
keep the building tools active after usage
Common return value for all commands.
Definition: command_type.h:25
void CcBuildBridge(const CommandCost &result, TileIndex end_tile, uint32 p1, uint32 p2, uint32 cmd)
Callback executed after a build Bridge CMD has been called.
Definition: bridge_gui.cpp:63
Build buoy button.
Definition: dock_widget.h:29
Water construction.
Definition: sound_type.h:41
void RaiseWidget(byte widget_index)
Marks a widget as raised.
Definition: window_gui.h:485
static const NWidgetPart _nested_build_dock_station_widgets[]
Nested widget parts of a build dock station window.
Definition: dock_gui.cpp:464
StationSettings station
settings related to station management
Functions, definitions and such used only by the GUI.
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:278
Clear area.
Definition: viewport_type.h:98
bool _ctrl_pressed
Is Ctrl pressed?
Definition: gfx.cpp:37
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: dock_gui.cpp:537
void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile) override
The user has dragged over the map when the tile highlight mode has been set.
Definition: dock_gui.cpp:231
Slope GetTileSlope(TileIndex tile, int *h)
Return the slope of a given tile inside the map.
Definition: tile_map.cpp:61
static bool IsValidTile(TileIndex tile)
Checks if a tile is valid.
Definition: tile_map.h:163
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
Definition: window.cpp:1841
DockToolbarWidgets
Widgets of the BuildDocksToolbarWindow class.
Definition: dock_widget.h:23
static TileIndexDiff TileOffsByDiagDir(DiagDirection dir)
Convert a DiagDirection to a TileIndexDiff.
Definition: map_func.h:343
OrthogonalTileArea TileArea
Shorthand for the much more common orthogonal tile area.
Definition: tilearea_type.h:98
Invisible widget that takes some space.
Definition: widget_type.h:79
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
The y axis.
This window is used for construction; close it whenever changing company.
Definition: window_gui.h:210
bool IsWidgetLowered(byte widget_index) const
Gets the lowered state of a widget.
Definition: window_gui.h:495
SoundSettings sound
sound effect settings
uint current_y
Current vertical size (after resizing).
Definition: widget_type.h:175
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.
void RaiseButtons(bool autoraise=false)
Raise the buttons of the window.
Definition: window.cpp:557
Structure for buffering the build command when selecting a station to join.
Definition: command_type.h:477
static NWidgetPart SetDataTip(uint32 data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1014
Functions related to the gfx engine.
Functions related to slopes.
drag in X or Y direction
Definition: viewport_type.h:79
ClientSettings _settings_client
The current settings for this game.
Definition: settings.cpp:80
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
Definition of base types and functions in a cross-platform compatible way.
#define TILE_ADDXY(tile, x, y)
Adds a given offset to a tile.
Definition: map_func.h:260
Background panel.
Definition: dock_gui.cpp:397
A number of safeguards to prevent using unsafe methods.
List of hotkeys for a window.
Definition: hotkeys.h:42
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition: dock_gui.cpp:117
rectangle (stations, depots, ...)
Simple depressed panel.
Definition: widget_type.h:50
static bool IsValidDiagDirection(DiagDirection d)
Checks if an integer value is a valid DiagDirection.
int pos_x
Horizontal position of top-left corner of the widget in the window.
Definition: widget_type.h:177
void LowerWidget(byte widget_index)
Marks a widget as lowered.
Definition: window_gui.h:476
void SetViewportCatchmentStation(const Station *st, bool sel)
Select or deselect station for coverage area highlight.
Definition: viewport.cpp:3475
GUI stuff related to terraforming.
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: dock_gui.cpp:133
uint16 max_bridge_length
maximum length of bridges
void OnPaint() override
The window must be repainted.
Definition: dock_gui.cpp:416
static WindowDesc _build_docks_scen_toolbar_desc(WDP_AUTO, "toolbar_water_scen", 0, 0, WC_SCEN_BUILD_TOOLBAR, WC_NONE, WDF_CONSTRUCTION, _nested_build_docks_scen_toolbar_widgets, lengthof(_nested_build_docks_scen_toolbar_widgets))
Window definition for the build docks in scenario editor window.
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
Baseclass for nested widgets.
Definition: widget_type.h:126
Build station; Window numbers:
Definition: window_type.h:392
Create rivers.
bool DoCommandP(const CommandContainer *container, bool my_cmd)
Shortcut for the long DoCommandP when having a container with the data.
Definition: command.cpp:534
void VpStartPlaceSizing(TileIndex tile, ViewportPlaceMethod method, ViewportDragDropSelectionProcess process)
highlighting tiles while only going over them with the mouse
Definition: viewport.cpp:2626
Catchment for all stations with "modified catchment" disabled.
Definition: station_type.h:84
#define lengthof(x)
Return the length of an fixed size array.
Definition: depend.cpp:42
Build bridge; Window numbers:
Definition: window_type.h:384
void PlaceProc_DemolishArea(TileIndex tile)
Start a drag for demolishing an area.
Create a canal.
static T min(const T a, const T b)
Returns the minimum of two values.
Definition: math_func.hpp:42
uint DistanceFromEdgeDir(TileIndex tile, DiagDirection dir)
Gets the distance to the edge of the map in given direction.
Definition: map.cpp:236
Also allow &#39;diagonal rectangles&#39;. Only usable in combination with HT_RECT or HT_POINT.
static DiagDirection GetInclinedSlopeDirection(Slope s)
Returns the direction of an inclined slope.
Definition: slope_func.h:241
Functions related to sound.
Toolbar window for constructing water infrastructure.
Definition: dock_gui.cpp:95
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:1159
bool Failed() const
Did this command fail?
Definition: command_type.h:161
void VpSelectTilesWithMethod(int x, int y, ViewportPlaceMethod method)
Selects tiles while dragging.
Definition: viewport.cpp:3099
Types related to the dock widgets.
static const int WIDGET_LIST_END
indicate the end of widgets&#39; list for vararg functions
Definition: widget_type.h:22
bool CanBuildVehicleInfrastructure(VehicleType type, byte subtype)
Check whether we can build infrastructure for the given vehicle type.
Definition: vehicle.cpp:1760
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
Definition: window.cpp:968
Build toolbar; Window numbers:
Definition: window_type.h:68
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:1146
Northern part of a depot.
Definition: water_map.h:60
Catchment for docks with "modified catchment" enabled.
Definition: station_type.h:82
void OnRealtimeTick(uint delta_ms) override
Called periodically.
Definition: dock_gui.cpp:457
Functions related to companies.
Demolish aka dynamite button.
Definition: dock_widget.h:26
Build aqueduct button.
Definition: dock_widget.h:31
Build lock button.
Definition: dock_widget.h:25
area of land in X and Y directions
Definition: viewport_type.h:82
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
int GetTileMaxZ(TileIndex t)
Get top height of the tile inside the map.
Definition: tile_map.cpp:143
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:100
bool modified_catchment
different-size catchment areas
Build canal button.
Definition: dock_widget.h:24
static const NWidgetPart _nested_build_docks_toolbar_widgets[]
Nested widget parts of docks toolbar, game version.
Definition: dock_gui.cpp:316
static uint TileY(TileIndex tile)
Get the Y component of a tile.
Definition: map_func.h:217
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
Used to initialize a variable.
Definition: dock_widget.h:33
Functions related to zooming.
Southern part of a depot.
Definition: water_map.h:61
uint current_x
Current horizontal size (after resizing).
Definition: widget_type.h:174
build a canal
Definition: command_type.h:277
bool confirm
Play sound effect on successful constructions or other actions.
Functions related to commands.
Coordinates of a point in 2D.
build a buoy
Definition: command_type.h:212
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
Definition: pool_type.hpp:235
special mode used for highlighting while dragging (and for tunnels/docks)
void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
Update size and resize step of a widget in the window.
Definition: dock_gui.cpp:511
build a bridge
Definition: command_type.h:183
ConstructionSettings construction
construction of things in-game
void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt) override
The user is dragging over the map when the tile highlight mode has been set.
Definition: dock_gui.cpp:226
static const NWidgetPart _nested_build_docks_scen_toolbar_widgets[]
Nested widget parts of docks toolbar, scenario editor version.
Definition: dock_gui.cpp:361
Offset at right to draw the frame rectangular area.
Definition: window_gui.h:63
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition: widget_type.h:66
static TileIndex GetOtherAqueductEnd(TileIndex tile_from, TileIndex *tile_to=nullptr)
Gets the other end of the aqueduct, if possible.
Definition: dock_gui.cpp:63
static NWidgetPart SetFill(uint fill_x, uint fill_y)
Widget part function for setting filling.
Definition: widget_type.h:983
DiagDirection
Enumeration for diagonal directions.
#define CMD_MSG(x)
Used to combine a StringID with the command.
Definition: command_type.h:370
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:3374
WindowNumber window_number
Window number within the window class.
Definition: window_gui.h:314
Functions related to tile highlights.
Window functions not directly related to making/drawing windows.
build a ship depot
Definition: command_type.h:211
Find a place automatically.
Definition: window_gui.h:156
Functions related to water (management)
(Toggle) Button with image
Definition: widget_type.h:52
#define TILE_ADD(x, y)
Adds to tiles together.
Definition: map_func.h:246
GUI functions that shouldn&#39;t be here.
Window * ShowBuildDocksScenToolbar()
Open the build water toolbar window for the scenario editor.
Definition: dock_gui.cpp:390
void OnPaint() override
The window must be repainted.
Definition: dock_gui.cpp:522
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition: dock_gui.cpp:443
void ResizeWindow(Window *w, int delta_x, int delta_y, bool clamp_to_screen)
Resize the window.
Definition: window.cpp:2126
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Definition: company_cmd.cpp:46
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
This file contains all sprite-related enums and defines.
Axis
Allow incrementing of DiagDirDiff variables.
Horizontal container that doesn&#39;t change the order of the widgets for RTL languages.
Definition: widget_type.h:76
void OnPlaceObject(Point pt, TileIndex tile) override
The user clicked some place on the map when a tile highlight mode has been set.
Definition: dock_gui.cpp:177
static NWidgetPart SetPIP(uint8 pre, uint8 inter, uint8 post)
Widget part function for setting a pre/inter/post spaces.
Definition: widget_type.h:1076
&#39;Off&#39; button of coverage high light.
Definition: dock_gui.cpp:398
Base class for windows opened from a toolbar.
Definition: window_gui.h:856
build a lock
Definition: command_type.h:301
int pos_y
Vertical position of top-left corner of the widget in the window.
Definition: widget_type.h:178
BuildDockStationWidgets
Widget numbers of the build-dock GUI.
Definition: dock_gui.cpp:396
(Toggle) Button with text
Definition: widget_type.h:55
&#39;On&#39; button of coverage high light.
Definition: dock_gui.cpp:399