OpenTTD Source 20250328-master-gc3457cd4c0
airport_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 "economy_func.h"
12#include "window_gui.h"
13#include "station_gui.h"
14#include "terraform_gui.h"
15#include "sound_func.h"
16#include "window_func.h"
17#include "strings_func.h"
18#include "viewport_func.h"
19#include "company_func.h"
20#include "tilehighlight_func.h"
21#include "company_base.h"
22#include "station_type.h"
23#include "newgrf_airport.h"
24#include "newgrf_badge.h"
25#include "newgrf_callbacks.h"
26#include "dropdown_type.h"
27#include "dropdown_func.h"
29#include "hotkeys.h"
30#include "vehicle_func.h"
31#include "gui.h"
32#include "command_func.h"
33#include "airport_cmd.h"
34#include "station_cmd.h"
35#include "zoom_func.h"
36#include "timer/timer.h"
38
40
41#include "table/strings.h"
42
43#include "safeguards.h"
44
45
49
50static void ShowBuildAirportPicker(Window *parent);
51
52SpriteID GetCustomAirportSprite(const AirportSpec *as, uint8_t layout);
53
54void CcBuildAirport(Commands, const CommandCost &result, TileIndex tile)
55{
56 if (result.Failed()) return;
57
60}
61
66static void PlaceAirport(TileIndex tile)
67{
68 if (_selected_airport_index == -1) return;
69
71 uint8_t layout = _selected_airport_layout;
72 bool adjacent = _ctrl_pressed;
73
74 auto proc = [=](bool test, StationID to_join) -> bool {
75 if (test) {
76 return Command<CMD_BUILD_AIRPORT>::Do(CommandFlagsToDCFlags(GetCommandFlags<CMD_BUILD_AIRPORT>()), tile, airport_type, layout, StationID::Invalid(), adjacent).Succeeded();
77 } else {
78 return Command<CMD_BUILD_AIRPORT>::Post(STR_ERROR_CAN_T_BUILD_AIRPORT_HERE, CcBuildAirport, tile, airport_type, layout, to_join, adjacent);
79 }
80 };
81
82 ShowSelectStationIfNeeded(TileArea(tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE), proc);
83}
84
87 int last_user_action = INVALID_WID_AT; // Last started user action.
88
90 {
91 this->InitNested(window_number);
92 this->OnInvalidateData();
94 }
95
96 void Close([[maybe_unused]] int data = 0) override
97 {
100 this->Window::Close();
101 }
102
108 void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
109 {
110 if (!gui_scope) return;
111
113 this->SetWidgetDisabledState(WID_AT_AIRPORT, !can_build);
114 if (!can_build) {
116
117 /* Show in the tooltip why this button is disabled. */
119 } else {
121 }
122 }
123
124 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
125 {
126 switch (widget) {
127 case WID_AT_AIRPORT:
128 if (HandlePlacePushButton(this, WID_AT_AIRPORT, SPR_CURSOR_AIRPORT, HT_RECT)) {
129 ShowBuildAirportPicker(this);
130 this->last_user_action = widget;
131 }
132 break;
133
134 case WID_AT_DEMOLISH:
136 this->last_user_action = widget;
137 break;
138
139 default: break;
140 }
141 }
142
143
144 void OnPlaceObject([[maybe_unused]] Point pt, TileIndex tile) override
145 {
146 switch (this->last_user_action) {
147 case WID_AT_AIRPORT:
148 PlaceAirport(tile);
149 break;
150
151 case WID_AT_DEMOLISH:
153 break;
154
155 default: NOT_REACHED();
156 }
157 }
158
160 {
161 VpSelectTilesWithMethod(pt.x, pt.y, select_method);
162 }
163
164 void OnPlaceMouseUp([[maybe_unused]] ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt, TileIndex start_tile, TileIndex end_tile) override
165 {
166 if (pt.x != -1 && select_proc == DDSP_DEMOLISH_AREA) {
167 GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
168 }
169 }
170
180
187 {
188 if (_game_mode != GM_NORMAL) return ES_NOT_HANDLED;
190 if (w == nullptr) return ES_NOT_HANDLED;
191 return w->OnHotkey(hotkey);
192 }
193
194 static inline HotkeyList hotkeys{"airtoolbar", {
195 Hotkey('1', "airport", WID_AT_AIRPORT),
196 Hotkey('2', "demolish", WID_AT_DEMOLISH),
198};
199
200static constexpr NWidgetPart _nested_air_toolbar_widgets[] = {
202 NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
203 NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetStringTip(STR_TOOLBAR_AIRCRAFT_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
204 NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
205 EndContainer(),
207 NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_AT_AIRPORT), SetFill(0, 1), SetMinimalSize(42, 22), SetSpriteTip(SPR_IMG_AIRPORT, STR_TOOLBAR_AIRCRAFT_BUILD_AIRPORT_TOOLTIP),
208 NWidget(WWT_PANEL, COLOUR_DARK_GREEN), SetMinimalSize(4, 22), SetFill(1, 1), EndContainer(),
209 NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_AT_DEMOLISH), SetFill(0, 1), SetMinimalSize(22, 22), SetSpriteTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
210 EndContainer(),
211};
212
213static WindowDesc _air_toolbar_desc(
214 WDP_ALIGN_TOOLBAR, "toolbar_air", 0, 0,
217 _nested_air_toolbar_widgets,
218 &BuildAirToolbarWindow::hotkeys
219);
220
229{
230 if (!Company::IsValidID(_local_company)) return nullptr;
231
233 return AllocateWindowDescFront<BuildAirToolbarWindow>(_air_toolbar_desc, TRANSPORT_AIR);
234}
235
238 int line_height = 0;
239 Scrollbar *vscroll = nullptr;
240
243 {
244 DropDownList list;
245
246 for (const auto &cls : AirportClass::Classes()) {
247 list.push_back(MakeDropDownListStringItem(cls.name, cls.Index()));
248 }
249
250 return list;
251 }
252
253public:
255 {
256 this->CreateNestedTree();
257
258 this->vscroll = this->GetScrollbar(WID_AP_SCROLLBAR);
259 this->vscroll->SetCapacity(5);
260 this->vscroll->SetPosition(0);
261
263
266 this->OnInvalidateData();
267
268 /* Ensure airport class is valid (changing NewGRFs). */
271 this->vscroll->SetCount(ac->GetSpecCount());
272
273 /* Ensure the airport index is valid for this class (changing NewGRFs). */
274 _selected_airport_index = Clamp(_selected_airport_index, -1, ac->GetSpecCount() - 1);
275
276 /* Only when no valid airport was selected, we want to select the first airport. */
277 bool selectFirstAirport = true;
278 if (_selected_airport_index != -1) {
279 const AirportSpec *as = ac->GetSpec(_selected_airport_index);
280 if (as->IsAvailable()) {
281 /* Ensure the airport layout is valid. */
282 _selected_airport_layout = Clamp(_selected_airport_layout, 0, static_cast<uint8_t>(as->layouts.size() - 1));
283 selectFirstAirport = false;
284 this->UpdateSelectSize();
285 }
286 }
287
289 }
290
291 void Close([[maybe_unused]] int data = 0) override
292 {
295 }
296
297 std::string GetWidgetString(WidgetID widget, StringID stringid) const override
298 {
299 switch (widget) {
302
304 if (_selected_airport_index != -1) {
307 if (string != STR_UNDEFINED) {
308 return GetString(string);
309 } else if (as->layouts.size() > 1) {
311 }
312 }
313 return {};
314
315 default:
316 return this->Window::GetWidgetString(widget, stringid);
317 }
318 }
319
321 {
322 switch (widget) {
324 Dimension d = {0, 0};
325 for (const auto &cls : AirportClass::Classes()) {
326 d = maxdim(d, GetStringBoundingBox(cls.name));
327 }
328 d.width += padding.width;
329 d.height += padding.height;
330 size = maxdim(size, d);
331 break;
332 }
333
334 case WID_AP_AIRPORT_LIST: {
335 for (int i = 0; i < NUM_AIRPORTS; i++) {
336 const AirportSpec *as = AirportSpec::Get(i);
337 if (!as->enabled) continue;
338
339 size.width = std::max(size.width, GetStringBoundingBox(as->name).width + padding.width);
340 }
341
342 this->line_height = GetCharacterHeight(FS_NORMAL) + padding.height;
343 size.height = 5 * this->line_height;
344 break;
345 }
346
348 for (int i = 0; i < NUM_AIRPORTS; i++) {
349 const AirportSpec *as = AirportSpec::Get(i);
350 if (!as->enabled) continue;
351 for (uint8_t layout = 0; layout < static_cast<uint8_t>(as->layouts.size()); layout++) {
352 SpriteID sprite = GetCustomAirportSprite(as, layout);
353 if (sprite != 0) {
354 Dimension d = GetSpriteSize(sprite);
357 size = maxdim(d, size);
358 }
359 }
360 }
361 break;
362
364 for (int i = NEW_AIRPORT_OFFSET; i < NUM_AIRPORTS; i++) {
365 const AirportSpec *as = AirportSpec::Get(i);
366 if (!as->enabled) continue;
367 for (uint8_t layout = 0; layout < static_cast<uint8_t>(as->layouts.size()); layout++) {
369 if (string == STR_UNDEFINED) continue;
370
372 size = maxdim(d, size);
373 }
374 }
375 break;
376
377 default: break;
378 }
379 }
380
381 void DrawWidget(const Rect &r, WidgetID widget) const override
382 {
383 switch (widget) {
384 case WID_AP_AIRPORT_LIST: {
385 Rect row = r.WithHeight(this->line_height).Shrink(WidgetDimensions::scaled.bevel);
386 Rect text = r.WithHeight(this->line_height).Shrink(WidgetDimensions::scaled.matrix);
387 const auto specs = AirportClass::Get(_selected_airport_class)->Specs();
388 auto [first, last] = this->vscroll->GetVisibleRangeIterators(specs);
389 for (auto it = first; it != last; ++it) {
390 const AirportSpec *as = *it;
391 if (!as->IsAvailable()) {
393 }
394 DrawString(text, as->name, (static_cast<int>(as->index) == _selected_airport_index) ? TC_WHITE : TC_BLACK);
395 row = row.Translate(0, this->line_height);
396 text = text.Translate(0, this->line_height);
397 }
398 break;
399 }
400
402 if (this->preview_sprite != 0) {
404 DrawSprite(this->preview_sprite, COMPANY_SPRITE_COLOUR(_local_company), CenterBounds(r.left, r.right, d.width), CenterBounds(r.top, r.bottom, d.height));
405 }
406 break;
407
409 if (_selected_airport_index != -1) {
412 if (string != STR_UNDEFINED) {
413 DrawStringMultiLine(r, string, TC_BLACK);
414 }
415 }
416 break;
417 }
418 }
419
420 void OnPaint() override
421 {
422 this->DrawWidgets();
423
424 Rect r = this->GetWidget<NWidgetBase>(WID_AP_ACCEPTANCE)->GetCurrentRect();
425 const int bottom = r.bottom;
426 r.bottom = INT_MAX; // Allow overflow as we want to know the required height.
427
428 if (_selected_airport_index != -1) {
430 int rad = _settings_game.station.modified_catchment ? as->catchment : (uint)CA_UNMODIFIED;
431
432 /* only show the station (airport) noise, if the noise option is activated */
434 /* show the noise of the selected airport */
437 }
438
440 Money monthly = _price[PR_INFRASTRUCTURE_AIRPORT] * as->maintenance_cost >> 3;
443 }
444
445 /* strings such as 'Size' and 'Coverage Area' */
446 r.top = DrawBadgeNameList(r, as->badges, GSF_AIRPORTS) + WidgetDimensions::scaled.vsep_normal;
448 r.top = DrawStationCoverageAreaText(r, SCT_ALL, rad, true);
449 }
450
451 /* Resize background if the window is too small.
452 * Never make the window smaller to avoid oscillating if the size change affects the acceptance.
453 * (This is the case, if making the window bigger moves the mouse into the window.) */
454 if (r.top > bottom) {
455 ResizeWindow(this, 0, r.top - bottom, false);
456 }
457 }
458
459 void SelectOtherAirport(int airport_index)
460 {
463
464 this->UpdateSelectSize();
465 this->SetDirty();
466 }
467
468 void UpdateSelectSize()
469 {
470 if (_selected_airport_index == -1) {
471 SetTileSelectSize(1, 1);
474 } else {
476 int w = as->size_x;
477 int h = as->size_y;
478 Direction rotation = as->layouts[_selected_airport_layout].rotation;
479 if (rotation == DIR_E || rotation == DIR_W) std::swap(w, h);
480 SetTileSelectSize(w, h);
481
482 this->preview_sprite = GetCustomAirportSprite(as, _selected_airport_layout);
483
486
487 int rad = _settings_game.station.modified_catchment ? as->catchment : (uint)CA_UNMODIFIED;
488 if (_settings_client.gui.station_show_coverage) SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad);
489 }
490 }
491
492 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
493 {
494 switch (widget) {
497 break;
498
499 case WID_AP_AIRPORT_LIST: {
500 int32_t num_clicked = this->vscroll->GetScrolledRowFromWidget(pt.y, this, widget, 0, this->line_height);
501 if (num_clicked == INT32_MAX) break;
503 if (as->IsAvailable()) this->SelectOtherAirport(num_clicked);
504 break;
505 }
506
511 this->SetDirty();
513 this->UpdateSelectSize();
514 SetViewportCatchmentStation(nullptr, true);
515 break;
516
519 this->UpdateSelectSize();
520 this->SetDirty();
521 break;
522
525 this->UpdateSelectSize();
526 this->SetDirty();
527 break;
528 }
529 }
530
537 {
538 /* First try to select an airport in the selected class. */
540 for (const AirportSpec *as : sel_apclass->Specs()) {
541 if (as->IsAvailable()) {
542 this->SelectOtherAirport(as->index);
543 return;
544 }
545 }
546 if (change_class) {
547 /* If that fails, select the first available airport
548 * from the first class where airports are available. */
549 for (const auto &cls : AirportClass::Classes()) {
550 for (const auto &as : cls.Specs()) {
551 if (as->IsAvailable()) {
552 _selected_airport_class = cls.Index();
553 this->vscroll->SetCount(cls.GetSpecCount());
554 this->SelectOtherAirport(as->index);
555 return;
556 }
557 }
558 }
559 }
560 /* If all airports are unavailable, select nothing. */
561 this->SelectOtherAirport(-1);
562 }
563
564 void OnDropdownSelect(WidgetID widget, int index) override
565 {
566 if (widget == WID_AP_CLASS_DROPDOWN) {
569 this->SelectFirstAvailableAirport(false);
570 }
571 }
572
573 void OnRealtimeTick([[maybe_unused]] uint delta_ms) override
574 {
576 }
577
578 IntervalTimer<TimerGameCalendar> yearly_interval = {{TimerGameCalendar::YEAR, TimerGameCalendar::Priority::NONE}, [this](auto) {
579 this->InvalidateData();
580 }};
581};
582
583static constexpr NWidgetPart _nested_build_airport_widgets[] = {
585 NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
586 NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetStringTip(STR_STATION_BUILD_AIRPORT_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
587 EndContainer(),
588 NWidget(WWT_PANEL, COLOUR_DARK_GREEN),
591 NWidget(WWT_LABEL, INVALID_COLOUR), SetStringTip(STR_STATION_BUILD_AIRPORT_CLASS_LABEL), SetFill(1, 0),
592 NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_AP_CLASS_DROPDOWN), SetFill(1, 0), SetToolTip(STR_STATION_BUILD_AIRPORT_TOOLTIP),
593 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_AP_AIRPORT_SPRITE), SetFill(1, 0),
595 NWidget(WWT_MATRIX, COLOUR_GREY, WID_AP_AIRPORT_LIST), SetFill(1, 0), SetMatrixDataTip(1, 5, STR_STATION_BUILD_AIRPORT_TOOLTIP), SetScrollbar(WID_AP_SCROLLBAR),
597 EndContainer(),
598 NWidget(WWT_LABEL, INVALID_COLOUR), SetStringTip(STR_STATION_BUILD_ORIENTATION), SetFill(1, 0),
601 NWidget(WWT_LABEL, INVALID_COLOUR, WID_AP_LAYOUT_NUM), SetResize(1, 0), SetFill(1, 0),
603 EndContainer(),
604 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_AP_EXTRA_TEXT), SetFill(1, 0), SetMinimalSize(150, 0),
605 NWidget(WWT_LABEL, INVALID_COLOUR), SetStringTip(STR_STATION_BUILD_COVERAGE_AREA_TITLE), SetFill(1, 0),
606 NWidget(NWID_HORIZONTAL), SetPIP(14, 0, 14), SetPIPRatio(1, 0, 1),
608 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_AP_BTN_DONTHILIGHT), SetMinimalSize(60, 12), SetFill(1, 0),
609 SetStringTip(STR_STATION_BUILD_COVERAGE_OFF, STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP),
610 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_AP_BTN_DOHILIGHT), SetMinimalSize(60, 12), SetFill(1, 0),
611 SetStringTip(STR_STATION_BUILD_COVERAGE_ON, STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP),
612 EndContainer(),
613 EndContainer(),
614 EndContainer(),
616 EndContainer(),
617 EndContainer(),
618};
619
620static WindowDesc _build_airport_desc(
621 WDP_AUTO, nullptr, 0, 0,
624 _nested_build_airport_widgets
625);
626
627static void ShowBuildAirportPicker(Window *parent)
628{
629 new BuildAirportWindow(_build_airport_desc, parent);
630}
631
632void InitializeAirportGui()
633{
636}
@ NUM_AIRPORTS
Maximal number of airports in total.
Definition airport.h:41
@ NEW_AIRPORT_OFFSET
Number of the first newgrf airport.
Definition airport.h:39
Command definitions related to airports.
static void PlaceAirport(TileIndex tile)
Place an airport.
Window * ShowBuildAirToolbar()
Open the build airport toolbar window.
static int _selected_airport_index
the index of the selected airport in the current class or -1
static AirportClassID _selected_airport_class
the currently visible airport class
static uint8_t _selected_airport_layout
selected airport layout number.
Types related to the airport widgets.
@ WID_AT_DEMOLISH
Demolish button.
@ WID_AT_AIRPORT
Build airport button.
@ WID_AP_AIRPORT_LIST
List of airports.
@ WID_AP_ACCEPTANCE
Acceptance info.
@ WID_AP_LAYOUT_DECREASE
Decrease the layout number.
@ WID_AP_LAYOUT_INCREASE
Increase the layout number.
@ WID_AP_CLASS_DROPDOWN
Dropdown of airport classes.
@ WID_AP_BTN_DOHILIGHT
Show the coverage button.
@ WID_AP_AIRPORT_SPRITE
A visual display of the airport currently selected.
@ WID_AP_SCROLLBAR
Scrollbar of the list.
@ WID_AP_BTN_DONTHILIGHT
Don't show the coverage button.
@ WID_AP_LAYOUT_NUM
Current number of the layout.
@ WID_AP_EXTRA_TEXT
Additional text about the airport.
static DropDownList BuildAirportClassDropDown()
Build a dropdown list of available airport classes.
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
void OnRealtimeTick(uint delta_ms) override
Called periodically.
SpriteID preview_sprite
Cached airport preview sprite.
void OnPaint() override
The window must be repainted.
void DrawWidget(const Rect &r, WidgetID widget) const override
Draw the contents of a nested widget.
std::string GetWidgetString(WidgetID widget, StringID stringid) const override
Get the raw string for a widget.
void Close(int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
void SelectFirstAvailableAirport(bool change_class)
Select the first available airport.
void UpdateWidgetSize(WidgetID widget, Dimension &size, const Dimension &padding, Dimension &fill, Dimension &resize) override
Update size and resize step of a widget in the window.
void OnDropdownSelect(WidgetID widget, int index) override
A dropdown option associated to this window has been selected.
Common return value for all commands.
bool Failed() const
Did this command fail?
An interval timer will fire every interval, and will continue to fire until it is deleted.
Definition timer.h:76
Struct containing information relating to NewGRF classes for stations and airports.
static std::span< NewGRFClass< Tspec, Tindex, Tmax > const > Classes()
Get read-only span of all classes of this type.
std::span< Tspec *const > Specs() const
Get read-only span of specs of this class.
static NewGRFClass * Get(Tindex class_index)
Get a particular class.
uint GetSpecCount() const
Get the number of allocated specs within the class.
static uint GetClassCount()
Get the number of allocated classes.
const Tspec * GetSpec(uint index) const
Get a spec from the class at a given index.
Base class for windows opened from a toolbar.
Definition window_gui.h:982
void Close(int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
Definition window.cpp:3531
Scrollbar data structure.
void SetCount(size_t num)
Sets the number of elements in the list.
void SetCapacity(size_t capacity)
Set the capacity of visible elements.
size_type GetScrolledRowFromWidget(int clickpos, const Window *const w, WidgetID widget, int padding=0, int line_height=-1) const
Compute the row of a scrolled widget that a user clicked in.
Definition widget.cpp:2447
bool SetPosition(size_type position)
Sets the position of the first visible element.
auto GetVisibleRangeIterators(Tcontainer &container) const
Get a pair of iterators for the range of visible elements in a container.
static bool UsingWallclockUnits(bool newgame=false)
Check if we are using wallclock units.
RectPadding framerect
Standard padding inside many panels.
Definition window_gui.h:40
static WidgetDimensions scaled
Widget dimensions scaled for current zoom level.
Definition window_gui.h:29
int vsep_normal
Normal vertical spacing.
Definition window_gui.h:58
static const WidgetDimensions unscaled
Unscaled widget dimensions.
Definition window_gui.h:94
Functions related to commands.
static constexpr DoCommandFlags CommandFlagsToDCFlags(CommandFlags cmd_flags)
Extracts the DC flags needed for DoCommand from the flags returned by GetCommandFlags.
Commands
List of commands.
Definition of stuff that is very close to a company, like the company struct itself.
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Functions related to companies.
Direction
Defines the 8 directions on the map.
@ DIR_W
West.
@ DIR_E
East.
void ShowDropDownList(Window *w, DropDownList &&list, int selected, WidgetID button, uint width, bool instant_close, bool persist)
Show a drop down list.
Definition dropdown.cpp:407
Functions related to the drop down widget.
Types related to the drop down widget.
std::vector< std::unique_ptr< const DropDownListItem > > DropDownList
A drop down list is a collection of drop down list items.
Functions related to the economy.
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Definition fontcache.cpp:77
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
Geometry functions.
Dimension GetSpriteSize(SpriteID sprid, Point *offset, ZoomLevel zoom)
Get the size of a sprite.
Definition gfx.cpp:923
Dimension GetStringBoundingBox(std::string_view str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition gfx.cpp:852
int DrawString(int left, int right, int top, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly truncated to make it fit in its allocated space.
Definition gfx.cpp:658
bool _ctrl_pressed
Is Ctrl pressed?
Definition gfx.cpp:38
void GfxFillRect(int left, int top, int right, int bottom, int colour, FillRectMode mode)
Applies a certain FillRectMode-operation to a rectangle [left, right] x [top, bottom] on the screen.
Definition gfx.cpp:115
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:989
Dimension GetStringMultiLineBoundingBox(StringID str, const Dimension &suggestion)
Calculate string bounding box for multi-line strings.
Definition gfx.cpp:741
int DrawStringMultiLine(int left, int right, int top, int bottom, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly over multiple lines.
Definition gfx.cpp:775
int CenterBounds(int min, int max, int size)
Determine where to draw a centred object inside a widget.
Definition gfx_func.h:166
uint32_t SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition gfx_type.h:17
@ FS_NORMAL
Index of the normal font in the font tables.
Definition gfx_type.h:245
@ FILLRECT_CHECKER
Draw only every second pixel, used for greying-out.
Definition gfx_type.h:335
constexpr NWidgetPart SetMatrixDataTip(uint32_t cols, uint32_t rows, StringID tip={})
Widget part function for setting the data and tooltip of WWT_MATRIX widgets.
constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
Widget part function for setting filling.
constexpr NWidgetPart SetSpriteTip(SpriteID sprite, StringID tip={})
Widget part function for setting the sprite and tooltip.
constexpr NWidgetPart SetPIP(uint8_t pre, uint8_t inter, uint8_t post)
Widget part function for setting a pre/inter/post spaces.
constexpr NWidgetPart SetScrollbar(WidgetID index)
Attach a scrollbar to a widget.
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.
constexpr NWidgetPart SetStringTip(StringID string, StringID tip={})
Widget part function for setting the string and tooltip.
constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx=-1)
Widget part function for starting a new 'real' widget.
constexpr NWidgetPart SetToolTip(StringID tip)
Widget part function for setting tooltip and clearing the widget data.
constexpr NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
constexpr NWidgetPart SetArrowWidgetTypeTip(ArrowWidgetValues widget_type, StringID tip={})
Widget part function for setting the arrow widget type and tooltip.
constexpr NWidgetPart SetMinimalTextLines(uint8_t lines, uint8_t spacing, FontSize size=FS_NORMAL)
Widget part function for setting the minimal text lines.
constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
Widget part function for setting the resize step.
constexpr NWidgetPart SetPIPRatio(uint8_t ratio_pre, uint8_t ratio_inter, uint8_t ratio_post)
Widget part function for setting a pre/inter/post ratio.
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
Definition window.cpp:945
GUI functions that shouldn't be here.
Hotkey related functions.
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
constexpr T Clamp(const T a, const T min, const T max)
Clamp a value between an interval.
Definition math_func.hpp:79
StringID GetAirportTextCallback(const AirportSpec *as, uint8_t layout, uint16_t callback)
Get a custom text for the airport.
NewGRF handling of airports.
AirportClassID
List of default airport classes.
@ APC_BEGIN
Lowest valid airport class id.
int DrawBadgeNameList(Rect r, std::span< const BadgeID > badges, GrfSpecFeature)
Draw names for a list of badge labels.
Functions related to NewGRF badges.
Callbacks that NewGRFs could implement.
@ CBID_AIRPORT_ADDITIONAL_TEXT
This callback is called from airport list.
@ CBID_AIRPORT_LAYOUT_NAME
Called to determine text to show as airport layout name.
static const uint8_t PC_BLACK
Black palette colour.
A number of safeguards to prevent using unsafe methods.
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition settings.cpp:59
ClientSettings _settings_client
The current settings for this game.
Definition settings.cpp:58
Functions related to sound.
@ SND_15_BEEP
19 == 0x13 GUI button click
Definition sound_type.h:66
@ SND_1F_CONSTRUCTION_OTHER
29 == 0x1D Construction: other (non-water, non-rail, non-bridge)
Definition sound_type.h:76
static const CursorID ANIMCURSOR_DEMOLISH
704 - 707 - demolish dynamite
Definition sprites.h:1512
Command definitions related to stations.
void ShowSelectStationIfNeeded(TileArea ta, StationPickerCmdProc proc)
Show the station selection window when needed.
int DrawStationCoverageAreaText(const Rect &r, StationCoverageType sct, int rad, bool supplies)
Calculates and draws the accepted or supplied cargo around the selected tile(s)
void CheckRedrawStationCoverage(const Window *w)
Check whether we need to redraw the station coverage text.
Contains enums and function declarations connected with stations GUI.
@ SCT_ALL
Draw all cargoes.
Definition station_gui.h:24
Types related to stations.
static constexpr uint CA_UNMODIFIED
Catchment for all stations with "modified catchment" disabled.
Definition of base types and functions in a cross-platform compatible way.
std::string GetString(StringID string)
Resolve the given StringID into a std::string with formatting but no parameters.
Definition strings.cpp:426
Functions related to OTTD's strings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Defines the data structure for an airport.
std::vector< AirportTileLayout > layouts
List of layouts composing the airport.
static const AirportSpec * Get(uint8_t type)
Retrieve airport spec for the given airport.
Airport build toolbar window handler.
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.
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.
void Close(int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
void OnPlaceObject(Point pt, TileIndex tile) override
The user clicked some place on the map when a tile highlight mode has been set.
static EventState AirportToolbarGlobalHotkeys(int hotkey)
Handler for global hotkeys of the BuildAirToolbarWindow.
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
SoundSettings sound
sound effect settings
GUISettings gui
settings related to the GUI
Dimensions (a width and height) of a rectangle in 2D.
bool station_noise_level
build new airports when the town noise level is still within accepted limits
bool infrastructure_maintenance
enable monthly maintenance fee for owner infrastructure
bool persistent_buildingtools
keep the building tools active after usage
bool station_show_coverage
whether to highlight coverage area
bool link_terraform_toolbar
display terraform toolbar when displaying rail, road, water and airport toolbars
EconomySettings economy
settings to change the economy
StationSettings station
settings related to station management
List of hotkeys for a window.
Definition hotkeys.h:37
All data for a single hotkey.
Definition hotkeys.h:21
Partial widget specification to allow NWidgets to be written nested.
Coordinates of a point in 2D.
static bool IsValidID(auto index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
constexpr uint Horizontal() const
Get total horizontal padding of RectPadding.
constexpr uint Vertical() const
Get total vertical padding of RectPadding.
Specification of a rectangle with absolute coordinates of all edges.
Rect Shrink(int s) const
Copy and shrink Rect by s pixels.
Rect WithHeight(int height, bool end=false) const
Copy Rect and set its height.
Rect Translate(int x, int y) const
Copy and translate Rect by x,y pixels.
bool click_beep
Beep on a random selection of buttons.
bool confirm
Play sound effect on successful constructions or other actions.
bool modified_catchment
different-size catchment areas
Point size
Size, in tile "units", of the white/red selection area.
High level window description.
Definition window_gui.h:168
Number to differentiate different windows of the same class.
Data structure for an opened window.
Definition window_gui.h:274
virtual void Close(int data=0)
Hide the window and all its child windows, and mark them for a later deletion.
Definition window.cpp:1052
virtual void OnInvalidateData(int data=0, bool gui_scope=true)
Some data on this window has become invalid.
Definition window_gui.h:783
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition window.cpp:1738
void DrawWidgets() const
Paint all widgets of a window.
Definition widget.cpp:744
void InvalidateData(int data=0, bool gui_scope=true)
Mark this window's data as invalid (in need of re-computing)
Definition window.cpp:3166
Window * parent
Parent window.
Definition window_gui.h:329
virtual std::string GetWidgetString(WidgetID widget, StringID stringid) const
Get the raw string for a widget.
Definition window.cpp:504
ResizeInfo resize
Resize information.
Definition window_gui.h:315
void DisableWidget(WidgetID widget_index)
Sets a widget to disabled.
Definition window_gui.h:392
void CreateNestedTree()
Perform the first part of the initialization of a nested widget tree.
Definition window.cpp:1728
bool IsWidgetLowered(WidgetID widget_index) const
Gets the lowered state of a widget.
Definition window_gui.h:492
void RaiseButtons(bool autoraise=false)
Raise the buttons of the window.
Definition window.cpp:530
void SetWidgetLoweredState(WidgetID widget_index, bool lowered_stat)
Sets the lowered/raised status of a widget.
Definition window_gui.h:442
const NWID * GetWidget(WidgetID widnum) const
Get the nested widget with number widnum from the nested widget tree.
Definition window_gui.h:973
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
Definition window.cpp:1751
const Scrollbar * GetScrollbar(WidgetID widnum) const
Return the Scrollbar to a widget index.
Definition window.cpp:313
virtual EventState OnHotkey(int hotkey)
A hotkey has been pressed.
Definition window.cpp:570
void SetWidgetDisabledState(WidgetID widget_index, bool disab_stat)
Sets the enabled/disabled status of a widget.
Definition window_gui.h:382
WindowNumber window_number
Window number within the window class.
Definition window_gui.h:303
bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_tile, TileIndex end_tile)
A central place to handle all X_AND_Y dragged GUI functions.
void PlaceProc_DemolishArea(TileIndex tile)
Start a drag for demolishing an area.
Window * ShowTerraformToolbar(Window *link)
Show the toolbar for terraforming in the game.
GUI stuff related to terraforming.
static const uint TILE_SIZE
Tile size in world coordinates.
Definition tile_type.h:15
OrthogonalTileArea TileArea
Shorthand for the much more common orthogonal tile area.
Functions related to tile highlights.
void ResetObjectToPlace()
Reset the cursor and mouse mode handling back to default (normal cursor, only clicking in windows).
void VpSelectTilesWithMethod(int x, int y, ViewportPlaceMethod method)
Selects tiles while dragging.
@ HT_DIAGONAL
Also allow 'diagonal rectangles'. Only usable in combination with HT_RECT or HT_POINT.
@ HT_RECT
rectangle (stations, depots, ...)
Definition of Interval and OneShot timers.
Definition of the game-calendar-timer.
@ TRANSPORT_AIR
Transport through air.
bool CanBuildVehicleInfrastructure(VehicleType type, uint8_t subtype)
Check whether we can build infrastructure for the given vehicle type.
Definition vehicle.cpp:1913
Functions related to vehicles.
@ VEH_AIRCRAFT
Aircraft vehicle type.
void SetTileSelectSize(int w, int h)
Highlight w by h tiles at the cursor.
void SetViewportCatchmentStation(const Station *st, bool sel)
Select or deselect station for coverage area highlight.
Functions related to (drawing on) viewports.
ViewportPlaceMethod
Viewport place method (type of highlighted area and placed objects)
ViewportDragDropSelectionProcess
Drag and drop selection process, or, what to do with an area of land when you've selected it.
@ DDSP_DEMOLISH_AREA
Clear area.
@ WWT_IMGBTN
(Toggle) Button with image
Definition widget_type.h:42
@ WWT_PUSHARROWBTN
Normal push-button (no toggle button) with arrow caption.
@ WWT_LABEL
Centered label.
Definition widget_type.h:47
@ NWID_HORIZONTAL
Horizontal container.
Definition widget_type.h:65
@ WWT_TEXTBTN
(Toggle) Button with text
Definition widget_type.h:45
@ WWT_PANEL
Simple depressed panel.
Definition widget_type.h:40
@ WWT_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition widget_type.h:56
@ WWT_MATRIX
Grid of rows and columns.
Definition widget_type.h:49
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition widget_type.h:51
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition widget_type.h:75
@ NWID_VERTICAL
Vertical container.
Definition widget_type.h:67
@ WWT_CLOSEBOX
Close box (at top-left of a window)
Definition widget_type.h:59
@ WWT_EMPTY
Empty widget, place holder to reserve space in widget tree.
Definition widget_type.h:38
@ WWT_DROPDOWN
Drop down list.
Definition widget_type.h:60
@ EqualSize
Containers should keep all their (resizing) children equally large.
@ AWV_DECREASE
Arrow to the left or in case of RTL to the right.
Definition widget_type.h:21
@ AWV_INCREASE
Arrow to the right or in case of RTL to the left.
Definition widget_type.h:22
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:1145
void ResizeWindow(Window *w, int delta_x, int delta_y, bool clamp_to_screen, bool schedule_resize)
Resize the window.
Definition window.cpp:2027
void CloseWindowByClass(WindowClass cls, int data)
Close all windows of a given class.
Definition window.cpp:1157
Window functions not directly related to making/drawing windows.
Functions, definitions and such used only by the GUI.
@ Construction
This window is used for construction; close it whenever changing company.
@ WDP_AUTO
Find a place automatically.
Definition window_gui.h:145
@ WDP_ALIGN_TOOLBAR
Align toward the toolbar.
Definition window_gui.h:147
int WidgetID
Widget ID.
Definition window_type.h:20
EventState
State of handling an event.
@ ES_NOT_HANDLED
The passed event is not handled.
@ WC_BUILD_STATION
Build station; Window numbers:
@ WC_BUILD_TOOLBAR
Build toolbar; Window numbers:
Definition window_type.h:75
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
Definition window_type.h:47
@ WC_SCEN_LAND_GEN
Landscape generation (in Scenario Editor); Window numbers:
@ WC_SELECT_STATION
Select station (when joining stations); Window numbers:
Functions related to zooming.