Add: Show house information in house placer.
[openttd-github.git] / src / misc_gui.cpp
blob9cd2714b0b065345f145ba78c39cdea2d3eb45a0
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 */
8 /** @file misc_gui.cpp GUIs for a number of misc windows. */
10 #include "stdafx.h"
11 #include "debug.h"
12 #include "landscape.h"
13 #include "error.h"
14 #include "gui.h"
15 #include "gfx_layout.h"
16 #include "command_func.h"
17 #include "company_func.h"
18 #include "town.h"
19 #include "string_func.h"
20 #include "company_base.h"
21 #include "texteff.hpp"
22 #include "strings_func.h"
23 #include "window_func.h"
24 #include "querystring_gui.h"
25 #include "core/geometry_func.hpp"
26 #include "newgrf_debug.h"
27 #include "zoom_func.h"
28 #include "viewport_func.h"
29 #include "landscape_cmd.h"
30 #include "rev.h"
31 #include "timer/timer.h"
32 #include "timer/timer_window.h"
33 #include "pathfinder/water_regions.h"
35 #include "widgets/misc_widget.h"
37 #include "table/strings.h"
39 #include <sstream>
40 #include <iomanip>
42 #include "safeguards.h"
44 /** Method to open the OSK. */
45 enum OskActivation {
46 OSKA_DISABLED, ///< The OSK shall not be activated at all.
47 OSKA_DOUBLE_CLICK, ///< Double click on the edit box opens OSK.
48 OSKA_SINGLE_CLICK, ///< Single click after focus click opens OSK.
49 OSKA_IMMEDIATELY, ///< Focusing click already opens OSK.
53 static constexpr NWidgetPart _nested_land_info_widgets[] = {
54 NWidget(NWID_HORIZONTAL),
55 NWidget(WWT_CLOSEBOX, COLOUR_GREY),
56 NWidget(WWT_CAPTION, COLOUR_GREY), SetDataTip(STR_LAND_AREA_INFORMATION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
57 NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_LI_LOCATION), SetAspect(WidgetDimensions::ASPECT_LOCATION), SetDataTip(SPR_GOTO_LOCATION, STR_LAND_AREA_INFORMATION_LOCATION_TOOLTIP),
58 NWidget(WWT_DEBUGBOX, COLOUR_GREY),
59 EndContainer(),
60 NWidget(WWT_PANEL, COLOUR_GREY, WID_LI_BACKGROUND), EndContainer(),
63 static WindowDesc _land_info_desc(
64 WDP_AUTO, nullptr, 0, 0,
65 WC_LAND_INFO, WC_NONE,
67 _nested_land_info_widgets
70 class LandInfoWindow : public Window {
71 StringList landinfo_data; ///< Info lines to show.
72 std::string cargo_acceptance; ///< Centered multi-line string for cargo acceptance.
74 public:
75 TileIndex tile;
77 void DrawWidget(const Rect &r, WidgetID widget) const override
79 if (widget != WID_LI_BACKGROUND) return;
81 Rect ir = r.Shrink(WidgetDimensions::scaled.frametext);
82 for (size_t i = 0; i < this->landinfo_data.size(); i++) {
83 DrawString(ir, this->landinfo_data[i], i == 0 ? TC_LIGHT_BLUE : TC_FROMSTRING, SA_HOR_CENTER);
84 ir.top += GetCharacterHeight(FS_NORMAL) + (i == 0 ? WidgetDimensions::scaled.vsep_wide : WidgetDimensions::scaled.vsep_normal);
87 if (!this->cargo_acceptance.empty()) {
88 SetDParamStr(0, this->cargo_acceptance);
89 DrawStringMultiLine(ir, STR_JUST_RAW_STRING, TC_FROMSTRING, SA_CENTER);
93 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
95 if (widget != WID_LI_BACKGROUND) return;
97 size.height = WidgetDimensions::scaled.frametext.Vertical();
98 for (size_t i = 0; i < this->landinfo_data.size(); i++) {
99 uint width = GetStringBoundingBox(this->landinfo_data[i]).width + WidgetDimensions::scaled.frametext.Horizontal();
100 size.width = std::max(size.width, width);
102 size.height += GetCharacterHeight(FS_NORMAL) + (i == 0 ? WidgetDimensions::scaled.vsep_wide : WidgetDimensions::scaled.vsep_normal);
105 if (!this->cargo_acceptance.empty()) {
106 uint width = GetStringBoundingBox(this->cargo_acceptance).width + WidgetDimensions::scaled.frametext.Horizontal();
107 size.width = std::max(size.width, std::min(static_cast<uint>(ScaleGUITrad(300)), width));
108 SetDParamStr(0, cargo_acceptance);
109 size.height += GetStringHeight(STR_JUST_RAW_STRING, size.width - WidgetDimensions::scaled.frametext.Horizontal());
113 LandInfoWindow(Tile tile) : Window(_land_info_desc), tile(tile)
115 this->InitNested();
117 #if defined(_DEBUG)
118 # define LANDINFOD_LEVEL 0
119 #else
120 # define LANDINFOD_LEVEL 1
121 #endif
122 Debug(misc, LANDINFOD_LEVEL, "TILE: {0} (0x{0:x}) ({1},{2})", (TileIndex)tile, TileX(tile), TileY(tile));
123 Debug(misc, LANDINFOD_LEVEL, "type = 0x{:x}", tile.type());
124 Debug(misc, LANDINFOD_LEVEL, "height = 0x{:x}", tile.height());
125 Debug(misc, LANDINFOD_LEVEL, "m1 = 0x{:x}", tile.m1());
126 Debug(misc, LANDINFOD_LEVEL, "m2 = 0x{:x}", tile.m2());
127 Debug(misc, LANDINFOD_LEVEL, "m3 = 0x{:x}", tile.m3());
128 Debug(misc, LANDINFOD_LEVEL, "m4 = 0x{:x}", tile.m4());
129 Debug(misc, LANDINFOD_LEVEL, "m5 = 0x{:x}", tile.m5());
130 Debug(misc, LANDINFOD_LEVEL, "m6 = 0x{:x}", tile.m6());
131 Debug(misc, LANDINFOD_LEVEL, "m7 = 0x{:x}", tile.m7());
132 Debug(misc, LANDINFOD_LEVEL, "m8 = 0x{:x}", tile.m8());
134 PrintWaterRegionDebugInfo(tile);
135 #undef LANDINFOD_LEVEL
138 void OnInit() override
140 Town *t = ClosestTownFromTile(tile, _settings_game.economy.dist_local_authority);
142 /* Because build_date is not set yet in every TileDesc, we make sure it is empty */
143 TileDesc td;
145 td.build_date = CalendarTime::INVALID_DATE;
147 /* Most tiles have only one owner, but
148 * - drivethrough roadstops can be build on town owned roads (up to 2 owners) and
149 * - roads can have up to four owners (railroad, road, tram, 3rd-roadtype "highway").
151 td.owner_type[0] = STR_LAND_AREA_INFORMATION_OWNER; // At least one owner is displayed, though it might be "N/A".
152 td.owner_type[1] = STR_NULL; // STR_NULL results in skipping the owner
153 td.owner_type[2] = STR_NULL;
154 td.owner_type[3] = STR_NULL;
155 td.owner[0] = OWNER_NONE;
156 td.owner[1] = OWNER_NONE;
157 td.owner[2] = OWNER_NONE;
158 td.owner[3] = OWNER_NONE;
160 td.station_class = STR_NULL;
161 td.station_name = STR_NULL;
162 td.airport_class = STR_NULL;
163 td.airport_name = STR_NULL;
164 td.airport_tile_name = STR_NULL;
165 td.railtype = STR_NULL;
166 td.rail_speed = 0;
167 td.roadtype = STR_NULL;
168 td.road_speed = 0;
169 td.tramtype = STR_NULL;
170 td.tram_speed = 0;
172 td.grf = nullptr;
174 CargoArray acceptance{};
175 AddAcceptedCargo(tile, acceptance, nullptr);
176 GetTileDesc(tile, &td);
178 this->landinfo_data.clear();
180 /* Tiletype */
181 SetDParam(0, td.dparam);
182 this->landinfo_data.push_back(GetString(td.str));
184 /* Up to four owners */
185 for (uint i = 0; i < 4; i++) {
186 if (td.owner_type[i] == STR_NULL) continue;
188 SetDParam(0, STR_LAND_AREA_INFORMATION_OWNER_N_A);
189 if (td.owner[i] != OWNER_NONE && td.owner[i] != OWNER_WATER) SetDParamsForOwnedBy(td.owner[i], tile);
190 this->landinfo_data.push_back(GetString(td.owner_type[i]));
193 /* Cost to clear/revenue when cleared */
194 StringID str = STR_LAND_AREA_INFORMATION_COST_TO_CLEAR_N_A;
195 Company *c = Company::GetIfValid(_local_company);
196 if (c != nullptr) {
197 assert(_current_company == _local_company);
198 CommandCost costclear = Command<CMD_LANDSCAPE_CLEAR>::Do(DC_QUERY_COST, tile);
199 if (costclear.Succeeded()) {
200 Money cost = costclear.GetCost();
201 if (cost < 0) {
202 cost = -cost; // Negate negative cost to a positive revenue
203 str = STR_LAND_AREA_INFORMATION_REVENUE_WHEN_CLEARED;
204 } else {
205 str = STR_LAND_AREA_INFORMATION_COST_TO_CLEAR;
207 SetDParam(0, cost);
210 this->landinfo_data.push_back(GetString(str));
212 /* Location */
213 SetDParam(0, TileX(tile));
214 SetDParam(1, TileY(tile));
215 SetDParam(2, GetTileZ(tile));
216 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_LANDINFO_COORDS));
218 /* Tile index */
219 SetDParam(0, tile);
220 SetDParam(1, tile);
221 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_LANDINFO_INDEX));
223 /* Local authority */
224 SetDParam(0, STR_LAND_AREA_INFORMATION_LOCAL_AUTHORITY_NONE);
225 if (t != nullptr) {
226 SetDParam(0, STR_TOWN_NAME);
227 SetDParam(1, t->index);
229 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_LOCAL_AUTHORITY));
231 /* Build date */
232 if (td.build_date != CalendarTime::INVALID_DATE) {
233 SetDParam(0, td.build_date);
234 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_BUILD_DATE));
237 /* Station class */
238 if (td.station_class != STR_NULL) {
239 SetDParam(0, td.station_class);
240 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_STATION_CLASS));
243 /* Station type name */
244 if (td.station_name != STR_NULL) {
245 SetDParam(0, td.station_name);
246 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_STATION_TYPE));
249 /* Airport class */
250 if (td.airport_class != STR_NULL) {
251 SetDParam(0, td.airport_class);
252 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_AIRPORT_CLASS));
255 /* Airport name */
256 if (td.airport_name != STR_NULL) {
257 SetDParam(0, td.airport_name);
258 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_AIRPORT_NAME));
261 /* Airport tile name */
262 if (td.airport_tile_name != STR_NULL) {
263 SetDParam(0, td.airport_tile_name);
264 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_AIRPORTTILE_NAME));
267 /* Rail type name */
268 if (td.railtype != STR_NULL) {
269 SetDParam(0, td.railtype);
270 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_RAIL_TYPE));
273 /* Rail speed limit */
274 if (td.rail_speed != 0) {
275 SetDParam(0, PackVelocity(td.rail_speed, VEH_TRAIN));
276 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_RAIL_SPEED_LIMIT));
279 /* Road type name */
280 if (td.roadtype != STR_NULL) {
281 SetDParam(0, td.roadtype);
282 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_ROAD_TYPE));
285 /* Road speed limit */
286 if (td.road_speed != 0) {
287 SetDParam(0, PackVelocity(td.road_speed, VEH_ROAD));
288 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_ROAD_SPEED_LIMIT));
291 /* Tram type name */
292 if (td.tramtype != STR_NULL) {
293 SetDParam(0, td.tramtype);
294 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_TRAM_TYPE));
297 /* Tram speed limit */
298 if (td.tram_speed != 0) {
299 SetDParam(0, PackVelocity(td.tram_speed, VEH_ROAD));
300 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_TRAM_SPEED_LIMIT));
303 /* NewGRF name */
304 if (td.grf != nullptr) {
305 SetDParamStr(0, td.grf);
306 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_NEWGRF_NAME));
309 /* Cargo acceptance is displayed in a extra multiline */
310 auto line = BuildCargoAcceptanceString(acceptance, STR_LAND_AREA_INFORMATION_CARGO_ACCEPTED);
311 if (line.has_value()) {
312 this->cargo_acceptance = std::move(*line);
313 } else {
314 this->cargo_acceptance.clear();
318 bool IsNewGRFInspectable() const override
320 return ::IsNewGRFInspectable(GetGrfSpecFeature(this->tile), this->tile.base());
323 void ShowNewGRFInspectWindow() const override
325 ::ShowNewGRFInspectWindow(GetGrfSpecFeature(this->tile), this->tile.base());
328 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
330 switch (widget) {
331 case WID_LI_LOCATION:
332 if (_ctrl_pressed) {
333 ShowExtraViewportWindow(this->tile);
334 } else {
335 ScrollMainWindowToTile(this->tile);
337 break;
342 * Some data on this window has become invalid.
343 * @param data Information about the changed data.
344 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
346 void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
348 if (!gui_scope) return;
350 /* ReInit, "debug" sprite might have changed */
351 if (data == 1) this->ReInit();
356 * Show land information window.
357 * @param tile The tile to show information about.
359 void ShowLandInfo(TileIndex tile)
361 CloseWindowById(WC_LAND_INFO, 0);
362 new LandInfoWindow(tile);
365 static constexpr NWidgetPart _nested_about_widgets[] = {
366 NWidget(NWID_HORIZONTAL),
367 NWidget(WWT_CLOSEBOX, COLOUR_GREY),
368 NWidget(WWT_CAPTION, COLOUR_GREY), SetDataTip(STR_ABOUT_OPENTTD, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
369 EndContainer(),
370 NWidget(WWT_PANEL, COLOUR_GREY), SetPIP(4, 2, 4),
371 NWidget(WWT_LABEL, COLOUR_GREY), SetDataTip(STR_ABOUT_ORIGINAL_COPYRIGHT, STR_NULL),
372 NWidget(WWT_LABEL, COLOUR_GREY), SetDataTip(STR_ABOUT_VERSION, STR_NULL),
373 NWidget(WWT_FRAME, COLOUR_GREY), SetPadding(0, 5, 1, 5),
374 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_A_SCROLLING_TEXT),
375 EndContainer(),
376 NWidget(WWT_LABEL, COLOUR_GREY, WID_A_WEBSITE), SetDataTip(STR_JUST_RAW_STRING, STR_NULL),
377 NWidget(WWT_LABEL, COLOUR_GREY, WID_A_COPYRIGHT), SetDataTip(STR_ABOUT_COPYRIGHT_OPENTTD, STR_NULL),
378 EndContainer(),
381 static WindowDesc _about_desc(
382 WDP_CENTER, nullptr, 0, 0,
383 WC_GAME_OPTIONS, WC_NONE,
385 _nested_about_widgets
388 static const std::initializer_list<const std::string_view> _credits = {
389 "Original design by Chris Sawyer",
390 "Original graphics by Simon Foster",
392 "The OpenTTD team (in alphabetical order):",
393 " Matthijs Kooijman (blathijs) - Pathfinder-guru, Debian port (since 0.3)",
394 " Christoph Elsenhans (frosch) - General coding (since 0.6)",
395 " Lo\u00efc Guilloux (glx) - General / Windows Expert (since 0.4.5)",
396 " Koen Bussemaker (Kuhnovic) - General / Ship pathfinder (since 14)",
397 " Charles Pigott (LordAro) - General / Correctness police (since 1.9)",
398 " Michael Lutz (michi_cc) - Path based signals (since 0.7)",
399 " Niels Martin Hansen (nielsm) - Music system, general coding (since 1.9)",
400 " Owen Rudge (orudge) - Forum host, OS/2 port (since 0.1)",
401 " Peter Nelson (peter1138) - Spiritual descendant from NewGRF gods (since 0.4.5)",
402 " Remko Bijker (Rubidium) - Coder and way more (since 0.4.5)",
403 " Patric Stout (TrueBrain) - NoProgrammer (since 0.3), sys op",
404 " Tyler Trahan (2TallTyler) - General / Time Lord (since 13)",
406 "Inactive Developers:",
407 " Grzegorz Duczy\u0144ski (adf88) - General coding (1.7 - 1.8)",
408 " Albert Hofkamp (Alberth) - GUI expert (0.7 - 1.9)",
409 " Jean-Fran\u00e7ois Claeys (Belugas) - GUI, NewGRF and more (0.4.5 - 1.0)",
410 " Bjarni Corfitzen (Bjarni) - MacOSX port, coder and vehicles (0.3 - 0.7)",
411 " Victor Fischer (Celestar) - Programming everywhere you need him to (0.3 - 0.6)",
412 " Ulf Hermann (fonsinchen) - Cargo Distribution (1.3 - 1.6)",
413 " Jaroslav Mazanec (KUDr) - YAPG (Yet Another Pathfinder God) ;) (0.4.5 - 0.6)",
414 " Jonathan Coome (Maedhros) - High priest of the NewGRF Temple (0.5 - 0.6)",
415 " Attila B\u00e1n (MiHaMiX) - Developer WebTranslator 1 and 2 (0.3 - 0.5)",
416 " Ingo von Borstel (planetmaker) - General coding, Support (1.1 - 1.9)",
417 " Zden\u011bk Sojka (SmatZ) - Bug finder and fixer (0.6 - 1.3)",
418 " Jos\u00e9 Soler (Terkhen) - General coding (1.0 - 1.4)",
419 " Christoph Mallon (Tron) - Programmer, code correctness police (0.3 - 0.5)",
420 " Thijs Marinussen (Yexo) - AI Framework, General (0.6 - 1.3)",
421 " Leif Linse (Zuu) - AI/Game Script (1.2 - 1.6)",
423 "Retired Developers:",
424 " Tam\u00e1s Farag\u00f3 (Darkvater) - Ex-Lead coder (0.3 - 0.5)",
425 " Dominik Scherer (dominik81) - Lead programmer, GUI expert (0.3 - 0.3)",
426 " Emil Djupfeld (egladil) - MacOSX (0.4.5 - 0.6)",
427 " Simon Sasburg (HackyKid) - Many bugfixes (0.4 - 0.4.5)",
428 " Ludvig Strigeus (ludde) - Original author of OpenTTD, main coder (0.1 - 0.3)",
429 " Cian Duffy (MYOB) - BeOS port / manual writing (0.1 - 0.3)",
430 " Petr Baudi\u0161 (pasky) - Many patches, NewGRF support (0.3 - 0.3)",
431 " Benedikt Br\u00fcggemeier (skidd13) - Bug fixer and code reworker (0.6 - 0.7)",
432 " Serge Paquet (vurlix) - 2nd contributor after ludde (0.1 - 0.3)",
434 "Special thanks go out to:",
435 " Josef Drexler - For his great work on TTDPatch",
436 " Marcin Grzegorczyk - Track foundations and for describing TTD internals",
437 " Stefan Mei\u00dfner (sign_de) - For his work on the console",
438 " Mike Ragsdale - OpenTTD installer",
439 " Christian Rosentreter (tokai) - MorphOS / AmigaOS port",
440 " Richard Kempton (richK) - additional airports, initial TGP implementation",
441 " Alberto Demichelis - Squirrel scripting language \u00a9 2003-2008",
442 " L. Peter Deutsch - MD5 implementation \u00a9 1999, 2000, 2002",
443 " Michael Blunck - Pre-signals and semaphores \u00a9 2003",
444 " George - Canal/Lock graphics \u00a9 2003-2004",
445 " Andrew Parkhouse (andythenorth) - River graphics",
446 " David Dallaston (Pikka) - Tram tracks",
447 " All Translators - Who made OpenTTD a truly international game",
448 " Bug Reporters - Without whom OpenTTD would still be full of bugs!",
451 "And last but not least:",
452 " Chris Sawyer - For an amazing game!"
455 struct AboutWindow : public Window {
456 int text_position; ///< The top of the scrolling text
457 int line_height; ///< The height of a single line
458 static const int num_visible_lines = 19; ///< The number of lines visible simultaneously
460 AboutWindow() : Window(_about_desc)
462 this->InitNested(WN_GAME_OPTIONS_ABOUT);
464 this->text_position = this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->pos_y + this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->current_y;
467 void SetStringParameters(WidgetID widget) const override
469 if (widget == WID_A_WEBSITE) SetDParamStr(0, "Website: https://www.openttd.org");
470 if (widget == WID_A_COPYRIGHT) SetDParamStr(0, _openttd_revision_year);
473 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
475 if (widget != WID_A_SCROLLING_TEXT) return;
477 this->line_height = GetCharacterHeight(FS_NORMAL);
479 Dimension d;
480 d.height = this->line_height * num_visible_lines;
482 d.width = 0;
483 for (const auto &str : _credits) {
484 d.width = std::max(d.width, GetStringBoundingBox(str).width);
486 size = maxdim(size, d);
489 void DrawWidget(const Rect &r, WidgetID widget) const override
491 if (widget != WID_A_SCROLLING_TEXT) return;
493 int y = this->text_position;
495 /* Show all scrolling _credits */
496 for (const auto &str : _credits) {
497 if (y >= r.top + 7 && y < r.bottom - this->line_height) {
498 DrawString(r.left, r.right, y, str, TC_BLACK, SA_LEFT | SA_FORCE);
500 y += this->line_height;
505 * Scroll the text in the about window slow.
507 * The interval of 2100ms is chosen to maintain parity: 2100 / GetCharacterHeight(FS_NORMAL) = 150ms.
509 IntervalTimer<TimerWindow> scroll_interval = {std::chrono::milliseconds(2100) / GetCharacterHeight(FS_NORMAL), [this](uint count) {
510 this->text_position -= count;
511 /* If the last text has scrolled start a new from the start */
512 if (this->text_position < (int)(this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->pos_y - std::size(_credits) * this->line_height)) {
513 this->text_position = this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->pos_y + this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->current_y;
515 this->SetWidgetDirty(WID_A_SCROLLING_TEXT);
519 void ShowAboutWindow()
521 CloseWindowByClass(WC_GAME_OPTIONS);
522 new AboutWindow();
526 * Display estimated costs.
527 * @param cost Estimated cost (or income if negative).
528 * @param x X position of the notification window.
529 * @param y Y position of the notification window.
531 void ShowEstimatedCostOrIncome(Money cost, int x, int y)
533 StringID msg = STR_MESSAGE_ESTIMATED_COST;
535 if (cost < 0) {
536 cost = -cost;
537 msg = STR_MESSAGE_ESTIMATED_INCOME;
539 SetDParam(0, cost);
540 ShowErrorMessage(msg, INVALID_STRING_ID, WL_INFO, x, y);
544 * Display animated income or costs on the map. Does nothing if cost is zero.
545 * @param x World X position of the animation location.
546 * @param y World Y position of the animation location.
547 * @param z World Z position of the animation location.
548 * @param cost Estimated cost (or income if negative).
550 void ShowCostOrIncomeAnimation(int x, int y, int z, Money cost)
552 if (cost == 0) {
553 return;
555 Point pt = RemapCoords(x, y, z);
556 StringID msg = STR_INCOME_FLOAT_COST;
558 if (cost < 0) {
559 cost = -cost;
560 msg = STR_INCOME_FLOAT_INCOME;
562 SetDParam(0, cost);
563 AddTextEffect(msg, pt.x, pt.y, Ticks::DAY_TICKS, TE_RISING);
567 * Display animated feeder income.
568 * @param x World X position of the animation location.
569 * @param y World Y position of the animation location.
570 * @param z World Z position of the animation location.
571 * @param transfer Estimated feeder income.
572 * @param income Real income from goods being delivered to their final destination.
574 void ShowFeederIncomeAnimation(int x, int y, int z, Money transfer, Money income)
576 Point pt = RemapCoords(x, y, z);
578 SetDParam(0, transfer);
579 if (income == 0) {
580 AddTextEffect(STR_FEEDER, pt.x, pt.y, Ticks::DAY_TICKS, TE_RISING);
581 } else {
582 StringID msg = STR_FEEDER_COST;
583 if (income < 0) {
584 income = -income;
585 msg = STR_FEEDER_INCOME;
587 SetDParam(1, income);
588 AddTextEffect(msg, pt.x, pt.y, Ticks::DAY_TICKS, TE_RISING);
593 * Display vehicle loading indicators.
594 * @param x World X position of the animation location.
595 * @param y World Y position of the animation location.
596 * @param z World Z position of the animation location.
597 * @param percent Estimated feeder income.
598 * @param string String which is drawn on the map.
599 * @return TextEffectID to be used for future updates of the loading indicators.
601 TextEffectID ShowFillingPercent(int x, int y, int z, uint8_t percent, StringID string)
603 Point pt = RemapCoords(x, y, z);
605 assert(string != STR_NULL);
607 SetDParam(0, percent);
608 return AddTextEffect(string, pt.x, pt.y, 0, TE_STATIC);
612 * Update vehicle loading indicators.
613 * @param te_id TextEffectID to be updated.
614 * @param string String which is printed.
616 void UpdateFillingPercent(TextEffectID te_id, uint8_t percent, StringID string)
618 assert(string != STR_NULL);
620 SetDParam(0, percent);
621 UpdateTextEffect(te_id, string);
625 * Hide vehicle loading indicators.
626 * @param *te_id TextEffectID which is supposed to be hidden.
628 void HideFillingPercent(TextEffectID *te_id)
630 if (*te_id == INVALID_TE_ID) return;
632 RemoveTextEffect(*te_id);
633 *te_id = INVALID_TE_ID;
636 static constexpr NWidgetPart _nested_tooltips_widgets[] = {
637 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_TT_BACKGROUND),
640 static WindowDesc _tool_tips_desc(
641 WDP_MANUAL, nullptr, 0, 0, // Coordinates and sizes are not used,
642 WC_TOOLTIPS, WC_NONE,
643 WDF_NO_FOCUS | WDF_NO_CLOSE,
644 _nested_tooltips_widgets
647 /** Window for displaying a tooltip. */
648 struct TooltipsWindow : public Window
650 StringID string_id; ///< String to display as tooltip.
651 std::vector<StringParameterData> params; ///< The string parameters.
652 TooltipCloseCondition close_cond; ///< Condition for closing the window.
654 TooltipsWindow(Window *parent, StringID str, uint paramcount, TooltipCloseCondition close_tooltip) : Window(_tool_tips_desc)
656 this->parent = parent;
657 this->string_id = str;
658 CopyOutDParam(this->params, paramcount);
659 this->close_cond = close_tooltip;
661 this->InitNested();
663 CLRBITS(this->flags, WF_WHITE_BORDER);
666 Point OnInitialPosition([[maybe_unused]] int16_t sm_width, [[maybe_unused]] int16_t sm_height, [[maybe_unused]] int window_number) override
668 /* Find the free screen space between the main toolbar at the top, and the statusbar at the bottom.
669 * Add a fixed distance 2 so the tooltip floats free from both bars.
671 int scr_top = GetMainViewTop() + 2;
672 int scr_bot = GetMainViewBottom() - 2;
674 Point pt;
676 /* Correctly position the tooltip position, watch out for window and cursor size
677 * Clamp value to below main toolbar and above statusbar. If tooltip would
678 * go below window, flip it so it is shown above the cursor */
679 pt.y = SoftClamp(_cursor.pos.y + _cursor.total_size.y + _cursor.total_offs.y + 5, scr_top, scr_bot);
680 if (pt.y + sm_height > scr_bot) pt.y = std::min(_cursor.pos.y + _cursor.total_offs.y - 5, scr_bot) - sm_height;
681 pt.x = sm_width >= _screen.width ? 0 : SoftClamp(_cursor.pos.x - (sm_width >> 1), 0, _screen.width - sm_width);
683 return pt;
686 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
688 if (widget != WID_TT_BACKGROUND) return;
689 CopyInDParam(this->params);
691 size.width = std::min<uint>(GetStringBoundingBox(this->string_id).width, ScaleGUITrad(194));
692 size.height = GetStringHeight(this->string_id, size.width);
694 /* Increase slightly to have some space around the box. */
695 size.width += WidgetDimensions::scaled.framerect.Horizontal() + WidgetDimensions::scaled.fullbevel.Horizontal();
696 size.height += WidgetDimensions::scaled.framerect.Vertical() + WidgetDimensions::scaled.fullbevel.Vertical();
699 void DrawWidget(const Rect &r, WidgetID widget) const override
701 if (widget != WID_TT_BACKGROUND) return;
702 GfxFillRect(r, PC_BLACK);
703 GfxFillRect(r.Shrink(WidgetDimensions::scaled.bevel), PC_LIGHT_YELLOW);
705 CopyInDParam(this->params);
706 DrawStringMultiLine(r.Shrink(WidgetDimensions::scaled.framerect).Shrink(WidgetDimensions::scaled.fullbevel), this->string_id, TC_BLACK, SA_CENTER);
709 void OnMouseLoop() override
711 /* Always close tooltips when the cursor is not in our window. */
712 if (!_cursor.in_window) {
713 this->Close();
714 return;
717 /* We can show tooltips while dragging tools. These are shown as long as
718 * we are dragging the tool. Normal tooltips work with hover or rmb. */
719 switch (this->close_cond) {
720 case TCC_RIGHT_CLICK: if (!_right_button_down) this->Close(); break;
721 case TCC_HOVER: if (!_mouse_hovering) this->Close(); break;
722 case TCC_NONE: break;
724 case TCC_EXIT_VIEWPORT: {
725 Window *w = FindWindowFromPt(_cursor.pos.x, _cursor.pos.y);
726 if (w == nullptr || IsPtInWindowViewport(w, _cursor.pos.x, _cursor.pos.y) == nullptr) this->Close();
727 break;
734 * Shows a tooltip
735 * @param parent The window this tooltip is related to.
736 * @param str String to be displayed
737 * @param close_tooltip the condition under which the tooltip closes
738 * @param paramcount number of params to deal with
740 void GuiShowTooltips(Window *parent, StringID str, TooltipCloseCondition close_tooltip, uint paramcount)
742 CloseWindowById(WC_TOOLTIPS, 0);
744 if (str == STR_NULL || !_cursor.in_window) return;
746 new TooltipsWindow(parent, str, paramcount, close_tooltip);
749 void QueryString::HandleEditBox(Window *w, WidgetID wid)
751 if (w->IsWidgetGloballyFocused(wid) && this->text.HandleCaret()) {
752 w->SetWidgetDirty(wid);
754 /* For the OSK also invalidate the parent window */
755 if (w->window_class == WC_OSK) w->InvalidateData();
759 static int GetCaretWidth()
761 return GetCharacterWidth(FS_NORMAL, '_');
765 * Reposition edit text box rect based on textbuf length can caret position.
766 * @param r Initial rect of edit text box.
767 * @param tb The Textbuf being processed.
768 * @return Updated rect.
770 static Rect ScrollEditBoxTextRect(Rect r, const Textbuf &tb)
772 const int linewidth = tb.pixels + GetCaretWidth();
773 const int boxwidth = r.Width();
774 if (linewidth <= boxwidth) return r;
776 /* Extend to cover whole string. This is left-aligned, adjusted by caret position. */
777 r = r.WithWidth(linewidth, false);
779 /* Slide so that the caret is at the centre unless limited by bounds of the line, i.e. near either end. */
780 return r.Translate(-std::clamp(tb.caretxoffs - (boxwidth / 2), 0, linewidth - boxwidth), 0);
783 void QueryString::DrawEditBox(const Window *w, WidgetID wid) const
785 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
787 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
789 bool rtl = _current_text_dir == TD_RTL;
790 Dimension sprite_size = GetScaledSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
791 int clearbtn_width = sprite_size.width + WidgetDimensions::scaled.imgbtn.Horizontal();
793 Rect r = wi->GetCurrentRect();
794 Rect cr = r.WithWidth(clearbtn_width, !rtl);
795 Rect fr = r.Indent(clearbtn_width, !rtl);
797 DrawFrameRect(cr, wi->colour, wi->IsLowered() ? FR_LOWERED : FR_NONE);
798 DrawSpriteIgnorePadding(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT, PAL_NONE, cr, SA_CENTER);
799 if (this->text.bytes == 1) GfxFillRect(cr.Shrink(WidgetDimensions::scaled.bevel), GetColourGradient(wi->colour, SHADE_DARKER), FILLRECT_CHECKER);
801 DrawFrameRect(fr, wi->colour, FR_LOWERED | FR_DARKENED);
802 GfxFillRect(fr.Shrink(WidgetDimensions::scaled.bevel), PC_BLACK);
804 fr = fr.Shrink(WidgetDimensions::scaled.framerect);
805 /* Limit the drawing of the string inside the widget boundaries */
806 DrawPixelInfo dpi;
807 if (!FillDrawPixelInfo(&dpi, fr)) return;
808 /* Keep coordinates relative to the window. */
809 dpi.left += fr.left;
810 dpi.top += fr.top;
812 AutoRestoreBackup dpi_backup(_cur_dpi, &dpi);
814 /* We will take the current widget length as maximum width, with a small
815 * space reserved at the end for the caret to show */
816 const Textbuf *tb = &this->text;
817 fr = ScrollEditBoxTextRect(fr, *tb);
819 /* If we have a marked area, draw a background highlight. */
820 if (tb->marklength != 0) GfxFillRect(fr.left + tb->markxoffs, fr.top, fr.left + tb->markxoffs + tb->marklength - 1, fr.bottom, PC_GREY);
822 DrawString(fr.left, fr.right, CenterBounds(fr.top, fr.bottom, GetCharacterHeight(FS_NORMAL)), tb->buf, TC_YELLOW);
823 bool focussed = w->IsWidgetGloballyFocused(wid) || IsOSKOpenedFor(w, wid);
824 if (focussed && tb->caret) {
825 int caret_width = GetCaretWidth();
826 if (rtl) {
827 DrawString(fr.right - tb->pixels + tb->caretxoffs - caret_width, fr.right - tb->pixels + tb->caretxoffs, CenterBounds(fr.top, fr.bottom, GetCharacterHeight(FS_NORMAL)), "_", TC_WHITE);
828 } else {
829 DrawString(fr.left + tb->caretxoffs, fr.left + tb->caretxoffs + caret_width, CenterBounds(fr.top, fr.bottom, GetCharacterHeight(FS_NORMAL)), "_", TC_WHITE);
835 * Get the current caret position.
836 * @param w Window the edit box is in.
837 * @param wid Widget index.
838 * @return Top-left location of the caret, relative to the window.
840 Point QueryString::GetCaretPosition(const Window *w, WidgetID wid) const
842 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
844 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
846 bool rtl = _current_text_dir == TD_RTL;
847 Dimension sprite_size = GetScaledSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
848 int clearbtn_width = sprite_size.width + WidgetDimensions::scaled.imgbtn.Horizontal();
850 Rect r = wi->GetCurrentRect().Indent(clearbtn_width, !rtl).Shrink(WidgetDimensions::scaled.framerect);
852 /* Clamp caret position to be inside out current width. */
853 const Textbuf *tb = &this->text;
854 r = ScrollEditBoxTextRect(r, *tb);
856 Point pt = {r.left + tb->caretxoffs, r.top};
857 return pt;
861 * Get the bounding rectangle for a range of the query string.
862 * @param w Window the edit box is in.
863 * @param wid Widget index.
864 * @param from Start of the string range.
865 * @param to End of the string range.
866 * @return Rectangle encompassing the string range, relative to the window.
868 Rect QueryString::GetBoundingRect(const Window *w, WidgetID wid, const char *from, const char *to) const
870 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
872 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
874 bool rtl = _current_text_dir == TD_RTL;
875 Dimension sprite_size = GetScaledSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
876 int clearbtn_width = sprite_size.width + WidgetDimensions::scaled.imgbtn.Horizontal();
878 Rect r = wi->GetCurrentRect().Indent(clearbtn_width, !rtl).Shrink(WidgetDimensions::scaled.framerect);
880 /* Clamp caret position to be inside our current width. */
881 const Textbuf *tb = &this->text;
882 r = ScrollEditBoxTextRect(r, *tb);
884 /* Get location of first and last character. */
885 const auto p1 = GetCharPosInString(tb->buf, from, FS_NORMAL);
886 const auto p2 = from != to ? GetCharPosInString(tb->buf, to, FS_NORMAL) : p1;
888 return { Clamp(r.left + p1.left, r.left, r.right), r.top, Clamp(r.left + p2.right, r.left, r.right), r.bottom };
892 * Get the character that is rendered at a position.
893 * @param w Window the edit box is in.
894 * @param wid Widget index.
895 * @param pt Position to test.
896 * @return Index of the character position or -1 if no character is at the position.
898 ptrdiff_t QueryString::GetCharAtPosition(const Window *w, WidgetID wid, const Point &pt) const
900 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
902 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
904 bool rtl = _current_text_dir == TD_RTL;
905 Dimension sprite_size = GetScaledSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
906 int clearbtn_width = sprite_size.width + WidgetDimensions::scaled.imgbtn.Horizontal();
908 Rect r = wi->GetCurrentRect().Indent(clearbtn_width, !rtl).Shrink(WidgetDimensions::scaled.framerect);
910 if (!IsInsideMM(pt.y, r.top, r.bottom)) return -1;
912 /* Clamp caret position to be inside our current width. */
913 const Textbuf *tb = &this->text;
914 r = ScrollEditBoxTextRect(r, *tb);
916 return ::GetCharAtPosition(tb->buf, pt.x - r.left);
919 void QueryString::ClickEditBox(Window *w, Point pt, WidgetID wid, int click_count, bool focus_changed)
921 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
923 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
925 bool rtl = _current_text_dir == TD_RTL;
926 Dimension sprite_size = GetScaledSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
927 int clearbtn_width = sprite_size.width + WidgetDimensions::scaled.imgbtn.Horizontal();
929 Rect cr = wi->GetCurrentRect().WithWidth(clearbtn_width, !rtl);
931 if (IsInsideMM(pt.x, cr.left, cr.right)) {
932 if (this->text.bytes > 1) {
933 this->text.DeleteAll();
934 w->HandleButtonClick(wid);
935 w->OnEditboxChanged(wid);
937 return;
940 if (w->window_class != WC_OSK && _settings_client.gui.osk_activation != OSKA_DISABLED &&
941 (!focus_changed || _settings_client.gui.osk_activation == OSKA_IMMEDIATELY) &&
942 (click_count == 2 || _settings_client.gui.osk_activation != OSKA_DOUBLE_CLICK)) {
943 /* Open the OSK window */
944 ShowOnScreenKeyboard(w, wid);
948 /** Class for the string query window. */
949 struct QueryStringWindow : public Window
951 QueryString editbox; ///< Editbox.
952 QueryStringFlags flags; ///< Flags controlling behaviour of the window.
954 QueryStringWindow(StringID str, StringID caption, uint max_bytes, uint max_chars, WindowDesc &desc, Window *parent, CharSetFilter afilter, QueryStringFlags flags) :
955 Window(desc), editbox(max_bytes, max_chars)
957 this->editbox.text.Assign(str);
959 if ((flags & QSF_ACCEPT_UNCHANGED) == 0) this->editbox.orig = this->editbox.text.buf;
961 this->querystrings[WID_QS_TEXT] = &this->editbox;
962 this->editbox.caption = caption;
963 this->editbox.cancel_button = WID_QS_CANCEL;
964 this->editbox.ok_button = WID_QS_OK;
965 this->editbox.text.afilter = afilter;
966 this->flags = flags;
968 this->InitNested(WN_QUERY_STRING);
970 this->parent = parent;
972 this->SetFocusedWidget(WID_QS_TEXT);
975 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
977 if (widget == WID_QS_DEFAULT && (this->flags & QSF_ENABLE_DEFAULT) == 0) {
978 /* We don't want this widget to show! */
979 fill.width = 0;
980 resize.width = 0;
981 size.width = 0;
985 void SetStringParameters(WidgetID widget) const override
987 if (widget == WID_QS_CAPTION) SetDParam(0, this->editbox.caption);
990 void OnOk()
992 if (!this->editbox.orig.has_value() || this->editbox.text.buf != this->editbox.orig) {
993 assert(this->parent != nullptr);
995 this->parent->OnQueryTextFinished(this->editbox.text.buf);
996 this->editbox.handled = true;
1000 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
1002 switch (widget) {
1003 case WID_QS_DEFAULT:
1004 this->editbox.text.DeleteAll();
1005 [[fallthrough]];
1007 case WID_QS_OK:
1008 this->OnOk();
1009 [[fallthrough]];
1011 case WID_QS_CANCEL:
1012 this->Close();
1013 break;
1017 void Close([[maybe_unused]] int data = 0) override
1019 if (!this->editbox.handled && this->parent != nullptr) {
1020 Window *parent = this->parent;
1021 this->parent = nullptr; // so parent doesn't try to close us again
1022 parent->OnQueryTextFinished(std::nullopt);
1024 this->Window::Close();
1028 static constexpr NWidgetPart _nested_query_string_widgets[] = {
1029 NWidget(NWID_HORIZONTAL),
1030 NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1031 NWidget(WWT_CAPTION, COLOUR_GREY, WID_QS_CAPTION), SetDataTip(STR_JUST_STRING, STR_NULL), SetTextStyle(TC_WHITE),
1032 EndContainer(),
1033 NWidget(WWT_PANEL, COLOUR_GREY),
1034 NWidget(WWT_EDITBOX, COLOUR_GREY, WID_QS_TEXT), SetMinimalSize(256, 0), SetFill(1, 0), SetPadding(2, 2, 2, 2),
1035 EndContainer(),
1036 NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
1037 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_QS_DEFAULT), SetMinimalSize(87, 12), SetFill(1, 1), SetDataTip(STR_BUTTON_DEFAULT, STR_NULL),
1038 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_QS_CANCEL), SetMinimalSize(86, 12), SetFill(1, 1), SetDataTip(STR_BUTTON_CANCEL, STR_NULL),
1039 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_QS_OK), SetMinimalSize(87, 12), SetFill(1, 1), SetDataTip(STR_BUTTON_OK, STR_NULL),
1040 EndContainer(),
1043 static WindowDesc _query_string_desc(
1044 WDP_CENTER, nullptr, 0, 0,
1045 WC_QUERY_STRING, WC_NONE,
1047 _nested_query_string_widgets
1051 * Show a query popup window with a textbox in it.
1052 * @param str StringID for the text shown in the textbox
1053 * @param caption StringID of text shown in caption of querywindow
1054 * @param maxsize maximum size in bytes or characters (including terminating '\0') depending on flags
1055 * @param parent pointer to a Window that will handle the events (ok/cancel) of this window.
1056 * @param afilter filters out unwanted character input
1057 * @param flags various flags, @see QueryStringFlags
1059 void ShowQueryString(StringID str, StringID caption, uint maxsize, Window *parent, CharSetFilter afilter, QueryStringFlags flags)
1061 assert(parent != nullptr);
1063 CloseWindowByClass(WC_QUERY_STRING);
1064 new QueryStringWindow(str, caption, ((flags & QSF_LEN_IN_CHARS) ? MAX_CHAR_LENGTH : 1) * maxsize, maxsize, _query_string_desc, parent, afilter, flags);
1068 * Window used for asking the user a YES/NO question.
1070 struct QueryWindow : public Window {
1071 QueryCallbackProc *proc; ///< callback function executed on closing of popup. Window* points to parent, bool is true if 'yes' clicked, false otherwise
1072 std::vector<StringParameterData> params; ///< local copy of #_global_string_params
1073 StringID message; ///< message shown for query window
1075 QueryWindow(WindowDesc &desc, StringID caption, StringID message, Window *parent, QueryCallbackProc *callback) : Window(desc)
1077 /* Create a backup of the variadic arguments to strings because it will be
1078 * overridden pretty often. We will copy these back for drawing */
1079 CopyOutDParam(this->params, 10);
1080 this->message = message;
1081 this->proc = callback;
1082 this->parent = parent;
1084 this->CreateNestedTree();
1085 this->GetWidget<NWidgetCore>(WID_Q_CAPTION)->SetDataTip(caption, STR_NULL);
1086 this->FinishInitNested(WN_CONFIRM_POPUP_QUERY);
1089 void Close([[maybe_unused]] int data = 0) override
1091 if (this->proc != nullptr) this->proc(this->parent, false);
1092 this->Window::Close();
1095 void FindWindowPlacementAndResize([[maybe_unused]] int def_width, [[maybe_unused]] int def_height) override
1097 /* Position query window over the calling window, ensuring it's within screen bounds. */
1098 this->left = SoftClamp(parent->left + (parent->width / 2) - (this->width / 2), 0, _screen.width - this->width);
1099 this->top = SoftClamp(parent->top + (parent->height / 2) - (this->height / 2), 0, _screen.height - this->height);
1100 this->SetDirty();
1103 void SetStringParameters(WidgetID widget) const override
1105 switch (widget) {
1106 case WID_Q_CAPTION:
1107 case WID_Q_TEXT:
1108 CopyInDParam(this->params);
1109 break;
1113 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
1115 if (widget != WID_Q_TEXT) return;
1117 size = GetStringMultiLineBoundingBox(this->message, size);
1120 void DrawWidget(const Rect &r, WidgetID widget) const override
1122 if (widget != WID_Q_TEXT) return;
1124 DrawStringMultiLine(r, this->message, TC_FROMSTRING, SA_CENTER);
1127 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
1129 switch (widget) {
1130 case WID_Q_YES: {
1131 /* in the Generate New World window, clicking 'Yes' causes
1132 * CloseNonVitalWindows() to be called - we shouldn't be in a window then */
1133 QueryCallbackProc *proc = this->proc;
1134 Window *parent = this->parent;
1135 /* Prevent the destructor calling the callback function */
1136 this->proc = nullptr;
1137 this->Close();
1138 if (proc != nullptr) {
1139 proc(parent, true);
1140 proc = nullptr;
1142 break;
1144 case WID_Q_NO:
1145 this->Close();
1146 break;
1150 EventState OnKeyPress([[maybe_unused]] char32_t key, uint16_t keycode) override
1152 /* ESC closes the window, Enter confirms the action */
1153 switch (keycode) {
1154 case WKC_RETURN:
1155 case WKC_NUM_ENTER:
1156 if (this->proc != nullptr) {
1157 this->proc(this->parent, true);
1158 this->proc = nullptr;
1160 [[fallthrough]];
1162 case WKC_ESC:
1163 this->Close();
1164 return ES_HANDLED;
1166 return ES_NOT_HANDLED;
1170 static constexpr NWidgetPart _nested_query_widgets[] = {
1171 NWidget(NWID_HORIZONTAL),
1172 NWidget(WWT_CLOSEBOX, COLOUR_RED),
1173 NWidget(WWT_CAPTION, COLOUR_RED, WID_Q_CAPTION), // The caption's string is set in the constructor
1174 EndContainer(),
1175 NWidget(WWT_PANEL, COLOUR_RED),
1176 NWidget(NWID_VERTICAL), SetPIP(0, WidgetDimensions::unscaled.vsep_wide, 0), SetPadding(WidgetDimensions::unscaled.modalpopup),
1177 NWidget(WWT_TEXT, COLOUR_RED, WID_Q_TEXT), SetMinimalSize(200, 12),
1178 NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(WidgetDimensions::unscaled.hsep_indent, WidgetDimensions::unscaled.hsep_indent, WidgetDimensions::unscaled.hsep_indent),
1179 NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_Q_NO), SetMinimalSize(71, 12), SetFill(1, 1), SetDataTip(STR_QUIT_NO, STR_NULL),
1180 NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_Q_YES), SetMinimalSize(71, 12), SetFill(1, 1), SetDataTip(STR_QUIT_YES, STR_NULL),
1181 EndContainer(),
1182 EndContainer(),
1183 EndContainer(),
1186 static WindowDesc _query_desc(
1187 WDP_CENTER, nullptr, 0, 0,
1188 WC_CONFIRM_POPUP_QUERY, WC_NONE,
1189 WDF_MODAL,
1190 _nested_query_widgets
1194 * Show a confirmation window with standard 'yes' and 'no' buttons
1195 * The window is aligned to the centre of its parent.
1196 * @param caption string shown as window caption
1197 * @param message string that will be shown for the window
1198 * @param parent pointer to parent window, if this pointer is nullptr the parent becomes
1199 * the main window WC_MAIN_WINDOW
1200 * @param callback callback function pointer to set in the window descriptor
1201 * @param focus whether the window should be focussed (by default false)
1203 void ShowQuery(StringID caption, StringID message, Window *parent, QueryCallbackProc *callback, bool focus)
1205 if (parent == nullptr) parent = GetMainWindow();
1207 for (Window *w : Window::Iterate()) {
1208 if (w->window_class != WC_CONFIRM_POPUP_QUERY) continue;
1210 QueryWindow *qw = dynamic_cast<QueryWindow *>(w);
1211 if (qw->parent != parent || qw->proc != callback) continue;
1213 qw->Close();
1214 break;
1217 QueryWindow *q = new QueryWindow(_query_desc, caption, message, parent, callback);
1218 if (focus) SetFocusedWindow(q);