OpenTTD Source  14.0-beta1
terraform_gui.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #include "stdafx.h"
11 #include "core/backup_type.hpp"
12 #include "clear_map.h"
13 #include "company_func.h"
14 #include "company_base.h"
15 #include "gui.h"
16 #include "window_gui.h"
17 #include "window_func.h"
18 #include "viewport_func.h"
19 #include "command_func.h"
20 #include "signs_func.h"
21 #include "sound_func.h"
22 #include "base_station_base.h"
23 #include "textbuf_gui.h"
24 #include "genworld.h"
25 #include "tree_map.h"
26 #include "landscape_type.h"
27 #include "tilehighlight_func.h"
28 #include "strings_func.h"
29 #include "newgrf_object.h"
30 #include "object.h"
31 #include "hotkeys.h"
32 #include "engine_base.h"
33 #include "terraform_gui.h"
34 #include "terraform_cmd.h"
35 #include "zoom_func.h"
36 #include "rail_cmd.h"
37 #include "landscape_cmd.h"
38 #include "terraform_cmd.h"
39 #include "object_cmd.h"
40 
42 
43 #include "table/strings.h"
44 
45 #include "safeguards.h"
46 
47 void CcTerraform(Commands, const CommandCost &result, Money, TileIndex tile)
48 {
49  if (result.Succeeded()) {
50  if (_settings_client.sound.confirm) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER, tile);
51  } else {
52  SetRedErrorSquare(tile);
53  }
54 }
55 
56 
58 static void GenerateDesertArea(TileIndex end, TileIndex start)
59 {
60  if (_game_mode != GM_EDITOR) return;
61 
62  Backup<bool> old_generating_world(_generating_world, true, FILE_LINE);
63 
64  TileArea ta(start, end);
65  for (TileIndex tile : ta) {
68  MarkTileDirtyByTile(tile);
69  }
70  old_generating_world.Restore();
72 }
73 
75 static void GenerateRockyArea(TileIndex end, TileIndex start)
76 {
77  if (_game_mode != GM_EDITOR) return;
78 
79  bool success = false;
80  TileArea ta(start, end);
81 
82  for (TileIndex tile : ta) {
83  switch (GetTileType(tile)) {
84  case MP_TREES:
85  if (GetTreeGround(tile) == TREE_GROUND_SHORE) continue;
86  [[fallthrough]];
87 
88  case MP_CLEAR:
89  MakeClear(tile, CLEAR_ROCKS, 3);
90  break;
91 
92  default:
93  continue;
94  }
95  MarkTileDirtyByTile(tile);
96  success = true;
97  }
98 
99  if (success && _settings_client.sound.confirm) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER, end);
100 }
101 
112 {
114  /* When end_tile is MP_VOID, the error tile will not be visible to the
115  * user. This happens when terraforming at the southern border. */
116  if (TileX(end_tile) == Map::MaxX()) end_tile += TileDiffXY(-1, 0);
117  if (TileY(end_tile) == Map::MaxY()) end_tile += TileDiffXY(0, -1);
118  }
119 
120  switch (proc) {
121  case DDSP_DEMOLISH_AREA:
122  Command<CMD_CLEAR_AREA>::Post(STR_ERROR_CAN_T_CLEAR_THIS_AREA, CcPlaySound_EXPLOSION, end_tile, start_tile, _ctrl_pressed);
123  break;
125  Command<CMD_LEVEL_LAND>::Post(STR_ERROR_CAN_T_RAISE_LAND_HERE, CcTerraform, end_tile, start_tile, _ctrl_pressed, LM_RAISE);
126  break;
128  Command<CMD_LEVEL_LAND>::Post(STR_ERROR_CAN_T_LOWER_LAND_HERE, CcTerraform, end_tile, start_tile, _ctrl_pressed, LM_LOWER);
129  break;
130  case DDSP_LEVEL_AREA:
131  Command<CMD_LEVEL_LAND>::Post(STR_ERROR_CAN_T_LEVEL_LAND_HERE, CcTerraform, end_tile, start_tile, _ctrl_pressed, LM_LEVEL);
132  break;
133  case DDSP_CREATE_ROCKS:
134  GenerateRockyArea(end_tile, start_tile);
135  break;
136  case DDSP_CREATE_DESERT:
137  GenerateDesertArea(end_tile, start_tile);
138  break;
139  default:
140  return false;
141  }
142 
143  return true;
144 }
145 
151 {
153 }
154 
158 
160  {
161  /* This is needed as we like to have the tree available on OnInit. */
162  this->CreateNestedTree();
163  this->FinishInitNested(window_number);
164  this->last_user_action = INVALID_WID_TT;
165  }
166 
168  {
169  }
170 
171  void OnInit() override
172  {
173  /* Don't show the place object button when there are no objects to place. */
174  NWidgetStacked *show_object = this->GetWidget<NWidgetStacked>(WID_TT_SHOW_PLACE_OBJECT);
175  show_object->SetDisplayedPlane(ObjectClass::GetUIClassCount() != 0 ? 0 : SZSP_NONE);
176  }
177 
178  void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
179  {
180  if (widget < WID_TT_BUTTONS_START) return;
181 
182  switch (widget) {
183  case WID_TT_LOWER_LAND: // Lower land button
185  this->last_user_action = widget;
186  break;
187 
188  case WID_TT_RAISE_LAND: // Raise land button
190  this->last_user_action = widget;
191  break;
192 
193  case WID_TT_LEVEL_LAND: // Level land button
194  HandlePlacePushButton(this, WID_TT_LEVEL_LAND, SPR_CURSOR_LEVEL_LAND, HT_POINT | HT_DIAGONAL);
195  this->last_user_action = widget;
196  break;
197 
198  case WID_TT_DEMOLISH: // Demolish aka dynamite button
200  this->last_user_action = widget;
201  break;
202 
203  case WID_TT_BUY_LAND: // Buy land button
204  HandlePlacePushButton(this, WID_TT_BUY_LAND, SPR_CURSOR_BUY_LAND, HT_RECT | HT_DIAGONAL);
205  this->last_user_action = widget;
206  break;
207 
208  case WID_TT_PLANT_TREES: // Plant trees button
209  ShowBuildTreesToolbar();
210  break;
211 
212  case WID_TT_PLACE_SIGN: // Place sign button
213  HandlePlacePushButton(this, WID_TT_PLACE_SIGN, SPR_CURSOR_SIGN, HT_RECT);
214  this->last_user_action = widget;
215  break;
216 
217  case WID_TT_PLACE_OBJECT: // Place object button
219  break;
220 
221  default: NOT_REACHED();
222  }
223  }
224 
225  void OnPlaceObject([[maybe_unused]] Point pt, TileIndex tile) override
226  {
227  switch (this->last_user_action) {
228  case WID_TT_LOWER_LAND: // Lower land button
230  break;
231 
232  case WID_TT_RAISE_LAND: // Raise land button
234  break;
235 
236  case WID_TT_LEVEL_LAND: // Level land button
238  break;
239 
240  case WID_TT_DEMOLISH: // Demolish aka dynamite button
242  break;
243 
244  case WID_TT_BUY_LAND: // Buy land button
246  break;
247 
248  case WID_TT_PLACE_SIGN: // Place sign button
249  PlaceProc_Sign(tile);
250  break;
251 
252  default: NOT_REACHED();
253  }
254  }
255 
256  void OnPlaceDrag(ViewportPlaceMethod select_method, [[maybe_unused]] ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt) override
257  {
258  VpSelectTilesWithMethod(pt.x, pt.y, select_method);
259  }
260 
261  Point OnInitialPosition([[maybe_unused]] int16_t sm_width, [[maybe_unused]] int16_t sm_height, [[maybe_unused]] int window_number) override
262  {
263  Point pt = GetToolbarAlignedWindowPosition(sm_width);
264  pt.y += sm_height;
265  return pt;
266  }
267 
268  void OnPlaceMouseUp([[maybe_unused]] ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt, TileIndex start_tile, TileIndex end_tile) override
269  {
270  if (pt.x != -1) {
271  switch (select_proc) {
272  default: NOT_REACHED();
273  case DDSP_DEMOLISH_AREA:
276  case DDSP_LEVEL_AREA:
277  GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
278  break;
279  case DDSP_BUILD_OBJECT:
281  /* When end_tile is MP_VOID, the error tile will not be visible to the
282  * user. This happens when terraforming at the southern border. */
283  if (TileX(end_tile) == Map::MaxX()) end_tile += TileDiffXY(-1, 0);
284  if (TileY(end_tile) == Map::MaxY()) end_tile += TileDiffXY(0, -1);
285  }
286  Command<CMD_BUILD_OBJECT_AREA>::Post(STR_ERROR_CAN_T_PURCHASE_THIS_LAND, CcPlaySound_CONSTRUCTION_RAIL,
287  end_tile, start_tile, OBJECT_OWNED_LAND, 0, (_ctrl_pressed ? true : false));
288  break;
289  }
290  }
291  }
292 
293  void OnPlaceObjectAbort() override
294  {
295  this->RaiseButtons();
296  }
297 
304  {
305  if (_game_mode != GM_NORMAL) return ES_NOT_HANDLED;
306  Window *w = ShowTerraformToolbar(nullptr);
307  if (w == nullptr) return ES_NOT_HANDLED;
308  return w->OnHotkey(hotkey);
309  }
310 
311  static inline HotkeyList hotkeys{"terraform", {
312  Hotkey('Q' | WKC_GLOBAL_HOTKEY, "lower", WID_TT_LOWER_LAND),
313  Hotkey('W' | WKC_GLOBAL_HOTKEY, "raise", WID_TT_RAISE_LAND),
314  Hotkey('E' | WKC_GLOBAL_HOTKEY, "level", WID_TT_LEVEL_LAND),
315  Hotkey('D' | WKC_GLOBAL_HOTKEY, "dynamite", WID_TT_DEMOLISH),
316  Hotkey('U', "buyland", WID_TT_BUY_LAND),
317  Hotkey('I', "trees", WID_TT_PLANT_TREES),
318  Hotkey('O', "placesign", WID_TT_PLACE_SIGN),
319  Hotkey('P', "placeobject", WID_TT_PLACE_OBJECT),
321 };
322 
323 static constexpr NWidgetPart _nested_terraform_widgets[] = {
325  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
326  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_LANDSCAPING_TOOLBAR, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
327  NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
328  EndContainer(),
330  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_LOWER_LAND), SetMinimalSize(22, 22),
331  SetFill(0, 1), SetDataTip(SPR_IMG_TERRAFORM_DOWN, STR_LANDSCAPING_TOOLTIP_LOWER_A_CORNER_OF_LAND),
332  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_RAISE_LAND), SetMinimalSize(22, 22),
333  SetFill(0, 1), SetDataTip(SPR_IMG_TERRAFORM_UP, STR_LANDSCAPING_TOOLTIP_RAISE_A_CORNER_OF_LAND),
334  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_LEVEL_LAND), SetMinimalSize(22, 22),
335  SetFill(0, 1), SetDataTip(SPR_IMG_LEVEL_LAND, STR_LANDSCAPING_LEVEL_LAND_TOOLTIP),
336 
337  NWidget(WWT_PANEL, COLOUR_DARK_GREEN), SetMinimalSize(4, 22), EndContainer(),
338 
339  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_DEMOLISH), SetMinimalSize(22, 22),
340  SetFill(0, 1), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
341  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_BUY_LAND), SetMinimalSize(22, 22),
342  SetFill(0, 1), SetDataTip(SPR_IMG_BUY_LAND, STR_LANDSCAPING_TOOLTIP_PURCHASE_LAND),
343  NWidget(WWT_PUSHIMGBTN, COLOUR_DARK_GREEN, WID_TT_PLANT_TREES), SetMinimalSize(22, 22),
344  SetFill(0, 1), SetDataTip(SPR_IMG_PLANTTREES, STR_SCENEDIT_TOOLBAR_PLANT_TREES),
345  NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_PLACE_SIGN), SetMinimalSize(22, 22),
346  SetFill(0, 1), SetDataTip(SPR_IMG_SIGN, STR_SCENEDIT_TOOLBAR_PLACE_SIGN),
348  NWidget(WWT_PUSHIMGBTN, COLOUR_DARK_GREEN, WID_TT_PLACE_OBJECT), SetMinimalSize(22, 22),
349  SetFill(0, 1), SetDataTip(SPR_IMG_TRANSMITTER, STR_SCENEDIT_TOOLBAR_PLACE_OBJECT),
350  EndContainer(),
351  EndContainer(),
352 };
353 
354 static WindowDesc _terraform_desc(__FILE__, __LINE__,
355  WDP_MANUAL, "toolbar_landscape", 0, 0,
358  std::begin(_nested_terraform_widgets), std::end(_nested_terraform_widgets),
359  &TerraformToolbarWindow::hotkeys
360 );
361 
368 {
369  if (!Company::IsValidID(_local_company)) return nullptr;
370 
371  Window *w;
372  if (link == nullptr) {
373  w = AllocateWindowDescFront<TerraformToolbarWindow>(&_terraform_desc, 0);
374  return w;
375  }
376 
377  /* Delete the terraform toolbar to place it again. */
379  w = AllocateWindowDescFront<TerraformToolbarWindow>(&_terraform_desc, 0);
380  /* Align the terraform toolbar under the main toolbar. */
381  w->top -= w->height;
382  w->SetDirty();
383  /* Put the linked toolbar to the left / right of it. */
384  link->left = w->left + (_current_text_dir == TD_RTL ? w->width : -link->width);
385  link->top = w->top;
386  link->SetDirty();
387 
388  return w;
389 }
390 
391 static byte _terraform_size = 1;
392 
402 static void CommonRaiseLowerBigLand(TileIndex tile, bool mode)
403 {
404  if (_terraform_size == 1) {
405  StringID msg =
406  mode ? STR_ERROR_CAN_T_RAISE_LAND_HERE : STR_ERROR_CAN_T_LOWER_LAND_HERE;
407 
408  Command<CMD_TERRAFORM_LAND>::Post(msg, CcTerraform, tile, SLOPE_N, mode);
409  } else {
410  assert(_terraform_size != 0);
411  TileArea ta(tile, _terraform_size, _terraform_size);
412  ta.ClampToMap();
413 
414  if (ta.w == 0 || ta.h == 0) return;
415 
416  if (_settings_client.sound.confirm) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER, tile);
417 
418  uint h;
419  if (mode != 0) {
420  /* Raise land */
421  h = MAX_TILE_HEIGHT;
422  for (TileIndex tile2 : ta) {
423  h = std::min(h, TileHeight(tile2));
424  }
425  } else {
426  /* Lower land */
427  h = 0;
428  for (TileIndex tile2 : ta) {
429  h = std::max(h, TileHeight(tile2));
430  }
431  }
432 
433  for (TileIndex tile2 : ta) {
434  if (TileHeight(tile2) == h) {
436  }
437  }
438  }
439 }
440 
441 static const int8_t _multi_terraform_coords[][2] = {
442  { 0, -2},
443  { 4, 0}, { -4, 0}, { 0, 2},
444  { -8, 2}, { -4, 4}, { 0, 6}, { 4, 4}, { 8, 2},
445  {-12, 0}, { -8, -2}, { -4, -4}, { 0, -6}, { 4, -4}, { 8, -2}, { 12, 0},
446  {-16, 2}, {-12, 4}, { -8, 6}, { -4, 8}, { 0, 10}, { 4, 8}, { 8, 6}, { 12, 4}, { 16, 2},
447  {-20, 0}, {-16, -2}, {-12, -4}, { -8, -6}, { -4, -8}, { 0,-10}, { 4, -8}, { 8, -6}, { 12, -4}, { 16, -2}, { 20, 0},
448  {-24, 2}, {-20, 4}, {-16, 6}, {-12, 8}, { -8, 10}, { -4, 12}, { 0, 14}, { 4, 12}, { 8, 10}, { 12, 8}, { 16, 6}, { 20, 4}, { 24, 2},
449  {-28, 0}, {-24, -2}, {-20, -4}, {-16, -6}, {-12, -8}, { -8,-10}, { -4,-12}, { 0,-14}, { 4,-12}, { 8,-10}, { 12, -8}, { 16, -6}, { 20, -4}, { 24, -2}, { 28, 0},
450 };
451 
452 static constexpr NWidgetPart _nested_scen_edit_land_gen_widgets[] = {
454  NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
455  NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_TERRAFORM_TOOLBAR_LAND_GENERATION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
456  NWidget(WWT_SHADEBOX, COLOUR_DARK_GREEN),
457  NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
458  EndContainer(),
459  NWidget(WWT_PANEL, COLOUR_DARK_GREEN),
460  NWidget(NWID_HORIZONTAL), SetPadding(2, 2, 7, 2),
461  NWidget(NWID_SPACER), SetFill(1, 0),
462  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_DEMOLISH), SetMinimalSize(22, 22),
463  SetFill(0, 1), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
464  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_LOWER_LAND), SetMinimalSize(22, 22),
465  SetFill(0, 1), SetDataTip(SPR_IMG_TERRAFORM_DOWN, STR_LANDSCAPING_TOOLTIP_LOWER_A_CORNER_OF_LAND),
466  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_RAISE_LAND), SetMinimalSize(22, 22),
467  SetFill(0, 1), SetDataTip(SPR_IMG_TERRAFORM_UP, STR_LANDSCAPING_TOOLTIP_RAISE_A_CORNER_OF_LAND),
468  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_LEVEL_LAND), SetMinimalSize(22, 22),
469  SetFill(0, 1), SetDataTip(SPR_IMG_LEVEL_LAND, STR_LANDSCAPING_LEVEL_LAND_TOOLTIP),
470  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_PLACE_ROCKS), SetMinimalSize(22, 22),
471  SetFill(0, 1), SetDataTip(SPR_IMG_ROCKS, STR_TERRAFORM_TOOLTIP_PLACE_ROCKY_AREAS_ON_LANDSCAPE),
473  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_PLACE_DESERT), SetMinimalSize(22, 22),
474  SetFill(0, 1), SetDataTip(SPR_IMG_DESERT, STR_TERRAFORM_TOOLTIP_DEFINE_DESERT_AREA),
475  EndContainer(),
477  SetFill(0, 1), SetDataTip(SPR_IMG_TRANSMITTER, STR_SCENEDIT_TOOLBAR_PLACE_OBJECT),
478  NWidget(NWID_SPACER), SetFill(1, 0),
479  EndContainer(),
481  NWidget(NWID_SPACER), SetFill(1, 0),
482  NWidget(WWT_EMPTY, COLOUR_DARK_GREEN, WID_ETT_DOTS), SetMinimalSize(59, 31), SetDataTip(STR_EMPTY, STR_NULL),
483  NWidget(NWID_SPACER), SetFill(1, 0),
485  NWidget(NWID_SPACER), SetFill(0, 1),
486  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_INCREASE_SIZE), SetMinimalSize(12, 12), SetDataTip(SPR_ARROW_UP, STR_TERRAFORM_TOOLTIP_INCREASE_SIZE_OF_LAND_AREA),
488  NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_DECREASE_SIZE), SetMinimalSize(12, 12), SetDataTip(SPR_ARROW_DOWN, STR_TERRAFORM_TOOLTIP_DECREASE_SIZE_OF_LAND_AREA),
489  NWidget(NWID_SPACER), SetFill(0, 1),
490  EndContainer(),
492  EndContainer(),
494  NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_ETT_NEW_SCENARIO), SetMinimalSize(160, 12),
495  SetFill(1, 0), SetDataTip(STR_TERRAFORM_SE_NEW_WORLD, STR_TERRAFORM_TOOLTIP_GENERATE_RANDOM_LAND), SetPadding(0, 2, 0, 2),
497  SetFill(1, 0), SetDataTip(STR_TERRAFORM_RESET_LANDSCAPE, STR_TERRAFORM_RESET_LANDSCAPE_TOOLTIP), SetPadding(1, 2, 2, 2),
498  EndContainer(),
499 };
500 
505 static void ResetLandscapeConfirmationCallback(Window *, bool confirmed)
506 {
507  if (confirmed) {
508  /* Set generating_world to true to get instant-green grass after removing
509  * company property. */
510  Backup<bool> old_generating_world(_generating_world, true, FILE_LINE);
511 
512  /* Delete all companies */
513  for (Company *c : Company::Iterate()) {
515  delete c;
516  }
517 
518  old_generating_world.Restore();
519 
520  /* Delete all station signs */
521  for (BaseStation *st : BaseStation::Iterate()) {
522  /* There can be buoys, remove them */
524  if (!st->IsInUse()) delete st;
525  }
526 
527  /* Now that all vehicles are gone, we can reset the engine pool. Maybe it reduces some NewGRF changing-mess */
529 
531  }
532 }
533 
537 
539  {
540  this->CreateNestedTree();
541  NWidgetStacked *show_desert = this->GetWidget<NWidgetStacked>(WID_ETT_SHOW_PLACE_DESERT);
542  show_desert->SetDisplayedPlane(_settings_game.game_creation.landscape == LT_TROPIC ? 0 : SZSP_NONE);
543  this->FinishInitNested(window_number);
544  this->last_user_action = INVALID_WID_ETT;
545  }
546 
547  void OnPaint() override
548  {
549  this->DrawWidgets();
550 
551  if (this->IsWidgetLowered(WID_ETT_LOWER_LAND) || this->IsWidgetLowered(WID_ETT_RAISE_LAND)) { // change area-size if raise/lower corner is selected
552  SetTileSelectSize(_terraform_size, _terraform_size);
553  }
554  }
555 
556  void UpdateWidgetSize(WidgetID widget, Dimension *size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension *fill, [[maybe_unused]] Dimension *resize) override
557  {
558  if (widget != WID_ETT_DOTS) return;
559 
560  size->width = std::max<uint>(size->width, ScaleGUITrad(59));
561  size->height = std::max<uint>(size->height, ScaleGUITrad(31));
562  }
563 
564  void DrawWidget(const Rect &r, WidgetID widget) const override
565  {
566  if (widget != WID_ETT_DOTS) return;
567 
568  int center_x = RoundDivSU(r.left + r.right, 2);
569  int center_y = RoundDivSU(r.top + r.bottom, 2);
570 
571  int n = _terraform_size * _terraform_size;
572  const int8_t *coords = &_multi_terraform_coords[0][0];
573 
574  assert(n != 0);
575  do {
576  DrawSprite(SPR_WHITE_POINT, PAL_NONE, center_x + ScaleGUITrad(coords[0]), center_y + ScaleGUITrad(coords[1]));
577  coords += 2;
578  } while (--n);
579  }
580 
581  void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
582  {
583  if (widget < WID_ETT_BUTTONS_START) return;
584 
585  switch (widget) {
586  case WID_ETT_DEMOLISH: // Demolish aka dynamite button
588  this->last_user_action = widget;
589  break;
590 
591  case WID_ETT_LOWER_LAND: // Lower land button
593  this->last_user_action = widget;
594  break;
595 
596  case WID_ETT_RAISE_LAND: // Raise land button
598  this->last_user_action = widget;
599  break;
600 
601  case WID_ETT_LEVEL_LAND: // Level land button
602  HandlePlacePushButton(this, WID_ETT_LEVEL_LAND, SPR_CURSOR_LEVEL_LAND, HT_POINT | HT_DIAGONAL);
603  this->last_user_action = widget;
604  break;
605 
606  case WID_ETT_PLACE_ROCKS: // Place rocks button
607  HandlePlacePushButton(this, WID_ETT_PLACE_ROCKS, SPR_CURSOR_ROCKY_AREA, HT_RECT);
608  this->last_user_action = widget;
609  break;
610 
611  case WID_ETT_PLACE_DESERT: // Place desert button (in tropical climate)
612  HandlePlacePushButton(this, WID_ETT_PLACE_DESERT, SPR_CURSOR_DESERT, HT_RECT);
613  this->last_user_action = widget;
614  break;
615 
616  case WID_ETT_PLACE_OBJECT: // Place transmitter button
618  break;
619 
621  case WID_ETT_DECREASE_SIZE: { // Increase/Decrease terraform size
622  int size = (widget == WID_ETT_INCREASE_SIZE) ? 1 : -1;
623  this->HandleButtonClick(widget);
624  size += _terraform_size;
625 
626  if (!IsInsideMM(size, 1, 8 + 1)) return;
627  _terraform_size = size;
628 
630  this->SetDirty();
631  break;
632  }
633 
634  case WID_ETT_NEW_SCENARIO: // gen random land
635  this->HandleButtonClick(widget);
637  break;
638 
639  case WID_ETT_RESET_LANDSCAPE: // Reset landscape
640  ShowQuery(STR_QUERY_RESET_LANDSCAPE_CAPTION, STR_RESET_LANDSCAPE_CONFIRMATION_TEXT, nullptr, ResetLandscapeConfirmationCallback);
641  break;
642 
643  default: NOT_REACHED();
644  }
645  }
646 
647  void OnTimeout() override
648  {
649  for (const auto &pair : this->widget_lookup) {
650  if (pair.first < WID_ETT_START || (pair.first >= WID_ETT_BUTTONS_START && pair.first < WID_ETT_BUTTONS_END)) continue; // skip the buttons
651  this->RaiseWidgetWhenLowered(pair.first);
652  }
653  }
654 
655  void OnPlaceObject([[maybe_unused]] Point pt, TileIndex tile) override
656  {
657  switch (this->last_user_action) {
658  case WID_ETT_DEMOLISH: // Demolish aka dynamite button
660  break;
661 
662  case WID_ETT_LOWER_LAND: // Lower land button
663  CommonRaiseLowerBigLand(tile, false);
664  break;
665 
666  case WID_ETT_RAISE_LAND: // Raise land button
667  CommonRaiseLowerBigLand(tile, true);
668  break;
669 
670  case WID_ETT_LEVEL_LAND: // Level land button
672  break;
673 
674  case WID_ETT_PLACE_ROCKS: // Place rocks button
676  break;
677 
678  case WID_ETT_PLACE_DESERT: // Place desert button (in tropical climate)
680  break;
681 
682  default: NOT_REACHED();
683  }
684  }
685 
686  void OnPlaceDrag(ViewportPlaceMethod select_method, [[maybe_unused]] ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt) override
687  {
688  VpSelectTilesWithMethod(pt.x, pt.y, select_method);
689  }
690 
691  void OnPlaceMouseUp([[maybe_unused]] ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt, TileIndex start_tile, TileIndex end_tile) override
692  {
693  if (pt.x != -1) {
694  switch (select_proc) {
695  default: NOT_REACHED();
696  case DDSP_CREATE_ROCKS:
697  case DDSP_CREATE_DESERT:
700  case DDSP_LEVEL_AREA:
701  case DDSP_DEMOLISH_AREA:
702  GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
703  break;
704  }
705  }
706  }
707 
708  void OnPlaceObjectAbort() override
709  {
710  this->RaiseButtons();
711  this->SetDirty();
712  }
713 
720  {
721  if (_game_mode != GM_EDITOR) return ES_NOT_HANDLED;
723  if (w == nullptr) return ES_NOT_HANDLED;
724  return w->OnHotkey(hotkey);
725  }
726 
727  static inline HotkeyList hotkeys{"terraform_editor", {
728  Hotkey('D' | WKC_GLOBAL_HOTKEY, "dynamite", WID_ETT_DEMOLISH),
732  Hotkey('R', "rocky", WID_ETT_PLACE_ROCKS),
733  Hotkey('T', "desert", WID_ETT_PLACE_DESERT),
734  Hotkey('O', "object", WID_ETT_PLACE_OBJECT),
736 };
737 
738 static WindowDesc _scen_edit_land_gen_desc(__FILE__, __LINE__,
739  WDP_AUTO, "toolbar_landscape_scen", 0, 0,
742  std::begin(_nested_scen_edit_land_gen_widgets), std::end(_nested_scen_edit_land_gen_widgets),
743  &ScenarioEditorLandscapeGenerationWindow::hotkeys
744 );
745 
751 {
752  return AllocateWindowDescFront<ScenarioEditorLandscapeGenerationWindow>(&_scen_edit_land_gen_desc, 0);
753 }
SZSP_NONE
@ SZSP_NONE
Display plane with zero size in both directions (none filling and resizing).
Definition: widget_type.h:469
WID_ETT_DEMOLISH
@ WID_ETT_DEMOLISH
Demolish aka dynamite button.
Definition: terraform_widget.h:35
TileY
static debug_inline uint TileY(TileIndex tile)
Get the Y component of a tile.
Definition: map_func.h:437
MP_CLEAR
@ MP_CLEAR
A tile without any structures, i.e. grass, rocks, farm fields etc.
Definition: tile_type.h:48
SetFill
constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
Widget part function for setting filling.
Definition: widget_type.h:1141
SetTileSelectSize
void SetTileSelectSize(int w, int h)
Highlight w by h tiles at the cursor.
Definition: viewport.cpp:2536
DDSP_DEMOLISH_AREA
@ DDSP_DEMOLISH_AREA
Clear area.
Definition: viewport_type.h:108
TROPICZONE_DESERT
@ TROPICZONE_DESERT
Tile is desert.
Definition: tile_type.h:78
WID_TT_LOWER_LAND
@ WID_TT_LOWER_LAND
Lower land button.
Definition: terraform_widget.h:17
sound_func.h
EngineOverrideManager::ResetToCurrentNewGRFConfig
static bool ResetToCurrentNewGRFConfig()
Tries to reset the engine mapping to match the current NewGRF configuration.
Definition: engine.cpp:547
ScenarioEditorLandscapeGenerationWindow::last_user_action
int last_user_action
Last started user action.
Definition: terraform_gui.cpp:536
WID_ETT_INCREASE_SIZE
@ WID_ETT_INCREASE_SIZE
Upwards arrow button to increase terraforming size.
Definition: terraform_widget.h:43
ShowQuery
void ShowQuery(StringID caption, StringID message, Window *parent, QueryCallbackProc *callback, bool focus)
Show a confirmation window with standard 'yes' and 'no' buttons The window is aligned to the centre o...
Definition: misc_gui.cpp:1227
HotkeyList
List of hotkeys for a window.
Definition: hotkeys.h:37
landscape_type.h
Dimension
Dimensions (a width and height) of a rectangle in 2D.
Definition: geometry_type.hpp:30
command_func.h
IsInsideMM
constexpr bool IsInsideMM(const T x, const size_t min, const size_t max) noexcept
Checks if a value is in an interval.
Definition: math_func.hpp:268
WWT_STICKYBOX
@ WWT_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition: widget_type.h:68
DDSP_CREATE_ROCKS
@ DDSP_CREATE_ROCKS
Fill area with rocks.
Definition: viewport_type.h:113
WDF_CONSTRUCTION
@ WDF_CONSTRUCTION
This window is used for construction; close it whenever changing company.
Definition: window_gui.h:197
GetTreeGround
TreeGround GetTreeGround(Tile t)
Returns the groundtype for tree tiles.
Definition: tree_map.h:88
WID_TT_BUTTONS_START
@ WID_TT_BUTTONS_START
Start of pushable buttons.
Definition: terraform_widget.h:16
GameCreationSettings::landscape
byte landscape
the landscape we're currently in
Definition: settings_type.h:356
Backup
Class to backup a specific variable and restore it later.
Definition: backup_type.hpp:21
LM_LOWER
@ LM_LOWER
Lower the land.
Definition: map_type.h:57
Map::MaxX
static debug_inline uint MaxX()
Gets the maximum X coordinate within the map, including MP_VOID.
Definition: map_func.h:297
terraform_cmd.h
company_base.h
ViewportDragDropSelectionProcess
ViewportDragDropSelectionProcess
Drag and drop selection process, or, what to do with an area of land when you've selected it.
Definition: viewport_type.h:107
ANIMCURSOR_RAISELAND
static const CursorID ANIMCURSOR_RAISELAND
696 - 698 - raise land tool
Definition: sprites.h:1502
CLEAR_ROCKS
@ CLEAR_ROCKS
3
Definition: clear_map.h:22
DDSP_LEVEL_AREA
@ DDSP_LEVEL_AREA
Level area.
Definition: viewport_type.h:111
signs_func.h
WWT_CAPTION
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition: widget_type.h:63
StringID
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
WWT_IMGBTN
@ WWT_IMGBTN
(Toggle) Button with image
Definition: widget_type.h:54
WID_TT_PLACE_SIGN
@ WID_TT_PLACE_SIGN
Place sign button.
Definition: terraform_widget.h:23
CloseWindowById
void CloseWindowById(WindowClass cls, WindowNumber number, bool force, int data)
Close a window by its class and window number (if it is open).
Definition: window.cpp:1141
SetRedErrorSquare
void SetRedErrorSquare(TileIndex tile)
Set a tile to display a red error square.
Definition: viewport.cpp:2518
TREE_GROUND_SHORE
@ TREE_GROUND_SHORE
shore
Definition: tree_map.h:56
ScenarioEditorLandscapeGenerationWindow::OnPlaceObjectAbort
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
Definition: terraform_gui.cpp:708
NWID_HORIZONTAL
@ NWID_HORIZONTAL
Horizontal container.
Definition: widget_type.h:77
WID_ETT_RAISE_LAND
@ WID_ETT_RAISE_LAND
Raise land button.
Definition: terraform_widget.h:37
CommonRaiseLowerBigLand
static void CommonRaiseLowerBigLand(TileIndex tile, bool mode)
Raise/Lower a bigger chunk of land at the same time in the editor.
Definition: terraform_gui.cpp:402
EndContainer
constexpr NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
Definition: widget_type.h:1151
PlaceProc_DemolishArea
void PlaceProc_DemolishArea(TileIndex tile)
Start a drag for demolishing an area.
Definition: terraform_gui.cpp:150
_ctrl_pressed
bool _ctrl_pressed
Is Ctrl pressed?
Definition: gfx.cpp:37
WID_TT_LEVEL_LAND
@ WID_TT_LEVEL_LAND
Level land button.
Definition: terraform_widget.h:19
SND_15_BEEP
@ SND_15_BEEP
19 == 0x13 GUI button click
Definition: sound_type.h:58
WID_ETT_PLACE_ROCKS
@ WID_ETT_PLACE_ROCKS
Place rocks button.
Definition: terraform_widget.h:39
HandlePlacePushButton
bool HandlePlacePushButton(Window *w, WidgetID widget, CursorID cursor, HighLightStyle mode)
This code is shared for the majority of the pushbuttons.
Definition: main_gui.cpp:63
zoom_func.h
Window::RaiseButtons
void RaiseButtons(bool autoraise=false)
Raise the buttons of the window.
Definition: window.cpp:526
WID_ETT_LEVEL_LAND
@ WID_ETT_LEVEL_LAND
Level land button.
Definition: terraform_widget.h:38
_settings_client
ClientSettings _settings_client
The current settings for this game.
Definition: settings.cpp:54
WWT_EMPTY
@ WWT_EMPTY
Empty widget, place holder to reserve space in widget tree.
Definition: widget_type.h:50
ANIMCURSOR_DEMOLISH
static const CursorID ANIMCURSOR_DEMOLISH
704 - 707 - demolish dynamite
Definition: sprites.h:1500
TerraformToolbarWindow::last_user_action
int last_user_action
Last started user action.
Definition: terraform_gui.cpp:157
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > >
WID_ETT_DECREASE_SIZE
@ WID_ETT_DECREASE_SIZE
Downwards arrow button to decrease terraforming size.
Definition: terraform_widget.h:44
WID_ETT_LOWER_LAND
@ WID_ETT_LOWER_LAND
Lower land button.
Definition: terraform_widget.h:36
MAX_TILE_HEIGHT
static const uint MAX_TILE_HEIGHT
Maximum allowed tile height.
Definition: tile_type.h:24
clear_map.h
ViewportPlaceMethod
ViewportPlaceMethod
Viewport place method (type of highlighted area and placed objects)
Definition: viewport_type.h:88
DC_EXEC
@ DC_EXEC
execute the given command
Definition: command_type.h:371
Window::OnHotkey
virtual EventState OnHotkey(int hotkey)
A hotkey has been pressed.
Definition: window.cpp:566
NWidgetPart
Partial widget specification to allow NWidgets to be written nested.
Definition: widget_type.h:1038
TerraformToolbarWindow::OnInit
void OnInit() override
Notification that the nested widget tree gets initialized.
Definition: terraform_gui.cpp:171
genworld.h
OrthogonalTileArea::h
uint16_t h
The height of the area.
Definition: tilearea_type.h:21
ScenarioEditorLandscapeGenerationWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: terraform_gui.cpp:547
CommandCost::Succeeded
bool Succeeded() const
Did this command succeed?
Definition: command_type.h:162
textbuf_gui.h
WID_ETT_DOTS
@ WID_ETT_DOTS
Invisible widget for rendering the terraform size on.
Definition: terraform_widget.h:33
GameSettings::game_creation
GameCreationSettings game_creation
settings used during the creation of a game (map)
Definition: settings_type.h:619
GetTileType
static debug_inline TileType GetTileType(Tile tile)
Get the tiletype of a given tile.
Definition: tile_map.h:96
MakeClear
void MakeClear(Tile t, ClearGround g, uint density)
Make a clear tile.
Definition: clear_map.h:259
WindowDesc
High level window description.
Definition: window_gui.h:153
WidgetID
int WidgetID
Widget ID.
Definition: window_type.h:18
RoundDivSU
constexpr int RoundDivSU(int a, uint b)
Computes round(a / b) for signed a and unsigned b.
Definition: math_func.hpp:342
ScaleGUITrad
int ScaleGUITrad(int value)
Scale traditional pixel dimensions to GUI zoom level.
Definition: zoom_func.h:117
window_gui.h
SetPadding
constexpr NWidgetPart SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
Widget part function for setting additional space around a widget.
Definition: widget_type.h:1188
landscape_cmd.h
WDP_AUTO
@ WDP_AUTO
Find a place automatically.
Definition: window_gui.h:141
GenerateDesertArea
static void GenerateDesertArea(TileIndex end, TileIndex start)
Scenario editor command that generates desert areas.
Definition: terraform_gui.cpp:58
WKC_GLOBAL_HOTKEY
@ WKC_GLOBAL_HOTKEY
Fake keycode bit to indicate global hotkeys.
Definition: gfx_type.h:33
Window::resize
ResizeInfo resize
Resize information.
Definition: window_gui.h:308
CommandCost
Common return value for all commands.
Definition: command_type.h:23
tilehighlight_func.h
ClientSettings::sound
SoundSettings sound
sound effect settings
Definition: settings_type.h:639
WindowNumber
int32_t WindowNumber
Number to differentiate different windows of the same class.
Definition: window_type.h:732
Window::HandleButtonClick
void HandleButtonClick(WidgetID widget)
Do all things to make a button look clicked and mark it to be unclicked in a few ticks.
Definition: window.cpp:591
Window::height
int height
Height of the window (number of pixels down in y direction)
Definition: window_gui.h:306
VpStartPlaceSizing
void VpStartPlaceSizing(TileIndex tile, ViewportPlaceMethod method, ViewportDragDropSelectionProcess process)
highlighting tiles while only going over them with the mouse
Definition: viewport.cpp:2716
ShowCreateScenario
void ShowCreateScenario()
Show the window to create a scenario.
Definition: genworld_gui.cpp:1324
GenerateRockyArea
static void GenerateRockyArea(TileIndex end, TileIndex start)
Scenario editor command that generates rocky areas.
Definition: terraform_gui.cpp:75
Window::SetDirty
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
Definition: window.cpp:941
rail_cmd.h
HT_DIAGONAL
@ HT_DIAGONAL
Also allow 'diagonal rectangles'. Only usable in combination with HT_RECT or HT_POINT.
Definition: tilehighlight_type.h:28
INVALID_OWNER
@ INVALID_OWNER
An invalid owner.
Definition: company_type.h:29
WID_TT_PLANT_TREES
@ WID_TT_PLANT_TREES
Plant trees button (note: opens separate window, no place-push-button).
Definition: terraform_widget.h:22
DDSP_BUILD_OBJECT
@ DDSP_BUILD_OBJECT
Build an object.
Definition: viewport_type.h:118
ES_NOT_HANDLED
@ ES_NOT_HANDLED
The passed event is not handled.
Definition: window_type.h:740
WID_ETT_START
@ WID_ETT_START
Used for iterations.
Definition: terraform_widget.h:32
VpSelectTilesWithMethod
void VpSelectTilesWithMethod(int x, int y, ViewportPlaceMethod method)
Selects tiles while dragging.
Definition: viewport.cpp:3201
OrthogonalTileArea
Represents the covered area of e.g.
Definition: tilearea_type.h:18
TileDiffXY
TileIndexDiff TileDiffXY(int x, int y)
Calculates an offset for the given coordinate(-offset).
Definition: map_func.h:401
_settings_game
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition: settings.cpp:55
IsBuoyTile
bool IsBuoyTile(Tile t)
Is tile t a buoy tile?
Definition: station_map.h:317
NWidget
constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx=-1)
Widget part function for starting a new 'real' widget.
Definition: widget_type.h:1258
_local_company
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Definition: company_cmd.cpp:49
safeguards.h
GetToolbarAlignedWindowPosition
Point GetToolbarAlignedWindowPosition(int window_width)
Computer the position of the top-left corner of a window to be opened right under the toolbar.
Definition: window.cpp:1628
Window::left
int left
x position of left edge of the window
Definition: window_gui.h:303
ConstructionSettings::freeform_edges
bool freeform_edges
allow terraforming the tiles at the map edges
Definition: settings_type.h:383
WID_ETT_PLACE_DESERT
@ WID_ETT_PLACE_DESERT
Place desert button (in tropical climate).
Definition: terraform_widget.h:40
DrawSprite
void DrawSprite(SpriteID img, PaletteID pal, int x, int y, const SubSprite *sub, ZoomLevel zoom)
Draw a sprite, not in a viewport.
Definition: gfx.cpp:1007
DDSP_LOWER_AND_LEVEL_AREA
@ DDSP_LOWER_AND_LEVEL_AREA
Lower / level area.
Definition: viewport_type.h:110
Point
Coordinates of a point in 2D.
Definition: geometry_type.hpp:21
LM_LEVEL
@ LM_LEVEL
Level the land.
Definition: map_type.h:56
stdafx.h
Window::window_number
WindowNumber window_number
Window number within the window class.
Definition: window_gui.h:296
ScenarioEditorLandscapeGenerationWindow::TerraformToolbarEditorGlobalHotkeys
static EventState TerraformToolbarEditorGlobalHotkeys(int hotkey)
Handler for global hotkeys of the ScenarioEditorLandscapeGenerationWindow.
Definition: terraform_gui.cpp:719
DC_BANKRUPT
@ DC_BANKRUPT
company bankrupts, skip money check, skip vehicle on tile check in some cases
Definition: command_type.h:377
viewport_func.h
terraform_widget.h
NWidgetStacked
Stacked widgets, widgets all occupying the same space in the window.
Definition: widget_type.h:484
WC_NONE
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
Definition: window_type.h:45
object_cmd.h
NWID_VERTICAL
@ NWID_VERTICAL
Vertical container.
Definition: widget_type.h:79
WID_TT_SHOW_PLACE_OBJECT
@ WID_TT_SHOW_PLACE_OBJECT
Should the place object button be shown?
Definition: terraform_widget.h:15
newgrf_object.h
MP_TREES
@ MP_TREES
Tile got trees.
Definition: tile_type.h:52
ResetLandscapeConfirmationCallback
static void ResetLandscapeConfirmationCallback(Window *, bool confirmed)
Callback function for the scenario editor 'reset landscape' confirmation window.
Definition: terraform_gui.cpp:505
WWT_CLOSEBOX
@ WWT_CLOSEBOX
Close box (at top-left of a window)
Definition: widget_type.h:71
OBJECT_OWNED_LAND
static const ObjectType OBJECT_OWNED_LAND
Owned land 'flag'.
Definition: object_type.h:19
_generating_world
bool _generating_world
Whether we are generating the map or not.
Definition: genworld.cpp:62
Window::IsWidgetLowered
bool IsWidgetLowered(WidgetID widget_index) const
Gets the lowered state of a widget.
Definition: window_gui.h:491
WWT_PUSHIMGBTN
@ WWT_PUSHIMGBTN
Normal push-button (no toggle button) with image caption.
Definition: widget_type.h:111
SoundSettings::confirm
bool confirm
Play sound effect on successful constructions or other actions.
Definition: settings_type.h:240
Pool::PoolItem<&_company_pool >::Iterate
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Definition: pool_type.hpp:384
Window::CreateNestedTree
void CreateNestedTree()
Perform the first part of the initialization of a nested widget tree.
Definition: window.cpp:1724
Map::MaxY
static uint MaxY()
Gets the maximum Y coordinate within the map, including MP_VOID.
Definition: map_func.h:306
strings_func.h
TerraformToolbarWindow::OnPlaceObjectAbort
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
Definition: terraform_gui.cpp:293
WID_ETT_BUTTONS_END
@ WID_ETT_BUTTONS_END
End of pushable buttons.
Definition: terraform_widget.h:42
terraform_gui.h
WID_ETT_SHOW_PLACE_DESERT
@ WID_ETT_SHOW_PLACE_DESERT
Should the place desert button be shown?
Definition: terraform_widget.h:31
Backup::Restore
void Restore()
Restore the variable.
Definition: backup_type.hpp:112
WID_ETT_NEW_SCENARIO
@ WID_ETT_NEW_SCENARIO
Button for generating a new scenario.
Definition: terraform_widget.h:45
WID_TT_BUY_LAND
@ WID_TT_BUY_LAND
Buy land button.
Definition: terraform_widget.h:21
SLOPE_N
@ SLOPE_N
the north corner of the tile is raised
Definition: slope_type.h:53
WC_SCEN_LAND_GEN
@ WC_SCEN_LAND_GEN
Landscape generation (in Scenario Editor); Window numbers:
Definition: window_type.h:449
WID_TT_RAISE_LAND
@ WID_TT_RAISE_LAND
Raise land button.
Definition: terraform_widget.h:18
InvalidateWindowClassesData
void InvalidateWindowClassesData(WindowClass cls, int data, bool gui_scope)
Mark window data of all windows of a given class as invalid (in need of re-computing) Note that by de...
Definition: window.cpp:3217
tree_map.h
WWT_PANEL
@ WWT_PANEL
Simple depressed panel.
Definition: widget_type.h:52
MarkTileDirtyByTile
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:2051
NWidgetStacked::SetDisplayedPlane
bool SetDisplayedPlane(int plane)
Select which plane to show (for NWID_SELECTION only).
Definition: widget.cpp:1299
TerraformToolbarWindow::TerraformToolbarGlobalHotkeys
static EventState TerraformToolbarGlobalHotkeys(int hotkey)
Handler for global hotkeys of the TerraformToolbarWindow.
Definition: terraform_gui.cpp:303
DDSP_RAISE_AND_LEVEL_AREA
@ DDSP_RAISE_AND_LEVEL_AREA
Raise / level area.
Definition: viewport_type.h:109
EventState
EventState
State of handling an event.
Definition: window_type.h:738
HT_RECT
@ HT_RECT
rectangle (stations, depots, ...)
Definition: tilehighlight_type.h:21
VPM_X_AND_Y
@ VPM_X_AND_Y
area of land in X and Y directions
Definition: viewport_type.h:92
base_station_base.h
PlaceProc_Sign
void PlaceProc_Sign(TileIndex tile)
PlaceProc function, called when someone pressed the button if the sign-tool is selected.
Definition: signs_cmd.cpp:122
Window::FinishInitNested
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition: window.cpp:1734
Window::widget_lookup
WidgetLookup widget_lookup
Indexed access to the nested widget tree. Do not access directly, use Window::GetWidget() instead.
Definition: window_gui.h:316
NWID_SPACER
@ NWID_SPACER
Invisible widget that takes some space.
Definition: widget_type.h:81
BaseStation
Base class for all station-ish types.
Definition: base_station_base.h:64
company_func.h
Window::top
int top
y position of top edge of the window
Definition: window_gui.h:304
ScenarioEditorLandscapeGenerationWindow::OnTimeout
void OnTimeout() override
Called when this window's timeout has been reached.
Definition: terraform_gui.cpp:647
OrthogonalTileArea::w
uint16_t w
The width of the area.
Definition: tilearea_type.h:20
CommandHelper
Definition: command_func.h:93
window_func.h
SoundSettings::click_beep
bool click_beep
Beep on a random selection of buttons.
Definition: settings_type.h:241
TerraformToolbarWindow
Terra form toolbar managing class.
Definition: terraform_gui.cpp:156
Window::width
int width
width of the window (number of pixels to the right in x direction)
Definition: window_gui.h:305
ScenarioEditorLandscapeGenerationWindow
Landscape generation window handler in the scenario editor.
Definition: terraform_gui.cpp:535
ShowTerraformToolbar
Window * ShowTerraformToolbar(Window *link)
Show the toolbar for terraforming in the game.
Definition: terraform_gui.cpp:367
SetMinimalSize
constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
Definition: widget_type.h:1097
MarkWholeScreenDirty
void MarkWholeScreenDirty()
This function mark the whole screen as dirty.
Definition: gfx.cpp:1552
WDP_MANUAL
@ WDP_MANUAL
Manually align the window (so no automatic location finding)
Definition: window_gui.h:140
TileHeight
static debug_inline uint TileHeight(Tile tile)
Returns the height of a tile.
Definition: tile_map.h:29
SND_1F_CONSTRUCTION_OTHER
@ SND_1F_CONSTRUCTION_OTHER
29 == 0x1D Construction: other (non-water, non-rail, non-bridge)
Definition: sound_type.h:68
WID_TT_DEMOLISH
@ WID_TT_DEMOLISH
Demolish aka dynamite button.
Definition: terraform_widget.h:20
OverflowSafeInt< int64_t >
engine_base.h
WID_ETT_RESET_LANDSCAPE
@ WID_ETT_RESET_LANDSCAPE
Button for removing all company-owned property.
Definition: terraform_widget.h:46
WC_TOWN_VIEW
@ WC_TOWN_VIEW
Town view; Window numbers:
Definition: window_type.h:333
gui.h
GameSettings::construction
ConstructionSettings construction
construction of things in-game
Definition: settings_type.h:620
Window
Data structure for an opened window.
Definition: window_gui.h:267
Commands
Commands
List of commands.
Definition: command_type.h:187
Pool::PoolItem<&_company_pool >::IsValidID
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
Definition: pool_type.hpp:324
WID_ETT_BUTTONS_START
@ WID_ETT_BUTTONS_START
Start of pushable buttons.
Definition: terraform_widget.h:34
Window::DrawWidgets
void DrawWidgets() const
Paint all widgets of a window.
Definition: widget.cpp:731
WID_TT_PLACE_OBJECT
@ WID_TT_PLACE_OBJECT
Place object button.
Definition: terraform_widget.h:24
TROPICZONE_NORMAL
@ TROPICZONE_NORMAL
Normal tropiczone.
Definition: tile_type.h:77
TileX
static debug_inline uint TileX(TileIndex tile)
Get the X component of a tile.
Definition: map_func.h:427
SetDataTip
constexpr NWidgetPart SetDataTip(uint32_t data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1162
ShowBuildObjectPicker
Window * ShowBuildObjectPicker()
Show our object picker.
Definition: object_gui.cpp:721
HT_POINT
@ HT_POINT
point (lower land, raise land, level land, ...)
Definition: tilehighlight_type.h:22
LM_RAISE
@ LM_RAISE
Raise the land.
Definition: map_type.h:58
NWID_SELECTION
@ NWID_SELECTION
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition: widget_type.h:82
Window::RaiseWidgetWhenLowered
void RaiseWidgetWhenLowered(byte widget_index)
Marks a widget as raised and dirty (redraw), when it is marked as lowered.
Definition: window_gui.h:478
OrthogonalTileArea::ClampToMap
void ClampToMap()
Clamp the tile area to map borders.
Definition: tilearea.cpp:142
Rect
Specification of a rectangle with absolute coordinates of all edges.
Definition: geometry_type.hpp:75
Company
Definition: company_base.h:116
ChangeOwnershipOfCompanyItems
void ChangeOwnershipOfCompanyItems(Owner old_owner, Owner new_owner)
Change the ownership of all the items of a company.
Definition: economy.cpp:334
SetTropicZone
void SetTropicZone(Tile tile, TropicZone type)
Set the tropic zone.
Definition: tile_map.h:225
TD_RTL
@ TD_RTL
Text is written right-to-left by default.
Definition: strings_type.h:24
_current_text_dir
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition: strings.cpp:56
WWT_TEXTBTN
@ WWT_TEXTBTN
(Toggle) Button with text
Definition: widget_type.h:57
object.h
ShowEditorTerraformToolbar
Window * ShowEditorTerraformToolbar()
Show the toolbar for terraforming in the scenario editor.
Definition: terraform_gui.cpp:750
Hotkey
All data for a single hotkey.
Definition: hotkeys.h:21
hotkeys.h
WID_ETT_PLACE_OBJECT
@ WID_ETT_PLACE_OBJECT
Place transmitter button.
Definition: terraform_widget.h:41
ANIMCURSOR_LOWERLAND
static const CursorID ANIMCURSOR_LOWERLAND
699 - 701 - lower land tool
Definition: sprites.h:1501
WWT_SHADEBOX
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition: widget_type.h:66
backup_type.hpp
DDSP_CREATE_DESERT
@ DDSP_CREATE_DESERT
Fill area with desert.
Definition: viewport_type.h:112
GUIPlaceProcDragXY
bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_tile, TileIndex end_tile)
A central place to handle all X_AND_Y dragged GUI functions.
Definition: terraform_gui.cpp:111