OpenTTD Source 20260711-master-g3fb3006dff
station_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 "debug.h"
12#include "gui.h"
13#include "querystring_gui.h"
14#include "textbuf_gui.h"
15#include "company_func.h"
16#include "command_func.h"
17#include "vehicle_gui.h"
18#include "cargotype.h"
19#include "station_gui.h"
20#include "strings_func.h"
21#include "string_func.h"
22#include "window_func.h"
23#include "viewport_func.h"
24#include "dropdown_type.h"
25#include "dropdown_func.h"
26#include "station_base.h"
27#include "waypoint_base.h"
28#include "tilehighlight_func.h"
29#include "company_base.h"
30#include "sortlist_type.h"
32#include "vehiclelist.h"
33#include "sound_func.h"
34#include "town.h"
35#include "linkgraph/linkgraph.h"
36#include "zoom_func.h"
37#include "station_cmd.h"
38
40#include "widgets/misc_widget.h"
41
42#include "table/strings.h"
43
45
46#include "safeguards.h"
47
49{
50 using StationType = Station;
51
52 static bool IsValidID(StationID id) { return Station::IsValidID(id); }
53 static bool IsValidBaseStation(const BaseStation *st) { return Station::IsExpected(st); }
54 static bool IsAcceptableWaypointTile(TileIndex) { return false; }
55 static constexpr bool IsWaypoint() { return false; }
56};
57
58template <bool ROAD, TileType TILE_TYPE>
60{
61 using StationType = Waypoint;
62
63 static bool IsValidID(StationID id) { return Waypoint::IsValidID(id) && HasBit(Waypoint::Get(id)->waypoint_flags, WPF_ROAD) == ROAD; }
64 static bool IsValidBaseStation(const BaseStation *st) { return Waypoint::IsExpected(st) && HasBit(Waypoint::From(st)->waypoint_flags, WPF_ROAD) == ROAD; }
65 static bool IsAcceptableWaypointTile(TileIndex tile) { return IsTileType(tile, TILE_TYPE); }
66 static constexpr bool IsWaypoint() { return true; }
67};
68using RailWaypointTypeFilter = GenericWaypointTypeFilter<false, TileType::Railway>;
69using RoadWaypointTypeFilter = GenericWaypointTypeFilter<true, TileType::Road>;
70
79int DrawStationCoverageAreaText(const Rect &r, StationCoverageType sct, int rad, bool supplies)
80{
81 TileIndex tile = TileVirtXY(_thd.pos.x, _thd.pos.y);
82 CargoTypes cargo_mask{};
83 if (_thd.drawstyle == HT_RECT && tile < Map::Size()) {
84 CargoArray cargoes;
85 if (supplies) {
86 cargoes = GetProductionAroundTiles(tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE, rad);
87 } else {
88 cargoes = GetAcceptanceAroundTiles(tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE, rad).first;
89 }
90
91 /* Convert cargo counts to a set of cargo bits, and draw the result. */
92 for (CargoType cargo : EnumRange(NUM_CARGO)) {
93 switch (sct) {
94 case SCT_PASSENGERS_ONLY: if (!IsCargoInClass(cargo, CargoClass::Passengers)) continue; break;
95 case SCT_NON_PASSENGERS_ONLY: if (IsCargoInClass(cargo, CargoClass::Passengers)) continue; break;
96 case SCT_ALL: break;
97 default: NOT_REACHED();
98 }
99 if (cargoes[cargo] >= (supplies ? 1U : 8U)) cargo_mask.Set(cargo);
100 }
101 }
102 return DrawStringMultiLine(r, GetString(supplies ? STR_STATION_BUILD_SUPPLIES_CARGO : STR_STATION_BUILD_ACCEPTS_CARGO, cargo_mask));
103}
104
109template <typename T>
111{
112 /* With distant join we don't know which station will be selected, so don't show any */
113 if (_ctrl_pressed) {
114 SetViewportCatchmentSpecializedStation<typename T::StationType>(nullptr, true);
115 return;
116 }
117
118 /* Tile area for TileHighlightData */
119 TileArea location(TileVirtXY(_thd.pos.x, _thd.pos.y), _thd.size.x / TILE_SIZE - 1, _thd.size.y / TILE_SIZE - 1);
120
121 /* If the current tile is already a station, then it must be the nearest station. */
122 if (IsTileType(location.tile, TileType::Station) && GetTileOwner(location.tile) == _local_company) {
123 typename T::StationType *st = T::StationType::GetByTile(location.tile);
124 if (st != nullptr && T::IsValidBaseStation(st)) {
125 SetViewportCatchmentSpecializedStation<typename T::StationType>(st, true);
126 return;
127 }
128 }
129
130 /* Extended area by one tile */
131 uint x = TileX(location.tile);
132 uint y = TileY(location.tile);
133
134 /* Waypoints can only be built on existing rail/road tiles, so don't extend area if not highlighting a rail tile. */
135 int max_c = T::IsWaypoint() && !T::IsAcceptableWaypointTile(location.tile) ? 0 : 1;
136 TileArea ta(TileXY(std::max<int>(0, x - max_c), std::max<int>(0, y - max_c)), TileXY(std::min<int>(Map::MaxX(), x + location.w + max_c), std::min<int>(Map::MaxY(), y + location.h + max_c)));
137
138 typename T::StationType *adjacent = nullptr;
139
140 /* Direct loop instead of ForAllStationsAroundTiles as we are not interested in catchment area */
141 for (TileIndex tile : ta) {
143 typename T::StationType *st = T::StationType::GetByTile(tile);
144 if (st == nullptr || !T::IsValidBaseStation(st)) continue;
145 if (adjacent != nullptr && st != adjacent) {
146 /* Multiple nearby, distant join is required. */
147 adjacent = nullptr;
148 break;
149 }
150 adjacent = st;
151 }
152 }
153 SetViewportCatchmentSpecializedStation<typename T::StationType>(adjacent, true);
154}
155
162{
163 /* Test if ctrl state changed */
164 static bool _last_ctrl_pressed;
165 if (_ctrl_pressed != _last_ctrl_pressed) {
166 _thd.dirty = 0xff;
167 _last_ctrl_pressed = _ctrl_pressed;
168 }
169
170 if (_thd.dirty & 1) {
171 _thd.dirty &= ~1;
172 w->SetDirty();
173
174 if (_settings_client.gui.station_show_coverage && _thd.drawstyle == HT_RECT) {
176 }
177 }
178}
179
180template <typename T>
181void CheckRedrawWaypointCoverage()
182{
183 /* Test if ctrl state changed */
184 static bool _last_ctrl_pressed;
185 if (_ctrl_pressed != _last_ctrl_pressed) {
186 _thd.dirty = 0xff;
187 _last_ctrl_pressed = _ctrl_pressed;
188 }
189
190 if (_thd.dirty & 1) {
191 _thd.dirty &= ~1;
192
193 if (_thd.drawstyle == HT_RECT) {
195 }
196 }
197}
198
199void CheckRedrawRailWaypointCoverage(const Window *)
200{
201 CheckRedrawWaypointCoverage<RailWaypointTypeFilter>();
202}
203
204void CheckRedrawRoadWaypointCoverage(const Window *)
205{
206 CheckRedrawWaypointCoverage<RoadWaypointTypeFilter>();
207}
208
221static void StationsWndShowStationRating(int left, int right, int y, CargoType cargo, uint amount, uint8_t rating)
222{
223 static const uint units_full = 576;
224 static const uint rating_full = 224;
225
226 const CargoSpec *cs = CargoSpec::Get(cargo);
227 if (!cs->IsValid()) return;
228
229 int padding = ScaleGUITrad(1);
230 int width = right - left;
231 PixelColour colour = cs->rating_colour;
232 TextColour tc = GetContrastColour(colour);
233 uint w = std::min(amount + 5, units_full) * width / units_full;
234
235 int height = GetCharacterHeight(FontSize::Small) + padding - 1;
236
237 if (amount > 30) {
238 /* Draw total cargo (limited) on station */
239 GfxFillRect(left, y, left + w - 1, y + height, colour);
240 } else {
241 /* Draw a (scaled) one pixel-wide bar of additional cargo meter, useful
242 * for stations with only a small amount (<=30) */
243 uint rest = ScaleGUITrad(amount) / 5;
244 if (rest != 0) {
245 GfxFillRect(left, y + height - rest, left + padding - 1, y + height, colour);
246 }
247 }
248
249 DrawString(left + padding, right, y, cs->abbrev, tc, {AlignmentH::Centre, AlignmentV::Middle}, false, FontSize::Small);
250
251 /* Draw green/red ratings bar (fits under the waiting bar) */
252 y += height + padding + 1;
253 GfxFillRect(left + padding, y, right - padding - 1, y + padding - 1, PC_RED);
254 w = std::min<uint>(rating, rating_full) * (width - padding - padding) / rating_full;
255 if (w != 0) GfxFillRect(left + padding, y, left + w - 1, y + padding - 1, PC_GREEN);
256}
257
259
263class CompanyStationsWindow : public Window {
264protected:
272
273 static inline FilterState initial_state = {
274 {false, 0},
276 true,
277 ALL_CARGOTYPES,
278 };
279
281 static inline const StringID sorter_names[] = {
282 STR_SORT_BY_NAME,
283 STR_SORT_BY_FACILITY,
284 STR_SORT_BY_WAITING_TOTAL,
285 STR_SORT_BY_WAITING_AVAILABLE,
286 STR_SORT_BY_RATING_MAX,
287 STR_SORT_BY_RATING_MIN,
288 };
289 static const std::initializer_list<GUIStationList::SortFunction * const> sorter_funcs;
290
293
294 FilterState filter{};
295 GUIStationList stations{filter.cargoes};
296 Scrollbar *vscroll = nullptr;
297 uint rating_width = 0;
298 bool filter_expanded = false;
299 std::array<uint16_t, NUM_CARGO> stations_per_cargo_type{};
301
307 void BuildStationsList(const Owner owner)
308 {
309 if (!this->stations.NeedRebuild()) return;
310
311 Debug(misc, 3, "Building station list for company {}", owner);
312
313 this->stations.clear();
314 this->stations_per_cargo_type.fill(0);
315 this->stations_per_cargo_type_no_rating = 0;
316
317 for (const Station *st : Station::Iterate()) {
318 if (this->filter.facilities.Any(st->facilities)) { // only stations with selected facilities
319 if (st->owner == owner || (st->owner == OWNER_NONE && HasStationInUse(st->index, true, owner))) {
320 this->string_filter.ResetState();
321 this->string_filter.AddLine(st->GetCachedName());
322 if (!this->string_filter.GetState()) continue;
323
324 bool has_rating = false;
325 /* Add to the station/cargo counts. */
326 for (CargoType cargo : EnumRange(NUM_CARGO)) {
327 if (st->goods[cargo].HasRating()) this->stations_per_cargo_type[cargo]++;
328 }
329 for (CargoType cargo : EnumRange(NUM_CARGO)) {
330 if (st->goods[cargo].HasRating()) {
331 has_rating = true;
332 if (this->filter.cargoes.Test(cargo)) {
333 this->stations.push_back(st);
334 break;
335 }
336 }
337 }
338 /* Stations with no cargo rating. */
339 if (!has_rating) {
340 if (this->filter.include_no_rating) this->stations.push_back(st);
341 this->stations_per_cargo_type_no_rating++;
342 }
343 }
344 }
345 }
346
347 this->stations.RebuildDone();
348
349 this->vscroll->SetCount(this->stations.size()); // Update the scrollbar
350 }
351
353 static bool StationNameSorter(const Station * const &a, const Station * const &b, [[maybe_unused]] const CargoTypes &filter)
354 {
355 int r = StrNaturalCompare(a->GetCachedName(), b->GetCachedName()); // Sort by name (natural sorting).
356 if (r == 0) return a->index < b->index;
357 return r < 0;
358 }
359
361 static bool StationTypeSorter(const Station * const &a, const Station * const &b, [[maybe_unused]] const CargoTypes &filter)
362 {
363 return a->facilities < b->facilities;
364 }
365
367 static bool StationWaitingTotalSorter(const Station * const &a, const Station * const &b, const CargoTypes &filter)
368 {
369 int diff = 0;
370
371 for (CargoType cargo : filter) {
372 diff += a->goods[cargo].TotalCount() - b->goods[cargo].TotalCount();
373 }
374
375 return diff < 0;
376 }
377
379 static bool StationWaitingAvailableSorter(const Station * const &a, const Station * const &b, const CargoTypes &filter)
380 {
381 int diff = 0;
382
383 for (CargoType cargo : filter) {
384 diff += a->goods[cargo].AvailableCount() - b->goods[cargo].AvailableCount();
385 }
386
387 return diff < 0;
388 }
389
391 static bool StationRatingMaxSorter(const Station * const &a, const Station * const &b, const CargoTypes &filter)
392 {
393 uint8_t maxr1 = 0;
394 uint8_t maxr2 = 0;
395
396 for (CargoType cargo : filter) {
397 if (a->goods[cargo].HasRating()) maxr1 = std::max(maxr1, a->goods[cargo].rating);
398 if (b->goods[cargo].HasRating()) maxr2 = std::max(maxr2, b->goods[cargo].rating);
399 }
400
401 return maxr1 < maxr2;
402 }
403
405 static bool StationRatingMinSorter(const Station * const &a, const Station * const &b, const CargoTypes &filter)
406 {
407 uint8_t minr1 = 255;
408 uint8_t minr2 = 255;
409
410 for (CargoType cargo : filter) {
411 if (a->goods[cargo].HasRating()) minr1 = std::min(minr1, a->goods[cargo].rating);
412 if (b->goods[cargo].HasRating()) minr2 = std::min(minr2, b->goods[cargo].rating);
413 }
414
415 return minr1 > minr2;
416 }
417
420 {
421 if (!this->stations.Sort()) return;
422
423 /* Set the modified widget dirty */
425 }
426
427public:
429 {
430 /* Load initial filter state. */
431 this->filter = CompanyStationsWindow::initial_state;
432 if (this->filter.cargoes == ALL_CARGOTYPES) this->filter.cargoes = _cargo_mask;
433
434 this->stations.SetListing(this->filter.last_sorting);
435 this->stations.SetSortFuncs(CompanyStationsWindow::sorter_funcs);
436 this->stations.ForceRebuild();
437 this->stations.NeedResort();
438 this->SortStationsList();
439
440 this->CreateNestedTree();
441 this->vscroll = this->GetScrollbar(WID_STL_SCROLLBAR);
442 this->FinishInitNested(window_number);
443 this->owner = this->window_number;
444
445 this->querystrings[WID_STL_FILTER] = &this->name_editbox;
446 this->name_editbox.cancel_button = QueryString::ACTION_CLEAR;
447
448 if (this->filter.cargoes == ALL_CARGOTYPES) this->filter.cargoes = _cargo_mask;
449
450 for (StationFacility facil : this->filter.facilities) {
451 this->LowerWidget(WID_STL_TRAIN + to_underlying(facil));
452 }
453
454 this->GetWidget<NWidgetCore>(WID_STL_SORTDROPBTN)->SetString(CompanyStationsWindow::sorter_names[this->stations.SortType()]);
455 }
456
459 {
460 /* Save filter state. */
461 this->filter.last_sorting = this->stations.GetListing();
462 CompanyStationsWindow::initial_state = this->filter;
463 }
464
465 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
466 {
467 switch (widget) {
468 case WID_STL_SORTBY: {
470 d.width += padding.width + Window::SortButtonWidth() * 2; // Doubled since the string is centred and it also looks better.
471 d.height += padding.height;
472 size = maxdim(size, d);
473 break;
474 }
475
476 case WID_STL_SORTDROPBTN: {
478 d.width += padding.width;
479 d.height += padding.height;
480 size = maxdim(size, d);
481 break;
482 }
483
484 case WID_STL_LIST:
486 size.height = padding.height + 5 * resize.height;
487
488 /* Determine appropriate width for mini station rating graph */
489 this->rating_width = 0;
490 for (const CargoSpec *cs : _sorted_standard_cargo_specs) {
491 this->rating_width = std::max(this->rating_width, GetStringBoundingBox(cs->abbrev, FontSize::Small).width);
492 }
493 /* Approximately match original 16 pixel wide rating bars by multiplying string width by 1.6 */
494 this->rating_width = this->rating_width * 16 / 10;
495 break;
496 }
497 }
498
499 void OnPaint() override
500 {
501 this->BuildStationsList(this->window_number);
502 this->SortStationsList();
503
504 this->DrawWidgets();
505 }
506
507 void DrawWidget(const Rect &r, WidgetID widget) const override
508 {
509 switch (widget) {
510 case WID_STL_SORTBY:
511 /* draw arrow pointing up/down for ascending/descending sorting */
512 this->DrawSortButton(WID_STL_SORTBY, this->stations.IsDescSortOrder());
513 break;
514
515 case WID_STL_LIST: {
516 bool rtl = _current_text_dir == TD_RTL;
517 Rect tr = r.Shrink(WidgetDimensions::scaled.framerect);
518 uint line_height = this->GetWidget<NWidgetBase>(widget)->resize_y;
519 /* Spacing between station name and first rating graph. */
520 int text_spacing = WidgetDimensions::scaled.hsep_wide;
521 /* Spacing between additional rating graphs. */
522 int rating_spacing = WidgetDimensions::scaled.hsep_normal;
523
524 auto [first, last] = this->vscroll->GetVisibleRangeIterators(this->stations);
525 for (auto it = first; it != last; ++it) {
526 const Station *st = *it;
527 assert(st->xy != INVALID_TILE);
528
529 /* Do not do the complex check HasStationInUse here, it may be even false
530 * when the order had been removed and the station list hasn't been removed yet */
531 assert(st->owner == owner || st->owner == OWNER_NONE);
532
533 int x = DrawString(tr.left, tr.right, tr.top + (line_height - GetCharacterHeight(FontSize::Normal)) / 2, GetString(STR_STATION_LIST_STATION, st->index, st->facilities));
534 x += rtl ? -text_spacing : text_spacing;
535
536 /* show cargo waiting and station ratings */
537 for (const CargoSpec *cs : _sorted_standard_cargo_specs) {
538 CargoType cargo_type = cs->Index();
539 if (st->goods[cargo_type].HasRating()) {
540 /* For RTL we work in exactly the opposite direction. So
541 * decrement the space needed first, then draw to the left
542 * instead of drawing to the left and then incrementing
543 * the space. */
544 if (rtl) {
545 x -= rating_width + rating_spacing;
546 if (x < tr.left) break;
547 }
548 StationsWndShowStationRating(x, x + rating_width, tr.top, cargo_type, st->goods[cargo_type].TotalCount(), st->goods[cargo_type].rating);
549 if (!rtl) {
550 x += rating_width + rating_spacing;
551 if (x > tr.right) break;
552 }
553 }
554 }
555 tr.top += line_height;
556 }
557
558 if (this->vscroll->GetCount() == 0) { // company has no stations
559 DrawString(tr.left, tr.right, tr.top + (line_height - GetCharacterHeight(FontSize::Normal)) / 2, STR_STATION_LIST_NONE);
560 return;
561 }
562 break;
563 }
564 }
565 }
566
567 std::string GetWidgetString(WidgetID widget, StringID stringid) const override
568 {
569 if (widget == WID_STL_CAPTION) {
570 return GetString(STR_STATION_LIST_CAPTION, this->window_number, this->vscroll->GetCount());
571 }
572
573 if (widget == WID_STL_CARGODROPDOWN) {
574 if (this->filter.cargoes.None()) return GetString(this->filter.include_no_rating ? STR_STATION_LIST_CARGO_FILTER_ONLY_NO_RATING : STR_STATION_LIST_CARGO_FILTER_NO_CARGO_TYPES);
575 if (this->filter.cargoes == _cargo_mask) return GetString(this->filter.include_no_rating ? STR_STATION_LIST_CARGO_FILTER_ALL_AND_NO_RATING : STR_CARGO_TYPE_FILTER_ALL);
576 if (this->filter.cargoes.Count() == 1 && !this->filter.include_no_rating) return GetString(CargoSpec::Get(*this->filter.cargoes.begin())->name);
577 return GetString(STR_STATION_LIST_CARGO_FILTER_MULTIPLE);
578 }
579
580 return this->Window::GetWidgetString(widget, stringid);
581 }
582
583 DropDownList BuildCargoDropDownList(bool expanded) const
584 {
585 /* Define a custom item consisting of check mark, count string, icon and name string. */
587
588 DropDownList list;
589 list.push_back(MakeDropDownListStringItem(STR_STATION_LIST_CARGO_FILTER_SELECT_ALL, CargoFilterCriteria::CF_SELECT_ALL));
590 list.push_back(MakeDropDownListDividerItem());
591
592 bool any_hidden = false;
593
594 uint16_t count = this->stations_per_cargo_type_no_rating;
595 if (count == 0 && !expanded) {
596 any_hidden = true;
597 } else {
598 list.push_back(std::make_unique<DropDownString<DropDownListCheckedItem, FontSize::Small, true>>(fmt::format("{}", count), 0, this->filter.include_no_rating, GetString(STR_STATION_LIST_CARGO_FILTER_NO_RATING), CargoFilterCriteria::CF_NO_RATING, false, count == 0));
599 }
600
601 Dimension d = GetLargestCargoIconSize();
602 for (const CargoSpec *cs : _sorted_cargo_specs) {
603 count = this->stations_per_cargo_type[cs->Index()];
604 if (count == 0 && !expanded) {
605 any_hidden = true;
606 } else {
607 list.push_back(std::make_unique<DropDownListCargoItem>(this->filter.cargoes.Test(cs->Index()), fmt::format("{}", count), d, cs->GetCargoIcon(), PAL_NONE, GetString(cs->name), cs->Index(), false, count == 0));
608 }
609 }
610
611 if (!expanded && any_hidden) {
612 if (list.size() > 2) list.push_back(MakeDropDownListDividerItem());
613 list.push_back(MakeDropDownListStringItem(STR_STATION_LIST_CARGO_FILTER_EXPAND, CargoFilterCriteria::CF_EXPAND_LIST));
614 }
615
616 return list;
617 }
618
619 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
620 {
621 switch (widget) {
622 case WID_STL_LIST: {
623 auto it = this->vscroll->GetScrolledItemFromWidget(this->stations, pt.y, this, WID_STL_LIST, WidgetDimensions::scaled.framerect.top);
624 if (it == this->stations.end()) return; // click out of list bound
625
626 const Station *st = *it;
627 /* do not check HasStationInUse - it is slow and may be invalid */
628 assert(st->owner == this->window_number || st->owner == OWNER_NONE);
629
630 if (_ctrl_pressed) {
632 } else {
634 }
635 break;
636 }
637
638 case WID_STL_TRAIN:
639 case WID_STL_TRUCK:
640 case WID_STL_BUS:
641 case WID_STL_AIRPLANE:
642 case WID_STL_SHIP:
643 if (_ctrl_pressed) {
644 this->filter.facilities.Flip(static_cast<StationFacility>(widget - WID_STL_TRAIN));
645 this->ToggleWidgetLoweredState(widget);
646 } else {
647 for (StationFacility facil : this->filter.facilities) {
649 }
650 this->filter.facilities = static_cast<StationFacility>(widget - WID_STL_TRAIN);
651 this->LowerWidget(widget);
652 }
653 this->stations.ForceRebuild();
654 this->SetDirty();
655 SndClickBeep();
656 break;
657
658 case WID_STL_FACILALL:
659 for (WidgetID i = WID_STL_TRAIN; i <= WID_STL_SHIP; i++) {
660 this->LowerWidget(i);
661 }
662
664 this->stations.ForceRebuild();
665 this->SetDirty();
666 break;
667
668 case WID_STL_SORTBY: // flip sorting method asc/desc
669 this->stations.ToggleSortOrder();
670 this->SetDirty();
671 break;
672
673 case WID_STL_SORTDROPBTN: // select sorting criteria dropdown menu
675 break;
676
678 static std::string cargo_filter;
679 this->filter_expanded = false;
680 ShowDropDownList(this, this->BuildCargoDropDownList(this->filter_expanded), -1, widget, 0, {DropDownOption::Persist, DropDownOption::Filterable}, &cargo_filter);
681 break;
682 }
683 }
684 }
685
686 void OnDropdownSelect(WidgetID widget, int index, int) override
687 {
688 if (widget == WID_STL_SORTDROPBTN) {
689 if (this->stations.SortType() != index) {
690 this->stations.SetSortType(index);
691
692 /* Display the current sort variant */
694
695 this->SetDirty();
696 }
697 }
698
699 if (widget == WID_STL_CARGODROPDOWN) {
700 FilterState oldstate = this->filter;
701
702 if (index >= 0 && index < NUM_CARGO) {
703 if (_ctrl_pressed) {
704 this->filter.cargoes.Flip(static_cast<CargoType>(index));
705 } else {
706 this->filter.cargoes = static_cast<CargoType>(index);
707 this->filter.include_no_rating = false;
708 }
709 } else if (index == CargoFilterCriteria::CF_NO_RATING) {
710 if (_ctrl_pressed) {
711 this->filter.include_no_rating = !this->filter.include_no_rating;
712 } else {
713 this->filter.include_no_rating = true;
714 this->filter.cargoes.Reset();
715 }
716 } else if (index == CargoFilterCriteria::CF_SELECT_ALL) {
717 this->filter.cargoes = _cargo_mask;
718 this->filter.include_no_rating = true;
719 } else if (index == CargoFilterCriteria::CF_EXPAND_LIST) {
720 this->filter_expanded = true;
721 ReplaceDropDownList(this, this->BuildCargoDropDownList(this->filter_expanded));
722 return;
723 }
724
725 if (oldstate.cargoes != this->filter.cargoes || oldstate.include_no_rating != this->filter.include_no_rating) {
726 this->stations.ForceRebuild();
727 this->SetDirty();
728
729 /* Only refresh the list if it's changed. */
730 if (_ctrl_pressed) ReplaceDropDownList(this, this->BuildCargoDropDownList(this->filter_expanded));
731 }
732
733 /* Always close the list if ctrl is not pressed. */
734 if (!_ctrl_pressed) this->CloseChildWindows(WindowClass::DropdownMenu);
735 }
736 }
737
738 void OnGameTick() override
739 {
740 if (this->stations.NeedResort()) {
741 Debug(misc, 3, "Periodic rebuild station list company {}", static_cast<int>(this->window_number));
742 this->SetDirty();
743 }
744 }
745
746 void OnResize() override
747 {
748 this->vscroll->SetCapacityFromWidget(this, WID_STL_LIST, WidgetDimensions::scaled.framerect.Vertical());
749 }
750
751 void OnEditboxChanged(WidgetID wid) override
752 {
753 if (wid == WID_STL_FILTER) {
754 this->string_filter.SetFilterTerm(this->name_editbox.text.GetText());
755 this->InvalidateData(TDIWD_FORCE_REBUILD);
756 }
757 }
758
764 void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
765 {
766 if (data == 0) {
767 /* This needs to be done in command-scope to enforce rebuilding before resorting invalid data */
768 this->stations.ForceRebuild();
769 } else {
770 this->stations.ForceResort();
771 }
772 }
773};
774
775/* Available station sorting functions */
776const std::initializer_list<GUIStationList::SortFunction * const> CompanyStationsWindow::sorter_funcs = {
783};
784
785static constexpr std::initializer_list<NWidgetPart> _nested_company_stations_widgets = {
792 EndContainer(),
794 NWidget(WWT_TEXTBTN, Colours::Grey, WID_STL_TRAIN), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetStringTip(STR_TRAIN, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE_TOOLTIP), SetFill(0, 1),
795 NWidget(WWT_TEXTBTN, Colours::Grey, WID_STL_TRUCK), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetStringTip(STR_LORRY, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE_TOOLTIP), SetFill(0, 1),
796 NWidget(WWT_TEXTBTN, Colours::Grey, WID_STL_BUS), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetStringTip(STR_BUS, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE_TOOLTIP), SetFill(0, 1),
797 NWidget(WWT_TEXTBTN, Colours::Grey, WID_STL_SHIP), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetStringTip(STR_SHIP, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE_TOOLTIP), SetFill(0, 1),
798 NWidget(WWT_TEXTBTN, Colours::Grey, WID_STL_AIRPLANE), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetStringTip(STR_PLANE, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE_TOOLTIP), SetFill(0, 1),
799 NWidget(WWT_PUSHTXTBTN, Colours::Grey, WID_STL_FACILALL), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetStringTip(STR_ABBREV_ALL, STR_STATION_LIST_SELECT_ALL_FACILITIES_TOOLTIP), SetTextStyle(TextColour::Black, FontSize::Small), SetFill(0, 1),
801 NWidget(WWT_DROPDOWN, Colours::Grey, WID_STL_CARGODROPDOWN), SetFill(1, 0), SetToolTip(STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE_TOOLTIP),
803 EndContainer(),
805 NWidget(WWT_PUSHTXTBTN, Colours::Grey, WID_STL_SORTBY), SetMinimalSize(0, 12), SetStringTip(STR_BUTTON_SORT_BY, STR_TOOLTIP_SORT_ORDER),
806 NWidget(WWT_DROPDOWN, Colours::Grey, WID_STL_SORTDROPBTN), SetMinimalSize(0, 12), SetStringTip(STR_SORT_BY_NAME, STR_TOOLTIP_SORT_CRITERIA), // widget_data gets overwritten.
807 NWidget(WWT_EDITBOX, Colours::Grey, WID_STL_FILTER), SetFill(1, 0), SetResize(1, 0), SetStringTip(STR_LIST_FILTER_OSKTITLE, STR_LIST_FILTER_TOOLTIP),
808 EndContainer(),
814 EndContainer(),
815 EndContainer(),
816};
817
820 WindowPosition::Automatic, "list_stations", 358, 162,
821 WindowClass::StationList, WindowClass::None,
822 {},
823 _nested_company_stations_widgets
824);
825
831void ShowCompanyStations(CompanyID company)
832{
833 if (!Company::IsValidID(company)) return;
834
836}
837
838static constexpr std::initializer_list<NWidgetPart> _nested_station_view_widgets = {
841 NWidget(WWT_PUSHIMGBTN, Colours::Grey, WID_SV_RENAME), SetAspect(WidgetDimensions::ASPECT_RENAME), SetSpriteTip(SPR_RENAME, STR_STATION_VIEW_EDIT_TOOLTIP),
843 NWidget(WWT_PUSHIMGBTN, Colours::Grey, WID_SV_LOCATION), SetAspect(WidgetDimensions::ASPECT_LOCATION), SetSpriteTip(SPR_GOTO_LOCATION, STR_STATION_VIEW_CENTER_TOOLTIP),
847 EndContainer(),
849 NWidget(WWT_TEXTBTN, Colours::Grey, WID_SV_GROUP), SetMinimalSize(81, 12), SetFill(1, 1), SetStringTip(STR_STATION_VIEW_GROUP),
850 NWidget(WWT_DROPDOWN, Colours::Grey, WID_SV_GROUP_BY), SetMinimalSize(168, 12), SetResize(1, 0), SetFill(0, 1), SetToolTip(STR_TOOLTIP_GROUP_ORDER),
851 EndContainer(),
853 NWidget(WWT_PUSHTXTBTN, Colours::Grey, WID_SV_SORT_ORDER), SetMinimalSize(81, 12), SetFill(1, 1), SetStringTip(STR_BUTTON_SORT_BY, STR_TOOLTIP_SORT_ORDER),
854 NWidget(WWT_DROPDOWN, Colours::Grey, WID_SV_SORT_BY), SetMinimalSize(168, 12), SetResize(1, 0), SetFill(0, 1), SetToolTip(STR_TOOLTIP_SORT_CRITERIA),
855 EndContainer(),
859 EndContainer(),
863 SetStringTip(STR_STATION_VIEW_RATINGS_BUTTON, STR_STATION_VIEW_RATINGS_TOOLTIP),
866 SetStringTip(STR_STATION_VIEW_CLOSE_AIRPORT, STR_STATION_VIEW_CLOSE_AIRPORT_TOOLTIP),
867 EndContainer(),
868 NWidget(WWT_TEXTBTN, Colours::Grey, WID_SV_CATCHMENT), SetMinimalSize(45, 12), SetResize(1, 0), SetFill(1, 1), SetStringTip(STR_BUTTON_CATCHMENT, STR_TOOLTIP_CATCHMENT),
869 NWidget(WWT_PUSHTXTBTN, Colours::Grey, WID_SV_TRAINS), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetFill(0, 1), SetStringTip(STR_TRAIN, STR_STATION_VIEW_SCHEDULED_TRAINS_TOOLTIP),
870 NWidget(WWT_PUSHTXTBTN, Colours::Grey, WID_SV_ROADVEHS), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetFill(0, 1), SetStringTip(STR_LORRY, STR_STATION_VIEW_SCHEDULED_ROAD_VEHICLES_TOOLTIP),
871 NWidget(WWT_PUSHTXTBTN, Colours::Grey, WID_SV_SHIPS), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetFill(0, 1), SetStringTip(STR_SHIP, STR_STATION_VIEW_SCHEDULED_SHIPS_TOOLTIP),
872 NWidget(WWT_PUSHTXTBTN, Colours::Grey, WID_SV_PLANES), SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON), SetFill(0, 1), SetStringTip(STR_PLANE, STR_STATION_VIEW_SCHEDULED_AIRCRAFT_TOOLTIP),
874 EndContainer(),
875};
876
877enum SortOrder : uint8_t {
878 SO_DESCENDING,
879 SO_ASCENDING
880};
881
882class CargoDataEntry;
883
892
893class CargoSorter {
894public:
895 using is_transparent = void;
896 CargoSorter(CargoSortType t = CargoSortType::StationID, SortOrder o = SO_ASCENDING) : type(t), order(o) {}
897 CargoSortType GetSortType() {return this->type;}
898 bool operator()(const CargoDataEntry &cd1, const CargoDataEntry &cd2) const;
899 bool operator()(const CargoDataEntry &cd1, const std::unique_ptr<CargoDataEntry> &cd2) const { return this->operator()(cd1, *cd2); }
900 bool operator()(const std::unique_ptr<CargoDataEntry> &cd1, const CargoDataEntry &cd2) const { return this->operator()(*cd1, cd2); }
901 bool operator()(const std::unique_ptr<CargoDataEntry> &cd1, const std::unique_ptr<CargoDataEntry> &cd2) const { return this->operator()(*cd1, *cd2); }
902
903private:
904 CargoSortType type;
905 SortOrder order;
906
907 template <class Tid>
908 bool SortId(Tid st1, Tid st2) const;
909 bool SortCount(const CargoDataEntry &cd1, const CargoDataEntry &cd2) const;
910 bool SortStation(StationID st1, StationID st2) const;
911};
912
913typedef std::set<std::unique_ptr<CargoDataEntry>, CargoSorter> CargoDataSet;
914
920class CargoDataEntry {
921public:
922 CargoDataEntry();
924
930 CargoDataEntry &InsertOrRetrieve(StationID station)
931 {
932 return this->InsertOrRetrieve<StationID>(station);
933 }
934
941 {
942 return this->InsertOrRetrieve<CargoType>(cargo);
943 }
944
945 void Update(uint count);
946
951 void Remove(StationID station)
952 {
953 CargoDataEntry t(station);
954 this->Remove(t);
955 }
956
962 {
963 CargoDataEntry t(cargo);
964 this->Remove(t);
965 }
966
972 CargoDataEntry *Retrieve(StationID station) const
973 {
974 CargoDataEntry t(station);
975 return this->Retrieve(this->children->find(t));
976 }
977
983 CargoDataEntry *Retrieve(CargoType cargo) const
984 {
985 CargoDataEntry t(cargo);
986 return this->Retrieve(this->children->find(t));
987 }
988
989 void Resort(CargoSortType type, SortOrder order);
990
995 StationID GetStation() const { return this->station; }
996
1001 CargoType GetCargo() const { return this->cargo; }
1002
1007 uint GetCount() const { return this->count; }
1008
1013 CargoDataEntry *GetParent() const { return this->parent; }
1014
1019 uint GetNumChildren() const { return this->num_children; }
1020
1025 CargoDataSet::iterator Begin() const { return this->children->begin(); }
1026
1031 CargoDataSet::iterator End() const { return this->children->end(); }
1032
1037 bool HasTransfers() const { return this->transfers; }
1038
1043 void SetTransfers(bool value) { this->transfers = value; }
1044
1045 void Clear();
1046
1049 CargoDataEntry(StationID station);
1051
1052private:
1053 CargoDataEntry *Retrieve(CargoDataSet::iterator i) const;
1054
1055 template <class Tid>
1057
1058 void Remove(CargoDataEntry &entry);
1059 void IncrementSize();
1060
1061 CargoDataEntry *parent;
1062 const union {
1063 StationID station;
1064 struct {
1067 };
1068 };
1070 uint count;
1071 std::unique_ptr<CargoDataSet> children;
1072};
1073
1074CargoDataEntry::CargoDataEntry() :
1075 parent(nullptr),
1076 station(StationID::Invalid()),
1077 num_children(0),
1078 count(0),
1079 children(std::make_unique<CargoDataSet>(CargoSorter(CargoSortType::CargoType)))
1080{}
1081
1082CargoDataEntry::CargoDataEntry(CargoType cargo, uint count, CargoDataEntry *parent) :
1083 parent(parent),
1084 cargo(cargo),
1085 num_children(0),
1086 count(count),
1087 children(std::make_unique<CargoDataSet>())
1088{}
1089
1090CargoDataEntry::CargoDataEntry(StationID station, uint count, CargoDataEntry *parent) :
1091 parent(parent),
1092 station(station),
1093 num_children(0),
1094 count(count),
1095 children(std::make_unique<CargoDataSet>())
1096{}
1097
1098CargoDataEntry::CargoDataEntry(StationID station) :
1099 parent(nullptr),
1100 station(station),
1101 num_children(0),
1102 count(0),
1103 children(nullptr)
1104{}
1105
1106CargoDataEntry::CargoDataEntry(CargoType cargo) :
1107 parent(nullptr),
1108 cargo(cargo),
1109 num_children(0),
1110 count(0),
1111 children(nullptr)
1112{}
1113
1116{
1117 this->Clear();
1118}
1119
1124{
1125 if (this->children != nullptr) this->children->clear();
1126 if (this->parent != nullptr) this->parent->count -= this->count;
1127 this->count = 0;
1128 this->num_children = 0;
1129}
1130
1137void CargoDataEntry::Remove(CargoDataEntry &entry)
1138{
1139 CargoDataSet::iterator i = this->children->find(entry);
1140 if (i != this->children->end()) this->children->erase(i);
1141}
1142
1149template <class Tid>
1150CargoDataEntry &CargoDataEntry::InsertOrRetrieve(Tid child_id)
1151{
1152 CargoDataEntry tmp(child_id);
1153 CargoDataSet::iterator i = this->children->find(tmp);
1154 if (i == this->children->end()) {
1155 IncrementSize();
1156 return **(this->children->insert(std::make_unique<CargoDataEntry>(child_id, 0, this)).first);
1157 } else {
1158 assert(this->children->value_comp().GetSortType() != CargoSortType::Count);
1159 return **i;
1160 }
1161}
1162
1169{
1170 this->count += count;
1171 if (this->parent != nullptr) this->parent->Update(count);
1172}
1173
1178{
1179 ++this->num_children;
1180 if (this->parent != nullptr) this->parent->IncrementSize();
1181}
1182
1183void CargoDataEntry::Resort(CargoSortType type, SortOrder order)
1184{
1185 auto new_children = std::make_unique<CargoDataSet>(CargoSorter(type, order));
1186 new_children->merge(*this->children);
1187 this->children = std::move(new_children);
1188}
1189
1190CargoDataEntry *CargoDataEntry::Retrieve(CargoDataSet::iterator i) const
1191{
1192 if (i == this->children->end()) {
1193 return nullptr;
1194 } else {
1195 assert(this->children->value_comp().GetSortType() != CargoSortType::Count);
1196 return i->get();
1197 }
1198}
1199
1200bool CargoSorter::operator()(const CargoDataEntry &cd1, const CargoDataEntry &cd2) const
1201{
1202 switch (this->type) {
1204 return this->SortId<StationID>(cd1.GetStation(), cd2.GetStation());
1206 return this->SortId<CargoType>(cd1.GetCargo(), cd2.GetCargo());
1208 return this->SortCount(cd1, cd2);
1210 return this->SortStation(cd1.GetStation(), cd2.GetStation());
1211 default:
1212 NOT_REACHED();
1213 }
1214}
1215
1216template <class Tid>
1217bool CargoSorter::SortId(Tid st1, Tid st2) const
1218{
1219 return (this->order == SO_ASCENDING) ? st1 < st2 : st2 < st1;
1220}
1221
1222bool CargoSorter::SortCount(const CargoDataEntry &cd1, const CargoDataEntry &cd2) const
1223{
1224 uint c1 = cd1.GetCount();
1225 uint c2 = cd2.GetCount();
1226 if (c1 == c2) {
1227 return this->SortStation(cd1.GetStation(), cd2.GetStation());
1228 } else if (this->order == SO_ASCENDING) {
1229 return c1 < c2;
1230 } else {
1231 return c2 < c1;
1232 }
1233}
1234
1235bool CargoSorter::SortStation(StationID st1, StationID st2) const
1236{
1237 if (!Station::IsValidID(st1)) {
1238 return Station::IsValidID(st2) ? this->order == SO_ASCENDING : this->SortId(st1, st2);
1239 } else if (!Station::IsValidID(st2)) {
1240 return order == SO_DESCENDING;
1241 }
1242
1243 int res = StrNaturalCompare(Station::Get(st1)->GetCachedName(), Station::Get(st2)->GetCachedName()); // Sort by name (natural sorting).
1244 if (res == 0) {
1245 return this->SortId(st1, st2);
1246 } else {
1247 return (this->order == SO_ASCENDING) ? res < 0 : res > 0;
1248 }
1249}
1250
1254struct StationViewWindow : public Window {
1258 struct RowDisplay {
1259 RowDisplay(CargoDataEntry *f, StationID n) : filter(f), next_station(n) {}
1260 RowDisplay(CargoDataEntry *f, CargoType n) : filter(f), next_cargo(n) {}
1261
1266 union {
1270 StationID next_station;
1271
1276 };
1277 };
1278
1279 typedef std::vector<RowDisplay> CargoDataVector;
1280
1281 static const int NUM_COLUMNS = 4;
1282
1286 enum Invalidation : uint16_t {
1287 INV_FLOWS = 0x100,
1288 INV_CARGO = 0x200
1289 };
1290
1300
1304 enum Mode : uint8_t {
1307 };
1308
1312 int line_height = 0;
1314 Scrollbar *vscroll = nullptr;
1315
1316 /* Height of the #WID_SV_ACCEPT_RATING_LIST widget for different views. */
1317 static constexpr uint RATING_LINES = 13;
1318 static constexpr uint ACCEPTS_LINES = 3;
1319
1321 static inline const StringID sort_names[] = {
1322 STR_STATION_VIEW_WAITING_STATION,
1323 STR_STATION_VIEW_WAITING_AMOUNT,
1324 STR_STATION_VIEW_PLANNED_STATION,
1325 STR_STATION_VIEW_PLANNED_AMOUNT,
1326 };
1327
1328 static inline const StringID group_names[] = {
1329 STR_STATION_VIEW_GROUP_S_V_D,
1330 STR_STATION_VIEW_GROUP_S_D_V,
1331 STR_STATION_VIEW_GROUP_V_S_D,
1332 STR_STATION_VIEW_GROUP_V_D_S,
1333 STR_STATION_VIEW_GROUP_D_S_V,
1334 STR_STATION_VIEW_GROUP_D_V_S,
1335 };
1336
1343 std::array<CargoSortType, NUM_COLUMNS> sortings{};
1344
1346 std::array<SortOrder, NUM_COLUMNS> sort_orders{};
1347
1348 int scroll_to_row = INT_MAX;
1351 std::array<Grouping, NUM_COLUMNS> groupings;
1352
1355 CargoDataVector displayed_rows{};
1356
1358 {
1359 this->CreateNestedTree();
1361 this->vscroll = this->GetScrollbar(WID_SV_SCROLLBAR);
1362 /* Nested widget tree creation is done in two steps to ensure that this->GetWidget<NWidgetCore>(WID_SV_ACCEPTS_RATINGS) exists in UpdateWidgetSize(). */
1363 this->FinishInitNested(window_number);
1364
1365 this->groupings[0] = GR_CARGO;
1366 this->sortings[0] = CargoSortType::AsGrouping;
1367 this->SelectGroupBy(_settings_client.gui.station_gui_group_order);
1368 this->SelectSortBy(_settings_client.gui.station_gui_sort_by);
1369 this->sort_orders[0] = SO_ASCENDING;
1370 this->SelectSortOrder((SortOrder)_settings_client.gui.station_gui_sort_order);
1371 this->owner = Station::Get(window_number)->owner;
1372 }
1373
1374 void OnInit() override
1375 {
1376 this->cargo_icon_size = GetLargestCargoIconSize();
1377 this->line_height = std::max<int>(GetCharacterHeight(FontSize::Normal), this->cargo_icon_size.height);
1378 this->expand_shrink_width = std::max(GetCharacterWidth(FontSize::Normal, '-'), GetCharacterWidth(FontSize::Normal, '+'));
1379 }
1380
1381 void Close([[maybe_unused]] int data = 0) override
1382 {
1383 CloseWindowById(WindowClass::TrainList, VehicleListIdentifier(VehicleListType::Station, VehicleType::Train, this->owner, this->window_number).ToWindowNumber(), false);
1384 CloseWindowById(WindowClass::RoadVehicleList, VehicleListIdentifier(VehicleListType::Station, VehicleType::Road, this->owner, this->window_number).ToWindowNumber(), false);
1385 CloseWindowById(WindowClass::ShipList, VehicleListIdentifier(VehicleListType::Station, VehicleType::Ship, this->owner, this->window_number).ToWindowNumber(), false);
1386 CloseWindowById(WindowClass::AircraftList, VehicleListIdentifier(VehicleListType::Station, VehicleType::Aircraft, this->owner, this->window_number).ToWindowNumber(), false);
1387
1388 SetViewportCatchmentStation(Station::Get(this->window_number), false);
1389 this->Window::Close();
1390 }
1391
1402 void ShowCargo(CargoDataEntry *data, CargoType cargo, StationID source, StationID next, StationID dest, uint count)
1403 {
1404 if (count == 0) return;
1405 bool auto_distributed = _settings_game.linkgraph.GetDistributionType(cargo) != DistributionType::Manual;
1406 const CargoDataEntry *expand = &this->expanded_rows;
1407 for (int i = 0; i < NUM_COLUMNS && expand != nullptr; ++i) {
1408 switch (groupings[i]) {
1409 case GR_CARGO:
1410 assert(i == 0);
1411 data = &data->InsertOrRetrieve(cargo);
1412 data->SetTransfers(source != this->window_number);
1413 expand = expand->Retrieve(cargo);
1414 break;
1415 case GR_SOURCE:
1416 if (auto_distributed || source != this->window_number) {
1417 data = &data->InsertOrRetrieve(source);
1418 expand = expand->Retrieve(source);
1419 }
1420 break;
1421 case GR_NEXT:
1422 if (auto_distributed) {
1423 data = &data->InsertOrRetrieve(next);
1424 expand = expand->Retrieve(next);
1425 }
1426 break;
1427 case GR_DESTINATION:
1428 if (auto_distributed) {
1429 data = &data->InsertOrRetrieve(dest);
1430 expand = expand->Retrieve(dest);
1431 }
1432 break;
1433 }
1434 }
1435 data->Update(count);
1436 }
1437
1438 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
1439 {
1440 switch (widget) {
1441 case WID_SV_WAITING:
1442 fill.height = resize.height = this->line_height;
1443 size.height = 4 * resize.height + padding.height;
1444 break;
1445
1447 size.height = ((this->GetWidget<NWidgetCore>(WID_SV_ACCEPTS_RATINGS)->GetString() == STR_STATION_VIEW_RATINGS_BUTTON) ? this->accepts_lines : this->rating_lines) * GetCharacterHeight(FontSize::Normal) + padding.height;
1448 break;
1449 }
1450 }
1451
1452 void OnPaint() override
1453 {
1454 const Station *st = Station::Get(this->window_number);
1455 CargoDataEntry cargo;
1456 BuildCargoList(&cargo, st);
1457
1458 this->vscroll->SetCount(cargo.GetNumChildren()); // update scrollbar
1459
1460 /* disable some buttons */
1466 this->SetWidgetDisabledState(WID_SV_CLOSE_AIRPORT, !st->facilities.Test(StationFacility::Airport) || st->owner != _local_company || st->owner == OWNER_NONE); // Also consider SE, where _local_company == OWNER_NONE
1468
1472
1473 this->DrawWidgets();
1474
1475 if (!this->IsShaded()) {
1476 /* Draw 'accepted cargo' or 'cargo ratings'. */
1478 const Rect r = wid->GetCurrentRect();
1479 if (this->GetWidget<NWidgetCore>(WID_SV_ACCEPTS_RATINGS)->GetString() == STR_STATION_VIEW_RATINGS_BUTTON) {
1480 int lines = this->DrawAcceptedCargo(r);
1481 if (lines > this->accepts_lines) { // Resize the widget, and perform re-initialization of the window.
1482 this->accepts_lines = lines;
1483 this->ReInit();
1484 return;
1485 }
1486 } else {
1487 int lines = this->DrawCargoRatings(r);
1488 if (lines > this->rating_lines) { // Resize the widget, and perform re-initialization of the window.
1489 this->rating_lines = lines;
1490 this->ReInit();
1491 return;
1492 }
1493 }
1494
1495 /* Draw arrow pointing up/down for ascending/descending sorting */
1496 this->DrawSortButton(WID_SV_SORT_ORDER, sort_orders[1] != SO_ASCENDING);
1497
1498 int pos = this->vscroll->GetPosition();
1499
1500 int maxrows = this->vscroll->GetCapacity();
1501
1502 displayed_rows.clear();
1503
1504 /* Draw waiting cargo. */
1506 Rect waiting_rect = nwi->GetCurrentRect().Shrink(WidgetDimensions::scaled.framerect);
1507 this->DrawEntries(cargo, waiting_rect, pos, maxrows, 0);
1508 scroll_to_row = INT_MAX;
1509 }
1510 }
1511
1512 std::string GetWidgetString(WidgetID widget, StringID stringid) const override
1513 {
1514 if (widget == WID_SV_CAPTION) {
1515 const Station *st = Station::Get(this->window_number);
1516 return GetString(STR_STATION_VIEW_CAPTION, st->index, st->facilities);
1517 }
1518
1519 return this->Window::GetWidgetString(widget, stringid);
1520 }
1521
1528 {
1529 const Station *st = Station::Get(this->window_number);
1530 CargoDataEntry &entry = cached_destinations.InsertOrRetrieve(cargo);
1531 entry.Clear();
1532
1533 if (!st->goods[cargo].HasData()) return;
1534
1535 for (const auto &it : st->goods[cargo].GetData().flows) {
1536 StationID from = it.first;
1537 CargoDataEntry &source_entry = entry.InsertOrRetrieve(from);
1538 uint32_t prev_count = 0;
1539 for (const auto &flow_it : *it.second.GetShares()) {
1540 StationID via = flow_it.second;
1541 CargoDataEntry &via_entry = source_entry.InsertOrRetrieve(via);
1542 if (via == this->window_number) {
1543 via_entry.InsertOrRetrieve(via).Update(flow_it.first - prev_count);
1544 } else {
1545 EstimateDestinations(cargo, from, via, flow_it.first - prev_count, via_entry);
1546 }
1547 prev_count = flow_it.first;
1548 }
1549 }
1550 }
1551
1561 void EstimateDestinations(CargoType cargo, StationID source, StationID next, uint count, CargoDataEntry &dest)
1562 {
1563 if (Station::IsValidID(next) && Station::IsValidID(source)) {
1564 GoodsEntry &ge = Station::Get(next)->goods[cargo];
1565 if (!ge.HasData()) return;
1566
1567 CargoDataEntry tmp;
1568 const FlowStatMap &flowmap = ge.GetData().flows;
1569 FlowStatMap::const_iterator map_it = flowmap.find(source);
1570 if (map_it != flowmap.end()) {
1571 const FlowStat::SharesMap *shares = map_it->second.GetShares();
1572 uint32_t prev_count = 0;
1573 for (FlowStat::SharesMap::const_iterator i = shares->begin(); i != shares->end(); ++i) {
1574 tmp.InsertOrRetrieve(i->second).Update(i->first - prev_count);
1575 prev_count = i->first;
1576 }
1577 }
1578
1579 if (tmp.GetCount() == 0) {
1580 dest.InsertOrRetrieve(StationID::Invalid()).Update(count);
1581 } else {
1582 uint sum_estimated = 0;
1583 while (sum_estimated < count) {
1584 for (CargoDataSet::iterator i = tmp.Begin(); i != tmp.End() && sum_estimated < count; ++i) {
1585 CargoDataEntry &child = **i;
1586 uint estimate = DivideApprox(child.GetCount() * count, tmp.GetCount());
1587 if (estimate == 0) estimate = 1;
1588
1589 sum_estimated += estimate;
1590 if (sum_estimated > count) {
1591 estimate -= sum_estimated - count;
1592 sum_estimated = count;
1593 }
1594
1595 if (estimate > 0) {
1596 if (child.GetStation() == next) {
1597 dest.InsertOrRetrieve(next).Update(estimate);
1598 } else {
1599 EstimateDestinations(cargo, source, child.GetStation(), estimate, dest);
1600 }
1601 }
1602 }
1603
1604 }
1605 }
1606 } else {
1607 dest.InsertOrRetrieve(StationID::Invalid()).Update(count);
1608 }
1609 }
1610
1617 void BuildFlowList(CargoType cargo, const FlowStatMap &flows, CargoDataEntry *entry)
1618 {
1619 const CargoDataEntry *source_dest = this->cached_destinations.Retrieve(cargo);
1620 for (FlowStatMap::const_iterator it = flows.begin(); it != flows.end(); ++it) {
1621 StationID from = it->first;
1622 const CargoDataEntry *source_entry = source_dest->Retrieve(from);
1623 const FlowStat::SharesMap *shares = it->second.GetShares();
1624 for (FlowStat::SharesMap::const_iterator flow_it = shares->begin(); flow_it != shares->end(); ++flow_it) {
1625 const CargoDataEntry *via_entry = source_entry->Retrieve(flow_it->second);
1626 for (CargoDataSet::iterator dest_it = via_entry->Begin(); dest_it != via_entry->End(); ++dest_it) {
1627 CargoDataEntry &dest_entry = **dest_it;
1628 ShowCargo(entry, cargo, from, flow_it->second, dest_entry.GetStation(), dest_entry.GetCount());
1629 }
1630 }
1631 }
1632 }
1633
1640 void BuildCargoList(CargoType cargo, const StationCargoList &packets, CargoDataEntry *entry)
1641 {
1642 const CargoDataEntry *source_dest = this->cached_destinations.Retrieve(cargo);
1643 for (StationCargoList::ConstIterator it = packets.Packets()->begin(); it != packets.Packets()->end(); it++) {
1644 const CargoPacket *cp = *it;
1645 StationID next = it.GetKey();
1646
1647 const CargoDataEntry *source_entry = source_dest->Retrieve(cp->GetFirstStation());
1648 if (source_entry == nullptr) {
1649 this->ShowCargo(entry, cargo, cp->GetFirstStation(), next, StationID::Invalid(), cp->Count());
1650 continue;
1651 }
1652
1653 const CargoDataEntry *via_entry = source_entry->Retrieve(next);
1654 if (via_entry == nullptr) {
1655 this->ShowCargo(entry, cargo, cp->GetFirstStation(), next, StationID::Invalid(), cp->Count());
1656 continue;
1657 }
1658
1659 uint remaining = cp->Count();
1660 for (CargoDataSet::iterator dest_it = via_entry->Begin(); dest_it != via_entry->End();) {
1661 CargoDataEntry &dest_entry = **dest_it;
1662
1663 /* Advance iterator here instead of in the for statement to test whether this is the last entry */
1664 ++dest_it;
1665
1666 uint val;
1667 if (dest_it == via_entry->End()) {
1668 /* Allocate all remaining waiting cargo to the last destination to avoid
1669 * waiting cargo being "lost", and the displayed total waiting cargo
1670 * not matching GoodsEntry::TotalCount() */
1671 val = remaining;
1672 } else {
1673 val = std::min<uint>(remaining, DivideApprox(cp->Count() * dest_entry.GetCount(), via_entry->GetCount()));
1674 remaining -= val;
1675 }
1676 this->ShowCargo(entry, cargo, cp->GetFirstStation(), next, dest_entry.GetStation(), val);
1677 }
1678 }
1679 this->ShowCargo(entry, cargo, NEW_STATION, NEW_STATION, NEW_STATION, packets.ReservedCount());
1680 }
1681
1687 void BuildCargoList(CargoDataEntry *entry, const Station *st)
1688 {
1689 for (CargoType cargo : EnumRange(NUM_CARGO)) {
1690
1691 if (this->cached_destinations.Retrieve(cargo) == nullptr) {
1692 this->RecalcDestinations(cargo);
1693 }
1694
1695 const GoodsEntry &ge = st->goods[cargo];
1696 if (!ge.HasData()) continue;
1697
1698 if (this->current_mode == MODE_WAITING) {
1699 this->BuildCargoList(cargo, ge.GetData().cargo, entry);
1700 } else {
1701 this->BuildFlowList(cargo, ge.GetData().flows, entry);
1702 }
1703 }
1704 }
1705
1711 {
1712 std::list<StationID> stations;
1713 const CargoDataEntry *parent = entry.GetParent();
1714 if (parent->GetParent() == nullptr) {
1715 this->displayed_rows.push_back(RowDisplay(&this->expanded_rows, entry.GetCargo()));
1716 return;
1717 }
1718
1719 StationID next = entry.GetStation();
1720 while (parent->GetParent()->GetParent() != nullptr) {
1721 stations.push_back(parent->GetStation());
1722 parent = parent->GetParent();
1723 }
1724
1725 CargoType cargo = parent->GetCargo();
1726 CargoDataEntry *filter = this->expanded_rows.Retrieve(cargo);
1727 while (!stations.empty()) {
1728 filter = filter->Retrieve(stations.back());
1729 stations.pop_back();
1730 }
1731
1732 this->displayed_rows.push_back(RowDisplay(filter, next));
1733 }
1734
1743 StringID GetEntryString(StationID station, StringID here, StringID other_station, StringID any) const
1744 {
1745 if (station == this->window_number) {
1746 return here;
1747 } else if (station == StationID::Invalid()) {
1748 return any;
1749 } else if (station == NEW_STATION) {
1750 return STR_STATION_VIEW_RESERVED;
1751 } else {
1752 return other_station;
1753 }
1754 }
1755
1756 StringID GetGroupingString(Grouping grouping, StationID station) const
1757 {
1758 switch (grouping) {
1759 case GR_SOURCE: return this->GetEntryString(station, STR_STATION_VIEW_FROM_HERE, STR_STATION_VIEW_FROM, STR_STATION_VIEW_FROM_ANY);
1760 case GR_NEXT: return this->GetEntryString(station, STR_STATION_VIEW_VIA_HERE, STR_STATION_VIEW_VIA, STR_STATION_VIEW_VIA_ANY);
1761 case GR_DESTINATION: return this->GetEntryString(station, STR_STATION_VIEW_TO_HERE, STR_STATION_VIEW_TO, STR_STATION_VIEW_TO_ANY);
1762 default: NOT_REACHED();
1763 }
1764 }
1765
1773 StringID SearchNonStop(CargoDataEntry &cd, StationID station, int column)
1774 {
1775 assert(column < NUM_COLUMNS);
1777 for (int i = column - 1; i > 0; --i) {
1778 if (this->groupings[i] == GR_DESTINATION) {
1779 if (parent->GetStation() == station) {
1780 return STR_STATION_VIEW_NONSTOP;
1781 } else {
1782 return STR_STATION_VIEW_VIA;
1783 }
1784 }
1785 parent = parent->GetParent();
1786 }
1787
1788 if (column < NUM_COLUMNS - 1 && this->groupings[column + 1] == GR_DESTINATION) {
1789 CargoDataSet::iterator begin = cd.Begin();
1790 CargoDataSet::iterator end = cd.End();
1791 if (begin != end && ++(cd.Begin()) == end && (*(begin))->GetStation() == station) {
1792 return STR_STATION_VIEW_NONSTOP;
1793 } else {
1794 return STR_STATION_VIEW_VIA;
1795 }
1796 }
1797
1798 return STR_STATION_VIEW_VIA;
1799 }
1800
1807 void DrawCargoIcons(CargoType cargo, uint waiting, const Rect &r) const
1808 {
1809 int width = ScaleSpriteTrad(10);
1810 uint num = std::min<uint>((waiting + (width / 2)) / width, r.Width() / width); // maximum is width / 10 icons so it won't overflow
1811 if (num == 0) return;
1812
1813 SpriteID sprite = CargoSpec::Get(cargo)->GetCargoIcon();
1814
1815 int x = _current_text_dir == TD_RTL ? r.left : r.right - num * width;
1816 int y = CentreBounds(r.top, r.bottom, this->cargo_icon_size.height);
1817 do {
1818 DrawSprite(sprite, PAL_NONE, x, y);
1819 x += width;
1820 } while (--num);
1821 }
1822
1833 int DrawEntries(CargoDataEntry &entry, const Rect &r, int pos, int maxrows, int column, CargoType cargo = INVALID_CARGO)
1834 {
1835 assert(column < NUM_COLUMNS);
1836 if (this->sortings[column] == CargoSortType::AsGrouping) {
1837 if (this->groupings[column] != GR_CARGO) {
1838 entry.Resort(CargoSortType::StationString, this->sort_orders[column]);
1839 }
1840 } else {
1841 entry.Resort(CargoSortType::Count, this->sort_orders[column]);
1842 }
1843 int text_y_offset = (this->line_height - GetCharacterHeight(FontSize::Normal)) / 2;
1844 for (CargoDataSet::iterator i = entry.Begin(); i != entry.End(); ++i) {
1845 CargoDataEntry &cd = **i;
1846
1847 Grouping grouping = this->groupings[column];
1848 if (grouping == GR_CARGO) cargo = cd.GetCargo();
1849 bool auto_distributed = _settings_game.linkgraph.GetDistributionType(cargo) != DistributionType::Manual;
1850
1851 if (pos > -maxrows && pos <= 0) {
1852 StringID str = STR_EMPTY;
1853 StationID station = StationID::Invalid();
1854 int y = r.top - pos * this->line_height;
1855 if (this->groupings[column] == GR_CARGO) {
1856 str = STR_STATION_VIEW_WAITING_CARGO;
1857 this->DrawCargoIcons(cd.GetCargo(), cd.GetCount(), Rect(r.left + this->expand_shrink_width, y, r.right - this->expand_shrink_width, y + this->line_height - 1));
1858 } else {
1859 if (!auto_distributed) grouping = GR_SOURCE;
1860 station = cd.GetStation();
1861 str = this->GetGroupingString(grouping, station);
1862 if (grouping == GR_NEXT && str == STR_STATION_VIEW_VIA) str = this->SearchNonStop(cd, station, column);
1863
1864 if (pos == -this->scroll_to_row && Station::IsValidID(station)) {
1866 }
1867 }
1868
1869 bool rtl = _current_text_dir == TD_RTL;
1870 Rect text = r.Indent(column * WidgetDimensions::scaled.hsep_indent, rtl).Indent(this->expand_shrink_width, !rtl);
1871 Rect shrink = r.WithWidth(this->expand_shrink_width, !rtl);
1872
1873 DrawString(text.left, text.right, y + text_y_offset, GetString(str, cargo, cd.GetCount(), station));
1874
1875 if (column < NUM_COLUMNS - 1) {
1876 std::string_view sym;
1877 if (cd.GetNumChildren() > 0) {
1878 sym = "-";
1879 } else if (auto_distributed && str != STR_STATION_VIEW_RESERVED) {
1880 sym = "+";
1881 } else {
1882 /* Only draw '+' if there is something to be shown. */
1883 const GoodsEntry &ge = Station::Get(this->window_number)->goods[cargo];
1884 if (ge.HasData()) {
1885 const StationCargoList &cargo_list = ge.GetData().cargo;
1886 if (grouping == GR_CARGO && (cargo_list.ReservedCount() > 0 || cd.HasTransfers())) {
1887 sym = "+";
1888 }
1889 }
1890 }
1891 if (!sym.empty()) DrawString(shrink.left, shrink.right, y + text_y_offset, sym, TextColour::Yellow);
1892 }
1893 this->SetDisplayedRow(cd);
1894 }
1895 --pos;
1896 if ((auto_distributed || column == 0) && column < NUM_COLUMNS - 1) {
1897 pos = this->DrawEntries(cd, r, pos, maxrows, column + 1, cargo);
1898 }
1899 }
1900 return pos;
1901 }
1902
1908 int DrawAcceptedCargo(const Rect &r) const
1909 {
1910 const Station *st = Station::Get(this->window_number);
1911 Rect tr = r.Shrink(WidgetDimensions::scaled.framerect);
1912
1913 int bottom = DrawStringMultiLine(tr.left, tr.right, tr.top, INT32_MAX, GetString(STR_STATION_VIEW_ACCEPTS_CARGO, GetAcceptanceMask(st)));
1914 return CeilDiv(bottom - r.top - WidgetDimensions::scaled.framerect.top, GetCharacterHeight(FontSize::Normal));
1915 }
1916
1922 int DrawCargoRatings(const Rect &r) const
1923 {
1924 const Station *st = Station::Get(this->window_number);
1925 bool rtl = _current_text_dir == TD_RTL;
1926 Rect tr = r.Shrink(WidgetDimensions::scaled.framerect);
1927
1928 if (st->town->exclusive_counter > 0) {
1929 tr.top = DrawStringMultiLine(tr, GetString(st->town->exclusivity == st->owner ? STR_STATION_VIEW_EXCLUSIVE_RIGHTS_SELF : STR_STATION_VIEW_EXCLUSIVE_RIGHTS_COMPANY, st->town->exclusivity));
1930 tr.top += WidgetDimensions::scaled.vsep_wide;
1931 }
1932
1933 DrawString(tr, TimerGameEconomy::UsingWallclockUnits() ? STR_STATION_VIEW_SUPPLY_RATINGS_TITLE_MINUTE : STR_STATION_VIEW_SUPPLY_RATINGS_TITLE_MONTH);
1935
1936 for (const CargoSpec *cs : _sorted_standard_cargo_specs) {
1937 const GoodsEntry *ge = &st->goods[cs->Index()];
1938 if (!ge->HasRating()) continue;
1939
1941 DrawString(tr.Indent(WidgetDimensions::scaled.hsep_indent, rtl),
1942 GetString(STR_STATION_VIEW_CARGO_SUPPLY_RATING,
1943 cs->name,
1944 lg != nullptr ? lg->Monthly((*lg)[ge->node].supply) : 0,
1945 STR_CARGO_RATING_APPALLING + (ge->rating >> 5),
1946 ToPercent8(ge->rating)));
1948 }
1949 return CeilDiv(tr.top - r.top - WidgetDimensions::scaled.framerect.top, GetCharacterHeight(FontSize::Normal));
1950 }
1951
1957 template <class Tid>
1959 {
1960 if (filter->Retrieve(next) != nullptr) {
1961 filter->Remove(next);
1962 } else {
1963 filter->InsertOrRetrieve(next);
1964 }
1965 }
1966
1972 {
1973 if (row < 0 || (uint)row >= this->displayed_rows.size()) return;
1974 if (_ctrl_pressed) {
1975 this->scroll_to_row = row;
1976 } else {
1977 RowDisplay &display = this->displayed_rows[row];
1978 if (display.filter == &this->expanded_rows) {
1980 } else {
1982 }
1983 }
1986 }
1987
1988 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
1989 {
1990 Window *w = FindWindowByClass(WindowClass::QueryString);
1991
1992 switch (widget) {
1993 case WID_SV_WAITING:
1994 this->HandleCargoWaitingClick(this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_SV_WAITING, WidgetDimensions::scaled.framerect.top) - this->vscroll->GetPosition());
1995 break;
1996
1997 case WID_SV_CATCHMENT:
1999
2000 if (w != nullptr && this->IsWidgetLowered(WID_SV_CATCHMENT)) {
2001 if (w->parent->window_class == WindowClass::StationView && w->IsWidgetLowered(WID_QS_MOVE)) SetViewportStationRect(Station::Get(w->parent->window_number), true);
2002 if (w->parent->window_class == WindowClass::WaypointView && w->IsWidgetLowered(WID_QS_MOVE)) SetViewportWaypointRect(Waypoint::Get(w->parent->window_number), true);
2003 }
2004 break;
2005
2006 case WID_SV_LOCATION:
2007 if (_ctrl_pressed) {
2008 ShowExtraViewportWindow(Station::Get(this->window_number)->xy);
2009 } else {
2010 ScrollMainWindowToTile(Station::Get(this->window_number)->xy);
2011 }
2012 break;
2013
2015 /* Swap between 'accepts' and 'ratings' view. */
2016 int height_change;
2018 if (this->GetWidget<NWidgetCore>(WID_SV_ACCEPTS_RATINGS)->GetString() == STR_STATION_VIEW_RATINGS_BUTTON) {
2019 nwi->SetStringTip(STR_STATION_VIEW_ACCEPTS_BUTTON, STR_STATION_VIEW_ACCEPTS_TOOLTIP); // Switch to accepts view.
2020 height_change = this->rating_lines - this->accepts_lines;
2021 } else {
2022 nwi->SetStringTip(STR_STATION_VIEW_RATINGS_BUTTON, STR_STATION_VIEW_RATINGS_TOOLTIP); // Switch to ratings view.
2023 height_change = this->accepts_lines - this->rating_lines;
2024 }
2025 this->ReInit(0, height_change * GetCharacterHeight(FontSize::Normal));
2026 break;
2027 }
2028
2029 case WID_SV_RENAME:
2030 ShowQueryString(GetString(STR_STATION_NAME, this->window_number), STR_STATION_VIEW_EDIT_STATION_SIGN, MAX_LENGTH_STATION_NAME_CHARS,
2032 break;
2033
2035 Command<Commands::OpenCloseAirport>::Post(this->window_number);
2036 break;
2037
2038 case WID_SV_TRAINS: // Show list of scheduled trains to this station
2039 case WID_SV_ROADVEHS: // Show list of scheduled road-vehicles to this station
2040 case WID_SV_SHIPS: // Show list of scheduled ships to this station
2041 case WID_SV_PLANES: { // Show list of scheduled aircraft to this station
2042 Owner owner = Station::Get(this->window_number)->owner;
2043 ShowVehicleListWindow(owner, (VehicleType)(widget - WID_SV_TRAINS), static_cast<StationID>(this->window_number));
2044 break;
2045 }
2046
2047 case WID_SV_SORT_BY: {
2048 /* The initial selection is composed of current mode and
2049 * sorting criteria for columns 1, 2, and 3. Column 0 is always
2050 * sorted by cargo type. The others can theoretically be sorted
2051 * by different things but there is no UI for that. */
2053 this->current_mode * 2 + (this->sortings[1] == CargoSortType::Count ? 1 : 0),
2054 WID_SV_SORT_BY, 0, 0);
2055 break;
2056 }
2057
2058 case WID_SV_GROUP_BY: {
2059 ShowDropDownMenu(this, StationViewWindow::group_names, this->grouping_index, WID_SV_GROUP_BY, 0, 0);
2060 break;
2061 }
2062
2063 case WID_SV_SORT_ORDER: { // flip sorting method asc/desc
2064 this->SelectSortOrder(this->sort_orders[1] == SO_ASCENDING ? SO_DESCENDING : SO_ASCENDING);
2065 this->SetTimeout();
2067 break;
2068 }
2069 }
2070 }
2071
2076 void SelectSortOrder(SortOrder order)
2077 {
2078 this->sort_orders[1] = this->sort_orders[2] = this->sort_orders[3] = order;
2079 _settings_client.gui.station_gui_sort_order = this->sort_orders[1];
2080 this->SetDirty();
2081 }
2082
2087 void SelectSortBy(int index)
2088 {
2089 _settings_client.gui.station_gui_sort_by = index;
2090 switch (StationViewWindow::sort_names[index]) {
2091 case STR_STATION_VIEW_WAITING_STATION:
2092 this->current_mode = MODE_WAITING;
2093 this->sortings[1] = this->sortings[2] = this->sortings[3] = CargoSortType::AsGrouping;
2094 break;
2095 case STR_STATION_VIEW_WAITING_AMOUNT:
2096 this->current_mode = MODE_WAITING;
2097 this->sortings[1] = this->sortings[2] = this->sortings[3] = CargoSortType::Count;
2098 break;
2099 case STR_STATION_VIEW_PLANNED_STATION:
2100 this->current_mode = MODE_PLANNED;
2101 this->sortings[1] = this->sortings[2] = this->sortings[3] = CargoSortType::AsGrouping;
2102 break;
2103 case STR_STATION_VIEW_PLANNED_AMOUNT:
2104 this->current_mode = MODE_PLANNED;
2105 this->sortings[1] = this->sortings[2] = this->sortings[3] = CargoSortType::Count;
2106 break;
2107 default:
2108 NOT_REACHED();
2109 }
2110 /* Display the current sort variant */
2112 this->SetDirty();
2113 }
2114
2119 void SelectGroupBy(int index)
2120 {
2121 this->grouping_index = index;
2122 _settings_client.gui.station_gui_group_order = index;
2124 switch (StationViewWindow::group_names[index]) {
2125 case STR_STATION_VIEW_GROUP_S_V_D:
2126 this->groupings[1] = GR_SOURCE;
2127 this->groupings[2] = GR_NEXT;
2128 this->groupings[3] = GR_DESTINATION;
2129 break;
2130 case STR_STATION_VIEW_GROUP_S_D_V:
2131 this->groupings[1] = GR_SOURCE;
2132 this->groupings[2] = GR_DESTINATION;
2133 this->groupings[3] = GR_NEXT;
2134 break;
2135 case STR_STATION_VIEW_GROUP_V_S_D:
2136 this->groupings[1] = GR_NEXT;
2137 this->groupings[2] = GR_SOURCE;
2138 this->groupings[3] = GR_DESTINATION;
2139 break;
2140 case STR_STATION_VIEW_GROUP_V_D_S:
2141 this->groupings[1] = GR_NEXT;
2142 this->groupings[2] = GR_DESTINATION;
2143 this->groupings[3] = GR_SOURCE;
2144 break;
2145 case STR_STATION_VIEW_GROUP_D_S_V:
2146 this->groupings[1] = GR_DESTINATION;
2147 this->groupings[2] = GR_SOURCE;
2148 this->groupings[3] = GR_NEXT;
2149 break;
2150 case STR_STATION_VIEW_GROUP_D_V_S:
2151 this->groupings[1] = GR_DESTINATION;
2152 this->groupings[2] = GR_NEXT;
2153 this->groupings[3] = GR_SOURCE;
2154 break;
2155 }
2156 this->SetDirty();
2157 }
2158
2159 void OnDropdownSelect(WidgetID widget, int index, int) override
2160 {
2161 if (widget == WID_SV_SORT_BY) {
2162 this->SelectSortBy(index);
2163 } else {
2164 this->SelectGroupBy(index);
2165 }
2166 }
2167
2168 void OnQueryTextFinished(std::optional<std::string> str) override
2169 {
2170 if (!str.has_value()) return;
2171
2172 Command<Commands::RenameStation>::Post(STR_ERROR_CAN_T_RENAME_STATION, this->window_number, *str);
2173 }
2174
2175 void OnResize() override
2176 {
2177 this->vscroll->SetCapacityFromWidget(this, WID_SV_WAITING, WidgetDimensions::scaled.framerect.Vertical());
2178 }
2179
2185 void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
2186 {
2187 if (gui_scope) {
2188 if (data >= 0 && data < NUM_CARGO) {
2189 this->cached_destinations.Remove((CargoType)data);
2190 } else {
2191 this->ReInit();
2192 }
2193 }
2194 }
2195};
2196
2199 WindowPosition::Automatic, "view_station", 249, 117,
2200 WindowClass::StationView, WindowClass::None,
2201 {},
2202 _nested_station_view_widgets
2203);
2204
2214
2220
2221static std::vector<TileAndStation> _deleted_stations_nearby;
2222static std::vector<StationID> _stations_nearby_list;
2223
2231template <class T>
2232static void AddNearbyStation(TileIndex tile, TileArea *ctx)
2233{
2234 /* First check if there were deleted stations here */
2235 for (auto it = _deleted_stations_nearby.begin(); it != _deleted_stations_nearby.end(); /* nothing */) {
2236 if (it->tile == tile) {
2237 _stations_nearby_list.push_back(it->station);
2238 it = _deleted_stations_nearby.erase(it);
2239 } else {
2240 ++it;
2241 }
2242 }
2243
2244 /* Check if own station and if we stay within station spread */
2245 if (!IsTileType(tile, TileType::Station)) return;
2246
2247 StationID sid = GetStationIndex(tile);
2248
2249 /* This station is (likely) a waypoint */
2250 if (!T::IsValidID(sid)) return;
2251
2252 BaseStation *st = BaseStation::Get(sid);
2253 if (st->owner != _local_company || std::ranges::find(_stations_nearby_list, sid) != _stations_nearby_list.end()) return;
2254
2255 if (st->rect.BeforeAddRect(ctx->tile, ctx->w, ctx->h, StationRect::ADD_TEST).Succeeded()) {
2256 _stations_nearby_list.push_back(sid);
2257 }
2258}
2259
2269template <class T>
2270static void FindStationsNearby(TileArea ta, bool distant_join)
2271{
2272 TileArea ctx = ta;
2273
2274 _stations_nearby_list.clear();
2275 _stations_nearby_list.push_back(NEW_STATION);
2276 _deleted_stations_nearby.clear();
2277
2278 /* Look for deleted stations */
2279 for (const BaseStation *st : BaseStation::Iterate()) {
2280 if (T::IsValidBaseStation(st) && !st->IsInUse() && st->owner == _local_company) {
2281 /* Include only within station spread (yes, it is strictly less than) */
2282 if (std::max(DistanceMax(ta.tile, st->xy), DistanceMax(TileAddXY(ta.tile, ta.w - 1, ta.h - 1), st->xy)) < _settings_game.station.station_spread) {
2283 _deleted_stations_nearby.emplace_back(st->xy, st->index);
2284
2285 /* Add the station when it's within where we're going to build */
2286 if (IsInsideBS(TileX(st->xy), TileX(ctx.tile), ctx.w) &&
2287 IsInsideBS(TileY(st->xy), TileY(ctx.tile), ctx.h)) {
2288 AddNearbyStation<T>(st->xy, &ctx);
2289 }
2290 }
2291 }
2292 }
2293
2294 /* Add stations that are within station tile area. Stations do not have to occupy all tiles */
2295 for (auto t : ta) {
2296 AddNearbyStation<T>(t, &ctx);
2297 }
2298
2299 /* Only search tiles where we have a chance to stay within the station spread.
2300 * The complete check needs to be done in the callback as we don't know the
2301 * extent of the found station, yet. */
2302 if (distant_join && std::min(ta.w, ta.h) >= _settings_game.station.station_spread) return;
2303 uint max_dist = distant_join ? _settings_game.station.station_spread - std::min(ta.w, ta.h) : 1;
2304
2305 for (auto tile : SpiralTileSequence(TileAddByDir(ctx.tile, Direction::N), max_dist, ta.w, ta.h)) {
2306 AddNearbyStation<T>(tile, &ctx);
2307 }
2308}
2309
2310static constexpr std::initializer_list<NWidgetPart> _nested_select_station_widgets = {
2313 NWidget(WWT_CAPTION, Colours::DarkGreen, WID_JS_CAPTION), SetStringTip(STR_JOIN_STATION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
2315 EndContainer(),
2321 EndContainer(),
2322 EndContainer(),
2323};
2324
2329template <class T>
2330struct SelectStationWindow : Window {
2331 StationPickerCmdProc select_station_proc{};
2333 Scrollbar *vscroll = nullptr;
2334
2335 SelectStationWindow(WindowDesc &desc, TileArea ta, StationPickerCmdProc&& proc) :
2336 Window(desc),
2337 select_station_proc(std::move(proc)),
2338 area(ta)
2339 {
2340 this->CreateNestedTree();
2341 this->vscroll = this->GetScrollbar(WID_JS_SCROLLBAR);
2342 this->GetWidget<NWidgetCore>(WID_JS_CAPTION)->SetString(T::IsWaypoint() ? STR_JOIN_WAYPOINT_CAPTION : STR_JOIN_STATION_CAPTION);
2343 this->FinishInitNested(0);
2344 this->OnInvalidateData(0);
2345
2346 _thd.freeze = true;
2347 }
2348
2349 void Close([[maybe_unused]] int data = 0) override
2350 {
2351 SetViewportCatchmentSpecializedStation<typename T::StationType>(nullptr, true);
2352
2353 _thd.freeze = false;
2354 this->Window::Close();
2355 }
2356
2357 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
2358 {
2359 if (widget != WID_JS_PANEL) return;
2360
2361 /* Determine the widest string */
2362 Dimension d = GetStringBoundingBox(T::IsWaypoint() ? STR_JOIN_WAYPOINT_CREATE_SPLIT_WAYPOINT : STR_JOIN_STATION_CREATE_SPLIT_STATION);
2363 for (const auto &station : _stations_nearby_list) {
2364 if (station == NEW_STATION) continue;
2365 const BaseStation *st = BaseStation::Get(station);
2366 d = maxdim(d, GetStringBoundingBox(T::IsWaypoint()
2367 ? GetString(STR_STATION_LIST_WAYPOINT, st->index)
2368 : GetString(STR_STATION_LIST_STATION, st->index, st->facilities)));
2369 }
2370
2371 fill.height = resize.height = d.height;
2372 d.height *= 5;
2373 d.width += padding.width;
2374 d.height += padding.height;
2375 size = d;
2376 }
2377
2378 void DrawWidget(const Rect &r, WidgetID widget) const override
2379 {
2380 if (widget != WID_JS_PANEL) return;
2381
2382 Rect tr = r.Shrink(WidgetDimensions::scaled.framerect);
2383 auto [first, last] = this->vscroll->GetVisibleRangeIterators(_stations_nearby_list);
2384 for (auto it = first; it != last; ++it, tr.top += this->resize.step_height) {
2385 if (*it == NEW_STATION) {
2386 DrawString(tr, T::IsWaypoint() ? STR_JOIN_WAYPOINT_CREATE_SPLIT_WAYPOINT : STR_JOIN_STATION_CREATE_SPLIT_STATION);
2387 } else {
2388 const BaseStation *st = BaseStation::Get(*it);
2389 DrawString(tr, T::IsWaypoint()
2390 ? GetString(STR_STATION_LIST_WAYPOINT, st->index)
2391 : GetString(STR_STATION_LIST_STATION, st->index, st->facilities));
2392 }
2393 }
2394
2395 }
2396
2397 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
2398 {
2399 if (widget != WID_JS_PANEL) return;
2400
2401 auto it = this->vscroll->GetScrolledItemFromWidget(_stations_nearby_list, pt.y, this, WID_JS_PANEL, WidgetDimensions::scaled.framerect.top);
2402 if (it == _stations_nearby_list.end()) return;
2403
2404 /* Execute stored Command */
2405 this->select_station_proc(false, *it);
2406
2407 /* Close Window; this might cause double frees! */
2408 CloseWindowById(WindowClass::JoinStation, 0);
2409 }
2410
2411 void OnRealtimeTick([[maybe_unused]] uint delta_ms) override
2412 {
2413 if (_thd.dirty & 2) {
2414 _thd.dirty &= ~2;
2415 this->SetDirty();
2416 }
2417 }
2418
2419 void OnResize() override
2420 {
2421 this->vscroll->SetCapacityFromWidget(this, WID_JS_PANEL, WidgetDimensions::scaled.framerect.Vertical());
2422 }
2423
2429 void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
2430 {
2431 if (!gui_scope) return;
2432 FindStationsNearby<T>(this->area, true);
2433 this->vscroll->SetCount(_stations_nearby_list.size());
2434 this->SetDirty();
2435 }
2436
2437 void OnMouseOver([[maybe_unused]] Point pt, WidgetID widget) override
2438 {
2439 if (widget != WID_JS_PANEL) {
2440 SetViewportCatchmentSpecializedStation<typename T::StationType>(nullptr, true);
2441 return;
2442 }
2443
2444 /* Show coverage area of station under cursor */
2445 auto it = this->vscroll->GetScrolledItemFromWidget(_stations_nearby_list, pt.y, this, WID_JS_PANEL, WidgetDimensions::scaled.framerect.top);
2446 const typename T::StationType *st = it == _stations_nearby_list.end() || *it == NEW_STATION ? nullptr : T::StationType::Get(*it);
2447 SetViewportCatchmentSpecializedStation<typename T::StationType>(st, true);
2448 }
2449};
2450
2453 WindowPosition::Automatic, "build_station_join", 200, 180,
2454 WindowClass::JoinStation, WindowClass::None,
2456 _nested_select_station_widgets
2457);
2458
2459
2465static bool StationJoinerNeeded(const StationPickerCmdProc &proc)
2466{
2467 /* Only show selection if distant join is enabled in the settings */
2468 if (!_settings_game.station.distant_join_stations) return false;
2469
2470 /* If a window is already opened and we didn't ctrl-click,
2471 * return true (i.e. just flash the old window) */
2472 Window *selection_window = FindWindowById(WindowClass::JoinStation, 0);
2473 if (selection_window != nullptr) {
2474 /* Abort current distant-join and start new one */
2475 selection_window->Close();
2477 }
2478
2479 /* only show the popup, if we press ctrl */
2480 if (!_ctrl_pressed) return false;
2481
2482 /* Now check if we could build there */
2483 return proc(true, StationID::Invalid());
2484}
2485
2492template <class T>
2493void ShowSelectBaseStationIfNeeded(TileArea ta, StationPickerCmdProc&& proc)
2494{
2495 if (StationJoinerNeeded(proc)) {
2496 if (!_settings_client.gui.persistent_buildingtools) ResetObjectToPlace();
2497 FindStationsNearby<T>(ta, false);
2498 new SelectStationWindow<T>(_select_station_desc, ta, std::move(proc));
2499 } else {
2500 proc(false, StationID::Invalid());
2501 }
2502}
2503
2509void ShowSelectStationIfNeeded(TileArea ta, StationPickerCmdProc proc)
2510{
2512}
2513
2519void ShowSelectRailWaypointIfNeeded(TileArea ta, StationPickerCmdProc proc)
2520{
2522}
2523
2529void ShowSelectRoadWaypointIfNeeded(TileArea ta, StationPickerCmdProc proc)
2530{
2532}
@ AirportClosed
Dummy block for indicating a closed airport.
Definition airport.h:131
constexpr bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
EnumBitSet< CargoType, uint64_t > CargoTypes
Bitset of CargoType elements.
Definition cargo_type.h:113
static constexpr CargoType NUM_CARGO
Maximum number of cargo types in a game.
Definition cargo_type.h:75
CargoType
Cargo slots to indicate a cargo type within a game.
Definition cargo_type.h:22
Dimension GetLargestCargoIconSize()
Get dimensions of largest cargo icon.
std::span< const CargoSpec * > _sorted_standard_cargo_specs
Standard cargo specifications sorted alphabetically by name.
std::vector< const CargoSpec * > _sorted_cargo_specs
Cargo specifications sorted alphabetically by name.
CargoTypes _cargo_mask
Bitmask of cargo types available.
Definition cargotype.cpp:30
Types/functions related to cargoes.
@ Passengers
Passengers.
Definition cargotype.h:51
bool IsCargoInClass(CargoType cargo, CargoClasses cc)
Does cargo c have cargo class cc?
Definition cargotype.h:238
uint Count() const
Count the number of set bits.
constexpr bool Test(Tvalue_type value) const
Test if the value-th bit is set.
constexpr bool None() const
Test if none of the values are set.
constexpr Timpl & Flip()
Flip all bits.
constexpr Timpl & Reset()
Reset all bits.
constexpr Timpl & Set()
Set all bits.
auto begin() const
Returns an iterator to begin of the set bits.
constexpr bool Any(const Timpl &other) const
Test if any of the given values are set.
A cargo data entry representing one possible row in the station view window's top part.
uint count
sum of counts of all children or amount of cargo for this entry.
void Clear()
Delete all subentries, reset count and num_children and adapt parent's count.
StationID GetStation() const
Get the station ID for this entry.
void IncrementSize()
Increment.
void SetTransfers(bool value)
Set the transfers state.
~CargoDataEntry()
Remove ourselves from our parent.
CargoType GetCargo() const
Get the cargo type for this entry.
uint num_children
the number of subentries belonging to this entry.
void Remove(CargoType cargo)
Remove a child associated with the given cargo.
CargoDataEntry * Retrieve(StationID station) const
Retrieve a child for the given station.
uint GetCount() const
Get the cargo count for this entry.
CargoDataEntry * GetParent() const
Get the parent entry for this entry.
StationID station
ID of the station this entry is associated with.
CargoType cargo
ID of the cargo this entry is associated with.
CargoDataEntry & InsertOrRetrieve(StationID station)
Insert a new child or retrieve an existing child using a station ID as ID.
CargoDataEntry & InsertOrRetrieve(CargoType cargo)
Insert a new child or retrieve an existing child using a cargo type as ID.
CargoDataSet::iterator End() const
Get an iterator pointing to the end of the set of children.
void Update(uint count)
Update the count for this entry and propagate the change to the parent entry if there is one.
std::unique_ptr< CargoDataSet > children
the children of this entry.
bool transfers
If there are transfers for this cargo.
CargoDataSet::iterator Begin() const
Get an iterator pointing to the begin of the set of children.
bool HasTransfers() const
Has this entry transfers.
CargoDataEntry * Retrieve(CargoType cargo) const
Retrieve a child for the given cargo.
CargoDataEntry * parent
the parent of this entry.
void Remove(StationID station)
Remove a child associated with the given station.
uint GetNumChildren() const
Get the number of children for this entry.
const Tcont * Packets() const
Returns a pointer to the cargo packet list (so you can iterate over it etc).
StationCargoPacketMap::const_iterator ConstIterator
bool Succeeded() const
Did this command succeed?
The list of stations per company.
std::array< uint16_t, NUM_CARGO > stations_per_cargo_type
Number of stations with a rating for each cargo type.
static bool StationNameSorter(const Station *const &a, const Station *const &b, const CargoTypes &filter)
Sort stations by their name.
void UpdateWidgetSize(WidgetID widget, Dimension &size, const Dimension &padding, Dimension &fill, Dimension &resize) override
Update size and resize step of a widget in the window.
void OnEditboxChanged(WidgetID wid) override
The text in an editbox has been edited.
void OnResize() override
Called after the window got resized.
static bool StationWaitingAvailableSorter(const Station *const &a, const Station *const &b, const CargoTypes &filter)
Sort stations by their available waiting cargo.
void SortStationsList()
Sort the stations list.
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
StringFilter string_filter
Filter for name.
static const StringID sorter_names[]
Strings describing how stations are sorted.
void OnDropdownSelect(WidgetID widget, int index, int) override
A dropdown option associated to this window has been selected.
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
static bool StationRatingMaxSorter(const Station *const &a, const Station *const &b, const CargoTypes &filter)
Sort stations by their rating.
std::string GetWidgetString(WidgetID widget, StringID stringid) const override
Get the raw string for a widget.
void OnPaint() override
The window must be repainted.
static bool StationWaitingTotalSorter(const Station *const &a, const Station *const &b, const CargoTypes &filter)
Sort stations by their waiting cargo.
void DrawWidget(const Rect &r, WidgetID widget) const override
Draw the contents of a nested widget.
QueryString name_editbox
Filter editbox.
static bool StationTypeSorter(const Station *const &a, const Station *const &b, const CargoTypes &filter)
Sort stations by their type.
void OnGameTick() override
Called once per (game) tick.
~CompanyStationsWindow() override
Save the last sorting state.
void BuildStationsList(const Owner owner)
(Re)Build station list
static const std::initializer_list< GUIStationList::SortFunction *const > sorter_funcs
Functions to sort stations.
uint16_t stations_per_cargo_type_no_rating
Number of stations without a rating.
static bool StationRatingMinSorter(const Station *const &a, const Station *const &b, const CargoTypes &filter)
Sort stations by their rating.
Drop down checkmark component.
Iterate a range of enum values.
Flow descriptions by origin stations.
List template of 'things' T to sort in a GUI.
void RebuildDone()
Notify the sortlist that the rebuild is done.
bool IsDescSortOrder() const
Check if the sort order is descending.
void ToggleSortOrder()
Toggle the sort order Since that is the worst condition for the sort function reverse the list here.
bool NeedRebuild() const
Check if a rebuild is needed.
void ForceRebuild()
Force that a rebuild is needed.
bool Sort(Comp compare)
Sort the list.
void ForceResort()
Force a resort next Sort call Reset the resort timer if used too.
uint8_t SortType() const
Get the sorttype of the list.
Listing GetListing() const
Export current sort conditions.
bool NeedResort()
Check if a resort is needed next loop If used the resort timer will decrease every call till 0.
void SetSortType(uint8_t n_type)
Set the sorttype of the list.
A connected component of a link graph.
Definition linkgraph.h:37
uint Monthly(uint base) const
Scale a value to its monthly equivalent, based on last compression.
Definition linkgraph.h:253
Baseclass for nested widgets.
Base class for a 'real' widget.
void SetString(StringID string)
Set string of the nested widget.
Definition widget.cpp:1190
void SetStringTip(StringID string, StringID tool_tip)
Set string and tool tip of the nested widget.
Definition widget.cpp:1200
Scrollbar data structure.
size_type GetCapacity() const
Gets the number of visible elements of the scrollbar.
void SetCount(size_t num)
Sets the number of elements in the list.
auto GetScrolledItemFromWidget(Tcontainer &container, int clickpos, const Window *const w, WidgetID widget, int padding=0, int line_height=-1) const
Return an iterator pointing to the element of a scrolled widget that a user clicked in.
size_type GetScrolledRowFromWidget(int clickpos, const Window *const w, WidgetID widget, int padding=0, int line_height=-1) const
Compute the row of a scrolled widget that a user clicked in.
Definition widget.cpp:2462
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
size_type GetCount() const
Gets the number of elements in the list.
auto GetVisibleRangeIterators(Tcontainer &container) const
Get a pair of iterators for the range of visible elements in a container.
size_type GetPosition() const
Gets the position of the first visible element in the list.
Generate TileIndices around a center tile or tile area, with increasing distance.
CargoList that is used for stations.
uint ReservedCount() const
Returns sum of cargo reserved for loading onto vehicles.
static bool UsingWallclockUnits(bool newgame=false)
Check if we are using wallclock units.
static WidgetDimensions scaled
Widget dimensions scaled for current zoom level.
Definition window_gui.h:30
Functions related to commands.
Definition of stuff that is very close to a company, like the company struct itself.
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Functions related to companies.
static constexpr Owner OWNER_NONE
The tile has no ownership.
Functions related to debugging.
#define Debug(category, level, format_string,...)
Output a line of debugging information.
Definition debug.h:37
void ShowDropDownMenu(Window *w, std::span< const StringID > strings, int selected, WidgetID button, uint32_t disabled_mask, uint32_t hidden_mask, uint width, DropDownOptions options, std::string *const persistent_filter_text)
Show a dropdown menu window near a widget of the parent window.
Definition dropdown.cpp:629
std::unique_ptr< DropDownListItem > MakeDropDownListDividerItem()
Creates new DropDownListDividerItem.
Definition dropdown.cpp:36
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
Common drop down list components.
Functions related to the drop down widget.
Types related to the drop down widget.
std::vector< std::unique_ptr< const DropDownListItem > > DropDownList
A drop down list is a collection of drop down list items.
@ Persist
Set if this dropdown should stay open after an option is selected.
@ Filterable
Set if the dropdown is filterable.
constexpr std::underlying_type_t< enum_type > to_underlying(enum_type e)
Implementation of std::to_underlying (from C++23).
Definition enum_type.hpp:21
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Definition fontcache.cpp:88
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
Geometry functions.
int CentreBounds(int min, int max, int size)
Determine where to position a centred object.
Dimension GetStringBoundingBox(std::string_view str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition gfx.cpp:899
Dimension GetStringListBoundingBox(std::span< const StringID > list, FontSize fontsize)
Get maximum dimension of a list of strings.
Definition gfx.cpp:938
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
uint8_t GetCharacterWidth(FontSize size, char32_t key)
Return width of character glyph.
Definition gfx.cpp:1277
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 DrawStringMultiLine(int left, int right, int top, int bottom, std::string_view str, ExtendedTextColour colour, Alignment align, bool underline, FontSize fontsize)
Draw string, possibly over multiple lines.
Definition gfx.cpp:787
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
uint32_t SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition gfx_type.h:17
@ Small
Index of the small font in the font tables.
Definition gfx_type.h:250
@ Normal
Index of the normal font in the font tables.
Definition gfx_type.h:249
@ Invalid
Invalid marker.
Definition gfx_type.h:302
@ Grey
Grey.
Definition gfx_type.h:299
@ DarkGreen
Dark green.
Definition gfx_type.h:292
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Definition gfx_type.h:315
@ Yellow
Yellow colour.
Definition gfx_type.h:326
@ Black
Black colour.
Definition gfx_type.h:334
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 SetScrollbar(WidgetID index)
Attach a scrollbar to 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 SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
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 SetTextStyle(TextColour colour, FontSize size=FontSize::Normal)
Widget part function for setting the text style.
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
GUI functions that shouldn't be here.
void ShowExtraViewportWindow(TileIndex tile=INVALID_TILE)
Show a new Extra Viewport window.
Declaration of link graph classes used for cargo distribution.
@ Manual
Manual distribution. No link graph calculations are run.
#define Rect
Macro that prevents name conflicts between included headers.
#define Point
Macro that prevents name conflicts between included headers.
uint DistanceMax(TileIndex t0, TileIndex t1)
Gets the biggest distance component (x or y) between the two given tiles.
Definition map.cpp:201
TileIndex TileAddXY(TileIndex tile, int x, int y)
Adds a given offset to a tile.
Definition map_func.h:474
static TileIndex TileVirtXY(uint x, uint y)
Get a tile from the virtual XY-coordinate.
Definition map_func.h:407
TileIndex TileAddByDir(TileIndex tile, Direction dir)
Adds a Direction to a tile.
Definition map_func.h:603
static TileIndex TileXY(uint x, uint y)
Returns the TileIndex of a coordinate.
Definition map_func.h:376
static uint TileY(TileIndex tile)
Get the Y component of a tile.
Definition map_func.h:429
static uint TileX(TileIndex tile)
Get the X component of a tile.
Definition map_func.h:419
int DivideApprox(int a, int b)
Deterministic approximate division.
Definition math_func.cpp:22
constexpr bool IsInsideBS(const T x, const size_t base, const size_t size)
Checks if a value is between a window started at some base point.
constexpr uint CeilDiv(uint a, uint b)
Computes ceil(a / b) for non-negative a and b.
constexpr uint ToPercent8(uint i)
Converts a "fract" value 0..255 to "percent" value 0..100.
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.
Types related to the misc widgets.
@ WID_QS_MOVE
Move button.
Definition misc_widget.h:39
static constexpr CargoType CF_EXPAND_LIST
Expand list to show all items (station list).
Definition cargo_type.h:102
static constexpr CargoType CF_NO_RATING
Show items with no rating (station list).
Definition cargo_type.h:100
static constexpr CargoType CF_SELECT_ALL
Select all items (station list).
Definition cargo_type.h:101
TextColour GetContrastColour(PixelColour background, uint8_t threshold)
Determine a contrasty text colour for a coloured background.
Definition palette.cpp:366
static constexpr PixelColour PC_GREEN
Green palette colour.
static constexpr PixelColour PC_RED
Red palette colour.
Base for the GUIs that have an edit box in them.
A number of safeguards to prevent using unsafe methods.
@ Invalid
broken savegame (used internally)
Definition saveload.h:449
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition settings.cpp:61
ClientSettings _settings_client
The current settings for this game.
Definition settings.cpp:60
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.
Base classes/functions for stations.
std::pair< CargoArray, CargoTypes > GetAcceptanceAroundTiles(TileIndex center_tile, int w, int h, int rad)
Get the acceptance of cargoes around the tile in 1/8.
bool HasStationInUse(StationID station, bool include_company, CompanyID company)
Tests whether the company's vehicles have this station in orders.
CargoTypes GetAcceptanceMask(const Station *st)
Get a mask of the cargo types that the station accepts.
CargoArray GetProductionAroundTiles(TileIndex north_tile, int w, int h, int rad)
Get the cargo types being produced around the tile (in a rectangle).
Command definitions related to stations.
static void StationsWndShowStationRating(int left, int right, int y, CargoType cargo, uint amount, uint8_t rating)
Draw small boxes of cargo amount and ratings data at the given coordinates.
void ShowSelectStationIfNeeded(TileArea ta, StationPickerCmdProc proc)
Show the station selection window when needed.
CargoSortType
Ways of sorting cargo in the UI.
@ StationID
by station id
@ CargoType
by cargo type
@ AsGrouping
by the same principle the entries are being grouped
@ StationString
by station name
@ Count
by amount of cargo
void ShowSelectRailWaypointIfNeeded(TileArea ta, StationPickerCmdProc proc)
Show the rail waypoint selection window when needed.
void FindStationsAroundSelection()
Find stations adjacent to the current tile highlight area, so that existing coverage area can be draw...
static bool StationJoinerNeeded(const StationPickerCmdProc &proc)
Check whether we need to show the station selection window.
int DrawStationCoverageAreaText(const Rect &r, StationCoverageType sct, int rad, bool supplies)
Calculates and draws the accepted or supplied cargo around the selected tile(s).
void ShowStationViewWindow(StationID station)
Opens StationViewWindow for given station.
void CheckRedrawStationCoverage(const Window *w)
Check whether we need to redraw the station coverage text.
static WindowDesc _select_station_desc(WindowPosition::Automatic, "build_station_join", 200, 180, WindowClass::JoinStation, WindowClass::None, WindowDefaultFlag::Construction, _nested_select_station_widgets)
Window definition for the station selection window for (distant) joining.
void ShowCompanyStations(CompanyID company)
Opens window with list of company's stations.
void ShowSelectBaseStationIfNeeded(TileArea ta, StationPickerCmdProc &&proc)
Show the station selection window when needed.
static WindowDesc _station_view_desc(WindowPosition::Automatic, "view_station", 249, 117, WindowClass::StationView, WindowClass::None, {}, _nested_station_view_widgets)
Window definition for the station view window.
static void FindStationsNearby(TileArea ta, bool distant_join)
Circulate around the to-be-built station to find stations we could join.
static WindowDesc _company_stations_desc(WindowPosition::Automatic, "list_stations", 358, 162, WindowClass::StationList, WindowClass::None, {}, _nested_company_stations_widgets)
Window definition for the company stations window.
static void AddNearbyStation(TileIndex tile, TileArea *ctx)
Add station on this tile to _stations_nearby_list if it's fully within the station spread.
void ShowSelectRoadWaypointIfNeeded(TileArea ta, StationPickerCmdProc proc)
Show the road waypoint selection window when needed.
Contains enums and function declarations connected with stations GUI.
StationCoverageType
Types of cargo to display for station coverage.
Definition station_gui.h:21
@ SCT_NON_PASSENGERS_ONLY
Draw all non-passenger class cargoes.
Definition station_gui.h:23
@ SCT_PASSENGERS_ONLY
Draw only passenger class cargoes.
Definition station_gui.h:22
@ SCT_ALL
Draw all cargoes.
Definition station_gui.h:24
StationID GetStationIndex(Tile t)
Get StationID from a tile.
Definition station_map.h:28
StationFacility
The facilities a station might be having.
@ Dock
Station with a dock.
@ TruckStop
Station with truck stops.
@ Train
Station with train station.
@ Airport
Station with an airport.
@ BusStop
Station with bus stops.
EnumBitSet< StationFacility, uint8_t > StationFacilities
Bitset of StationFacility elements.
static const uint MAX_LENGTH_STATION_NAME_CHARS
The maximum length of a station name in characters including '\0'.
Types related to the station widgets.
@ WID_JS_CAPTION
Caption of the window.
@ WID_JS_PANEL
Main panel.
@ WID_JS_SCROLLBAR
Scrollbar of the panel.
@ WID_SV_CLOSE_AIRPORT
'Close airport' button.
@ WID_SV_SORT_ORDER
'Sort order' button
@ WID_SV_CATCHMENT
Toggle catchment area highlight.
@ WID_SV_ROADVEHS
List of scheduled road vehs button.
@ WID_SV_SCROLLBAR
Scrollbar.
@ WID_SV_CAPTION
Caption of the window.
@ WID_SV_GROUP
label for "group by"
@ WID_SV_RENAME
'Rename' button.
@ WID_SV_SORT_BY
'Sort by' button
@ WID_SV_GROUP_BY
'Group by' button
@ WID_SV_PLANES
List of scheduled planes button.
@ WID_SV_ACCEPT_RATING_LIST
List of accepted cargoes / rating of cargoes.
@ WID_SV_WAITING
List of waiting cargo.
@ WID_SV_SHIPS
List of scheduled ships button.
@ WID_SV_LOCATION
'Location' button.
@ WID_SV_TRAINS
List of scheduled trains button.
@ WID_SV_ACCEPTS_RATINGS
'Accepts' / 'Ratings' button.
@ WID_SV_CLOSE_AIRPORT_SEL
Container for 'close airport' button, which can be hidden.
@ WID_STL_CAPTION
Caption of the window.
@ WID_STL_TRUCK
'TRUCK' button - list only facilities where is a truck stop.
@ WID_STL_SCROLLBAR
Scrollbar next to the main panel.
@ WID_STL_SORTDROPBTN
Dropdown button.
@ WID_STL_SORTBY
'Sort by' button - reverse sort direction.
@ WID_STL_TRAIN
'TRAIN' button - list only facilities where is a railroad station.
@ WID_STL_BUS
'BUS' button - list only facilities where is a bus stop.
@ WID_STL_FACILALL
'ALL' button - list all facilities.
@ WID_STL_LIST
The main panel, list of stations.
@ WID_STL_SHIP
'SHIP' button - list only facilities where is a dock.
@ WID_STL_FILTER
Filter of name.
@ WID_STL_CARGODROPDOWN
Cargo type dropdown list.
@ WID_STL_AIRPLANE
'AIRPLANE' button - list only facilities where is an airport.
Definition of base types and functions in a cross-platform compatible way.
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
std::string GetString(StringID string)
Resolve the given StringID into a std::string with formatting but no parameters.
Definition strings.cpp:424
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition strings.cpp:56
Functions related to OTTD's strings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
@ TD_RTL
Text is written right-to-left by default.
static const int MAX_CHAR_LENGTH
Max. length of UTF-8 encoded unicode character.
AirportBlocks blocks
stores which blocks on the airport are taken. was 16 bit earlier on, then 32
Base class for all station-ish types.
TileIndex xy
Base tile of the station.
StationFacilities facilities
The facilities that this station has.
Owner owner
The owner of this station.
StationRect rect
NOSAVE: Station spread out rectangle maintained by StationRect::xxx() functions.
Town * town
The town this station is associated with.
Class for storing amounts of cargo.
Definition cargo_type.h:118
Container for cargo from the same location and time.
Definition cargopacket.h:41
uint16_t Count() const
Gets the number of 'items' in this packet.
StationID GetFirstStation() const
Gets the ID of the station where the cargo was loaded for the first time.
Specification of a cargo type.
Definition cargotype.h:77
static CargoSpec * Get(size_t index)
Retrieve cargo details for the given cargo type.
Definition cargotype.h:141
StringID abbrev
Two letter abbreviation for this cargo type.
Definition cargotype.h:98
SpriteID GetCargoIcon() const
Get sprite for showing cargo of this type.
bool IsValid() const
Tests for validity of this cargospec.
Definition cargotype.h:121
CargoTypes cargoes
bitmap of cargo types to include
StationFacilities facilities
types of stations of interest
bool include_no_rating
Whether we should include stations with no cargo rating.
Dimensions (a width and height) of a rectangle in 2D.
FlowStatMap flows
Planned flows through this station.
StationCargoList cargo
The cargo packets of cargo waiting in this station.
Stores station stats for a single cargo.
bool HasRating() const
Does this cargo have a rating at this station?
NodeID node
ID of node in link graph referring to this goods entry.
const GoodsEntryData & GetData() const
Get optional cargo packet/flow data.
LinkGraphID link_graph
Link graph this station belongs to.
uint8_t rating
Station rating for this cargo.
bool HasData() const
Test if this goods entry has optional cargo packet/flow data.
Data structure describing how to show the list (what sort direction and criteria).
static uint MaxY()
Gets the maximum Y coordinate within the map, including TileType::Void.
Definition map_func.h:298
static uint MaxX()
Gets the maximum X coordinate within the map, including TileType::Void.
Definition map_func.h:289
static uint Size()
Get the size of the map.
Definition map_func.h:280
uint16_t w
The width of the area.
TileIndex tile
The base tile of the area.
uint16_t h
The height of the area.
Colour for pixel/line drawing.
Definition gfx_type.h:307
static Pool::IterateWrapper< BaseStation > Iterate(size_t from=0)
static BaseStation * Get(auto index)
static LinkGraph * GetIfValid(auto index)
Data stored about a string that can be modified in the GUI.
static const int ACTION_CLEAR
Clear editbox.
Specification of a rectangle with absolute coordinates of all edges.
Rect WithWidth(int width, bool end) const
Copy Rect and set its width.
int Width() const
Get width of Rect.
Rect Shrink(int s) const
Copy and shrink Rect by s pixels.
Rect Indent(int indent, bool end) const
Copy Rect and indent it from its position.
Window for selecting stations/waypoints to (distant) join to.
void DrawWidget(const Rect &r, WidgetID widget) const override
Draw the contents of a nested widget.
void OnRealtimeTick(uint delta_ms) override
Called periodically.
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.
void OnResize() override
Called after the window got resized.
void Close(int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
void OnMouseOver(Point pt, WidgetID widget) override
The mouse is currently moving over the window or has just moved outside of the window.
TileArea area
Location of new station.
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.
static bool IsExpected(const BaseStation *st)
static Pool::IterateWrapper< Station > Iterate(size_t from=0)
static Waypoint * Get(auto index)
static Waypoint * From(BaseStation *st)
A row being displayed in the cargo view (as opposed to being "hidden" behind a plus sign).
StationID next_station
ID of the station belonging to the entry actually displayed if it's to/from/via.
CargoDataEntry * filter
Parent of the cargo entry belonging to the row.
CargoType next_cargo
ID of the cargo belonging to the entry actually displayed if it's cargo.
The StationView window.
void HandleCargoWaitingClick(int row)
Handle a click on a specific row in the cargo view.
int DrawEntries(CargoDataEntry &entry, const Rect &r, int pos, int maxrows, int column, CargoType cargo=INVALID_CARGO)
Draw the given cargo entries in the station GUI.
void OnQueryTextFinished(std::optional< std::string > str) override
The query window opened from this window has closed.
void OnDropdownSelect(WidgetID widget, int index, int) override
A dropdown option associated to this window has been selected.
Mode
Display mode of the cargo view.
@ MODE_PLANNED
Show cargo planned to pass through the station.
@ MODE_WAITING
Show cargo waiting at the station.
std::array< Grouping, NUM_COLUMNS > groupings
Grouping modes for the different columns.
void EstimateDestinations(CargoType cargo, StationID source, StationID next, uint count, CargoDataEntry &dest)
Estimate the amounts of cargo per final destination for a given cargo, source station and next hop an...
void SelectSortBy(int index)
Select a new sort criterium for the cargo view.
void OnResize() override
Called after the window got resized.
StringID SearchNonStop(CargoDataEntry &cd, StationID station, int column)
Determine if we need to show the special "non-stop" string.
void Close(int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
Grouping
Type of grouping used in each of the "columns".
@ GR_SOURCE
Group by source of cargo ("from").
@ GR_NEXT
Group by next station ("via").
@ GR_CARGO
Group by cargo type.
@ GR_DESTINATION
Group by estimated final destination ("to").
void BuildCargoList(CargoType cargo, const StationCargoList &packets, CargoDataEntry *entry)
Build up the cargo view for WAITING mode and a specific cargo.
int DrawCargoRatings(const Rect &r) const
Draw cargo ratings in the WID_SV_ACCEPT_RATING_LIST widget.
static const int NUM_COLUMNS
Number of "columns" in the cargo view: cargo, from, via, to.
void OnInit() override
Notification that the nested widget tree gets initialized.
void RecalcDestinations(CargoType cargo)
Rebuild the cache for estimated destinations which is used to quickly show the "destination" entries ...
int line_height
Height of a cargo line.
Dimension cargo_icon_size
Size of largest cargo icon.
Invalidation
Type of data invalidation.
@ INV_FLOWS
The planned flows have been recalculated and everything has to be updated.
@ INV_CARGO
Some cargo has been added or removed.
void BuildCargoList(CargoDataEntry *entry, const Station *st)
Build up the cargo view for all cargoes.
void SelectSortOrder(SortOrder order)
Select a new sort order for the cargo view.
CargoDataEntry expanded_rows
Parent entry of currently expanded rows.
void OnPaint() override
The window must be repainted.
static constexpr uint RATING_LINES
Height in lines of the cargo ratings view.
CargoDataVector displayed_rows
Parent entry of currently displayed rows (including collapsed ones).
static const StringID group_names[]
Names of the grouping options in the dropdown.
int grouping_index
Currently selected entry in the grouping drop down.
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.
static constexpr uint ACCEPTS_LINES
Height in lines of the accepted cargo view.
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
StringID GetEntryString(StationID station, StringID here, StringID other_station, StringID any) const
Select the correct string for an entry referring to the specified station.
std::array< CargoSortType, NUM_COLUMNS > sortings
Sort types of the different 'columns'.
void SetDisplayedRow(const CargoDataEntry &entry)
Mark a specific row, characterized by its CargoDataEntry, as expanded.
std::string GetWidgetString(WidgetID widget, StringID stringid) const override
Get the raw string for a widget.
std::array< SortOrder, NUM_COLUMNS > sort_orders
Sort order (ascending/descending) for the 'columns'.
uint expand_shrink_width
The width allocated to the expand/shrink 'button'.
void HandleCargoWaitingClick(CargoDataEntry *filter, Tid next)
Expand or collapse a specific row.
int rating_lines
Number of lines in the cargo ratings view.
static const StringID sort_names[]
Names of the sorting options in the dropdown.
void DrawCargoIcons(CargoType cargo, uint waiting, const Rect &r) const
Draw icons of waiting cargo.
CargoDataEntry cached_destinations
Cache for the flows passing through this station.
int scroll_to_row
If set, scroll the main viewport to the station pointed to by this row.
Mode current_mode
Currently selected display mode of cargo view.
int accepts_lines
Number of lines in the accepted cargo view.
void BuildFlowList(CargoType cargo, const FlowStatMap &flows, CargoDataEntry *entry)
Build up the cargo view for PLANNED mode and a specific cargo.
void SelectGroupBy(int index)
Select a new grouping mode for the cargo view.
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
int DrawAcceptedCargo(const Rect &r) const
Draw accepted cargo in the WID_SV_ACCEPT_RATING_LIST widget.
void ShowCargo(CargoDataEntry *data, CargoType cargo, StationID source, StationID next, StationID dest, uint count)
Show a certain cargo entry characterized by source/next/dest station, cargo type and amount of cargo ...
Station data structure.
std::array< GoodsEntry, NUM_CARGO > goods
Goods at this station.
Airport airport
Tile area the airport covers.
String filter and state.
void SetFilterTerm(std::string_view str)
Set the term to filter on.
void ResetState()
Reset the matching state to process a new item.
bool GetState() const
Get the matching state of the current item.
std::string_view GetText() const
Get the current text.
Definition textbuf.cpp:284
Struct containing TileIndex and StationID.
TileIndex tile
TileIndex.
StationID station
StationID.
CompanyID exclusivity
which company has exclusivity
Definition town.h:87
uint8_t exclusive_counter
months till the exclusivity expires
Definition town.h:88
The information about a vehicle list.
Definition vehiclelist.h:32
Representation of a waypoint.
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
virtual void Close(int data=0)
Hide the window and all its child windows, and mark them for a later deletion.
Definition window.cpp:1109
static int SortButtonWidth()
Get width of up/down arrow of sort button state.
Definition widget.cpp:839
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition window.cpp:1814
void DrawWidgets() const
Paint all widgets of a window.
Definition widget.cpp:792
void InvalidateData(int data=0, bool gui_scope=true)
Mark this window's data as invalid (in need of re-computing).
Definition window.cpp:3255
Window * parent
Parent window.
Definition window_gui.h:328
void RaiseWidget(WidgetID widget_index)
Marks a widget as raised.
Definition window_gui.h:469
void SetWidgetDirty(WidgetID widget_index) const
Invalidate a widget, i.e.
Definition window.cpp:562
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 DrawSortButton(WidgetID widget, bool descending) const
Draw a sort button's up or down arrow symbol.
Definition widget.cpp:824
void CreateNestedTree()
Perform the first part of the initialization of a nested widget tree.
Definition window.cpp:1804
WindowClass window_class
Window class.
Definition window_gui.h:301
bool IsWidgetLowered(WidgetID widget_index) const
Gets the lowered state of a widget.
Definition window_gui.h:491
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable.
Definition window_gui.h:316
void SetWidgetLoweredState(WidgetID widget_index, bool lowered_stat)
Sets the lowered/raised status of a widget.
Definition window_gui.h:441
bool IsShaded() const
Is window shaded currently?
Definition window_gui.h:562
void SetTimeout()
Set the timeout flag of the window and initiate the timer.
Definition window_gui.h:355
Window(WindowDesc &desc)
Empty constructor, initialization has been moved to InitNested() called from the constructor of the d...
Definition window.cpp:1838
const NWID * GetWidget(WidgetID widnum) const
Get the nested widget with number widnum from the nested widget tree.
Definition window_gui.h:989
void LowerWidget(WidgetID widget_index)
Marks a widget as lowered.
Definition window_gui.h:460
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
int width
width of the window (number of pixels to the right in x direction)
Definition window_gui.h:311
void ToggleWidgetLoweredState(WidgetID widget_index)
Invert the lowered/raised status of a widget.
Definition window_gui.h:450
WindowNumber window_number
Window number within the window class.
Definition window_gui.h:302
Stuff related to the text buffer GUI.
@ EnableMove
enable the 'Move' button
Definition textbuf_gui.h:22
@ EnableDefault
enable the 'Default' button ("\0" is returned)
Definition textbuf_gui.h:20
@ LengthIsInChars
the length of the string is counted in characters
Definition textbuf_gui.h:21
static bool IsTileType(Tile tile, TileType type)
Checks if a tile is a given tiletype.
Definition tile_map.h:150
Owner GetTileOwner(Tile tile)
Returns the owner of a tile.
Definition tile_map.h:178
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > > TileIndex
The index/ID of a Tile.
Definition tile_type.h:92
constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition tile_type.h:100
static constexpr uint TILE_SIZE
Tile size in world coordinates.
Definition tile_type.h:15
@ Station
A tile of a station or airport.
Definition tile_type.h:54
OrthogonalTileArea TileArea
Shorthand for the much more common orthogonal tile area.
Functions related to tile highlights.
void ResetObjectToPlace()
Reset the cursor and mouse mode handling back to default (normal cursor, only clicking in windows).
void UpdateTileSelection()
Updates tile highlighting for all cases.
@ HT_RECT
rectangle (stations, depots, ...)
Base of the town class.
Functions related to the vehicle's GUIs.
VehicleType
Available vehicle types.
@ Ship
Ship vehicle type.
@ Aircraft
Aircraft vehicle type.
@ Road
Road vehicle type.
@ Train
Train vehicle type.
Functions and type for generating vehicle lists.
@ Station
Index is the station.
Definition vehiclelist.h:25
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
void SetViewportStationRect(const Station *st, bool sel)
Select or deselect station for rectangle area highlight.
void SetViewportCatchmentStation(const Station *st, bool sel)
Select or deselect station for coverage area highlight.
void SetViewportWaypointRect(const Waypoint *wp, bool sel)
Select or deselect waypoint for rectangle area highlight.
const Station * _viewport_highlight_station
Currently selected station for coverage area highlight.
Functions related to (drawing on) viewports.
Base of waypoints.
@ WPF_ROAD
This is a road waypoint.
static RectPadding ScaleGUITrad(const RectPadding &r)
Scale a RectPadding to GUI zoom level.
Definition widget.cpp:49
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
@ WWT_PUSHIMGBTN
Normal push-button (no toggle button) with image caption.
@ 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_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX).
Definition widget_type.h:57
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX).
Definition widget_type.h:55
@ WWT_CAPTION
Window caption (window title between closebox and stickybox).
Definition widget_type.h:52
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition widget_type.h:76
@ NWID_VERTICAL
Vertical container.
Definition widget_type.h:68
@ WWT_CLOSEBOX
Close box (at top-left of a window).
Definition widget_type.h:60
@ WWT_RESIZEBOX
Resize box (normally at bottom-right of a window).
Definition widget_type.h:59
@ WWT_DEFSIZEBOX
Default window size box (at top-right of a window, between WWT_SHADEBOX and WWT_STICKYBOX).
Definition widget_type.h:56
@ 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_NONE
Display plane with zero size in both directions (none filling and resizing).
@ 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
Window * FindWindowByClass(WindowClass cls)
Find any window by its class.
Definition window.cpp:1173
Window * FindWindowById(WindowClass cls, WindowNumber number)
Find a window by its class and window number.
Definition window.cpp:1158
Window functions not directly related to making/drawing windows.
@ Construction
This window is used for construction; close it whenever changing company.
Definition window_gui.h:155
Twindow * AllocateWindowDescFront(WindowDesc &desc, WindowNumber window_number, Targs... extra_arguments)
Open a new window.
@ Automatic
Find a place automatically.
Definition window_gui.h:146
int WidgetID
Widget ID.
Definition window_type.h:21
Functions related to zooming.
int ScaleSpriteTrad(int value)
Scale traditional pixel dimensions to GUI zoom level, for drawing sprites.
Definition zoom_func.h:107