Fix #10117: Decrement object burst limit after build check
[openttd-github.git] / src / misc_gui.cpp
blob1a3ba2b05cf03e7a2474c10037345d21275ec3f8
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 "command_func.h"
16 #include "company_func.h"
17 #include "town.h"
18 #include "string_func.h"
19 #include "company_base.h"
20 #include "texteff.hpp"
21 #include "strings_func.h"
22 #include "window_func.h"
23 #include "querystring_gui.h"
24 #include "core/geometry_func.hpp"
25 #include "newgrf_debug.h"
26 #include "zoom_func.h"
27 #include "guitimer_func.h"
28 #include "viewport_func.h"
29 #include "landscape_cmd.h"
30 #include "rev.h"
32 #include "widgets/misc_widget.h"
34 #include "table/strings.h"
36 #include <sstream>
37 #include <iomanip>
39 #include "safeguards.h"
41 /** Method to open the OSK. */
42 enum OskActivation {
43 OSKA_DISABLED, ///< The OSK shall not be activated at all.
44 OSKA_DOUBLE_CLICK, ///< Double click on the edit box opens OSK.
45 OSKA_SINGLE_CLICK, ///< Single click after focus click opens OSK.
46 OSKA_IMMEDIATELY, ///< Focusing click already opens OSK.
50 static const NWidgetPart _nested_land_info_widgets[] = {
51 NWidget(NWID_HORIZONTAL),
52 NWidget(WWT_CLOSEBOX, COLOUR_GREY),
53 NWidget(WWT_CAPTION, COLOUR_GREY), SetDataTip(STR_LAND_AREA_INFORMATION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
54 NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_LI_LOCATION), SetMinimalSize(12, 14), SetDataTip(SPR_GOTO_LOCATION, STR_LAND_AREA_INFORMATION_LOCATION_TOOLTIP),
55 NWidget(WWT_DEBUGBOX, COLOUR_GREY),
56 EndContainer(),
57 NWidget(WWT_PANEL, COLOUR_GREY, WID_LI_BACKGROUND), EndContainer(),
60 static WindowDesc _land_info_desc(
61 WDP_AUTO, "land_info", 0, 0,
62 WC_LAND_INFO, WC_NONE,
64 _nested_land_info_widgets, lengthof(_nested_land_info_widgets)
67 class LandInfoWindow : public Window {
68 StringList landinfo_data; ///< Info lines to show.
69 std::string cargo_acceptance; ///< Centered multi-line string for cargo acceptance.
71 public:
72 TileIndex tile;
74 void DrawWidget(const Rect &r, int widget) const override
76 if (widget != WID_LI_BACKGROUND) return;
78 uint y = r.top + WD_TEXTPANEL_TOP;
79 for (size_t i = 0; i < this->landinfo_data.size(); i++) {
80 DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, this->landinfo_data[i], i == 0 ? TC_LIGHT_BLUE : TC_FROMSTRING, SA_HOR_CENTER);
81 y += FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL;
82 if (i == 0) y += 4;
85 if (!this->cargo_acceptance.empty()) {
86 SetDParamStr(0, this->cargo_acceptance);
87 DrawStringMultiLine(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, r.bottom - WD_TEXTPANEL_BOTTOM, STR_JUST_RAW_STRING, TC_FROMSTRING, SA_CENTER);
91 void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
93 if (widget != WID_LI_BACKGROUND) return;
95 size->height = WD_TEXTPANEL_TOP + WD_TEXTPANEL_BOTTOM;
96 for (size_t i = 0; i < this->landinfo_data.size(); i++) {
97 uint width = GetStringBoundingBox(this->landinfo_data[i]).width + WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT;
98 size->width = std::max(size->width, width);
100 size->height += FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL;
101 if (i == 0) size->height += 4;
104 if (!this->cargo_acceptance.empty()) {
105 uint width = GetStringBoundingBox(this->cargo_acceptance).width + WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT;
106 size->width = std::max(size->width, std::min(300u, width));
107 SetDParamStr(0, cargo_acceptance);
108 size->height += GetStringHeight(STR_JUST_RAW_STRING, size->width - WD_FRAMETEXT_LEFT - WD_FRAMETEXT_RIGHT);
112 LandInfoWindow(TileIndex tile) : Window(&_land_info_desc), tile(tile)
114 this->InitNested();
116 #if defined(_DEBUG)
117 # define LANDINFOD_LEVEL 0
118 #else
119 # define LANDINFOD_LEVEL 1
120 #endif
121 Debug(misc, LANDINFOD_LEVEL, "TILE: {:#x} ({},{})", tile, TileX(tile), TileY(tile));
122 Debug(misc, LANDINFOD_LEVEL, "type = {:#x}", _m[tile].type);
123 Debug(misc, LANDINFOD_LEVEL, "height = {:#x}", _m[tile].height);
124 Debug(misc, LANDINFOD_LEVEL, "m1 = {:#x}", _m[tile].m1);
125 Debug(misc, LANDINFOD_LEVEL, "m2 = {:#x}", _m[tile].m2);
126 Debug(misc, LANDINFOD_LEVEL, "m3 = {:#x}", _m[tile].m3);
127 Debug(misc, LANDINFOD_LEVEL, "m4 = {:#x}", _m[tile].m4);
128 Debug(misc, LANDINFOD_LEVEL, "m5 = {:#x}", _m[tile].m5);
129 Debug(misc, LANDINFOD_LEVEL, "m6 = {:#x}", _me[tile].m6);
130 Debug(misc, LANDINFOD_LEVEL, "m7 = {:#x}", _me[tile].m7);
131 Debug(misc, LANDINFOD_LEVEL, "m8 = {:#x}", _me[tile].m8);
132 #undef LANDINFOD_LEVEL
135 void OnInit() override
137 Town *t = ClosestTownFromTile(tile, _settings_game.economy.dist_local_authority);
139 /* Because build_date is not set yet in every TileDesc, we make sure it is empty */
140 TileDesc td;
142 td.build_date = INVALID_DATE;
144 /* Most tiles have only one owner, but
145 * - drivethrough roadstops can be build on town owned roads (up to 2 owners) and
146 * - roads can have up to four owners (railroad, road, tram, 3rd-roadtype "highway").
148 td.owner_type[0] = STR_LAND_AREA_INFORMATION_OWNER; // At least one owner is displayed, though it might be "N/A".
149 td.owner_type[1] = STR_NULL; // STR_NULL results in skipping the owner
150 td.owner_type[2] = STR_NULL;
151 td.owner_type[3] = STR_NULL;
152 td.owner[0] = OWNER_NONE;
153 td.owner[1] = OWNER_NONE;
154 td.owner[2] = OWNER_NONE;
155 td.owner[3] = OWNER_NONE;
157 td.station_class = STR_NULL;
158 td.station_name = STR_NULL;
159 td.airport_class = STR_NULL;
160 td.airport_name = STR_NULL;
161 td.airport_tile_name = STR_NULL;
162 td.railtype = STR_NULL;
163 td.rail_speed = 0;
164 td.roadtype = STR_NULL;
165 td.road_speed = 0;
166 td.tramtype = STR_NULL;
167 td.tram_speed = 0;
169 td.grf = nullptr;
171 CargoArray acceptance;
172 AddAcceptedCargo(tile, acceptance, nullptr);
173 GetTileDesc(tile, &td);
175 this->landinfo_data.clear();
177 /* Tiletype */
178 SetDParam(0, td.dparam[0]);
179 this->landinfo_data.push_back(GetString(td.str));
181 /* Up to four owners */
182 for (uint i = 0; i < 4; i++) {
183 if (td.owner_type[i] == STR_NULL) continue;
185 SetDParam(0, STR_LAND_AREA_INFORMATION_OWNER_N_A);
186 if (td.owner[i] != OWNER_NONE && td.owner[i] != OWNER_WATER) GetNameOfOwner(td.owner[i], tile);
187 this->landinfo_data.push_back(GetString(td.owner_type[i]));
190 /* Cost to clear/revenue when cleared */
191 StringID str = STR_LAND_AREA_INFORMATION_COST_TO_CLEAR_N_A;
192 Company *c = Company::GetIfValid(_local_company);
193 if (c != nullptr) {
194 assert(_current_company == _local_company);
195 CommandCost costclear = Command<CMD_LANDSCAPE_CLEAR>::Do(DC_QUERY_COST, tile);
196 if (costclear.Succeeded()) {
197 Money cost = costclear.GetCost();
198 if (cost < 0) {
199 cost = -cost; // Negate negative cost to a positive revenue
200 str = STR_LAND_AREA_INFORMATION_REVENUE_WHEN_CLEARED;
201 } else {
202 str = STR_LAND_AREA_INFORMATION_COST_TO_CLEAR;
204 SetDParam(0, cost);
207 this->landinfo_data.push_back(GetString(str));
209 /* Location */
210 std::stringstream tile_ss;
211 tile_ss << "0x" << std::setfill('0') << std::setw(4) << std::hex << std::uppercase << tile; // 0x%.4X
212 std::string tile_str = tile_ss.str(); // Can't pass it directly to SetDParamStr as the string is only a temporary and would be destructed before the GetString call.
214 SetDParam(0, TileX(tile));
215 SetDParam(1, TileY(tile));
216 SetDParam(2, GetTileZ(tile));
217 SetDParamStr(3, tile_str);
218 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_LANDINFO_COORDS));
220 /* Local authority */
221 SetDParam(0, STR_LAND_AREA_INFORMATION_LOCAL_AUTHORITY_NONE);
222 if (t != nullptr) {
223 SetDParam(0, STR_TOWN_NAME);
224 SetDParam(1, t->index);
226 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_LOCAL_AUTHORITY));
228 /* Build date */
229 if (td.build_date != INVALID_DATE) {
230 SetDParam(0, td.build_date);
231 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_BUILD_DATE));
234 /* Station class */
235 if (td.station_class != STR_NULL) {
236 SetDParam(0, td.station_class);
237 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_STATION_CLASS));
240 /* Station type name */
241 if (td.station_name != STR_NULL) {
242 SetDParam(0, td.station_name);
243 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_STATION_TYPE));
246 /* Airport class */
247 if (td.airport_class != STR_NULL) {
248 SetDParam(0, td.airport_class);
249 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_AIRPORT_CLASS));
252 /* Airport name */
253 if (td.airport_name != STR_NULL) {
254 SetDParam(0, td.airport_name);
255 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_AIRPORT_NAME));
258 /* Airport tile name */
259 if (td.airport_tile_name != STR_NULL) {
260 SetDParam(0, td.airport_tile_name);
261 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_AIRPORTTILE_NAME));
264 /* Rail type name */
265 if (td.railtype != STR_NULL) {
266 SetDParam(0, td.railtype);
267 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_RAIL_TYPE));
270 /* Rail speed limit */
271 if (td.rail_speed != 0) {
272 SetDParam(0, td.rail_speed);
273 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_RAIL_SPEED_LIMIT));
276 /* Road type name */
277 if (td.roadtype != STR_NULL) {
278 SetDParam(0, td.roadtype);
279 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_ROAD_TYPE));
282 /* Road speed limit */
283 if (td.road_speed != 0) {
284 SetDParam(0, td.road_speed);
285 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_ROAD_SPEED_LIMIT));
288 /* Tram type name */
289 if (td.tramtype != STR_NULL) {
290 SetDParam(0, td.tramtype);
291 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_TRAM_TYPE));
294 /* Tram speed limit */
295 if (td.tram_speed != 0) {
296 SetDParam(0, td.tram_speed);
297 this->landinfo_data.push_back(GetString(STR_LANG_AREA_INFORMATION_TRAM_SPEED_LIMIT));
300 /* NewGRF name */
301 if (td.grf != nullptr) {
302 SetDParamStr(0, td.grf);
303 this->landinfo_data.push_back(GetString(STR_LAND_AREA_INFORMATION_NEWGRF_NAME));
306 /* Cargo acceptance is displayed in a extra multiline */
307 std::stringstream line;
308 line << GetString(STR_LAND_AREA_INFORMATION_CARGO_ACCEPTED);
310 bool found = false;
311 for (CargoID i = 0; i < NUM_CARGO; ++i) {
312 if (acceptance[i] > 0) {
313 /* Add a comma between each item. */
314 if (found) line << ", ";
315 found = true;
317 /* If the accepted value is less than 8, show it in 1/8:ths */
318 if (acceptance[i] < 8) {
319 SetDParam(0, acceptance[i]);
320 SetDParam(1, CargoSpec::Get(i)->name);
321 line << GetString(STR_LAND_AREA_INFORMATION_CARGO_EIGHTS);
322 } else {
323 line << GetString(CargoSpec::Get(i)->name);
327 if (found) {
328 this->cargo_acceptance = line.str();
329 } else {
330 this->cargo_acceptance.clear();
334 bool IsNewGRFInspectable() const override
336 return ::IsNewGRFInspectable(GetGrfSpecFeature(this->tile), this->tile);
339 void ShowNewGRFInspectWindow() const override
341 ::ShowNewGRFInspectWindow(GetGrfSpecFeature(this->tile), this->tile);
344 void OnClick(Point pt, int widget, int click_count) override
346 switch (widget) {
347 case WID_LI_LOCATION:
348 if (_ctrl_pressed) {
349 ShowExtraViewportWindow(this->tile);
350 } else {
351 ScrollMainWindowToTile(this->tile);
353 break;
358 * Some data on this window has become invalid.
359 * @param data Information about the changed data.
360 * @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.
362 void OnInvalidateData(int data = 0, bool gui_scope = true) override
364 if (!gui_scope) return;
365 switch (data) {
366 case 1:
367 /* ReInit, "debug" sprite might have changed */
368 this->ReInit();
369 break;
375 * Show land information window.
376 * @param tile The tile to show information about.
378 void ShowLandInfo(TileIndex tile)
380 CloseWindowById(WC_LAND_INFO, 0);
381 new LandInfoWindow(tile);
384 static const NWidgetPart _nested_about_widgets[] = {
385 NWidget(NWID_HORIZONTAL),
386 NWidget(WWT_CLOSEBOX, COLOUR_GREY),
387 NWidget(WWT_CAPTION, COLOUR_GREY), SetDataTip(STR_ABOUT_OPENTTD, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
388 EndContainer(),
389 NWidget(WWT_PANEL, COLOUR_GREY), SetPIP(4, 2, 4),
390 NWidget(WWT_LABEL, COLOUR_GREY), SetDataTip(STR_ABOUT_ORIGINAL_COPYRIGHT, STR_NULL),
391 NWidget(WWT_LABEL, COLOUR_GREY), SetDataTip(STR_ABOUT_VERSION, STR_NULL),
392 NWidget(WWT_FRAME, COLOUR_GREY), SetPadding(0, 5, 1, 5),
393 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_A_SCROLLING_TEXT),
394 EndContainer(),
395 NWidget(WWT_LABEL, COLOUR_GREY, WID_A_WEBSITE), SetDataTip(STR_BLACK_RAW_STRING, STR_NULL),
396 NWidget(WWT_LABEL, COLOUR_GREY, WID_A_COPYRIGHT), SetDataTip(STR_ABOUT_COPYRIGHT_OPENTTD, STR_NULL),
397 EndContainer(),
400 static WindowDesc _about_desc(
401 WDP_CENTER, nullptr, 0, 0,
402 WC_GAME_OPTIONS, WC_NONE,
404 _nested_about_widgets, lengthof(_nested_about_widgets)
407 static const char * const _credits[] = {
408 u8"Original design by Chris Sawyer",
409 u8"Original graphics by Simon Foster",
410 u8"",
411 u8"The OpenTTD team (in alphabetical order):",
412 u8" Matthijs Kooijman (blathijs) - Pathfinder-guru, Debian port (since 0.3)",
413 u8" Christoph Elsenhans (frosch) - General coding (since 0.6)",
414 u8" Lo\u00efc Guilloux (glx) - General / Windows Expert (since 0.4.5)",
415 u8" Charles Pigott (LordAro) - General / Correctness police (since 1.9)",
416 u8" Michael Lutz (michi_cc) - Path based signals (since 0.7)",
417 u8" Niels Martin Hansen (nielsm) - Music system, general coding (since 1.9)",
418 u8" Owen Rudge (orudge) - Forum host, OS/2 port (since 0.1)",
419 u8" Peter Nelson (peter1138) - Spiritual descendant from NewGRF gods (since 0.4.5)",
420 u8" Remko Bijker (Rubidium) - Coder and way more (since 0.4.5)",
421 u8" Patric Stout (TrueBrain) - NoProgrammer (since 0.3), sys op",
422 u8"",
423 u8"Inactive Developers:",
424 u8" Grzegorz Duczy\u0144ski (adf88) - General coding (1.7 - 1.8)",
425 u8" Albert Hofkamp (Alberth) - GUI expert (0.7 - 1.9)",
426 u8" Jean-Fran\u00e7ois Claeys (Belugas) - GUI, NewGRF and more (0.4.5 - 1.0)",
427 u8" Bjarni Corfitzen (Bjarni) - MacOSX port, coder and vehicles (0.3 - 0.7)",
428 u8" Victor Fischer (Celestar) - Programming everywhere you need him to (0.3 - 0.6)",
429 u8" Ulf Hermann (fonsinchen) - Cargo Distribution (1.3 - 1.6)",
430 u8" Jaroslav Mazanec (KUDr) - YAPG (Yet Another Pathfinder God) ;) (0.4.5 - 0.6)",
431 u8" Jonathan Coome (Maedhros) - High priest of the NewGRF Temple (0.5 - 0.6)",
432 u8" Attila B\u00e1n (MiHaMiX) - Developer WebTranslator 1 and 2 (0.3 - 0.5)",
433 u8" Ingo von Borstel (planetmaker) - General coding, Support (1.1 - 1.9)",
434 u8" Zden\u011bk Sojka (SmatZ) - Bug finder and fixer (0.6 - 1.3)",
435 u8" Jos\u00e9 Soler (Terkhen) - General coding (1.0 - 1.4)",
436 u8" Christoph Mallon (Tron) - Programmer, code correctness police (0.3 - 0.5)",
437 u8" Thijs Marinussen (Yexo) - AI Framework, General (0.6 - 1.3)",
438 u8" Leif Linse (Zuu) - AI/Game Script (1.2 - 1.6)",
439 u8"",
440 u8"Retired Developers:",
441 u8" Tam\u00e1s Farag\u00f3 (Darkvater) - Ex-Lead coder (0.3 - 0.5)",
442 u8" Dominik Scherer (dominik81) - Lead programmer, GUI expert (0.3 - 0.3)",
443 u8" Emil Djupfeld (egladil) - MacOSX (0.4.5 - 0.6)",
444 u8" Simon Sasburg (HackyKid) - Many bugfixes (0.4 - 0.4.5)",
445 u8" Ludvig Strigeus (ludde) - Original author of OpenTTD, main coder (0.1 - 0.3)",
446 u8" Cian Duffy (MYOB) - BeOS port / manual writing (0.1 - 0.3)",
447 u8" Petr Baudi\u0161 (pasky) - Many patches, NewGRF support (0.3 - 0.3)",
448 u8" Benedikt Br\u00fcggemeier (skidd13) - Bug fixer and code reworker (0.6 - 0.7)",
449 u8" Serge Paquet (vurlix) - 2nd contributor after ludde (0.1 - 0.3)",
450 u8"",
451 u8"Special thanks go out to:",
452 u8" Josef Drexler - For his great work on TTDPatch",
453 u8" Marcin Grzegorczyk - Track foundations and for describing TTD internals",
454 u8" Stefan Mei\u00dfner (sign_de) - For his work on the console",
455 u8" Mike Ragsdale - OpenTTD installer",
456 u8" Christian Rosentreter (tokai) - MorphOS / AmigaOS port",
457 u8" Richard Kempton (richK) - additional airports, initial TGP implementation",
458 u8" Alberto Demichelis - Squirrel scripting language \u00a9 2003-2008",
459 u8" L. Peter Deutsch - MD5 implementation \u00a9 1999, 2000, 2002",
460 u8" Michael Blunck - Pre-signals and semaphores \u00a9 2003",
461 u8" George - Canal/Lock graphics \u00a9 2003-2004",
462 u8" Andrew Parkhouse (andythenorth) - River graphics",
463 u8" David Dallaston (Pikka) - Tram tracks",
464 u8" All Translators - Who made OpenTTD a truly international game",
465 u8" Bug Reporters - Without whom OpenTTD would still be full of bugs!",
466 u8"",
467 u8"",
468 u8"And last but not least:",
469 u8" Chris Sawyer - For an amazing game!"
472 struct AboutWindow : public Window {
473 int text_position; ///< The top of the scrolling text
474 int line_height; ///< The height of a single line
475 static const int num_visible_lines = 19; ///< The number of lines visible simultaneously
477 static const uint TIMER_INTERVAL = 2100; ///< Scrolling interval, scaled by line text line height. This value chosen to maintain parity: 2100 / FONT_HEIGHT_NORMAL = 150ms
478 GUITimer timer;
480 AboutWindow() : Window(&_about_desc)
482 this->InitNested(WN_GAME_OPTIONS_ABOUT);
484 this->text_position = this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->pos_y + this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->current_y;
487 void SetStringParameters(int widget) const override
489 if (widget == WID_A_WEBSITE) SetDParamStr(0, "Website: https://www.openttd.org");
490 if (widget == WID_A_COPYRIGHT) SetDParamStr(0, _openttd_revision_year);
493 void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
495 if (widget != WID_A_SCROLLING_TEXT) return;
497 this->line_height = FONT_HEIGHT_NORMAL;
499 Dimension d;
500 d.height = this->line_height * num_visible_lines;
502 d.width = 0;
503 for (uint i = 0; i < lengthof(_credits); i++) {
504 d.width = std::max(d.width, GetStringBoundingBox(_credits[i]).width);
506 *size = maxdim(*size, d);
508 /* Set scroll interval based on required speed. To keep scrolling smooth,
509 * the interval is adjusted rather than the distance moved. */
510 this->timer.SetInterval(TIMER_INTERVAL / FONT_HEIGHT_NORMAL);
513 void DrawWidget(const Rect &r, int widget) const override
515 if (widget != WID_A_SCROLLING_TEXT) return;
517 int y = this->text_position;
519 /* Show all scrolling _credits */
520 for (uint i = 0; i < lengthof(_credits); i++) {
521 if (y >= r.top + 7 && y < r.bottom - this->line_height) {
522 DrawString(r.left, r.right, y, _credits[i], TC_BLACK, SA_LEFT | SA_FORCE);
524 y += this->line_height;
528 void OnRealtimeTick(uint delta_ms) override
530 uint count = this->timer.CountElapsed(delta_ms);
531 if (count > 0) {
532 this->text_position -= count;
533 /* If the last text has scrolled start a new from the start */
534 if (this->text_position < (int)(this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->pos_y - lengthof(_credits) * this->line_height)) {
535 this->text_position = this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->pos_y + this->GetWidget<NWidgetBase>(WID_A_SCROLLING_TEXT)->current_y;
537 this->SetWidgetDirty(WID_A_SCROLLING_TEXT);
542 void ShowAboutWindow()
544 CloseWindowByClass(WC_GAME_OPTIONS);
545 new AboutWindow();
549 * Display estimated costs.
550 * @param cost Estimated cost (or income if negative).
551 * @param x X position of the notification window.
552 * @param y Y position of the notification window.
554 void ShowEstimatedCostOrIncome(Money cost, int x, int y)
556 StringID msg = STR_MESSAGE_ESTIMATED_COST;
558 if (cost < 0) {
559 cost = -cost;
560 msg = STR_MESSAGE_ESTIMATED_INCOME;
562 SetDParam(0, cost);
563 ShowErrorMessage(msg, INVALID_STRING_ID, WL_INFO, x, y);
567 * Display animated income or costs on the map. Does nothing if cost is zero.
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 cost Estimated cost (or income if negative).
573 void ShowCostOrIncomeAnimation(int x, int y, int z, Money cost)
575 if (cost == 0) {
576 return;
578 Point pt = RemapCoords(x, y, z);
579 StringID msg = STR_INCOME_FLOAT_COST;
581 if (cost < 0) {
582 cost = -cost;
583 msg = STR_INCOME_FLOAT_INCOME;
585 SetDParam(0, cost);
586 AddTextEffect(msg, pt.x, pt.y, DAY_TICKS, TE_RISING);
590 * Display animated feeder income.
591 * @param x World X position of the animation location.
592 * @param y World Y position of the animation location.
593 * @param z World Z position of the animation location.
594 * @param transfer Estimated feeder income.
595 * @param income Real income from goods being delivered to their final destination.
597 void ShowFeederIncomeAnimation(int x, int y, int z, Money transfer, Money income)
599 Point pt = RemapCoords(x, y, z);
601 SetDParam(0, transfer);
602 if (income == 0) {
603 AddTextEffect(STR_FEEDER, pt.x, pt.y, DAY_TICKS, TE_RISING);
604 } else {
605 StringID msg = STR_FEEDER_COST;
606 if (income < 0) {
607 income = -income;
608 msg = STR_FEEDER_INCOME;
610 SetDParam(1, income);
611 AddTextEffect(msg, pt.x, pt.y, DAY_TICKS, TE_RISING);
616 * Display vehicle loading indicators.
617 * @param x World X position of the animation location.
618 * @param y World Y position of the animation location.
619 * @param z World Z position of the animation location.
620 * @param percent Estimated feeder income.
621 * @param string String which is drawn on the map.
622 * @return TextEffectID to be used for future updates of the loading indicators.
624 TextEffectID ShowFillingPercent(int x, int y, int z, uint8 percent, StringID string)
626 Point pt = RemapCoords(x, y, z);
628 assert(string != STR_NULL);
630 SetDParam(0, percent);
631 return AddTextEffect(string, pt.x, pt.y, 0, TE_STATIC);
635 * Update vehicle loading indicators.
636 * @param te_id TextEffectID to be updated.
637 * @param string String which is printed.
639 void UpdateFillingPercent(TextEffectID te_id, uint8 percent, StringID string)
641 assert(string != STR_NULL);
643 SetDParam(0, percent);
644 UpdateTextEffect(te_id, string);
648 * Hide vehicle loading indicators.
649 * @param *te_id TextEffectID which is supposed to be hidden.
651 void HideFillingPercent(TextEffectID *te_id)
653 if (*te_id == INVALID_TE_ID) return;
655 RemoveTextEffect(*te_id);
656 *te_id = INVALID_TE_ID;
659 static const NWidgetPart _nested_tooltips_widgets[] = {
660 NWidget(WWT_PANEL, COLOUR_GREY, WID_TT_BACKGROUND), SetMinimalSize(200, 32), EndContainer(),
663 static WindowDesc _tool_tips_desc(
664 WDP_MANUAL, nullptr, 0, 0, // Coordinates and sizes are not used,
665 WC_TOOLTIPS, WC_NONE,
666 WDF_NO_FOCUS,
667 _nested_tooltips_widgets, lengthof(_nested_tooltips_widgets)
670 /** Window for displaying a tooltip. */
671 struct TooltipsWindow : public Window
673 StringID string_id; ///< String to display as tooltip.
674 byte paramcount; ///< Number of string parameters in #string_id.
675 uint64 params[8]; ///< The string parameters.
676 TooltipCloseCondition close_cond; ///< Condition for closing the window.
678 TooltipsWindow(Window *parent, StringID str, uint paramcount, const uint64 params[], TooltipCloseCondition close_tooltip) : Window(&_tool_tips_desc)
680 this->parent = parent;
681 this->string_id = str;
682 static_assert(sizeof(this->params[0]) == sizeof(params[0]));
683 assert(paramcount <= lengthof(this->params));
684 if (params == nullptr) {
685 _global_string_params.offset = 0;
686 params = _global_string_params.GetDataPointer();
688 if (paramcount > 0) memcpy(this->params, params, sizeof(this->params[0]) * paramcount);
689 this->paramcount = paramcount;
690 this->close_cond = close_tooltip;
692 this->InitNested();
694 CLRBITS(this->flags, WF_WHITE_BORDER);
697 Point OnInitialPosition(int16 sm_width, int16 sm_height, int window_number) override
699 /* Find the free screen space between the main toolbar at the top, and the statusbar at the bottom.
700 * Add a fixed distance 2 so the tooltip floats free from both bars.
702 int scr_top = GetMainViewTop() + 2;
703 int scr_bot = GetMainViewBottom() - 2;
705 Point pt;
707 /* Correctly position the tooltip position, watch out for window and cursor size
708 * Clamp value to below main toolbar and above statusbar. If tooltip would
709 * go below window, flip it so it is shown above the cursor */
710 pt.y = Clamp(_cursor.pos.y + _cursor.total_size.y + _cursor.total_offs.y + 5, scr_top, scr_bot);
711 if (pt.y + sm_height > scr_bot) pt.y = std::min(_cursor.pos.y + _cursor.total_offs.y - 5, scr_bot) - sm_height;
712 pt.x = sm_width >= _screen.width ? 0 : Clamp(_cursor.pos.x - (sm_width >> 1), 0, _screen.width - sm_width);
714 return pt;
717 void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
719 /* There is only one widget. */
720 for (uint i = 0; i != this->paramcount; i++) SetDParam(i, this->params[i]);
722 size->width = std::min<uint>(GetStringBoundingBox(this->string_id).width, ScaleGUITrad(194));
723 size->height = GetStringHeight(this->string_id, size->width);
725 /* Increase slightly to have some space around the box. */
726 size->width += 2 + WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT;
727 size->height += 2 + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
730 void DrawWidget(const Rect &r, int widget) const override
732 /* There is only one widget. */
733 GfxFillRect(r.left, r.top, r.right, r.bottom, PC_BLACK);
734 GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, PC_LIGHT_YELLOW);
736 for (uint arg = 0; arg < this->paramcount; arg++) {
737 SetDParam(arg, this->params[arg]);
739 DrawStringMultiLine(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, r.top + WD_FRAMERECT_TOP, r.bottom - WD_FRAMERECT_BOTTOM, this->string_id, TC_FROMSTRING, SA_CENTER);
742 void OnMouseLoop() override
744 /* Always close tooltips when the cursor is not in our window. */
745 if (!_cursor.in_window) {
746 this->Close();
747 return;
750 /* We can show tooltips while dragging tools. These are shown as long as
751 * we are dragging the tool. Normal tooltips work with hover or rmb. */
752 switch (this->close_cond) {
753 case TCC_RIGHT_CLICK: if (!_right_button_down) this->Close(); break;
754 case TCC_HOVER: if (!_mouse_hovering) this->Close(); break;
755 case TCC_NONE: break;
757 case TCC_EXIT_VIEWPORT: {
758 Window *w = FindWindowFromPt(_cursor.pos.x, _cursor.pos.y);
759 if (w == nullptr || IsPtInWindowViewport(w, _cursor.pos.x, _cursor.pos.y) == nullptr) this->Close();
760 break;
767 * Shows a tooltip
768 * @param parent The window this tooltip is related to.
769 * @param str String to be displayed
770 * @param paramcount number of params to deal with
771 * @param params (optional) up to 5 pieces of additional information that may be added to a tooltip
772 * @param close_tooltip when the left (true) or right (false) mouse button is released
774 void GuiShowTooltips(Window *parent, StringID str, uint paramcount, const uint64 params[], TooltipCloseCondition close_tooltip)
776 CloseWindowById(WC_TOOLTIPS, 0);
778 if (str == STR_NULL || !_cursor.in_window) return;
780 new TooltipsWindow(parent, str, paramcount, params, close_tooltip);
783 void QueryString::HandleEditBox(Window *w, int wid)
785 if (w->IsWidgetGloballyFocused(wid) && this->text.HandleCaret()) {
786 w->SetWidgetDirty(wid);
788 /* For the OSK also invalidate the parent window */
789 if (w->window_class == WC_OSK) w->InvalidateData();
793 void QueryString::DrawEditBox(const Window *w, int wid) const
795 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
797 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
799 bool rtl = _current_text_dir == TD_RTL;
800 Dimension sprite_size = GetSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
801 int clearbtn_width = sprite_size.width + WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT;
803 int clearbtn_left = wi->pos_x + (rtl ? 0 : wi->current_x - clearbtn_width);
804 int clearbtn_right = wi->pos_x + (rtl ? clearbtn_width : wi->current_x) - 1;
805 int left = wi->pos_x + (rtl ? clearbtn_width : 0);
806 int right = wi->pos_x + (rtl ? wi->current_x : wi->current_x - clearbtn_width) - 1;
808 int top = wi->pos_y;
809 int bottom = wi->pos_y + wi->current_y - 1;
811 DrawFrameRect(clearbtn_left, top, clearbtn_right, bottom, wi->colour, wi->IsLowered() ? FR_LOWERED : FR_NONE);
812 DrawSprite(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT, PAL_NONE, clearbtn_left + WD_IMGBTN_LEFT + (wi->IsLowered() ? 1 : 0), (top + bottom - sprite_size.height) / 2 + (wi->IsLowered() ? 1 : 0));
813 if (this->text.bytes == 1) GfxFillRect(clearbtn_left + 1, top + 1, clearbtn_right - 1, bottom - 1, _colour_gradient[wi->colour & 0xF][2], FILLRECT_CHECKER);
815 DrawFrameRect(left, top, right, bottom, wi->colour, FR_LOWERED | FR_DARKENED);
816 GfxFillRect(left + 1, top + 1, right - 1, bottom - 1, PC_BLACK);
818 /* Limit the drawing of the string inside the widget boundaries */
819 DrawPixelInfo dpi;
820 if (!FillDrawPixelInfo(&dpi, left + WD_FRAMERECT_LEFT, top + WD_FRAMERECT_TOP, right - left - WD_FRAMERECT_RIGHT, bottom - top - WD_FRAMERECT_BOTTOM)) return;
822 DrawPixelInfo *old_dpi = _cur_dpi;
823 _cur_dpi = &dpi;
825 /* We will take the current widget length as maximum width, with a small
826 * space reserved at the end for the caret to show */
827 const Textbuf *tb = &this->text;
828 int delta = std::min(0, (right - left) - tb->pixels - 10);
830 if (tb->caretxoffs + delta < 0) delta = -tb->caretxoffs;
832 /* If we have a marked area, draw a background highlight. */
833 if (tb->marklength != 0) GfxFillRect(delta + tb->markxoffs, 0, delta + tb->markxoffs + tb->marklength - 1, bottom - top, PC_GREY);
835 DrawString(delta, tb->pixels, 0, tb->buf, TC_YELLOW);
836 bool focussed = w->IsWidgetGloballyFocused(wid) || IsOSKOpenedFor(w, wid);
837 if (focussed && tb->caret) {
838 int caret_width = GetStringBoundingBox("_").width;
839 DrawString(tb->caretxoffs + delta, tb->caretxoffs + delta + caret_width, 0, "_", TC_WHITE);
842 _cur_dpi = old_dpi;
846 * Get the current caret position.
847 * @param w Window the edit box is in.
848 * @param wid Widget index.
849 * @return Top-left location of the caret, relative to the window.
851 Point QueryString::GetCaretPosition(const Window *w, int wid) const
853 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
855 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
857 bool rtl = _current_text_dir == TD_RTL;
858 Dimension sprite_size = GetSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
859 int clearbtn_width = sprite_size.width + WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT;
861 int left = wi->pos_x + (rtl ? clearbtn_width : 0);
862 int right = wi->pos_x + (rtl ? wi->current_x : wi->current_x - clearbtn_width) - 1;
864 /* Clamp caret position to be inside out current width. */
865 const Textbuf *tb = &this->text;
866 int delta = std::min(0, (right - left) - tb->pixels - 10);
867 if (tb->caretxoffs + delta < 0) delta = -tb->caretxoffs;
869 Point pt = {left + WD_FRAMERECT_LEFT + tb->caretxoffs + delta, (int)wi->pos_y + WD_FRAMERECT_TOP};
870 return pt;
874 * Get the bounding rectangle for a range of the query string.
875 * @param w Window the edit box is in.
876 * @param wid Widget index.
877 * @param from Start of the string range.
878 * @param to End of the string range.
879 * @return Rectangle encompassing the string range, relative to the window.
881 Rect QueryString::GetBoundingRect(const Window *w, int wid, const char *from, const char *to) const
883 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
885 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
887 bool rtl = _current_text_dir == TD_RTL;
888 Dimension sprite_size = GetSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
889 int clearbtn_width = sprite_size.width + WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT;
891 int left = wi->pos_x + (rtl ? clearbtn_width : 0);
892 int right = wi->pos_x + (rtl ? wi->current_x : wi->current_x - clearbtn_width) - 1;
894 int top = wi->pos_y + WD_FRAMERECT_TOP;
895 int bottom = wi->pos_y + wi->current_y - 1 - WD_FRAMERECT_BOTTOM;
897 /* Clamp caret position to be inside our current width. */
898 const Textbuf *tb = &this->text;
899 int delta = std::min(0, (right - left) - tb->pixels - 10);
900 if (tb->caretxoffs + delta < 0) delta = -tb->caretxoffs;
902 /* Get location of first and last character. */
903 Point p1 = GetCharPosInString(tb->buf, from, FS_NORMAL);
904 Point p2 = from != to ? GetCharPosInString(tb->buf, to, FS_NORMAL) : p1;
906 Rect r = { Clamp(left + p1.x + delta + WD_FRAMERECT_LEFT, left, right), top, Clamp(left + p2.x + delta + WD_FRAMERECT_LEFT, left, right - WD_FRAMERECT_RIGHT), bottom };
908 return r;
912 * Get the character that is rendered at a position.
913 * @param w Window the edit box is in.
914 * @param wid Widget index.
915 * @param pt Position to test.
916 * @return Pointer to the character at the position or nullptr if no character is at the position.
918 const char *QueryString::GetCharAtPosition(const Window *w, int wid, const Point &pt) const
920 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
922 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
924 bool rtl = _current_text_dir == TD_RTL;
925 Dimension sprite_size = GetSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
926 int clearbtn_width = sprite_size.width + WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT;
928 int left = wi->pos_x + (rtl ? clearbtn_width : 0);
929 int right = wi->pos_x + (rtl ? wi->current_x : wi->current_x - clearbtn_width) - 1;
931 int top = wi->pos_y + WD_FRAMERECT_TOP;
932 int bottom = wi->pos_y + wi->current_y - 1 - WD_FRAMERECT_BOTTOM;
934 if (!IsInsideMM(pt.y, top, bottom)) return nullptr;
936 /* Clamp caret position to be inside our current width. */
937 const Textbuf *tb = &this->text;
938 int delta = std::min(0, (right - left) - tb->pixels - 10);
939 if (tb->caretxoffs + delta < 0) delta = -tb->caretxoffs;
941 return ::GetCharAtPosition(tb->buf, pt.x - delta - left);
944 void QueryString::ClickEditBox(Window *w, Point pt, int wid, int click_count, bool focus_changed)
946 const NWidgetLeaf *wi = w->GetWidget<NWidgetLeaf>(wid);
948 assert((wi->type & WWT_MASK) == WWT_EDITBOX);
950 bool rtl = _current_text_dir == TD_RTL;
951 int clearbtn_width = GetSpriteSize(rtl ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT).width;
953 int clearbtn_left = wi->pos_x + (rtl ? 0 : wi->current_x - clearbtn_width);
955 if (IsInsideBS(pt.x, clearbtn_left, clearbtn_width)) {
956 if (this->text.bytes > 1) {
957 this->text.DeleteAll();
958 w->HandleButtonClick(wid);
959 w->OnEditboxChanged(wid);
961 return;
964 if (w->window_class != WC_OSK && _settings_client.gui.osk_activation != OSKA_DISABLED &&
965 (!focus_changed || _settings_client.gui.osk_activation == OSKA_IMMEDIATELY) &&
966 (click_count == 2 || _settings_client.gui.osk_activation != OSKA_DOUBLE_CLICK)) {
967 /* Open the OSK window */
968 ShowOnScreenKeyboard(w, wid);
972 /** Class for the string query window. */
973 struct QueryStringWindow : public Window
975 QueryString editbox; ///< Editbox.
976 QueryStringFlags flags; ///< Flags controlling behaviour of the window.
977 Dimension warning_size; ///< How much space to use for the warning text
979 QueryStringWindow(StringID str, StringID caption, uint max_bytes, uint max_chars, WindowDesc *desc, Window *parent, CharSetFilter afilter, QueryStringFlags flags) :
980 Window(desc), editbox(max_bytes, max_chars)
982 char *last_of = &this->editbox.text.buf[this->editbox.text.max_bytes - 1];
983 GetString(this->editbox.text.buf, str, last_of);
984 StrMakeValidInPlace(this->editbox.text.buf, last_of, SVS_NONE);
986 /* Make sure the name isn't too long for the text buffer in the number of
987 * characters (not bytes). max_chars also counts the '\0' characters. */
988 while (Utf8StringLength(this->editbox.text.buf) + 1 > this->editbox.text.max_chars) {
989 *Utf8PrevChar(this->editbox.text.buf + strlen(this->editbox.text.buf)) = '\0';
992 this->editbox.text.UpdateSize();
994 if ((flags & QSF_ACCEPT_UNCHANGED) == 0) this->editbox.orig = stredup(this->editbox.text.buf);
996 this->querystrings[WID_QS_TEXT] = &this->editbox;
997 this->editbox.caption = caption;
998 this->editbox.cancel_button = WID_QS_CANCEL;
999 this->editbox.ok_button = WID_QS_OK;
1000 this->editbox.text.afilter = afilter;
1001 this->flags = flags;
1003 this->InitNested(WN_QUERY_STRING);
1004 this->UpdateWarningStringSize();
1006 this->parent = parent;
1008 this->SetFocusedWidget(WID_QS_TEXT);
1011 void UpdateWarningStringSize()
1013 if (this->flags & QSF_PASSWORD) {
1014 assert(this->nested_root->smallest_x > 0);
1015 this->warning_size.width = this->nested_root->current_x - (WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT + WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT);
1016 this->warning_size.height = GetStringHeight(STR_WARNING_PASSWORD_SECURITY, this->warning_size.width);
1017 this->warning_size.height += WD_FRAMETEXT_TOP + WD_FRAMETEXT_BOTTOM + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
1018 } else {
1019 this->warning_size = Dimension{ 0, 0 };
1022 this->ReInit();
1025 void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
1027 if (widget == WID_QS_DEFAULT && (this->flags & QSF_ENABLE_DEFAULT) == 0) {
1028 /* We don't want this widget to show! */
1029 fill->width = 0;
1030 resize->width = 0;
1031 size->width = 0;
1034 if (widget == WID_QS_WARNING) {
1035 *size = this->warning_size;
1039 void DrawWidget(const Rect &r, int widget) const override
1041 if (widget != WID_QS_WARNING) return;
1043 if (this->flags & QSF_PASSWORD) {
1044 DrawStringMultiLine(r.left + WD_FRAMERECT_LEFT + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT - WD_FRAMERECT_RIGHT,
1045 r.top + WD_FRAMERECT_TOP + WD_FRAMETEXT_TOP, r.bottom - WD_FRAMERECT_BOTTOM - WD_FRAMETEXT_BOTTOM,
1046 STR_WARNING_PASSWORD_SECURITY, TC_FROMSTRING, SA_CENTER);
1050 void SetStringParameters(int widget) const override
1052 if (widget == WID_QS_CAPTION) SetDParam(0, this->editbox.caption);
1055 void OnOk()
1057 if (this->editbox.orig == nullptr || strcmp(this->editbox.text.buf, this->editbox.orig) != 0) {
1058 assert(this->parent != nullptr);
1060 this->parent->OnQueryTextFinished(this->editbox.text.buf);
1061 this->editbox.handled = true;
1065 void OnClick(Point pt, int widget, int click_count) override
1067 switch (widget) {
1068 case WID_QS_DEFAULT:
1069 this->editbox.text.DeleteAll();
1070 FALLTHROUGH;
1072 case WID_QS_OK:
1073 this->OnOk();
1074 FALLTHROUGH;
1076 case WID_QS_CANCEL:
1077 this->Close();
1078 break;
1082 void Close() override
1084 if (!this->editbox.handled && this->parent != nullptr) {
1085 Window *parent = this->parent;
1086 this->parent = nullptr; // so parent doesn't try to close us again
1087 parent->OnQueryTextFinished(nullptr);
1089 this->Window::Close();
1093 static const NWidgetPart _nested_query_string_widgets[] = {
1094 NWidget(NWID_HORIZONTAL),
1095 NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1096 NWidget(WWT_CAPTION, COLOUR_GREY, WID_QS_CAPTION), SetDataTip(STR_WHITE_STRING, STR_NULL),
1097 EndContainer(),
1098 NWidget(WWT_PANEL, COLOUR_GREY),
1099 NWidget(WWT_EDITBOX, COLOUR_GREY, WID_QS_TEXT), SetMinimalSize(256, 12), SetFill(1, 1), SetPadding(2, 2, 2, 2),
1100 EndContainer(),
1101 NWidget(WWT_PANEL, COLOUR_GREY, WID_QS_WARNING), EndContainer(),
1102 NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
1103 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_QS_DEFAULT), SetMinimalSize(87, 12), SetFill(1, 1), SetDataTip(STR_BUTTON_DEFAULT, STR_NULL),
1104 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_QS_CANCEL), SetMinimalSize(86, 12), SetFill(1, 1), SetDataTip(STR_BUTTON_CANCEL, STR_NULL),
1105 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_QS_OK), SetMinimalSize(87, 12), SetFill(1, 1), SetDataTip(STR_BUTTON_OK, STR_NULL),
1106 EndContainer(),
1109 static WindowDesc _query_string_desc(
1110 WDP_CENTER, "query_string", 0, 0,
1111 WC_QUERY_STRING, WC_NONE,
1113 _nested_query_string_widgets, lengthof(_nested_query_string_widgets)
1117 * Show a query popup window with a textbox in it.
1118 * @param str StringID for the text shown in the textbox
1119 * @param caption StringID of text shown in caption of querywindow
1120 * @param maxsize maximum size in bytes or characters (including terminating '\0') depending on flags
1121 * @param parent pointer to a Window that will handle the events (ok/cancel) of this window.
1122 * @param afilter filters out unwanted character input
1123 * @param flags various flags, @see QueryStringFlags
1125 void ShowQueryString(StringID str, StringID caption, uint maxsize, Window *parent, CharSetFilter afilter, QueryStringFlags flags)
1127 assert(parent != nullptr);
1129 CloseWindowByClass(WC_QUERY_STRING);
1130 new QueryStringWindow(str, caption, ((flags & QSF_LEN_IN_CHARS) ? MAX_CHAR_LENGTH : 1) * maxsize, maxsize, &_query_string_desc, parent, afilter, flags);
1134 * Window used for asking the user a YES/NO question.
1136 struct QueryWindow : public Window {
1137 QueryCallbackProc *proc; ///< callback function executed on closing of popup. Window* points to parent, bool is true if 'yes' clicked, false otherwise
1138 uint64 params[10]; ///< local copy of #_global_string_params
1139 StringID message; ///< message shown for query window
1140 StringID caption; ///< title of window
1142 QueryWindow(WindowDesc *desc, StringID caption, StringID message, Window *parent, QueryCallbackProc *callback) : Window(desc)
1144 /* Create a backup of the variadic arguments to strings because it will be
1145 * overridden pretty often. We will copy these back for drawing */
1146 CopyOutDParam(this->params, 0, lengthof(this->params));
1147 this->caption = caption;
1148 this->message = message;
1149 this->proc = callback;
1150 this->parent = parent;
1152 this->InitNested(WN_CONFIRM_POPUP_QUERY);
1155 void Close() override
1157 if (this->proc != nullptr) this->proc(this->parent, false);
1158 this->Window::Close();
1161 void FindWindowPlacementAndResize(int def_width, int def_height) override
1163 /* Position query window over the calling window, ensuring it's within screen bounds. */
1164 this->left = Clamp(parent->left + (parent->width / 2) - (this->width / 2), 0, _screen.width - this->width);
1165 this->top = Clamp(parent->top + (parent->height / 2) - (this->height / 2), 0, _screen.height - this->height);
1166 this->SetDirty();
1169 void SetStringParameters(int widget) const override
1171 switch (widget) {
1172 case WID_Q_CAPTION:
1173 CopyInDParam(1, this->params, lengthof(this->params));
1174 SetDParam(0, this->caption);
1175 break;
1177 case WID_Q_TEXT:
1178 CopyInDParam(0, this->params, lengthof(this->params));
1179 break;
1183 void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
1185 if (widget != WID_Q_TEXT) return;
1187 Dimension d = GetStringMultiLineBoundingBox(this->message, *size);
1188 d.width += WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT;
1189 d.height += WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
1190 *size = d;
1193 void DrawWidget(const Rect &r, int widget) const override
1195 if (widget != WID_Q_TEXT) return;
1197 DrawStringMultiLine(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, r.top + WD_FRAMERECT_TOP, r.bottom - WD_FRAMERECT_BOTTOM,
1198 this->message, TC_FROMSTRING, SA_CENTER);
1201 void OnClick(Point pt, int widget, int click_count) override
1203 switch (widget) {
1204 case WID_Q_YES: {
1205 /* in the Generate New World window, clicking 'Yes' causes
1206 * CloseNonVitalWindows() to be called - we shouldn't be in a window then */
1207 QueryCallbackProc *proc = this->proc;
1208 Window *parent = this->parent;
1209 /* Prevent the destructor calling the callback function */
1210 this->proc = nullptr;
1211 this->Close();
1212 if (proc != nullptr) {
1213 proc(parent, true);
1214 proc = nullptr;
1216 break;
1218 case WID_Q_NO:
1219 this->Close();
1220 break;
1224 EventState OnKeyPress(WChar key, uint16 keycode) override
1226 /* ESC closes the window, Enter confirms the action */
1227 switch (keycode) {
1228 case WKC_RETURN:
1229 case WKC_NUM_ENTER:
1230 if (this->proc != nullptr) {
1231 this->proc(this->parent, true);
1232 this->proc = nullptr;
1234 FALLTHROUGH;
1236 case WKC_ESC:
1237 this->Close();
1238 return ES_HANDLED;
1240 return ES_NOT_HANDLED;
1244 static const NWidgetPart _nested_query_widgets[] = {
1245 NWidget(NWID_HORIZONTAL),
1246 NWidget(WWT_CLOSEBOX, COLOUR_RED),
1247 NWidget(WWT_CAPTION, COLOUR_RED, WID_Q_CAPTION), SetDataTip(STR_JUST_STRING, STR_NULL),
1248 EndContainer(),
1249 NWidget(WWT_PANEL, COLOUR_RED), SetPIP(8, 15, 8),
1250 NWidget(WWT_TEXT, COLOUR_RED, WID_Q_TEXT), SetMinimalSize(200, 12),
1251 NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(20, 29, 20),
1252 NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_Q_NO), SetMinimalSize(71, 12), SetFill(1, 1), SetDataTip(STR_QUIT_NO, STR_NULL),
1253 NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_Q_YES), SetMinimalSize(71, 12), SetFill(1, 1), SetDataTip(STR_QUIT_YES, STR_NULL),
1254 EndContainer(),
1255 EndContainer(),
1258 static WindowDesc _query_desc(
1259 WDP_CENTER, nullptr, 0, 0,
1260 WC_CONFIRM_POPUP_QUERY, WC_NONE,
1261 WDF_MODAL,
1262 _nested_query_widgets, lengthof(_nested_query_widgets)
1266 * Show a modal confirmation window with standard 'yes' and 'no' buttons
1267 * The window is aligned to the centre of its parent.
1268 * @param caption string shown as window caption
1269 * @param message string that will be shown for the window
1270 * @param parent pointer to parent window, if this pointer is nullptr the parent becomes
1271 * the main window WC_MAIN_WINDOW
1272 * @param callback callback function pointer to set in the window descriptor
1274 void ShowQuery(StringID caption, StringID message, Window *parent, QueryCallbackProc *callback)
1276 if (parent == nullptr) parent = FindWindowById(WC_MAIN_WINDOW, 0);
1278 for (Window *w : Window::Iterate()) {
1279 if (w->window_class != WC_CONFIRM_POPUP_QUERY) continue;
1281 QueryWindow *qw = dynamic_cast<QueryWindow *>(w);
1282 if (qw->parent != parent || qw->proc != callback) continue;
1284 qw->Close();
1285 break;
1288 new QueryWindow(&_query_desc, caption, message, parent, callback);