OpenTTD Source 20260721-master-g25ec12c62d
picker_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 <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#include "stdafx.h"
11#include "core/backup_type.hpp"
12#include "company_func.h"
13#include "dropdown_func.h"
14#include "gui.h"
15#include "hotkeys.h"
16#include "ini_type.h"
17#include "newgrf_badge.h"
18#include "newgrf_badge_config.h"
19#include "newgrf_badge_gui.h"
20#include "picker_gui.h"
21#include "querystring_gui.h"
22#include "settings_type.h"
23#include "sortlist_type.h"
24#include "sound_func.h"
25#include "sound_type.h"
26#include "string_func.h"
27#include "stringfilter_type.h"
28#include "strings_func.h"
29#include "widget_type.h"
30#include "window_func.h"
31#include "window_gui.h"
32#include "window_type.h"
33#include "zoom_func.h"
34
36
37#include "table/sprites.h"
38#include "table/strings.h"
39
40#include <charconv>
41
42#include "safeguards.h"
43
44static std::vector<PickerCallbacks *> &GetPickerCallbacks()
45{
46 static std::vector<PickerCallbacks *> callbacks;
47 return callbacks;
48}
49
50PickerCallbacks::PickerCallbacks(const std::string &ini_group) : ini_group(ini_group)
51{
52 GetPickerCallbacks().push_back(this);
53}
54
57{
58 auto &callbacks = GetPickerCallbacks();
59 callbacks.erase(std::ranges::find(callbacks, this));
60}
61
67static void PickerLoadConfig(const IniFile &ini, PickerCallbacks &callbacks)
68{
69 callbacks.saved.clear();
70 for (const IniGroup &group : ini.groups) {
71 /* Read the collection name */
72 if (!group.name.starts_with(callbacks.ini_group)) continue;
73 auto pos = group.name.find('-');
74 if (pos == std::string_view::npos && group.name != callbacks.ini_group) continue;
75 std::string collection = (pos == std::string_view::npos) ? "" : group.name.substr(pos + 1);
76
77 if (group.items.empty() && pos != std::string_view::npos) {
78 callbacks.saved[collection];
79 continue;
80 }
81
82 for (const IniItem &item : group.items) {
83 GrfID grfid;
84 std::string_view str = item.name;
85
86 /* Try reading "<grfid>|<localid>" */
87 auto grfid_pos = str.find('|');
88 if (grfid_pos == std::string_view::npos) continue;
89
90 std::string_view grfid_str = str.substr(0, grfid_pos);
91 if (!ConvertHexToBytes(grfid_str, grfid)) continue;
92
93 str = str.substr(grfid_pos + 1);
94 uint16_t localid;
95 auto [ptr, err] = std::from_chars(str.data(), str.data() + str.size(), localid);
96
97 if (err == std::errc{} && ptr == str.data() + str.size()) {
98 callbacks.saved[collection].emplace(grfid, localid, 0, 0);
99 }
100 }
101 }
102}
103
109static void PickerSaveConfig(IniFile &ini, const PickerCallbacks &callbacks)
110{
111 /* Clean the ini file of any obsolete collections to prevent them coming back after a restart */
112 for (const std::string &rm_collection : callbacks.rm_collections) {
113 ini.RemoveGroup(callbacks.ini_group + "-" + rm_collection);
114 }
115
116 for (const auto &collection : callbacks.saved) {
117 IniGroup &group = ini.GetOrCreateGroup(collection.first == "" ? callbacks.ini_group : callbacks.ini_group + "-" + collection.first);
118 group.Clear();
119 for (const PickerItem &item : collection.second) {
120 std::string key = fmt::format("{}|{}", FormatArrayAsHex(item.grfid), item.local_id);
121 group.CreateItem(key);
122 }
123 }
124}
125
130void PickerLoadConfig(const IniFile &ini)
131{
132 for (auto *cb : GetPickerCallbacks()) PickerLoadConfig(ini, *cb);
133}
134
140{
141 for (const auto *cb : GetPickerCallbacks()) PickerSaveConfig(ini, *cb);
142}
143
145static bool ClassIDSorter(int const &a, int const &b)
146{
147 return a < b;
148}
149
151static bool ClassTagNameFilter(int const *item, PickerFilterData &filter)
152{
153 filter.ResetState();
154 filter.AddLine(GetString(filter.callbacks->GetClassName(*item)));
155 return filter.GetState();
156}
157
159static bool TypeIDSorter(PickerItem const &a, PickerItem const &b)
160{
161 int r = a.class_index - b.class_index;
162 if (r == 0) r = a.index - b.index;
163 return r < 0;
164}
165
167static bool TypeTagNameFilter(PickerItem const *item, PickerFilterData &filter)
168{
169 auto badges = filter.callbacks->GetTypeBadges(item->class_index, item->index);
170 if (filter.bdf.has_value() && !filter.bdf->Filter(badges)) return false;
171 if (filter.btf.has_value() && filter.btf->Filter(badges)) return true;
172
173 filter.ResetState();
174 filter.AddLine(GetString(filter.callbacks->GetTypeName(item->class_index, item->index)));
175 return filter.GetState();
176}
177
180
182static bool CollectionIDSorter(std::string const &a, std::string const &b)
183{
184 if (a == GetString(STR_PICKER_DEFAULT_COLLECTION) || b == GetString(STR_PICKER_DEFAULT_COLLECTION)) return a == GetString(STR_PICKER_DEFAULT_COLLECTION);
185 if (picker_window->inactive.contains(a) == picker_window->inactive.contains(b)) return StrNaturalCompare(a, b) < 0;
186 return picker_window->inactive.contains(a) < picker_window->inactive.contains(b);
187}
188
189static const std::initializer_list<PickerClassList::SortFunction * const> _class_sorter_funcs = { &ClassIDSorter };
190static const std::initializer_list<PickerClassList::FilterFunction * const> _class_filter_funcs = { &ClassTagNameFilter };
191static const std::initializer_list<PickerTypeList::SortFunction * const> _type_sorter_funcs = { TypeIDSorter };
192static const std::initializer_list<PickerTypeList::FilterFunction * const> _type_filter_funcs = { TypeTagNameFilter };
193static const std::initializer_list<PickerCollectionList::SortFunction * const> _collection_sorter_funcs = { &CollectionIDSorter };
194
195
196PickerWindow::PickerWindow(WindowDesc &desc, Window *parent, WindowNumber window_number, PickerCallbacks &callbacks) : PickerWindowBase(desc, parent), callbacks(callbacks),
197 class_editbox(EDITBOX_MAX_SIZE * MAX_CHAR_LENGTH, EDITBOX_MAX_SIZE),
198 type_editbox(EDITBOX_MAX_SIZE * MAX_CHAR_LENGTH, EDITBOX_MAX_SIZE)
199{
200 this->window_number = window_number;
201
202 /* Init of nested tree is deferred.
203 * PickerWindow::ConstructWindow must be called by the inheriting window. */
204}
205
206void PickerWindow::ConstructWindow()
207{
208 this->CreateNestedTree();
209
210 /* Test if pickers should be active.*/
211 bool is_active = this->callbacks.IsActive();
212
213 this->preview_height = std::max(this->callbacks.preview_height, PREVIEW_HEIGHT);
214 picker_window = this;
215
216 /* Functionality depends on widgets being present, not window class. */
217 this->has_class_picker = is_active && this->GetWidget<NWidgetBase>(WID_PW_CLASS_LIST) != nullptr && this->callbacks.HasClassChoice();
218 this->has_type_picker = is_active && this->GetWidget<NWidgetBase>(WID_PW_TYPE_MATRIX) != nullptr;
219 this->has_collection_picker = is_active && this->GetWidget<NWidgetBase>(WID_PW_COLEC_LIST) != nullptr;
220
221 if (this->has_class_picker) {
222 this->GetWidget<NWidgetCore>(WID_PW_CLASS_LIST)->SetToolTip(this->callbacks.GetClassTooltip());
223
225 } else {
226 if (auto *nwid = this->GetWidget<NWidgetStacked>(WID_PW_CLASS_SEL); nwid != nullptr) {
227 /* Check the container orientation. MakeNWidgets adds an additional NWID_VERTICAL container so we check the grand-parent. */
228 bool is_vertical = (nwid->parent->parent->type == NWID_VERTICAL);
229 nwid->SetDisplayedPlane(is_vertical ? SZSP_HORIZONTAL : SZSP_VERTICAL);
230 }
231 }
232
233 this->class_editbox.cancel_button = QueryString::ACTION_CLEAR;
234 this->class_string_filter.SetFilterTerm(this->class_editbox.text.GetText());
235 this->class_string_filter.callbacks = &this->callbacks;
236
237 this->classes.SetListing(this->callbacks.class_last_sorting);
238 this->classes.SetFiltering(this->callbacks.class_last_filtering);
239 this->classes.SetSortFuncs(_class_sorter_funcs);
240 this->classes.SetFilterFuncs(_class_filter_funcs);
241
242 /* Update saved type information. */
243 if (this->callbacks.sel_collection == "") SetWidgetsDisabledState(true, WID_PW_COLEC_RENAME, WID_PW_COLEC_DELETE);
244 this->callbacks.saved = this->callbacks.UpdateSavedItems(this->callbacks.saved);
245 this->inactive = this->callbacks.InitializeInactiveCollections(this->callbacks.saved);
246 this->collections.ForceRebuild();
247
248 /* Clear used type information. */
249 this->callbacks.used.clear();
250
251 if (this->has_type_picker) {
252 /* Populate used type information. */
253 this->callbacks.FillUsedItems(this->callbacks.used);
254
255 SetWidgetDisabledState(WID_PW_MODE_ALL, !this->callbacks.HasClassChoice());
256
257 this->GetWidget<NWidgetCore>(WID_PW_TYPE_ITEM)->SetToolTip(this->callbacks.GetTypeTooltip());
258
259 auto *matrix = this->GetWidget<NWidgetMatrix>(WID_PW_TYPE_MATRIX);
260 matrix->SetScrollbar(this->GetScrollbar(WID_PW_TYPE_SCROLL));
261
263 } else {
264 if (auto *nwid = this->GetWidget<NWidgetStacked>(WID_PW_TYPE_SEL); nwid != nullptr) {
265 /* Check the container orientation. MakeNWidgets adds an additional NWID_VERTICAL container so we check the grand-parent. */
266 bool is_vertical = (nwid->parent->parent->type == NWID_VERTICAL);
267 nwid->SetDisplayedPlane(is_vertical ? SZSP_HORIZONTAL : SZSP_VERTICAL);
268 }
269 }
270
271 this->type_editbox.cancel_button = QueryString::ACTION_CLEAR;
272 this->type_string_filter.SetFilterTerm(this->type_editbox.text.GetText());
273 this->type_string_filter.callbacks = &this->callbacks;
274
275 this->types.SetListing(this->callbacks.type_last_sorting);
276 this->types.SetFiltering(this->callbacks.type_last_filtering);
277 this->types.SetSortFuncs(_type_sorter_funcs);
278 this->types.SetFilterFuncs(_type_filter_funcs);
279
280 if (this->has_collection_picker) {
281 this->GetWidget<NWidgetCore>(WID_PW_COLEC_LIST)->SetToolTip(this->callbacks.GetCollectionTooltip());
282 }
283
284 this->collections.SetListing(this->callbacks.collection_last_sorting);
285 this->collections.SetSortFuncs(_collection_sorter_funcs);
286
287 this->FinishInitNested(this->window_number);
288
289 this->InvalidateData(PICKER_INVALIDATION_ALL);
290}
291
293{
294 this->badge_classes = GUIBadgeClasses(this->callbacks.GetFeature());
295 this->badge_filters = AddBadgeDropdownFilters(this, WID_PW_BADGE_FILTER, WID_PW_BADGE_FILTER, Colours::DarkGreen, this->callbacks.GetFeature());
296
297 this->widget_lookup.clear();
298 this->nested_root->FillWidgetLookup(this->widget_lookup);
299}
300
302{
303 this->callbacks.Close(data);
304 this->PickerWindowBase::Close(data);
305}
306
308{
309 switch (widget) {
310 /* Class picker */
312 fill.height = resize.height = GetCharacterHeight(FontSize::Normal) + padding.height;
313 size.height = 5 * resize.height;
314 break;
315
316 /* Type picker */
318 /* At least two items wide. */
319 size.width += resize.width;
320 fill.width = resize.width;
321 fill.height = 1;
322
323 /* Resizing in X direction only at blob size, but at pixel level in Y. */
324 resize.height = 1;
325 break;
326
327 /* Type picker */
328 case WID_PW_TYPE_ITEM:
329 size.width = ScaleGUITrad(PREVIEW_WIDTH) + WidgetDimensions::scaled.fullbevel.Horizontal();
330 size.height = ScaleGUITrad(this->preview_height) + WidgetDimensions::scaled.fullbevel.Vertical();
331 break;
332
334 /* Hide the configuration button if no configurable badges are present. */
335 if (this->badge_classes.GetClasses().empty()) size = {0, 0};
336 break;
337 }
338}
339
340std::string PickerWindow::GetWidgetString(WidgetID widget, StringID stringid) const
341{
342 switch (widget) {
344 return this->callbacks.sel_collection == "" ? GetString(STR_PICKER_DEFAULT_COLLECTION) : this->callbacks.sel_collection;
345
346 default:
347 if (IsInsideMM(widget, this->badge_filters.first, this->badge_filters.second)) {
348 return this->GetWidget<NWidgetBadgeFilter>(widget)->GetStringParameter(this->badge_filter_choices);
349 }
350 break;
351 }
352 return this->Window::GetWidgetString(widget, stringid);
353}
354
355DropDownList PickerWindow::BuildCollectionDropDownList()
356{
357 DropDownList list;
358 int i = 0;
359 for (const auto &collection : collections) {
360 list.push_back(MakeDropDownListStringItem(GetString(collection == "" ? STR_PICKER_DEFAULT_COLLECTION : STR_JUST_RAW_STRING, collection), i, false, this->inactive.contains(collection)));
361 i++;
362 }
363 return list;
364}
365
366void PickerWindow::DrawWidget(const Rect &r, WidgetID widget) const
367{
368 switch (widget) {
369 /* Class picker */
370 case WID_PW_CLASS_LIST: {
371 Rect ir = r.Shrink(WidgetDimensions::scaled.matrix);
372 const int selected = this->callbacks.GetSelectedClass();
373 const auto vscroll = this->GetScrollbar(WID_PW_CLASS_SCROLL);
374 const int y_step = this->GetWidget<NWidgetResizeBase>(widget)->resize_y;
375 auto [first, last] = vscroll->GetVisibleRangeIterators(this->classes);
376 for (auto it = first; it != last; ++it) {
377 DrawString(ir, this->callbacks.GetClassName(*it), *it == selected ? TextColour::White : TextColour::Black);
378 ir.top += y_step;
379 }
380 break;
381 }
382
383 /* Type picker */
384 case WID_PW_TYPE_ITEM: {
385 assert(this->GetWidget<NWidgetBase>(widget)->GetParentWidget<NWidgetMatrix>()->GetCurrentElement() < static_cast<int>(this->types.size()));
386 const auto &item = this->types[this->GetWidget<NWidgetBase>(widget)->GetParentWidget<NWidgetMatrix>()->GetCurrentElement()];
387
388 DrawPixelInfo tmp_dpi;
390 if (FillDrawPixelInfo(&tmp_dpi, ir)) {
391 AutoRestoreBackup dpi_backup(_cur_dpi, &tmp_dpi);
394
395 this->callbacks.DrawType(x, y, item.class_index, item.index);
396
397 int by = ir.Height() - ScaleGUITrad(12);
398
399 GrfSpecFeature feature = this->callbacks.GetFeature();
400 /* Houses have recolours but not related to the company colour and other items depend on gamemode. */
401 PaletteID palette = _game_mode != GameMode::Normal || feature == GrfSpecFeature::Houses ? PAL_NONE : GetCompanyPalette(_local_company);
402 DrawBadgeColumn({0, by, ir.Width() - 1, ir.Height() - 1}, 0, this->badge_classes, this->callbacks.GetTypeBadges(item.class_index, item.index), feature, std::nullopt, palette);
403
404 if (this->callbacks.saved.contains(this->callbacks.sel_collection)) {
405 if (this->callbacks.saved.at(this->callbacks.sel_collection).contains(item)) {
407 }
408 }
409 if (this->callbacks.used.contains(item)) {
411 }
412 }
413
414 if (!this->callbacks.IsTypeAvailable(item.class_index, item.index)) {
416 }
417 break;
418 }
419
420 case WID_PW_TYPE_NAME: {
421 StringID str = this->callbacks.GetTypeName(this->callbacks.GetSelectedClass(), this->callbacks.GetSelectedType());
423 break;
424 }
425 }
426}
427
434
435void PickerWindow::DeletePickerCollectionCallback(Window *win, bool confirmed)
436{
437 if (confirmed) {
438 PickerWindow *w = (PickerWindow*)win;
439 w->callbacks.saved.erase(w->callbacks.saved.find(w->callbacks.edit_collection));
440 w->inactive.erase(w->callbacks.edit_collection);
441 w->callbacks.rm_collections.emplace(w->callbacks.edit_collection);
442 w->callbacks.sel_collection = "";
443 w->callbacks.edit_collection.clear();
444 picker_window = w;
447 }
448}
449
451{
452 switch (widget) {
453 /* Class Picker */
454 case WID_PW_CLASS_LIST: {
455 const auto vscroll = this->GetWidget<NWidgetScrollbar>(WID_PW_CLASS_SCROLL);
456 auto it = vscroll->GetScrolledItemFromWidget(this->classes, pt.y, this, WID_PW_CLASS_LIST);
457 if (it == this->classes.end()) return;
458
459 if (_ctrl_pressed) {
460 /* If no collections yet exist, create the default collection. */
461 if (this->callbacks.saved.find(this->callbacks.sel_collection) == this->callbacks.saved.end()) {
462 for (int i = 0; i < this->callbacks.GetTypeCount(*it); i++) {
463 this->callbacks.saved[""].emplace(this->callbacks.GetPickerItem(*it, i));
464 }
466 this->SetDirty();
467 break;
468 }
469
470 /* If the first item is not already saved to the selected collection, add the whole class to the collection. Otherwise remove the class. */
471 auto &collection = this->callbacks.saved.at(this->callbacks.sel_collection);
472 auto first = collection.find(this->callbacks.GetPickerItem(*it, 0));
473 if (first == std::end(collection)) {
474 for (int i = 0; i < this->callbacks.GetTypeCount(*it); i++) {
475 collection.emplace(this->callbacks.GetPickerItem(*it, i));
476 }
477 } else {
478 for (int i = 0; i < this->callbacks.GetTypeCount(*it); i++) {
479 collection.erase(this->callbacks.GetPickerItem(*it, i));
480 }
481 }
483 break;
484 }
485
486 if (this->callbacks.GetSelectedClass() != *it || this->callbacks.mode.Test(PickerFilterMode::All)) {
487 this->callbacks.mode.Reset(PickerFilterMode::All); // Disable showing all.
488 this->callbacks.SetSelectedClass(*it);
490 }
491 SndClickBeep();
492 CloseWindowById(WindowClass::JoinStation, 0);
493 break;
494 }
495
496 case WID_PW_MODE_ALL:
497 case WID_PW_MODE_USED:
499 this->callbacks.mode.Flip(static_cast<PickerFilterMode>(widget - WID_PW_MODE_ALL));
500 if (!this->IsWidgetDisabled(WID_PW_MODE_ALL) && this->callbacks.mode.Test(static_cast<PickerFilterMode>(widget - WID_PW_MODE_ALL))) {
501 /* Enabling used or saved filters automatically enables all. */
502 this->callbacks.mode.Set(PickerFilterMode::All);
503 }
505 SndClickBeep();
506 break;
507
508 case WID_PW_SHRINK:
509 this->callbacks.preview_height = this->preview_height = _ctrl_pressed ? PREVIEW_HEIGHT : std::max(PREVIEW_HEIGHT, this->preview_height - STEP_PREVIEW_HEIGHT);
510 this->InvalidateData({});
511 this->ReInit();
512 break;
513
514 case WID_PW_EXPAND:
515 this->callbacks.preview_height = this->preview_height = _ctrl_pressed ? MAX_PREVIEW_HEIGHT : std::min(MAX_PREVIEW_HEIGHT, this->preview_height + STEP_PREVIEW_HEIGHT);
516 this->InvalidateData({});
517 this->ReInit();
518 break;
519
520 /* Type Picker */
521 case WID_PW_TYPE_ITEM: {
522 int sel = this->GetWidget<NWidgetBase>(widget)->GetParentWidget<NWidgetMatrix>()->GetCurrentElement();
523 assert(sel < (int)this->types.size());
524 const auto &item = this->types[sel];
525
526 if (_ctrl_pressed) {
527 if (this->callbacks.saved.find(this->callbacks.sel_collection) == this->callbacks.saved.end()) {
528 this->callbacks.saved[""].emplace(item);
530 this->SetDirty();
531 break;
532 }
533
534 auto it = this->callbacks.saved.at(this->callbacks.sel_collection).find(item);
535 if (it == std::end(this->callbacks.saved.at(this->callbacks.sel_collection))) {
536 this->callbacks.saved.at(this->callbacks.sel_collection).emplace(item);
537 } else {
538 this->callbacks.saved.at(this->callbacks.sel_collection).erase(it);
539 }
541 break;
542 }
543
544 if (this->callbacks.IsTypeAvailable(item.class_index, item.index)) {
545 this->callbacks.SetSelectedClass(item.class_index);
546 this->callbacks.SetSelectedType(item.index);
547 this->InvalidateData(PickerInvalidation::Position);
548 }
549 SndClickBeep();
550 CloseWindowById(WindowClass::JoinStation, 0);
551 break;
552 }
553
554 case WID_PW_COLEC_LIST: {
555 ShowDropDownList(this, this->BuildCollectionDropDownList(), -1, widget, 0, DropDownOption::Filterable);
556 CloseWindowById(WindowClass::JoinStation, 0);
557 break;
558 }
559
560 case WID_PW_COLEC_ADD:
561 this->callbacks.rename_collection = false;
563 break;
564
566 if (this->callbacks.saved.contains(this->callbacks.sel_collection)) {
567 CloseChildWindows(WindowClass::ConfirmPopupQuery);
568 this->callbacks.edit_collection = this->callbacks.sel_collection;
569 this->callbacks.rename_collection = true;
570 ShowQueryString(this->callbacks.sel_collection, STR_PICKER_COLLECTION_RENAME_QUERY, MAX_LENGTH_GROUP_NAME_CHARS, this, CS_ALPHANUMERAL, QueryStringFlag::LengthIsInChars);
571 }
572 break;
573
575 if (this->callbacks.saved.contains(this->callbacks.sel_collection)) {
576 CloseChildWindows(WindowClass::QueryString);
577 this->callbacks.edit_collection = this->callbacks.sel_collection;
578
579 this->inactive.contains(this->callbacks.sel_collection) ?
580 ShowQuery(GetEncodedString(STR_PICKER_COLLECTION_DELETE_QUERY), GetEncodedString(STR_PICKER_COLLECTION_DELETE_QUERY_DISABLED_TEXT), this, DeletePickerCollectionCallback) :
581 ShowQuery(GetEncodedString(STR_PICKER_COLLECTION_DELETE_QUERY), GetEncodedString(STR_PICKER_COLLECTION_DELETE_QUERY_TEXT), this, DeletePickerCollectionCallback);
582 }
583 break;
584
586 if (this->badge_classes.GetClasses().empty()) break;
587 ShowDropDownList(this, BuildBadgeClassConfigurationList(this->badge_classes, 1, {}, Colours::DarkGreen), -1, widget, 0, DropDownOption::Persist);
588 break;
589
590 default:
591 if (IsInsideMM(widget, this->badge_filters.first, this->badge_filters.second)) {
592 /* Houses have recolours but not related to the company colour and other items depend on gamemode. */
593 PaletteID palette = _game_mode != GameMode::Normal || this->callbacks.GetFeature() == GrfSpecFeature::Houses ? PAL_NONE : GetCompanyPalette(_local_company);
594 ShowDropDownList(this, this->GetWidget<NWidgetBadgeFilter>(widget)->GetDropDownList(palette), -1, widget, 0, DropDownOption::Filterable);
595 }
596 break;
597 }
598}
599
600void PickerWindow::OnQueryTextFinished(std::optional<std::string> str)
601{
602 if (!str.has_value()) return;
603
604 if (!this->callbacks.saved.contains(*str)) {
605 if (this->callbacks.saved.contains(this->callbacks.edit_collection) && this->callbacks.rename_collection) {
606 auto rename_collection = this->callbacks.saved.extract(this->callbacks.edit_collection);
607 rename_collection.key() = *str;
608 this->callbacks.saved.insert(std::move(rename_collection));
609
610 if (this->inactive.contains(this->callbacks.edit_collection)) {
611 this->inactive.erase(this->callbacks.edit_collection);
612 this->inactive.emplace(*str);
613 }
614
615 this->callbacks.rm_collections.emplace(this->callbacks.edit_collection);
616 this->callbacks.edit_collection.clear();
617
618 } else {
619 this->callbacks.saved.insert({*str, {}});
620 }
621 }
622
623 this->callbacks.sel_collection = *str;
624 picker_window = this;
625 SetWidgetsDisabledState(this->callbacks.sel_collection == "" ? true : false, WID_PW_COLEC_RENAME, WID_PW_COLEC_DELETE);
628 }
630}
631
632void PickerWindow::OnDropdownSelect(WidgetID widget, int index, int click_result)
633{
634 switch (widget) {
635 case WID_PW_COLEC_LIST: {
636 auto it = this->collections.begin() + index;
637 if (this->callbacks.sel_collection != *it) {
638 this->callbacks.sel_collection = *it;
640 this->InvalidateData(PickerInvalidation::Position);
641 }
642 SetWidgetsDisabledState(this->callbacks.sel_collection == "" ? true : false, WID_PW_COLEC_RENAME, WID_PW_COLEC_DELETE);
643
644 SndClickBeep();
645 break;
646 }
647
649 bool reopen = HandleBadgeConfigurationDropDownClick(this->callbacks.GetFeature(), 1, index, click_result, this->badge_filter_choices);
650
651 this->ReInit();
652
653 if (reopen) {
654 ReplaceDropDownList(this, BuildBadgeClassConfigurationList(this->badge_classes, 1, {}, Colours::DarkGreen), -1);
655 } else {
656 this->CloseChildWindows(WindowClass::DropdownMenu);
657 }
658
659 /* We need to refresh if a filter is removed. */
661 break;
662 }
663
664 default:
665 if (IsInsideMM(widget, this->badge_filters.first, this->badge_filters.second)) {
666 if (index < 0) {
667 ResetBadgeFilter(this->badge_filter_choices, this->GetWidget<NWidgetBadgeFilter>(widget)->GetBadgeClassID());
668 } else {
669 SetBadgeFilter(this->badge_filter_choices, BadgeID(index));
670 }
672 }
673 break;
674 }
675}
676
677void PickerWindow::OnInvalidateData(int data, bool gui_scope)
678{
679 if (!gui_scope) return;
680
681 PickerInvalidations pi(data);
682
684 if (this->badge_filter_choices.empty()) {
685 this->type_string_filter.bdf.reset();
686 } else {
687 this->type_string_filter.bdf.emplace(this->badge_filter_choices);
688 }
689 this->types.SetFilterState(!type_string_filter.IsEmpty() || type_string_filter.bdf.has_value());
690 }
691
692 if (pi.Test(PickerInvalidation::Class)) this->classes.ForceRebuild();
693 if (pi.Test(PickerInvalidation::Type)) this->types.ForceRebuild();
694 if (pi.Test(PickerInvalidation::Collection)) this->collections.ForceRebuild();
695
696 this->BuildPickerClassList();
697 if (pi.Test(PickerInvalidation::Validate)) this->EnsureSelectedClassIsValid();
698 if (pi.Test(PickerInvalidation::Position)) this->EnsureSelectedClassIsVisible();
699
700 this->BuildPickerTypeList();
701 if (pi.Test(PickerInvalidation::Validate)) this->EnsureSelectedTypeIsValid();
702 if (pi.Test(PickerInvalidation::Position)) this->EnsureSelectedTypeIsVisible();
703
705
706 if (this->has_type_picker) {
710 }
711
714}
715
717{
718 switch (hotkey) {
720 /* Cycle between the two edit boxes. */
721 if (this->has_type_picker && (this->nested_focus == nullptr || this->nested_focus->GetIndex() != WID_PW_TYPE_FILTER)) {
723 } else if (this->has_class_picker && (this->nested_focus == nullptr || this->nested_focus->GetIndex() != WID_PW_CLASS_FILTER)) {
725 }
726 SetFocusedWindow(this);
727 return EventState::Handled;
728
729 default:
731 }
732}
733
735{
736 switch (wid) {
738 this->class_string_filter.SetFilterTerm(this->class_editbox.text.GetText());
739 this->classes.SetFilterState(!class_string_filter.IsEmpty());
740 this->InvalidateData(PickerInvalidation::Class);
741 break;
742
744 this->type_string_filter.SetFilterTerm(this->type_editbox.text.GetText());
745 if (!type_string_filter.IsEmpty()) {
746 this->type_string_filter.btf.emplace(this->type_string_filter, this->callbacks.GetFeature());
747 } else {
748 this->type_string_filter.btf.reset();
749 }
751 break;
752
753 default:
754 break;
755 }
756}
757
760{
761 if (!this->classes.NeedRebuild()) return;
762
763 int count = this->callbacks.GetClassCount();
764
765 this->classes.clear();
766 this->classes.reserve(count);
767
768 bool filter_used = this->callbacks.mode.Test(PickerFilterMode::Used);
769 bool filter_saved = this->callbacks.mode.Test(PickerFilterMode::Saved);
770 for (int i = 0; i < count; i++) {
771 if (this->callbacks.GetClassName(i) == INVALID_STRING_ID) continue;
772 if (filter_used && std::none_of(std::begin(this->callbacks.used), std::end(this->callbacks.used), [i](const PickerItem &item) { return item.class_index == i; })) continue;
773 if (filter_saved && this->callbacks.saved.find(this->callbacks.sel_collection) == this->callbacks.saved.end()) continue;
774 if (filter_saved && std::none_of(std::begin(this->callbacks.saved.at(this->callbacks.sel_collection)), std::end(this->callbacks.saved.at(this->callbacks.sel_collection)), [i](const PickerItem &item) { return item.class_index == i; })) continue;
775 this->classes.emplace_back(i);
776 }
777
778 this->classes.Filter(this->class_string_filter);
779 this->classes.RebuildDone();
780 this->classes.Sort();
781
782 if (!this->has_class_picker) return;
783 this->GetScrollbar(WID_PW_CLASS_SCROLL)->SetCount(this->classes.size());
784}
785
786void PickerWindow::EnsureSelectedClassIsValid()
787{
788 int class_index = this->callbacks.GetSelectedClass();
789 if (std::binary_search(std::begin(this->classes), std::end(this->classes), class_index)) return;
790
791 if (!this->classes.empty()) {
792 class_index = this->classes.front();
793 } else {
794 /* Classes can be empty if filters are enabled, find the first usable class. */
795 int count = this->callbacks.GetClassCount();
796 for (int i = 0; i < count; i++) {
797 if (this->callbacks.GetClassName(i) == INVALID_STRING_ID) continue;
798 class_index = i;
799 break;
800 }
801 }
802
803 this->callbacks.SetSelectedClass(class_index);
804 this->types.ForceRebuild();
805}
806
807void PickerWindow::EnsureSelectedClassIsVisible()
808{
809 if (!this->has_class_picker) return;
810 if (this->classes.empty()) return;
811
812 auto it = std::ranges::find(this->classes, this->callbacks.GetSelectedClass());
813 if (it == std::end(this->classes)) return;
814
815 int pos = static_cast<int>(std::distance(std::begin(this->classes), it));
817}
818
819void PickerWindow::RefreshUsedTypeList()
820{
821 if (!this->has_type_picker) return;
822
823 this->callbacks.used.clear();
824 this->callbacks.FillUsedItems(this->callbacks.used);
825 this->InvalidateData(PickerInvalidation::Type);
826}
827
830{
831 if (!this->types.NeedRebuild()) return;
832
833 this->types.clear();
834
835 bool show_all = this->callbacks.mode.Test(PickerFilterMode::All);
836 bool filter_used = this->callbacks.mode.Test(PickerFilterMode::Used);
837 bool filter_saved = this->callbacks.mode.Test(PickerFilterMode::Saved);
838 int cls_id = this->callbacks.GetSelectedClass();
839
840 if (filter_used) {
841 /* Showing used items. May also be filtered by saved items. */
842 this->types.reserve(this->callbacks.used.size());
843 for (const PickerItem &item : this->callbacks.used) {
844 if (!show_all && item.class_index != cls_id) continue;
845 if (this->callbacks.GetTypeName(item.class_index, item.index) == INVALID_STRING_ID) continue;
846 this->types.emplace_back(item);
847 }
848 } else if (filter_saved && this->callbacks.saved.contains(this->callbacks.sel_collection)) {
849 /* Showing only saved items. */
850 this->types.reserve(std::size(this->callbacks.saved.at(this->callbacks.sel_collection)));
851 for (const PickerItem &item : this->callbacks.saved.at(this->callbacks.sel_collection)) {
852 /* The used list may contain items that aren't currently loaded, skip these. */
853 if (item.class_index == -1) continue;
854 if (!show_all && item.class_index != cls_id) continue;
855 if (this->callbacks.GetTypeName(item.class_index, item.index) == INVALID_STRING_ID) continue;
856 this->types.emplace_back(item);
857 }
858 } else if (show_all) {
859 /* Reserve enough space for everything. */
860 int total = 0;
861 for (int class_index : this->classes) total += this->callbacks.GetTypeCount(class_index);
862 this->types.reserve(total);
863 /* Add types in all classes. */
864 for (int class_index : this->classes) {
865 int count = this->callbacks.GetTypeCount(class_index);
866 for (int i = 0; i < count; i++) {
867 if (this->callbacks.GetTypeName(class_index, i) == INVALID_STRING_ID) continue;
868 this->types.emplace_back(this->callbacks.GetPickerItem(class_index, i));
869 }
870 }
871 } else {
872 /* Add types in only the selected class. */
873 if (cls_id >= 0 && cls_id < this->callbacks.GetClassCount()) {
874 int count = this->callbacks.GetTypeCount(cls_id);
875 this->types.reserve(count);
876 for (int i = 0; i < count; i++) {
877 if (this->callbacks.GetTypeName(cls_id, i) == INVALID_STRING_ID) continue;
878 this->types.emplace_back(this->callbacks.GetPickerItem(cls_id, i));
879 }
880 }
881 }
882
883 this->types.Filter(this->type_string_filter);
884 this->types.RebuildDone();
885 this->types.Sort();
886
887 if (!this->has_type_picker) return;
888 this->GetWidget<NWidgetMatrix>(WID_PW_TYPE_MATRIX)->SetCount(static_cast<int>(this->types.size()));
889}
890
891void PickerWindow::EnsureSelectedTypeIsValid()
892{
893 int class_index = this->callbacks.GetSelectedClass();
894 int index = this->callbacks.GetSelectedType();
895 if (std::any_of(std::begin(this->types), std::end(this->types), [class_index, index](const auto &item) { return item.class_index == class_index && item.index == index; })) return;
896
897 if (!this->types.empty()) {
898 class_index = this->types.front().class_index;
899 index = this->types.front().index;
900 } else {
901 /* Types can be empty if filters are enabled, find the first usable type. */
902 int count = this->callbacks.GetTypeCount(class_index);
903 for (int i = 0; i < count; i++) {
904 if (this->callbacks.GetTypeName(class_index, i) == INVALID_STRING_ID) continue;
905 index = i;
906 break;
907 }
908 }
909 this->callbacks.SetSelectedClass(class_index);
910 this->callbacks.SetSelectedType(index);
911}
912
913void PickerWindow::EnsureSelectedTypeIsVisible()
914{
915 if (!this->has_type_picker) return;
916 if (this->types.empty()) {
917 this->GetWidget<NWidgetMatrix>(WID_PW_TYPE_MATRIX)->SetClicked(-1);
918 return;
919 }
920
921 int class_index = this->callbacks.GetSelectedClass();
922 int index = this->callbacks.GetSelectedType();
923
924 auto it = std::ranges::find_if(this->types, [class_index, index](const auto &item) { return item.class_index == class_index && item.index == index; });
925 int pos = -1;
926 if (it != std::end(this->types)) {
927 pos = static_cast<int>(std::distance(std::begin(this->types), it));
928 }
929
930 this->GetWidget<NWidgetMatrix>(WID_PW_TYPE_MATRIX)->SetClicked(pos);
931}
932
935{
936 if (!this->collections.NeedRebuild()) return;
937
938 int count = std::max(static_cast<int>(this->callbacks.saved.size()), 1);
939
940 this->collections.clear();
941 this->collections.reserve(count);
942
943 if (this->callbacks.saved.find("") == this->callbacks.saved.end()) {
944 this->collections.emplace_back("");
945 }
946
947 for (auto it = this->callbacks.saved.begin(); it != this->callbacks.saved.end(); it++) {
948 this->collections.emplace_back(it->first);
949 }
950
951 this->collections.RebuildDone();
952 this->collections.Sort();
953
954 if (!this->has_class_picker) return;
955}
956
958std::unique_ptr<NWidgetBase> MakePickerClassWidgets()
959{
960 static constexpr std::initializer_list<NWidgetPart> picker_class_widgets = {
964 NWidget(WWT_EDITBOX, Colours::DarkGreen, WID_PW_CLASS_FILTER), SetMinimalSize(144, 0), SetPadding(2), SetFill(1, 0), SetStringTip(STR_LIST_FILTER_OSKTITLE, STR_LIST_FILTER_TOOLTIP),
965 EndContainer(),
966 /* Collection view */
969 NWidget(WWT_PUSHTXTBTN, Colours::DarkGreen, WID_PW_COLEC_ADD), SetFill(1, 0), SetResize(1, 0), SetStringTip(STR_PICKER_COLLECTION_ADD, STR_PICKER_COLLECTION_ADD_TOOLTIP),
970 NWidget(WWT_PUSHTXTBTN, Colours::DarkGreen, WID_PW_COLEC_RENAME), SetFill(1, 0), SetResize(1, 0), SetStringTip(STR_PICKER_COLLECTION_RENAME, STR_PICKER_COLLECTION_RENAME_TOOLTIP),
971 NWidget(WWT_PUSHTXTBTN, Colours::DarkGreen, WID_PW_COLEC_DELETE), SetFill(1, 0), SetResize(1, 0), SetStringTip(STR_PICKER_COLLECTION_DELETE, STR_PICKER_COLLECTION_DELETE_TOOLTIP),
972 EndContainer(),
973 NWidget(WWT_DROPDOWN, Colours::DarkGreen, WID_PW_COLEC_LIST), SetMinimalSize(144, 12), SetFill(0, 1), SetResize(1, 0), SetToolTip(STR_PICKER_SELECT_COLLECTION_TOOLTIP),
974 EndContainer(),
975 /* Class view */
981 EndContainer(),
983 EndContainer(),
984 EndContainer(),
985 EndContainer(),
986 EndContainer(),
987 };
988
989 return MakeNWidgets(picker_class_widgets, nullptr);
990}
991
993std::unique_ptr<NWidgetBase> MakePickerTypeWidgets()
994{
995 static constexpr std::initializer_list<NWidgetPart> picker_type_widgets = {
1000 NWidget(WWT_EDITBOX, Colours::DarkGreen, WID_PW_TYPE_FILTER), SetPadding(2), SetResize(1, 0), SetFill(1, 0), SetStringTip(STR_LIST_FILTER_OSKTITLE, STR_LIST_FILTER_TOOLTIP),
1001 EndContainer(),
1002 NWidget(WWT_IMGBTN, Colours::DarkGreen, WID_PW_CONFIGURE_BADGES), SetAspect(WidgetDimensions::ASPECT_UP_DOWN_BUTTON), SetResize(0, 0), SetFill(0, 1), SetSpriteTip(SPR_EXTRA_MENU, STR_BADGE_CONFIG_MENU_TOOLTIP),
1003 EndContainer(),
1005 EndContainer(),
1007 NWidget(WWT_TEXTBTN, Colours::DarkGreen, WID_PW_MODE_ALL), SetFill(1, 0), SetResize(1, 0), SetStringTip(STR_PICKER_MODE_ALL, STR_PICKER_MODE_ALL_TOOLTIP),
1008 NWidget(WWT_TEXTBTN, Colours::DarkGreen, WID_PW_MODE_USED), SetFill(1, 0), SetResize(1, 0), SetStringTip(STR_PICKER_MODE_USED, STR_PICKER_MODE_USED_TOOLTIP),
1009 NWidget(WWT_TEXTBTN, Colours::DarkGreen, WID_PW_MODE_SAVED), SetFill(1, 0), SetResize(1, 0), SetStringTip(STR_PICKER_MODE_SAVED, STR_PICKER_MODE_SAVED_TOOLTIP),
1010 NWidget(WWT_PUSHTXTBTN, Colours::DarkGreen, WID_PW_SHRINK), SetAspect(WidgetDimensions::ASPECT_UP_DOWN_BUTTON), SetStringTip(STR_PICKER_PREVIEW_SHRINK, STR_PICKER_PREVIEW_SHRINK_TOOLTIP),
1011 NWidget(WWT_PUSHTXTBTN, Colours::DarkGreen, WID_PW_EXPAND), SetAspect(WidgetDimensions::ASPECT_UP_DOWN_BUTTON), SetStringTip(STR_PICKER_PREVIEW_EXPAND, STR_PICKER_PREVIEW_EXPAND_TOOLTIP),
1012 EndContainer(),
1017 EndContainer(),
1018 EndContainer(),
1019 EndContainer(),
1021 EndContainer(),
1025 EndContainer(),
1027 EndContainer(),
1028 EndContainer(),
1029 EndContainer(),
1030 };
1031
1032 return MakeNWidgets(picker_type_widgets, nullptr);
1033}
1034
1035void InvalidateAllPickerWindows()
1036{
1037 InvalidateWindowClassesData(WindowClass::BuildBusStation, PickerWindow::PICKER_INVALIDATION_ALL);
1038 InvalidateWindowClassesData(WindowClass::BuildTruckStation, PickerWindow::PICKER_INVALIDATION_ALL);
1039 InvalidateWindowClassesData(WindowClass::JoinStation, PickerWindow::PICKER_INVALIDATION_ALL);
1040 InvalidateWindowClassesData(WindowClass::BuildWaypoint, PickerWindow::PICKER_INVALIDATION_ALL);
1041 InvalidateWindowClassesData(WindowClass::BuildObject, PickerWindow::PICKER_INVALIDATION_ALL);
1042 InvalidateWindowClassesData(WindowClass::BuildHouse, PickerWindow::PICKER_INVALIDATION_ALL);
1043}
Class for backupping variables and making sure they are restored later.
constexpr bool Test(Tvalue_type value) const
Test if the value-th bit is set.
Matrix container with implicitly equal sized (virtual) sub-widgets.
Class for PickerClassWindow to collect information and retain state.
Definition picker_gui.h:49
virtual ~PickerCallbacks()
Ensure the destructor of the sub classes are called as well.
virtual int GetSelectedClass() const =0
Get the index of the selected class.
std::string edit_collection
Collection to rename or delete.
Definition picker_gui.h:218
const std::string ini_group
Ini Group for saving favourites.
Definition picker_gui.h:214
std::string sel_collection
Currently selected collection of saved items.
Definition picker_gui.h:217
virtual StringID GetTypeName(int cls_id, int id) const =0
Get the item name of a type.
virtual StringID GetClassName(int id) const =0
Get the name of a class.
virtual std::span< const BadgeID > GetTypeBadges(int cls_id, int id) const =0
Get the item's badges of a type.
std::set< std::string > rm_collections
Set of removed or renamed collections for updating ini file.
Definition picker_gui.h:219
std::map< std::string, std::set< PickerItem > > saved
Set of saved collections of items.
Definition picker_gui.h:224
virtual int GetSelectedType() const =0
Get the selected type.
Base class for windows opened from a toolbar.
Definition window_gui.h:998
void Close(int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
Definition window.cpp:3622
static constexpr int MAX_PREVIEW_HEIGHT
Maximum height of each preview button.
Definition picker_gui.h:345
static constexpr int PREVIEW_WIDTH
Width of each preview button.
Definition picker_gui.h:339
void Close(int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
int preview_height
Height of preview images.
Definition picker_gui.h:352
bool has_class_picker
Set if this window has a class picker 'component'.
Definition picker_gui.h:349
static constexpr int PREVIEW_HEIGHT
Height of each preview button.
Definition picker_gui.h:340
void DrawWidget(const Rect &r, WidgetID widget) const override
Draw the contents of a nested widget.
@ Position
Update scroll positions.
Definition picker_gui.h:329
@ Class
Refresh the class list.
Definition picker_gui.h:326
@ Type
Refresh the type list.
Definition picker_gui.h:327
@ Validate
Validate selected item.
Definition picker_gui.h:330
@ Collection
Refresh the collection list.
Definition picker_gui.h:328
@ Filter
Update filter state.
Definition picker_gui.h:331
bool has_collection_picker
Set if this window has a collection picker 'component'.
Definition picker_gui.h:351
static constexpr int PREVIEW_LEFT
Offset from left edge to draw preview.
Definition picker_gui.h:341
PickerTypeList types
List of types.
Definition picker_gui.h:392
std::set< std::string > inactive
Set of collections with inactive items.
Definition picker_gui.h:353
QueryString class_editbox
Filter editbox.
Definition picker_gui.h:386
bool has_type_picker
Set if this window has a type picker 'component'.
Definition picker_gui.h:350
void BuildPickerClassList()
Builds the filter list of classes.
void BuildPickerCollectionList()
Builds the filter list of collections.
void OnEditboxChanged(WidgetID wid) override
The text in an editbox has been edited.
void OnQueryTextFinished(std::optional< std::string > str) override
The query window opened from this window has closed.
void BuildPickerTypeList()
Builds the filter list of types.
void OnDropdownSelect(WidgetID widget, int index, int click_result) override
A dropdown option associated to this window has been selected.
void OnResize() override
Called after the window got resized.
static constexpr int PREVIEW_BOTTOM
Offset from bottom edge to draw preview.
Definition picker_gui.h:342
@ PCWHK_FOCUS_FILTER_BOX
Focus the edit box for editing the filter string.
Definition picker_gui.h:373
std::string GetWidgetString(WidgetID widget, StringID stringid) const override
Get the raw string for a widget.
PickerCollectionList collections
List of collections.
Definition picker_gui.h:401
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
QueryString type_editbox
Filter editbox.
Definition picker_gui.h:394
EventState OnHotkey(int hotkey) override
A hotkey has been pressed.
EnumBitSet< PickerInvalidation, uint8_t > PickerInvalidations
Bitset of Pickerinvalidation elements.
Definition picker_gui.h:335
void OnInit() override
Notification that the nested widget tree gets initialized.
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.
PickerClassList classes
List of classes.
Definition picker_gui.h:384
static constexpr int STEP_PREVIEW_HEIGHT
Step for decreasing or increase preview button height.
Definition picker_gui.h:344
void SetCount(size_t num)
Sets the number of elements in the list.
void SetCapacityFromWidget(Window *w, WidgetID widget, int padding=0)
Set capacity of visible elements from the size and resize properties of a widget.
Definition widget.cpp:2536
void ScrollTowards(size_type position)
Scroll towards the given position; if the item is visible nothing happens, otherwise it will be shown...
static WidgetDimensions scaled
Widget dimensions scaled for current zoom level.
Definition window_gui.h:30
static const WidgetDimensions unscaled
Unscaled widget dimensions.
Definition window_gui.h:95
PaletteID GetCompanyPalette(CompanyID company)
Get the palette for recolouring with a company colour.
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Functions related to companies.
std::unique_ptr< DropDownListItem > MakeDropDownListStringItem(StringID str, int value, bool masked, bool shaded)
Creates new DropDownListStringItem.
Definition dropdown.cpp:49
void ShowDropDownList(Window *w, DropDownList &&list, int selected, WidgetID button, uint width, DropDownOptions options, std::string *const persistent_filter_text)
Show a drop down list.
Definition dropdown.cpp:587
Functions 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.
@ Persist
Set if this dropdown should stay open after an option is selected.
@ Filterable
Set if the dropdown is filterable.
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Definition fontcache.cpp:88
@ Centre
Align to the centre.
@ Middle
Align to the middle.
Dimension GetSpriteSize(SpriteID sprid, Point *offset, ZoomLevel zoom)
Get the size of a sprite.
Definition gfx.cpp:971
bool _ctrl_pressed
Is Ctrl pressed?
Definition gfx.cpp:39
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:1037
void GfxFillRect(int left, int top, int right, int bottom, const std::variant< PixelColour, PaletteID > &colour, FillRectMode mode)
Applies a certain FillRectMode-operation to a rectangle [left, right] x [top, bottom] on the screen.
Definition gfx.cpp:116
int DrawString(int left, int right, int top, std::string_view str, ExtendedTextColour colour, Alignment align, bool underline, FontSize fontsize)
Draw string, possibly truncated to make it fit in its allocated space.
Definition gfx.cpp:668
bool FillDrawPixelInfo(DrawPixelInfo *n, int left, int top, int width, int height)
Set up a clipping area for only drawing into a certain area.
Definition gfx.cpp:1572
@ Normal
Index of the normal font in the font tables.
Definition gfx_type.h:249
uint32_t PaletteID
The number of the palette.
Definition gfx_type.h:18
@ Invalid
Invalid marker.
Definition gfx_type.h:302
@ Grey
Grey.
Definition gfx_type.h:299
@ DarkGreen
Dark green.
Definition gfx_type.h:292
@ White
White colour.
Definition gfx_type.h:330
@ Gold
Gold colour.
Definition gfx_type.h:320
@ Black
Black colour.
Definition gfx_type.h:334
@ Checker
Draw only every second pixel, used for greying-out.
Definition gfx_type.h:393
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 SetAspect(float ratio, AspectFlags flags=AspectFlag::ResizeX)
Widget part function for setting the aspect ratio.
constexpr NWidgetPart SetMinimalTextLines(uint8_t lines, uint8_t spacing, FontSize size=FontSize::Normal)
Widget part function for setting the minimal text lines.
constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
std::unique_ptr< NWidgetBase > MakeNWidgets(std::span< const NWidgetPart > nwid_parts, std::unique_ptr< NWidgetBase > &&container)
Construct a nested widget tree from an array of parts.
Definition widget.cpp:3419
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 NWidget(WidgetType tp, Colours col, WidgetID idx=INVALID_WIDGET)
Widget part function for starting a new 'real' widget.
constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
Widget part function for setting the resize step.
void SetDirty() const
Mark entire window as dirty (in need of re-paint).
Definition window.cpp:972
static const uint MAX_LENGTH_GROUP_NAME_CHARS
The maximum length of a group name in characters including '\0'.
Definition group_type.h:20
GUI functions that shouldn't be here.
Hotkey related functions.
Types related to reading/writing '*.ini' files.
#define Point
Macro that prevents name conflicts between included headers.
constexpr bool IsInsideMM(const size_t x, const size_t min, const size_t max) noexcept
Checks if a value is in an interval.
void ShowQuery(EncodedString &&caption, EncodedString &&message, Window *parent, QueryCallbackProc *callback, bool focus)
Show a confirmation window with standard 'yes' and 'no' buttons The window is aligned to the centre o...
void ShowQueryString(std::string_view str, StringID caption, uint maxsize, Window *parent, CharSetFilter afilter, QueryStringFlags flags)
Show a query popup window with a textbox in it.
GrfSpecFeature
Definition newgrf.h:78
@ Houses
Houses feature.
Definition newgrf.h:86
Functions related to NewGRF badges.
Functions related to NewGRF badge configuration.
void DrawBadgeColumn(Rect r, int column_group, const GUIBadgeClasses &gui_classes, std::span< const BadgeID > badges, GrfSpecFeature feature, std::optional< TimerGameCalendar::Date > introduction_date, PaletteID remap)
Draw a badge column group.
std::pair< WidgetID, WidgetID > AddBadgeDropdownFilters(Window *window, WidgetID container_id, WidgetID widget, Colours colour, GrfSpecFeature feature)
Add badge drop down filter widgets.
bool HandleBadgeConfigurationDropDownClick(GrfSpecFeature feature, uint columns, int result, int click_result, BadgeFilterChoices &choices)
Handle the badge configuration drop down selection.
void SetBadgeFilter(BadgeFilterChoices &choices, BadgeID badge_index)
Set badge filter choice for a class.
void ResetBadgeFilter(BadgeFilterChoices &choices, BadgeClassID badge_class_index)
Reset badge filter choice for a class.
GUI functions related to NewGRF badges.
Label< struct GrfIDTag > GrfID
The unique identifier of a NewGRF.
Definition newgrf_type.h:17
@ Normal
Playing a game.
Definition openttd.h:20
PixelColour GetColourGradient(Colours colour, Shade shade)
Get colour gradient palette index.
Definition palette.cpp:393
@ Darker
Darker colour shade.
PickerWindow * picker_window
Allow the collection sorter to test if the collection has inactive items.
static const std::initializer_list< PickerClassList::FilterFunction *const > _class_filter_funcs
Filter functions of the PickerClassList.
static bool TypeIDSorter(PickerItem const &a, PickerItem const &b)
Sort types by id.
static void PickerLoadConfig(const IniFile &ini, PickerCallbacks &callbacks)
Load favourites of a picker from config.
static const std::initializer_list< PickerTypeList::SortFunction *const > _type_sorter_funcs
Sort functions of the PickerTypeList.
static bool ClassIDSorter(int const &a, int const &b)
Sort classes by id.
static const std::initializer_list< PickerClassList::SortFunction *const > _class_sorter_funcs
Sort functions of the PickerClassList.
std::unique_ptr< NWidgetBase > MakePickerClassWidgets()
Create nested widgets for the class picker widgets.
static bool TypeTagNameFilter(PickerItem const *item, PickerFilterData &filter)
Filter types by class name.
static const std::initializer_list< PickerTypeList::FilterFunction *const > _type_filter_funcs
Filter functions of the PickerTypeList.
static const std::initializer_list< PickerCollectionList::SortFunction *const > _collection_sorter_funcs
Sort functions of the PickerCollectionList.
static bool CollectionIDSorter(std::string const &a, std::string const &b)
Sort collections by id.
static void PickerSaveConfig(IniFile &ini, const PickerCallbacks &callbacks)
Save favourites of a picker to config.
std::unique_ptr< NWidgetBase > MakePickerTypeWidgets()
Create nested widgets for the type picker widgets.
static bool ClassTagNameFilter(int const *item, PickerFilterData &filter)
Filter classes by class name.
Functions/types etc.
PickerFilterMode
Picker filter mode.
Definition picker_gui.h:26
@ Used
Show used types.
Definition picker_gui.h:28
@ Saved
Show saved types.
Definition picker_gui.h:29
@ All
Show all classes.
Definition picker_gui.h:27
Types related to the picker widgets.
@ WID_PW_MODE_SAVED
Toggle showing only saved types.
@ WID_PW_CLASS_FILTER
Editbox filter.
@ WID_PW_TYPE_SCROLL
Scrollbar for the matrix.
@ WID_PW_EXPAND
Button to increase preview image height.
@ WID_PW_CONFIGURE_BADGES
Button to configure badges.
@ WID_PW_TYPE_ITEM
A single item.
@ WID_PW_CLASS_LIST
List of classes.
@ WID_PW_TYPE_FILTER
Text filter.
@ WID_PW_MODE_USED
Toggle showing only used types.
@ WID_PW_BADGE_FILTER
Container for dropdown badge filters. Must be last in this list.
@ WID_PW_TYPE_MATRIX
Matrix with items.
@ WID_PW_COLEC_DELETE
Button to delete a collection.
@ WID_PW_CLASS_SEL
Stack to hide the class picker.
@ WID_PW_MODE_ALL
Toggle "Show all" filter mode.
@ WID_PW_CLASS_SCROLL
Scrollbar for list of classes.
@ WID_PW_SHRINK
Button to reduce preview image height.
@ WID_PW_COLEC_LIST
List of collections.
@ WID_PW_TYPE_SEL
Stack to hide the type picker.
@ WID_PW_TYPE_NAME
Name of selected item.
@ WID_PW_TYPE_RESIZE
Type resize handle.
@ WID_PW_COLEC_ADD
Button to create a new collections.
@ WID_PW_COLEC_RENAME
Button to rename a collections.
Base for the GUIs that have an edit box in them.
A number of safeguards to prevent using unsafe methods.
Types related to global configuration settings.
Base types for having sorted lists in GUIs.
void SndClickBeep()
Play a beep sound for a click event if enabled in settings.
Definition sound.cpp:254
Functions related to sound.
Types related to sounds.
This file contains all sprite-related enums and defines.
static const PaletteID PALETTE_TO_GREEN
Definition sprites.h:1768
static const SpriteID SPR_BLOT
Coloured circle (used for server compatibility and installed content).
Definition sprites.h:72
static const PaletteID PALETTE_TO_YELLOW
Definition sprites.h:1765
Definition of base types and functions in a cross-platform compatible way.
bool ConvertHexToBytes(std::string_view hex, std::span< uint8_t > bytes)
Convert a hex-string to a byte-array, while validating it was actually hex.
Definition string.cpp:572
std::string FormatArrayAsHex(std::span< const uint8_t > data)
Format a byte array into a continuous hex string.
Definition string.cpp:77
int StrNaturalCompare(std::string_view s1, std::string_view s2, bool ignore_garbage_at_front)
Compares two strings using case insensitive natural sort.
Definition string.cpp:429
Functions related to low-level strings.
@ CS_ALPHANUMERAL
Both numeric and alphabetic and spaces and stuff.
Definition string_type.h:25
Searching and filtering using a stringterm.
EncodedString GetEncodedString(StringID str)
Encode a string with no parameters into an encoded string.
Definition strings.cpp:90
std::string GetString(StringID string)
Resolve the given StringID into a std::string with formatting but no parameters.
Definition strings.cpp:424
Functions related to OTTD's strings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
static const StringID INVALID_STRING_ID
Constant representing an invalid string (16bit in case it is used in savegames).
static const int MAX_CHAR_LENGTH
Max. length of UTF-8 encoded unicode character.
Class to backup a specific variable and restore it upon destruction of this object to prevent stack v...
T y
Y coordinate.
Dimensions (a width and height) of a rectangle in 2D.
Data about how and where to blit pixels.
Definition gfx_type.h:157
Ini file that supports both loading and saving.
Definition ini_type.h:87
A group within an ini file.
Definition ini_type.h:34
void Clear()
Clear all items in the group.
Definition ini_load.cpp:96
std::string name
name of group
Definition ini_type.h:37
IniItem & CreateItem(std::string_view name)
Create an item with the given name.
Definition ini_load.cpp:79
std::list< IniItem > items
all items in the group
Definition ini_type.h:35
A single "line" in an ini file.
Definition ini_type.h:23
std::string name
The name of this item.
Definition ini_type.h:24
std::list< IniGroup > groups
all groups in the ini
Definition ini_type.h:53
void RemoveGroup(std::string_view name)
Remove the group with the given name.
Definition ini_load.cpp:173
IniGroup & GetOrCreateGroup(std::string_view name)
Get the group with the given name, and if it doesn't exist create a new group.
Definition ini_load.cpp:145
const PickerCallbacks * callbacks
Callbacks for filter functions to access to callbacks.
Definition picker_gui.h:313
static const int ACTION_CLEAR
Clear editbox.
Specification of a rectangle with absolute coordinates of all edges.
int Width() const
Get width of Rect.
Rect Shrink(int s) const
Copy and shrink Rect by s pixels.
int Height() const
Get height of Rect.
void ResetState()
Reset the matching state to process a new item.
bool GetState() const
Get the matching state of the current item.
High level window description.
Definition window_gui.h:172
Number to differentiate different windows of the same class.
Data structure for an opened window.
Definition window_gui.h:273
void ReInit(int rx=0, int ry=0, bool reposition=false)
Re-initialize a window, and optionally change its size.
Definition window.cpp:984
void CloseChildWindows(WindowClass wc=WindowClass::Invalid) const
Close all children a window might have in a head-recursive manner.
Definition window.cpp:1081
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition window.cpp:1814
std::map< WidgetID, QueryString * > querystrings
QueryString associated to WWT_EDITBOX widgets.
Definition window_gui.h:320
virtual std::string GetWidgetString(WidgetID widget, StringID stringid) const
Get the raw string for a widget.
Definition window.cpp:510
ResizeInfo resize
Resize information.
Definition window_gui.h:314
void SetWidgetsDisabledState(bool disab_stat, Args... widgets)
Sets the enabled/disabled status of a list of widgets.
Definition window_gui.h:515
void CreateNestedTree()
Perform the first part of the initialization of a nested widget tree.
Definition window.cpp:1804
bool SetFocusedWidget(WidgetID widget_index)
Set focus within this window to the given widget.
Definition window.cpp:491
bool IsWidgetLowered(WidgetID widget_index) const
Gets the lowered state of a widget.
Definition window_gui.h:491
bool IsWidgetDisabled(WidgetID widget_index) const
Gets the enabled/disabled status of a widget.
Definition window_gui.h:410
void SetWidgetLoweredState(WidgetID widget_index, bool lowered_stat)
Sets the lowered/raised status of a widget.
Definition window_gui.h:441
const NWidgetCore * nested_focus
Currently focused nested widget, or nullptr if no nested widget has focus.
Definition window_gui.h:319
WidgetLookup widget_lookup
Indexed access to the nested widget tree. Do not access directly, use Window::GetWidget() instead.
Definition window_gui.h:322
const NWID * GetWidget(WidgetID widnum) const
Get the nested widget with number widnum from the nested widget tree.
Definition window_gui.h:989
const Scrollbar * GetScrollbar(WidgetID widnum) const
Return the Scrollbar to a widget index.
Definition window.cpp:319
void SetWidgetDisabledState(WidgetID widget_index, bool disab_stat)
Sets the enabled/disabled status of a widget.
Definition window_gui.h:381
std::unique_ptr< NWidgetBase > nested_root
Root of the nested tree.
Definition window_gui.h:321
int width
width of the window (number of pixels to the right in x direction)
Definition window_gui.h:311
WindowNumber window_number
Window number within the window class.
Definition window_gui.h:302
@ LengthIsInChars
the length of the string is counted in characters
Definition textbuf_gui.h:21
static RectPadding ScaleGUITrad(const RectPadding &r)
Scale a RectPadding to GUI zoom level.
Definition widget.cpp:49
Definitions about widgets.
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
@ WWT_IMGBTN
(Toggle) Button with image
Definition widget_type.h:41
@ WWT_EDITBOX
a textbox for typing
Definition widget_type.h:62
@ NWID_HORIZONTAL
Horizontal container.
Definition widget_type.h:66
@ WWT_TEXTBTN
(Toggle) Button with text
Definition widget_type.h:44
@ WWT_PANEL
Simple depressed panel.
Definition widget_type.h:39
@ WWT_MATRIX
Grid of rows and columns.
Definition widget_type.h:50
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition widget_type.h:76
@ NWID_VERTICAL
Vertical container.
Definition widget_type.h:68
@ WWT_EMPTY
Empty widget, place holder to reserve space in widget tree.
Definition widget_type.h:37
@ WWT_RESIZEBOX
Resize box (normally at bottom-right of a window).
Definition widget_type.h:59
@ NWID_MATRIX
Matrix container.
Definition widget_type.h:69
@ WWT_DROPDOWN
Drop down list.
Definition widget_type.h:61
@ NWID_SELECTION
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition widget_type.h:71
@ SZSP_HORIZONTAL
Display plane with zero size vertically, and filling and resizing horizontally.
@ SZSP_VERTICAL
Display plane with zero size horizontally, and filling and resizing vertically.
NWidContainerFlag
Nested widget container flags,.
@ EqualSize
Containers should keep all their (resizing) children equally large.
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:1201
void SetFocusedWindow(Window *w)
Set the window that has the focus.
Definition window.cpp:427
void InvalidateWindowClassesData(WindowClass cls, int data, bool gui_scope)
Mark window data of all windows of a given class as invalid (in need of re-computing) Note that by de...
Definition window.cpp:3333
Window functions not directly related to making/drawing windows.
Functions, definitions and such used only by the GUI.
Types related to windows.
int WidgetID
Widget ID.
Definition window_type.h:21
EventState
State of handling an event.
@ Handled
The passed event is handled.
@ NotHandled
The passed event is not handled.
Functions related to zooming.
int ScaleSpriteTrad(int value)
Scale traditional pixel dimensions to GUI zoom level, for drawing sprites.
Definition zoom_func.h:107