4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
10 /** @file station_gui.cpp The GUI for stations. */
15 #include "textbuf_gui.h"
16 #include "company_func.h"
17 #include "command_func.h"
18 #include "vehicle_gui.h"
19 #include "cargotype.h"
20 #include "station_gui.h"
21 #include "strings_func.h"
22 #include "string_func.h"
23 #include "window_func.h"
24 #include "viewport_func.h"
25 #include "widgets/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"
31 #include "core/geometry_func.hpp"
32 #include "vehiclelist.h"
34 #include "linkgraph/linkgraph.h"
35 #include "zoom_func.h"
37 #include "widgets/station_widget.h"
39 #include "table/strings.h"
44 #include "safeguards.h"
47 * Calculates and draws the accepted or supplied cargo around the selected tile(s)
48 * @param left x position where the string is to be drawn
49 * @param right the right most position to draw on
50 * @param top y position where the string is to be drawn
51 * @param sct which type of cargo is to be displayed (passengers/non-passengers)
52 * @param rad radius around selected tile(s) to be searched
53 * @param supplies if supplied cargoes should be drawn, else accepted cargoes
54 * @return Returns the y value below the string that was drawn
56 int DrawStationCoverageAreaText(int left
, int right
, int top
, StationCoverageType sct
, int rad
, bool supplies
)
58 TileIndex tile
= TileVirtXY(_thd
.pos
.x
, _thd
.pos
.y
);
59 uint32 cargo_mask
= 0;
60 if (_thd
.drawstyle
== HT_RECT
&& tile
< MapSize()) {
63 cargoes
= GetProductionAroundTiles(tile
, _thd
.size
.x
/ TILE_SIZE
, _thd
.size
.y
/ TILE_SIZE
, rad
);
65 cargoes
= GetAcceptanceAroundTiles(tile
, _thd
.size
.x
/ TILE_SIZE
, _thd
.size
.y
/ TILE_SIZE
, rad
);
68 /* Convert cargo counts to a set of cargo bits, and draw the result. */
69 for (CargoID i
= 0; i
< NUM_CARGO
; i
++) {
71 case SCT_PASSENGERS_ONLY
: if (!IsCargoInClass(i
, CC_PASSENGERS
)) continue; break;
72 case SCT_NON_PASSENGERS_ONLY
: if (IsCargoInClass(i
, CC_PASSENGERS
)) continue; break;
74 default: NOT_REACHED();
76 if (cargoes
[i
] >= (supplies
? 1U : 8U)) SetBit(cargo_mask
, i
);
79 SetDParam(0, cargo_mask
);
80 return DrawStringMultiLine(left
, right
, top
, INT32_MAX
, supplies
? STR_STATION_BUILD_SUPPLIES_CARGO
: STR_STATION_BUILD_ACCEPTS_CARGO
);
84 * Check whether we need to redraw the station coverage text.
85 * If it is needed actually make the window for redrawing.
86 * @param w the window to check.
88 void CheckRedrawStationCoverage(const Window
*w
)
97 * Draw small boxes of cargo amount and ratings data at the given
98 * coordinates. If amount exceeds 576 units, it is shown 'full', same
99 * goes for the rating: at above 90% orso (224) it is also 'full'
101 * @param left left most coordinate to draw the box at
102 * @param right right most coordinate to draw the box at
103 * @param y coordinate to draw the box at
104 * @param type Cargo type
105 * @param amount Cargo amount
106 * @param rating ratings data for that particular cargo
108 * @note Each cargo-bar is 16 pixels wide and 6 pixels high
109 * @note Each rating 14 pixels wide and 1 pixel high and is 1 pixel below the cargo-bar
111 static void StationsWndShowStationRating(int left
, int right
, int y
, CargoID type
, uint amount
, byte rating
)
113 static const uint units_full
= 576; ///< number of units to show station as 'full'
114 static const uint rating_full
= 224; ///< rating needed so it is shown as 'full'
116 const CargoSpec
*cs
= CargoSpec::Get(type
);
117 if (!cs
->IsValid()) return;
119 int colour
= cs
->rating_colour
;
120 TextColour tc
= GetContrastColour(colour
);
121 uint w
= (minu(amount
, units_full
) + 5) / 36;
123 int height
= GetCharacterHeight(FS_SMALL
);
125 /* Draw total cargo (limited) on station (fits into 16 pixels) */
126 if (w
!= 0) GfxFillRect(left
, y
, left
+ w
- 1, y
+ height
, colour
);
128 /* Draw a one pixel-wide bar of additional cargo meter, useful
129 * for stations with only a small amount (<=30) */
131 uint rest
= amount
/ 5;
134 GfxFillRect(w
, y
+ height
- rest
, w
, y
+ height
, colour
);
138 DrawString(left
+ 1, right
, y
, cs
->abbrev
, tc
);
140 /* Draw green/red ratings bar (fits into 14 pixels) */
142 GfxFillRect(left
+ 1, y
, left
+ 14, y
, PC_RED
);
143 rating
= minu(rating
, rating_full
) / 16;
144 if (rating
!= 0) GfxFillRect(left
+ 1, y
, left
+ rating
, y
, PC_GREEN
);
147 typedef GUIList
<const Station
*> GUIStationList
;
150 * The list of stations per company.
152 class CompanyStationsWindow
: public Window
155 /* Runtime saved values */
156 static Listing last_sorting
;
157 static byte facilities
; // types of stations of interest
158 static bool include_empty
; // whether we should include stations without waiting cargo
159 static const uint32 cargo_filter_max
;
160 static uint32 cargo_filter
; // bitmap of cargo types to include
161 static const Station
*last_station
;
163 /* Constants for sorting stations */
164 static const StringID sorter_names
[];
165 static GUIStationList::SortFunction
* const sorter_funcs
[];
167 GUIStationList stations
;
171 * (Re)Build station list
173 * @param owner company whose stations are to be in list
175 void BuildStationsList(const Owner owner
)
177 if (!this->stations
.NeedRebuild()) return;
179 DEBUG(misc
, 3, "Building station list for company %d", owner
);
181 this->stations
.Clear();
184 FOR_ALL_STATIONS(st
) {
185 if (st
->owner
== owner
|| (st
->owner
== OWNER_NONE
&& HasStationInUse(st
->index
, true, owner
))) {
186 if (this->facilities
& st
->facilities
) { // only stations with selected facilities
187 int num_waiting_cargo
= 0;
188 for (CargoID j
= 0; j
< NUM_CARGO
; j
++) {
189 if (st
->goods
[j
].HasRating()) {
190 num_waiting_cargo
++; // count number of waiting cargo
191 if (HasBit(this->cargo_filter
, j
)) {
192 *this->stations
.Append() = st
;
197 /* stations without waiting cargo */
198 if (num_waiting_cargo
== 0 && this->include_empty
) {
199 *this->stations
.Append() = st
;
205 this->stations
.Compact();
206 this->stations
.RebuildDone();
208 this->vscroll
->SetCount(this->stations
.Length()); // Update the scrollbar
211 /** Sort stations by their name */
212 static int CDECL
StationNameSorter(const Station
* const *a
, const Station
* const *b
)
214 static char buf_cache
[64];
217 SetDParam(0, (*a
)->index
);
218 GetString(buf
, STR_STATION_NAME
, lastof(buf
));
220 if (*b
!= last_station
) {
222 SetDParam(0, (*b
)->index
);
223 GetString(buf_cache
, STR_STATION_NAME
, lastof(buf_cache
));
226 int r
= strnatcmp(buf
, buf_cache
); // Sort by name (natural sorting).
227 if (r
== 0) return (*a
)->index
- (*b
)->index
;
231 /** Sort stations by their type */
232 static int CDECL
StationTypeSorter(const Station
* const *a
, const Station
* const *b
)
234 return (*a
)->facilities
- (*b
)->facilities
;
237 /** Sort stations by their waiting cargo */
238 static int CDECL
StationWaitingTotalSorter(const Station
* const *a
, const Station
* const *b
)
243 FOR_EACH_SET_CARGO_ID(j
, cargo_filter
) {
244 diff
+= (*a
)->goods
[j
].cargo
.TotalCount() - (*b
)->goods
[j
].cargo
.TotalCount();
250 /** Sort stations by their available waiting cargo */
251 static int CDECL
StationWaitingAvailableSorter(const Station
* const *a
, const Station
* const *b
)
256 FOR_EACH_SET_CARGO_ID(j
, cargo_filter
) {
257 diff
+= (*a
)->goods
[j
].cargo
.AvailableCount() - (*b
)->goods
[j
].cargo
.AvailableCount();
263 /** Sort stations by their rating */
264 static int CDECL
StationRatingMaxSorter(const Station
* const *a
, const Station
* const *b
)
270 FOR_EACH_SET_CARGO_ID(j
, cargo_filter
) {
271 if ((*a
)->goods
[j
].HasRating()) maxr1
= max(maxr1
, (*a
)->goods
[j
].rating
);
272 if ((*b
)->goods
[j
].HasRating()) maxr2
= max(maxr2
, (*b
)->goods
[j
].rating
);
275 return maxr1
- maxr2
;
278 /** Sort stations by their rating */
279 static int CDECL
StationRatingMinSorter(const Station
* const *a
, const Station
* const *b
)
284 for (CargoID j
= 0; j
< NUM_CARGO
; j
++) {
285 if (!HasBit(cargo_filter
, j
)) continue;
286 if ((*a
)->goods
[j
].HasRating()) minr1
= min(minr1
, (*a
)->goods
[j
].rating
);
287 if ((*b
)->goods
[j
].HasRating()) minr2
= min(minr2
, (*b
)->goods
[j
].rating
);
290 return -(minr1
- minr2
);
293 /** Sort the stations list */
294 void SortStationsList()
296 if (!this->stations
.Sort()) return;
298 /* Reset name sorter sort cache */
299 this->last_station
= NULL
;
301 /* Set the modified widget dirty */
302 this->SetWidgetDirty(WID_STL_LIST
);
306 CompanyStationsWindow(WindowDesc
*desc
, WindowNumber window_number
) : Window(desc
)
308 this->stations
.SetListing(this->last_sorting
);
309 this->stations
.SetSortFuncs(this->sorter_funcs
);
310 this->stations
.ForceRebuild();
311 this->stations
.NeedResort();
312 this->SortStationsList();
314 this->CreateNestedTree();
315 this->vscroll
= this->GetScrollbar(WID_STL_SCROLLBAR
);
316 this->FinishInitNested(window_number
);
317 this->owner
= (Owner
)this->window_number
;
320 FOR_ALL_SORTED_STANDARD_CARGOSPECS(cs
) {
321 if (!HasBit(this->cargo_filter
, cs
->Index())) continue;
322 this->LowerWidget(WID_STL_CARGOSTART
+ index
);
325 if (this->cargo_filter
== this->cargo_filter_max
) this->cargo_filter
= _cargo_mask
;
327 for (uint i
= 0; i
< 5; i
++) {
328 if (HasBit(this->facilities
, i
)) this->LowerWidget(i
+ WID_STL_TRAIN
);
330 this->SetWidgetLoweredState(WID_STL_NOCARGOWAITING
, this->include_empty
);
332 this->GetWidget
<NWidgetCore
>(WID_STL_SORTDROPBTN
)->widget_data
= this->sorter_names
[this->stations
.SortType()];
335 ~CompanyStationsWindow()
337 this->last_sorting
= this->stations
.GetListing();
340 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
343 case WID_STL_SORTBY
: {
344 Dimension d
= GetStringBoundingBox(this->GetWidget
<NWidgetCore
>(widget
)->widget_data
);
345 d
.width
+= padding
.width
+ Window::SortButtonWidth() * 2; // Doubled since the string is centred and it also looks better.
346 d
.height
+= padding
.height
;
347 *size
= maxdim(*size
, d
);
351 case WID_STL_SORTDROPBTN
: {
352 Dimension d
= {0, 0};
353 for (int i
= 0; this->sorter_names
[i
] != INVALID_STRING_ID
; i
++) {
354 d
= maxdim(d
, GetStringBoundingBox(this->sorter_names
[i
]));
356 d
.width
+= padding
.width
;
357 d
.height
+= padding
.height
;
358 *size
= maxdim(*size
, d
);
363 resize
->height
= FONT_HEIGHT_NORMAL
;
364 size
->height
= WD_FRAMERECT_TOP
+ 5 * resize
->height
+ WD_FRAMERECT_BOTTOM
;
370 case WID_STL_AIRPLANE
:
372 size
->height
= max
<uint
>(FONT_HEIGHT_SMALL
, 10) + padding
.height
;
375 case WID_STL_CARGOALL
:
376 case WID_STL_FACILALL
:
377 case WID_STL_NOCARGOWAITING
: {
378 Dimension d
= GetStringBoundingBox(widget
== WID_STL_NOCARGOWAITING
? STR_ABBREV_NONE
: STR_ABBREV_ALL
);
379 d
.width
+= padding
.width
+ 2;
380 d
.height
+= padding
.height
;
381 *size
= maxdim(*size
, d
);
386 if (widget
>= WID_STL_CARGOSTART
) {
387 Dimension d
= GetStringBoundingBox(_sorted_cargo_specs
[widget
- WID_STL_CARGOSTART
]->abbrev
);
388 d
.width
+= padding
.width
+ 2;
389 d
.height
+= padding
.height
;
390 *size
= maxdim(*size
, d
);
396 virtual void OnPaint()
398 this->BuildStationsList((Owner
)this->window_number
);
399 this->SortStationsList();
404 virtual void DrawWidget(const Rect
&r
, int widget
) const
408 /* draw arrow pointing up/down for ascending/descending sorting */
409 this->DrawSortButtonState(WID_STL_SORTBY
, this->stations
.IsDescSortOrder() ? SBS_DOWN
: SBS_UP
);
413 bool rtl
= _current_text_dir
== TD_RTL
;
414 int max
= min(this->vscroll
->GetPosition() + this->vscroll
->GetCapacity(), this->stations
.Length());
415 int y
= r
.top
+ WD_FRAMERECT_TOP
;
416 for (int i
= this->vscroll
->GetPosition(); i
< max
; ++i
) { // do until max number of stations of owner
417 const Station
*st
= this->stations
[i
];
418 assert(st
->xy
!= INVALID_TILE
);
420 /* Do not do the complex check HasStationInUse here, it may be even false
421 * when the order had been removed and the station list hasn't been removed yet */
422 assert(st
->owner
== owner
|| st
->owner
== OWNER_NONE
);
424 SetDParam(0, st
->index
);
425 SetDParam(1, st
->facilities
);
426 int x
= DrawString(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, y
, STR_STATION_LIST_STATION
);
429 /* show cargo waiting and station ratings */
430 for (uint j
= 0; j
< _sorted_standard_cargo_specs_size
; j
++) {
431 CargoID cid
= _sorted_cargo_specs
[j
]->Index();
432 if (st
->goods
[cid
].cargo
.TotalCount() > 0) {
433 /* For RTL we work in exactly the opposite direction. So
434 * decrement the space needed first, then draw to the left
435 * instead of drawing to the left and then incrementing
439 if (x
< r
.left
+ WD_FRAMERECT_LEFT
) break;
441 StationsWndShowStationRating(x
, x
+ 16, y
, cid
, st
->goods
[cid
].cargo
.TotalCount(), st
->goods
[cid
].rating
);
444 if (x
> r
.right
- WD_FRAMERECT_RIGHT
) break;
448 y
+= FONT_HEIGHT_NORMAL
;
451 if (this->vscroll
->GetCount() == 0) { // company has no stations
452 DrawString(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, y
, STR_STATION_LIST_NONE
);
458 case WID_STL_NOCARGOWAITING
: {
459 int cg_ofst
= this->IsWidgetLowered(widget
) ? 2 : 1;
460 DrawString(r
.left
+ cg_ofst
, r
.right
+ cg_ofst
, r
.top
+ cg_ofst
, STR_ABBREV_NONE
, TC_BLACK
, SA_HOR_CENTER
);
464 case WID_STL_CARGOALL
: {
465 int cg_ofst
= this->IsWidgetLowered(widget
) ? 2 : 1;
466 DrawString(r
.left
+ cg_ofst
, r
.right
+ cg_ofst
, r
.top
+ cg_ofst
, STR_ABBREV_ALL
, TC_BLACK
, SA_HOR_CENTER
);
470 case WID_STL_FACILALL
: {
471 int cg_ofst
= this->IsWidgetLowered(widget
) ? 2 : 1;
472 DrawString(r
.left
+ cg_ofst
, r
.right
+ cg_ofst
, r
.top
+ cg_ofst
, STR_ABBREV_ALL
, TC_BLACK
, SA_HOR_CENTER
);
477 if (widget
>= WID_STL_CARGOSTART
) {
478 const CargoSpec
*cs
= _sorted_cargo_specs
[widget
- WID_STL_CARGOSTART
];
479 int cg_ofst
= HasBit(this->cargo_filter
, cs
->Index()) ? 2 : 1;
480 GfxFillRect(r
.left
+ cg_ofst
, r
.top
+ cg_ofst
, r
.right
- 2 + cg_ofst
, r
.bottom
- 2 + cg_ofst
, cs
->rating_colour
);
481 TextColour tc
= GetContrastColour(cs
->rating_colour
);
482 DrawString(r
.left
+ cg_ofst
, r
.right
+ cg_ofst
, r
.top
+ cg_ofst
, cs
->abbrev
, tc
, SA_HOR_CENTER
);
488 virtual void SetStringParameters(int widget
) const
490 if (widget
== WID_STL_CAPTION
) {
491 SetDParam(0, this->window_number
);
492 SetDParam(1, this->vscroll
->GetCount());
496 virtual void OnClick(Point pt
, int widget
, int click_count
)
500 uint id_v
= this->vscroll
->GetScrolledRowFromWidget(pt
.y
, this, WID_STL_LIST
, 0, FONT_HEIGHT_NORMAL
);
501 if (id_v
>= this->stations
.Length()) return; // click out of list bound
503 const Station
*st
= this->stations
[id_v
];
504 /* do not check HasStationInUse - it is slow and may be invalid */
505 assert(st
->owner
== (Owner
)this->window_number
|| st
->owner
== OWNER_NONE
);
508 ShowExtraViewPortWindow(st
->xy
);
510 ScrollMainWindowToTile(st
->xy
);
518 case WID_STL_AIRPLANE
:
521 ToggleBit(this->facilities
, widget
- WID_STL_TRAIN
);
522 this->ToggleWidgetLoweredState(widget
);
525 FOR_EACH_SET_BIT(i
, this->facilities
) {
526 this->RaiseWidget(i
+ WID_STL_TRAIN
);
528 this->facilities
= 1 << (widget
- WID_STL_TRAIN
);
529 this->LowerWidget(widget
);
531 this->stations
.ForceRebuild();
535 case WID_STL_FACILALL
:
536 for (uint i
= WID_STL_TRAIN
; i
<= WID_STL_SHIP
; i
++) {
537 this->LowerWidget(i
);
540 this->facilities
= FACIL_TRAIN
| FACIL_TRUCK_STOP
| FACIL_BUS_STOP
| FACIL_AIRPORT
| FACIL_DOCK
;
541 this->stations
.ForceRebuild();
545 case WID_STL_CARGOALL
: {
546 for (uint i
= 0; i
< _sorted_standard_cargo_specs_size
; i
++) {
547 this->LowerWidget(WID_STL_CARGOSTART
+ i
);
549 this->LowerWidget(WID_STL_NOCARGOWAITING
);
551 this->cargo_filter
= _cargo_mask
;
552 this->include_empty
= true;
553 this->stations
.ForceRebuild();
558 case WID_STL_SORTBY
: // flip sorting method asc/desc
559 this->stations
.ToggleSortOrder();
563 case WID_STL_SORTDROPBTN
: // select sorting criteria dropdown menu
564 ShowDropDownMenu(this, this->sorter_names
, this->stations
.SortType(), WID_STL_SORTDROPBTN
, 0, 0);
567 case WID_STL_NOCARGOWAITING
:
569 this->include_empty
= !this->include_empty
;
570 this->ToggleWidgetLoweredState(WID_STL_NOCARGOWAITING
);
572 for (uint i
= 0; i
< _sorted_standard_cargo_specs_size
; i
++) {
573 this->RaiseWidget(WID_STL_CARGOSTART
+ i
);
576 this->cargo_filter
= 0;
577 this->include_empty
= true;
579 this->LowerWidget(WID_STL_NOCARGOWAITING
);
581 this->stations
.ForceRebuild();
586 if (widget
>= WID_STL_CARGOSTART
) { // change cargo_filter
587 /* Determine the selected cargo type */
588 const CargoSpec
*cs
= _sorted_cargo_specs
[widget
- WID_STL_CARGOSTART
];
591 ToggleBit(this->cargo_filter
, cs
->Index());
592 this->ToggleWidgetLoweredState(widget
);
594 for (uint i
= 0; i
< _sorted_standard_cargo_specs_size
; i
++) {
595 this->RaiseWidget(WID_STL_CARGOSTART
+ i
);
597 this->RaiseWidget(WID_STL_NOCARGOWAITING
);
599 this->cargo_filter
= 0;
600 this->include_empty
= false;
602 SetBit(this->cargo_filter
, cs
->Index());
603 this->LowerWidget(widget
);
605 this->stations
.ForceRebuild();
612 virtual void OnDropdownSelect(int widget
, int index
)
614 if (this->stations
.SortType() != index
) {
615 this->stations
.SetSortType(index
);
617 /* Display the current sort variant */
618 this->GetWidget
<NWidgetCore
>(WID_STL_SORTDROPBTN
)->widget_data
= this->sorter_names
[this->stations
.SortType()];
624 virtual void OnTick()
626 if (_pause_mode
!= PM_UNPAUSED
) return;
627 if (this->stations
.NeedResort()) {
628 DEBUG(misc
, 3, "Periodic rebuild station list company %d", this->window_number
);
633 virtual void OnResize()
635 this->vscroll
->SetCapacityFromWidget(this, WID_STL_LIST
, WD_FRAMERECT_TOP
+ WD_FRAMERECT_BOTTOM
);
639 * Some data on this window has become invalid.
640 * @param data Information about the changed data.
641 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
643 virtual void OnInvalidateData(int data
= 0, bool gui_scope
= true)
646 /* This needs to be done in command-scope to enforce rebuilding before resorting invalid data */
647 this->stations
.ForceRebuild();
649 this->stations
.ForceResort();
654 Listing
CompanyStationsWindow::last_sorting
= {false, 0};
655 byte
CompanyStationsWindow::facilities
= FACIL_TRAIN
| FACIL_TRUCK_STOP
| FACIL_BUS_STOP
| FACIL_AIRPORT
| FACIL_DOCK
;
656 bool CompanyStationsWindow::include_empty
= true;
657 const uint32
CompanyStationsWindow::cargo_filter_max
= UINT32_MAX
;
658 uint32
CompanyStationsWindow::cargo_filter
= UINT32_MAX
;
659 const Station
*CompanyStationsWindow::last_station
= NULL
;
661 /* Availible station sorting functions */
662 GUIStationList::SortFunction
* const CompanyStationsWindow::sorter_funcs
[] = {
665 &StationWaitingTotalSorter
,
666 &StationWaitingAvailableSorter
,
667 &StationRatingMaxSorter
,
668 &StationRatingMinSorter
671 /* Names of the sorting functions */
672 const StringID
CompanyStationsWindow::sorter_names
[] = {
674 STR_SORT_BY_FACILITY
,
675 STR_SORT_BY_WAITING_TOTAL
,
676 STR_SORT_BY_WAITING_AVAILABLE
,
677 STR_SORT_BY_RATING_MAX
,
678 STR_SORT_BY_RATING_MIN
,
683 * Make a horizontal row of cargo buttons, starting at widget #WID_STL_CARGOSTART.
684 * @param biggest_index Pointer to store biggest used widget number of the buttons.
685 * @return Horizontal row.
687 static NWidgetBase
*CargoWidgets(int *biggest_index
)
689 NWidgetHorizontal
*container
= new NWidgetHorizontal();
691 for (uint i
= 0; i
< _sorted_standard_cargo_specs_size
; i
++) {
692 NWidgetBackground
*panel
= new NWidgetBackground(WWT_PANEL
, COLOUR_GREY
, WID_STL_CARGOSTART
+ i
);
693 panel
->SetMinimalSize(14, 11);
694 panel
->SetResize(0, 0);
695 panel
->SetFill(0, 1);
696 panel
->SetDataTip(0, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE
);
697 container
->Add(panel
);
699 *biggest_index
= WID_STL_CARGOSTART
+ _sorted_standard_cargo_specs_size
;
703 static const NWidgetPart _nested_company_stations_widgets
[] = {
704 NWidget(NWID_HORIZONTAL
),
705 NWidget(WWT_CLOSEBOX
, COLOUR_GREY
),
706 NWidget(WWT_CAPTION
, COLOUR_GREY
, WID_STL_CAPTION
), SetDataTip(STR_STATION_LIST_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
707 NWidget(WWT_SHADEBOX
, COLOUR_GREY
),
708 NWidget(WWT_DEFSIZEBOX
, COLOUR_GREY
),
709 NWidget(WWT_STICKYBOX
, COLOUR_GREY
),
711 NWidget(NWID_HORIZONTAL
),
712 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_STL_TRAIN
), SetMinimalSize(14, 11), SetDataTip(STR_TRAIN
, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE
), SetFill(0, 1),
713 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_STL_TRUCK
), SetMinimalSize(14, 11), SetDataTip(STR_LORRY
, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE
), SetFill(0, 1),
714 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_STL_BUS
), SetMinimalSize(14, 11), SetDataTip(STR_BUS
, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE
), SetFill(0, 1),
715 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_STL_SHIP
), SetMinimalSize(14, 11), SetDataTip(STR_SHIP
, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE
), SetFill(0, 1),
716 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_STL_AIRPLANE
), SetMinimalSize(14, 11), SetDataTip(STR_PLANE
, STR_STATION_LIST_USE_CTRL_TO_SELECT_MORE
), SetFill(0, 1),
717 NWidget(WWT_PUSHBTN
, COLOUR_GREY
, WID_STL_FACILALL
), SetMinimalSize(14, 11), SetDataTip(0x0, STR_STATION_LIST_SELECT_ALL_FACILITIES
), SetFill(0, 1),
718 NWidget(WWT_PANEL
, COLOUR_GREY
), SetMinimalSize(5, 11), SetFill(0, 1), EndContainer(),
719 NWidgetFunction(CargoWidgets
),
720 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_STL_NOCARGOWAITING
), SetMinimalSize(14, 11), SetDataTip(0x0, STR_STATION_LIST_NO_WAITING_CARGO
), SetFill(0, 1), EndContainer(),
721 NWidget(WWT_PUSHBTN
, COLOUR_GREY
, WID_STL_CARGOALL
), SetMinimalSize(14, 11), SetDataTip(0x0, STR_STATION_LIST_SELECT_ALL_TYPES
), SetFill(0, 1),
722 NWidget(WWT_PANEL
, COLOUR_GREY
), SetDataTip(0x0, STR_NULL
), SetResize(1, 0), SetFill(1, 1), EndContainer(),
724 NWidget(NWID_HORIZONTAL
),
725 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_STL_SORTBY
), SetMinimalSize(81, 12), SetDataTip(STR_BUTTON_SORT_BY
, STR_TOOLTIP_SORT_ORDER
),
726 NWidget(WWT_DROPDOWN
, COLOUR_GREY
, WID_STL_SORTDROPBTN
), SetMinimalSize(163, 12), SetDataTip(STR_SORT_BY_NAME
, STR_TOOLTIP_SORT_CRITERIA
), // widget_data gets overwritten.
727 NWidget(WWT_PANEL
, COLOUR_GREY
), SetDataTip(0x0, STR_NULL
), SetResize(1, 0), SetFill(1, 1), EndContainer(),
729 NWidget(NWID_HORIZONTAL
),
730 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_STL_LIST
), SetMinimalSize(346, 125), SetResize(1, 10), SetDataTip(0x0, STR_STATION_LIST_TOOLTIP
), SetScrollbar(WID_STL_SCROLLBAR
), EndContainer(),
731 NWidget(NWID_VERTICAL
),
732 NWidget(NWID_VSCROLLBAR
, COLOUR_GREY
, WID_STL_SCROLLBAR
),
733 NWidget(WWT_RESIZEBOX
, COLOUR_GREY
),
738 static WindowDesc
_company_stations_desc(
739 WDP_AUTO
, "list_stations", 358, 162,
740 WC_STATION_LIST
, WC_NONE
,
742 _nested_company_stations_widgets
, lengthof(_nested_company_stations_widgets
)
746 * Opens window with list of company's stations
748 * @param company whose stations' list show
750 void ShowCompanyStations(CompanyID company
)
752 if (!Company::IsValidID(company
)) return;
754 AllocateWindowDescFront
<CompanyStationsWindow
>(&_company_stations_desc
, company
);
757 static const NWidgetPart _nested_station_view_widgets
[] = {
758 NWidget(NWID_HORIZONTAL
),
759 NWidget(WWT_CLOSEBOX
, COLOUR_GREY
),
760 NWidget(WWT_CAPTION
, COLOUR_GREY
, WID_SV_CAPTION
), SetDataTip(STR_STATION_VIEW_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
761 NWidget(WWT_SHADEBOX
, COLOUR_GREY
),
762 NWidget(WWT_DEFSIZEBOX
, COLOUR_GREY
),
763 NWidget(WWT_STICKYBOX
, COLOUR_GREY
),
765 NWidget(NWID_HORIZONTAL
),
766 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_SV_SORT_ORDER
), SetMinimalSize(81, 12), SetFill(1, 1), SetDataTip(STR_BUTTON_SORT_BY
, STR_TOOLTIP_SORT_ORDER
),
767 NWidget(WWT_DROPDOWN
, COLOUR_GREY
, WID_SV_SORT_BY
), SetMinimalSize(168, 12), SetResize(1, 0), SetFill(0, 1), SetDataTip(0x0, STR_TOOLTIP_SORT_CRITERIA
),
769 NWidget(NWID_HORIZONTAL
),
770 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_SV_GROUP
), SetMinimalSize(81, 12), SetFill(1, 1), SetDataTip(STR_STATION_VIEW_GROUP
, 0x0),
771 NWidget(WWT_DROPDOWN
, COLOUR_GREY
, WID_SV_GROUP_BY
), SetMinimalSize(168, 12), SetResize(1, 0), SetFill(0, 1), SetDataTip(0x0, STR_TOOLTIP_GROUP_ORDER
),
773 NWidget(NWID_HORIZONTAL
),
774 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_SV_WAITING
), SetMinimalSize(237, 44), SetResize(1, 10), SetScrollbar(WID_SV_SCROLLBAR
), EndContainer(),
775 NWidget(NWID_VSCROLLBAR
, COLOUR_GREY
, WID_SV_SCROLLBAR
),
777 NWidget(WWT_PANEL
, COLOUR_GREY
, WID_SV_ACCEPT_RATING_LIST
), SetMinimalSize(249, 23), SetResize(1, 0), EndContainer(),
778 NWidget(NWID_HORIZONTAL
),
779 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
),
780 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_SV_LOCATION
), SetMinimalSize(45, 12), SetResize(1, 0), SetFill(1, 1),
781 SetDataTip(STR_BUTTON_LOCATION
, STR_STATION_VIEW_CENTER_TOOLTIP
),
782 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_SV_ACCEPTS_RATINGS
), SetMinimalSize(46, 12), SetResize(1, 0), SetFill(1, 1),
783 SetDataTip(STR_STATION_VIEW_RATINGS_BUTTON
, STR_STATION_VIEW_RATINGS_TOOLTIP
),
784 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_SV_RENAME
), SetMinimalSize(45, 12), SetResize(1, 0), SetFill(1, 1),
785 SetDataTip(STR_BUTTON_RENAME
, STR_STATION_VIEW_RENAME_TOOLTIP
),
787 NWidget(WWT_TEXTBTN
, COLOUR_GREY
, WID_SV_CLOSE_AIRPORT
), SetMinimalSize(45, 12), SetResize(1, 0), SetFill(1, 1),
788 SetDataTip(STR_STATION_VIEW_CLOSE_AIRPORT
, STR_STATION_VIEW_CLOSE_AIRPORT_TOOLTIP
),
789 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_SV_TRAINS
), SetMinimalSize(14, 12), SetFill(0, 1), SetDataTip(STR_TRAIN
, STR_STATION_VIEW_SCHEDULED_TRAINS_TOOLTIP
),
790 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_SV_ROADVEHS
), SetMinimalSize(14, 12), SetFill(0, 1), SetDataTip(STR_LORRY
, STR_STATION_VIEW_SCHEDULED_ROAD_VEHICLES_TOOLTIP
),
791 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_SV_SHIPS
), SetMinimalSize(14, 12), SetFill(0, 1), SetDataTip(STR_SHIP
, STR_STATION_VIEW_SCHEDULED_SHIPS_TOOLTIP
),
792 NWidget(WWT_PUSHTXTBTN
, COLOUR_GREY
, WID_SV_PLANES
), SetMinimalSize(14, 12), SetFill(0, 1), SetDataTip(STR_PLANE
, STR_STATION_VIEW_SCHEDULED_AIRCRAFT_TOOLTIP
),
793 NWidget(WWT_RESIZEBOX
, COLOUR_GREY
),
798 * Draws icons of waiting cargo in the StationView window
800 * @param i type of cargo
801 * @param waiting number of waiting units
802 * @param left left most coordinate to draw on
803 * @param right right most coordinate to draw on
804 * @param y y coordinate
805 * @param width the width of the view
807 static void DrawCargoIcons(CargoID i
, uint waiting
, int left
, int right
, int y
)
809 int width
= ScaleGUITrad(10);
810 uint num
= min((waiting
+ (width
/ 2)) / width
, (right
- left
) / width
); // maximum is width / 10 icons so it won't overflow
811 if (num
== 0) return;
813 SpriteID sprite
= CargoSpec::Get(i
)->GetCargoIcon();
815 int x
= _current_text_dir
== TD_RTL
? left
: right
- num
* width
;
817 DrawSprite(sprite
, PAL_NONE
, x
, y
);
827 class CargoDataEntry
;
830 ST_AS_GROUPING
, ///< by the same principle the entries are being grouped
831 ST_COUNT
, ///< by amount of cargo
832 ST_STATION_STRING
, ///< by station name
833 ST_STATION_ID
, ///< by station id
834 ST_CARGO_ID
, ///< by cargo id
839 CargoSorter(CargoSortType t
= ST_STATION_ID
, SortOrder o
= SO_ASCENDING
) : type(t
), order(o
) {}
840 CargoSortType
GetSortType() {return this->type
;}
841 bool operator()(const CargoDataEntry
*cd1
, const CargoDataEntry
*cd2
) const;
848 bool SortId(Tid st1
, Tid st2
) const;
849 bool SortCount(const CargoDataEntry
*cd1
, const CargoDataEntry
*cd2
) const;
850 bool SortStation (StationID st1
, StationID st2
) const;
853 typedef std::set
<CargoDataEntry
*, CargoSorter
> CargoDataSet
;
856 * A cargo data entry representing one possible row in the station view window's
857 * top part. Cargo data entries form a tree where each entry can have several
858 * children. Parents keep track of the sums of their childrens' cargo counts.
860 class CargoDataEntry
{
866 * Insert a new child or retrieve an existing child using a station ID as ID.
867 * @param station ID of the station for which an entry shall be created or retrieved
868 * @return a child entry associated with the given station.
870 CargoDataEntry
*InsertOrRetrieve(StationID station
)
872 return this->InsertOrRetrieve
<StationID
>(station
);
876 * Insert a new child or retrieve an existing child using a cargo ID as ID.
877 * @param cargo ID of the cargo for which an entry shall be created or retrieved
878 * @return a child entry associated with the given cargo.
880 CargoDataEntry
*InsertOrRetrieve(CargoID cargo
)
882 return this->InsertOrRetrieve
<CargoID
>(cargo
);
885 void Update(uint count
);
888 * Remove a child associated with the given station.
889 * @param station ID of the station for which the child should be removed.
891 void Remove(StationID station
)
893 CargoDataEntry
t(station
);
898 * Remove a child associated with the given cargo.
899 * @param cargo ID of the cargo for which the child should be removed.
901 void Remove(CargoID cargo
)
903 CargoDataEntry
t(cargo
);
908 * Retrieve a child for the given station. Return NULL if it doesn't exist.
909 * @param station ID of the station the child we're looking for is associated with.
910 * @return a child entry for the given station or NULL.
912 CargoDataEntry
*Retrieve(StationID station
) const
914 CargoDataEntry
t(station
);
915 return this->Retrieve(this->children
->find(&t
));
919 * Retrieve a child for the given cargo. Return NULL if it doesn't exist.
920 * @param cargo ID of the cargo the child we're looking for is associated with.
921 * @return a child entry for the given cargo or NULL.
923 CargoDataEntry
*Retrieve(CargoID cargo
) const
925 CargoDataEntry
t(cargo
);
926 return this->Retrieve(this->children
->find(&t
));
929 void Resort(CargoSortType type
, SortOrder order
);
932 * Get the station ID for this entry.
934 StationID
GetStation() const { return this->station
; }
937 * Get the cargo ID for this entry.
939 CargoID
GetCargo() const { return this->cargo
; }
942 * Get the cargo count for this entry.
944 uint
GetCount() const { return this->count
; }
947 * Get the parent entry for this entry.
949 CargoDataEntry
*GetParent() const { return this->parent
; }
952 * Get the number of children for this entry.
954 uint
GetNumChildren() const { return this->num_children
; }
957 * Get an iterator pointing to the begin of the set of children.
959 CargoDataSet::iterator
Begin() const { return this->children
->begin(); }
962 * Get an iterator pointing to the end of the set of children.
964 CargoDataSet::iterator
End() const { return this->children
->end(); }
967 * Has this entry transfers.
969 bool HasTransfers() const { return this->transfers
; }
972 * Set the transfers state.
974 void SetTransfers(bool value
) { this->transfers
= value
; }
979 CargoDataEntry(StationID st
, uint c
, CargoDataEntry
*p
);
980 CargoDataEntry(CargoID car
, uint c
, CargoDataEntry
*p
);
981 CargoDataEntry(StationID st
);
982 CargoDataEntry(CargoID car
);
984 CargoDataEntry
*Retrieve(CargoDataSet::iterator i
) const;
987 CargoDataEntry
*InsertOrRetrieve(Tid s
);
989 void Remove(CargoDataEntry
*comp
);
990 void IncrementSize();
992 CargoDataEntry
*parent
; ///< the parent of this entry.
994 StationID station
; ///< ID of the station this entry is associated with.
996 CargoID cargo
; ///< ID of the cargo this entry is associated with.
997 bool transfers
; ///< If there are transfers for this cargo.
1000 uint num_children
; ///< the number of subentries belonging to this entry.
1001 uint count
; ///< sum of counts of all children or amount of cargo for this entry.
1002 CargoDataSet
*children
; ///< the children of this entry.
1005 CargoDataEntry::CargoDataEntry() :
1007 station(INVALID_STATION
),
1010 children(new CargoDataSet(CargoSorter(ST_CARGO_ID
)))
1013 CargoDataEntry::CargoDataEntry(CargoID cargo
, uint count
, CargoDataEntry
*parent
) :
1018 children(new CargoDataSet
)
1021 CargoDataEntry::CargoDataEntry(StationID station
, uint count
, CargoDataEntry
*parent
) :
1026 children(new CargoDataSet
)
1029 CargoDataEntry::CargoDataEntry(StationID station
) :
1037 CargoDataEntry::CargoDataEntry(CargoID cargo
) :
1045 CargoDataEntry::~CargoDataEntry()
1048 delete this->children
;
1052 * Delete all subentries, reset count and num_children and adapt parent's count.
1054 void CargoDataEntry::Clear()
1056 if (this->children
!= NULL
) {
1057 for (CargoDataSet::iterator i
= this->children
->begin(); i
!= this->children
->end(); ++i
) {
1061 this->children
->clear();
1063 if (this->parent
!= NULL
) this->parent
->count
-= this->count
;
1065 this->num_children
= 0;
1069 * Remove a subentry from this one and delete it.
1070 * @param child the entry to be removed. This may also be a synthetic entry
1071 * which only contains the ID of the entry to be removed. In this case child is
1074 void CargoDataEntry::Remove(CargoDataEntry
*child
)
1076 CargoDataSet::iterator i
= this->children
->find(child
);
1077 if (i
!= this->children
->end()) {
1079 this->children
->erase(i
);
1084 * Retrieve a subentry or insert it if it doesn't exist, yet.
1085 * @tparam ID type of ID: either StationID or CargoID
1086 * @param child_id ID of the child to be inserted or retrieved.
1087 * @return the new or retrieved subentry
1090 CargoDataEntry
*CargoDataEntry::InsertOrRetrieve(Tid child_id
)
1092 CargoDataEntry
tmp(child_id
);
1093 CargoDataSet::iterator i
= this->children
->find(&tmp
);
1094 if (i
== this->children
->end()) {
1096 return *(this->children
->insert(new CargoDataEntry(child_id
, 0, this)).first
);
1098 CargoDataEntry
*ret
= *i
;
1099 assert(this->children
->value_comp().GetSortType() != ST_COUNT
);
1105 * Update the count for this entry and propagate the change to the parent entry
1107 * @param count the amount to be added to this entry
1109 void CargoDataEntry::Update(uint count
)
1111 this->count
+= count
;
1112 if (this->parent
!= NULL
) this->parent
->Update(count
);
1118 void CargoDataEntry::IncrementSize()
1120 ++this->num_children
;
1121 if (this->parent
!= NULL
) this->parent
->IncrementSize();
1124 void CargoDataEntry::Resort(CargoSortType type
, SortOrder order
)
1126 CargoDataSet
*new_subs
= new CargoDataSet(this->children
->begin(), this->children
->end(), CargoSorter(type
, order
));
1127 delete this->children
;
1128 this->children
= new_subs
;
1131 CargoDataEntry
*CargoDataEntry::Retrieve(CargoDataSet::iterator i
) const
1133 if (i
== this->children
->end()) {
1136 assert(this->children
->value_comp().GetSortType() != ST_COUNT
);
1141 bool CargoSorter::operator()(const CargoDataEntry
*cd1
, const CargoDataEntry
*cd2
) const
1143 switch (this->type
) {
1145 return this->SortId
<StationID
>(cd1
->GetStation(), cd2
->GetStation());
1147 return this->SortId
<CargoID
>(cd1
->GetCargo(), cd2
->GetCargo());
1149 return this->SortCount(cd1
, cd2
);
1150 case ST_STATION_STRING
:
1151 return this->SortStation(cd1
->GetStation(), cd2
->GetStation());
1158 bool CargoSorter::SortId(Tid st1
, Tid st2
) const
1160 return (this->order
== SO_ASCENDING
) ? st1
< st2
: st2
< st1
;
1163 bool CargoSorter::SortCount(const CargoDataEntry
*cd1
, const CargoDataEntry
*cd2
) const
1165 uint c1
= cd1
->GetCount();
1166 uint c2
= cd2
->GetCount();
1168 return this->SortStation(cd1
->GetStation(), cd2
->GetStation());
1169 } else if (this->order
== SO_ASCENDING
) {
1176 bool CargoSorter::SortStation(StationID st1
, StationID st2
) const
1178 static char buf1
[MAX_LENGTH_STATION_NAME_CHARS
];
1179 static char buf2
[MAX_LENGTH_STATION_NAME_CHARS
];
1181 if (!Station::IsValidID(st1
)) {
1182 return Station::IsValidID(st2
) ? this->order
== SO_ASCENDING
: this->SortId(st1
, st2
);
1183 } else if (!Station::IsValidID(st2
)) {
1184 return order
== SO_DESCENDING
;
1188 GetString(buf1
, STR_STATION_NAME
, lastof(buf1
));
1190 GetString(buf2
, STR_STATION_NAME
, lastof(buf2
));
1192 int res
= strnatcmp(buf1
, buf2
); // Sort by name (natural sorting).
1194 return this->SortId(st1
, st2
);
1196 return (this->order
== SO_ASCENDING
) ? res
< 0 : res
> 0;
1201 * The StationView window
1203 struct StationViewWindow
: public Window
{
1205 * A row being displayed in the cargo view (as opposed to being "hidden" behind a plus sign).
1208 RowDisplay(CargoDataEntry
*f
, StationID n
) : filter(f
), next_station(n
) {}
1209 RowDisplay(CargoDataEntry
*f
, CargoID n
) : filter(f
), next_cargo(n
) {}
1212 * Parent of the cargo entry belonging to the row.
1214 CargoDataEntry
*filter
;
1217 * ID of the station belonging to the entry actually displayed if it's to/from/via.
1219 StationID next_station
;
1222 * ID of the cargo belonging to the entry actually displayed if it's cargo.
1228 typedef std::vector
<RowDisplay
> CargoDataVector
;
1230 static const int NUM_COLUMNS
= 4; ///< Number of "columns" in the cargo view: cargo, from, via, to
1233 * Type of data invalidation.
1236 INV_FLOWS
= 0x100, ///< The planned flows have been recalculated and everything has to be updated.
1237 INV_CARGO
= 0x200 ///< Some cargo has been added or removed.
1241 * Type of grouping used in each of the "columns".
1244 GR_SOURCE
, ///< Group by source of cargo ("from").
1245 GR_NEXT
, ///< Group by next station ("via").
1246 GR_DESTINATION
, ///< Group by estimated final destination ("to").
1247 GR_CARGO
, ///< Group by cargo type.
1251 * Display mode of the cargo view.
1254 MODE_WAITING
, ///< Show cargo waiting at the station.
1255 MODE_PLANNED
///< Show cargo planned to pass through the station.
1258 uint expand_shrink_width
; ///< The width allocated to the expand/shrink 'button'
1259 int rating_lines
; ///< Number of lines in the cargo ratings view.
1260 int accepts_lines
; ///< Number of lines in the accepted cargo view.
1263 /** Height of the #WID_SV_ACCEPT_RATING_LIST widget for different views. */
1264 enum AcceptListHeight
{
1265 ALH_RATING
= 13, ///< Height of the cargo ratings view.
1266 ALH_ACCEPTS
= 3, ///< Height of the accepted cargo view.
1269 static const StringID _sort_names
[]; ///< Names of the sorting options in the dropdown.
1270 static const StringID _group_names
[]; ///< Names of the grouping options in the dropdown.
1273 * Sort types of the different 'columns'.
1274 * In fact only ST_COUNT and ST_AS_GROUPING are active and you can only
1275 * sort all the columns in the same way. The other options haven't been
1276 * included in the GUI due to lack of space.
1278 CargoSortType sortings
[NUM_COLUMNS
];
1280 /** Sort order (ascending/descending) for the 'columns'. */
1281 SortOrder sort_orders
[NUM_COLUMNS
];
1283 int scroll_to_row
; ///< If set, scroll the main viewport to the station pointed to by this row.
1284 int grouping_index
; ///< Currently selected entry in the grouping drop down.
1285 Mode current_mode
; ///< Currently selected display mode of cargo view.
1286 Grouping groupings
[NUM_COLUMNS
]; ///< Grouping modes for the different columns.
1288 CargoDataEntry expanded_rows
; ///< Parent entry of currently expanded rows.
1289 CargoDataEntry cached_destinations
; ///< Cache for the flows passing through this station.
1290 CargoDataVector displayed_rows
; ///< Parent entry of currently displayed rows (including collapsed ones).
1292 StationViewWindow(WindowDesc
*desc
, WindowNumber window_number
) : Window(desc
),
1293 scroll_to_row(INT_MAX
), grouping_index(0)
1295 this->rating_lines
= ALH_RATING
;
1296 this->accepts_lines
= ALH_ACCEPTS
;
1298 this->CreateNestedTree();
1299 this->vscroll
= this->GetScrollbar(WID_SV_SCROLLBAR
);
1300 /* Nested widget tree creation is done in two steps to ensure that this->GetWidget<NWidgetCore>(WID_SV_ACCEPTS_RATINGS) exists in UpdateWidgetSize(). */
1301 this->FinishInitNested(window_number
);
1303 this->groupings
[0] = GR_CARGO
;
1304 this->sortings
[0] = ST_AS_GROUPING
;
1305 this->SelectGroupBy(_settings_client
.gui
.station_gui_group_order
);
1306 this->SelectSortBy(_settings_client
.gui
.station_gui_sort_by
);
1307 this->sort_orders
[0] = SO_ASCENDING
;
1308 this->SelectSortOrder((SortOrder
)_settings_client
.gui
.station_gui_sort_order
);
1309 this->owner
= Station::Get(window_number
)->owner
;
1312 ~StationViewWindow()
1314 DeleteWindowById(WC_TRAINS_LIST
, VehicleListIdentifier(VL_STATION_LIST
, VEH_TRAIN
, this->owner
, this->window_number
).Pack(), false);
1315 DeleteWindowById(WC_ROADVEH_LIST
, VehicleListIdentifier(VL_STATION_LIST
, VEH_ROAD
, this->owner
, this->window_number
).Pack(), false);
1316 DeleteWindowById(WC_SHIPS_LIST
, VehicleListIdentifier(VL_STATION_LIST
, VEH_SHIP
, this->owner
, this->window_number
).Pack(), false);
1317 DeleteWindowById(WC_AIRCRAFT_LIST
, VehicleListIdentifier(VL_STATION_LIST
, VEH_AIRCRAFT
, this->owner
, this->window_number
).Pack(), false);
1321 * Show a certain cargo entry characterized by source/next/dest station, cargo ID and amount of cargo at the
1322 * right place in the cargo view. I.e. update as many rows as are expanded following that characterization.
1323 * @param data Root entry of the tree.
1324 * @param cargo Cargo ID of the entry to be shown.
1325 * @param source Source station of the entry to be shown.
1326 * @param next Next station the cargo to be shown will visit.
1327 * @param dest Final destination of the cargo to be shown.
1328 * @param count Amount of cargo to be shown.
1330 void ShowCargo(CargoDataEntry
*data
, CargoID cargo
, StationID source
, StationID next
, StationID dest
, uint count
)
1332 if (count
== 0) return;
1333 bool auto_distributed
= _settings_game
.linkgraph
.GetDistributionType(cargo
) != DT_MANUAL
;
1334 const CargoDataEntry
*expand
= &this->expanded_rows
;
1335 for (int i
= 0; i
< NUM_COLUMNS
&& expand
!= NULL
; ++i
) {
1336 switch (groupings
[i
]) {
1339 data
= data
->InsertOrRetrieve(cargo
);
1340 data
->SetTransfers(source
!= this->window_number
);
1341 expand
= expand
->Retrieve(cargo
);
1344 if (auto_distributed
|| source
!= this->window_number
) {
1345 data
= data
->InsertOrRetrieve(source
);
1346 expand
= expand
->Retrieve(source
);
1350 if (auto_distributed
) {
1351 data
= data
->InsertOrRetrieve(next
);
1352 expand
= expand
->Retrieve(next
);
1355 case GR_DESTINATION
:
1356 if (auto_distributed
) {
1357 data
= data
->InsertOrRetrieve(dest
);
1358 expand
= expand
->Retrieve(dest
);
1363 data
->Update(count
);
1366 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
1369 case WID_SV_WAITING
:
1370 resize
->height
= FONT_HEIGHT_NORMAL
;
1371 size
->height
= WD_FRAMERECT_TOP
+ 4 * resize
->height
+ WD_FRAMERECT_BOTTOM
;
1372 this->expand_shrink_width
= max(GetStringBoundingBox("-").width
, GetStringBoundingBox("+").width
) + WD_FRAMERECT_LEFT
+ WD_FRAMERECT_RIGHT
;
1375 case WID_SV_ACCEPT_RATING_LIST
:
1376 size
->height
= WD_FRAMERECT_TOP
+ ((this->GetWidget
<NWidgetCore
>(WID_SV_ACCEPTS_RATINGS
)->widget_data
== STR_STATION_VIEW_RATINGS_BUTTON
) ? this->accepts_lines
: this->rating_lines
) * FONT_HEIGHT_NORMAL
+ WD_FRAMERECT_BOTTOM
;
1379 case WID_SV_CLOSE_AIRPORT
:
1380 if (!(Station::Get(this->window_number
)->facilities
& FACIL_AIRPORT
)) {
1381 /* Hide 'Close Airport' button if no airport present. */
1390 virtual void OnPaint()
1392 const Station
*st
= Station::Get(this->window_number
);
1393 CargoDataEntry cargo
;
1394 BuildCargoList(&cargo
, st
);
1396 this->vscroll
->SetCount(cargo
.GetNumChildren()); // update scrollbar
1398 /* disable some buttons */
1399 this->SetWidgetDisabledState(WID_SV_RENAME
, st
->owner
!= _local_company
);
1400 this->SetWidgetDisabledState(WID_SV_TRAINS
, !(st
->facilities
& FACIL_TRAIN
));
1401 this->SetWidgetDisabledState(WID_SV_ROADVEHS
, !(st
->facilities
& FACIL_TRUCK_STOP
) && !(st
->facilities
& FACIL_BUS_STOP
));
1402 this->SetWidgetDisabledState(WID_SV_SHIPS
, !(st
->facilities
& FACIL_DOCK
));
1403 this->SetWidgetDisabledState(WID_SV_PLANES
, !(st
->facilities
& FACIL_AIRPORT
));
1404 this->SetWidgetDisabledState(WID_SV_CLOSE_AIRPORT
, !(st
->facilities
& FACIL_AIRPORT
) || st
->owner
!= _local_company
|| st
->owner
== OWNER_NONE
); // Also consider SE, where _local_company == OWNER_NONE
1405 this->SetWidgetLoweredState(WID_SV_CLOSE_AIRPORT
, (st
->facilities
& FACIL_AIRPORT
) && (st
->airport
.flags
& AIRPORT_CLOSED_block
) != 0);
1407 this->DrawWidgets();
1409 if (!this->IsShaded()) {
1410 /* Draw 'accepted cargo' or 'cargo ratings'. */
1411 const NWidgetBase
*wid
= this->GetWidget
<NWidgetBase
>(WID_SV_ACCEPT_RATING_LIST
);
1412 const Rect r
= {(int)wid
->pos_x
, (int)wid
->pos_y
, (int)(wid
->pos_x
+ wid
->current_x
- 1), (int)(wid
->pos_y
+ wid
->current_y
- 1)};
1413 if (this->GetWidget
<NWidgetCore
>(WID_SV_ACCEPTS_RATINGS
)->widget_data
== STR_STATION_VIEW_RATINGS_BUTTON
) {
1414 int lines
= this->DrawAcceptedCargo(r
);
1415 if (lines
> this->accepts_lines
) { // Resize the widget, and perform re-initialization of the window.
1416 this->accepts_lines
= lines
;
1421 int lines
= this->DrawCargoRatings(r
);
1422 if (lines
> this->rating_lines
) { // Resize the widget, and perform re-initialization of the window.
1423 this->rating_lines
= lines
;
1429 /* Draw arrow pointing up/down for ascending/descending sorting */
1430 this->DrawSortButtonState(WID_SV_SORT_ORDER
, sort_orders
[1] == SO_ASCENDING
? SBS_UP
: SBS_DOWN
);
1432 int pos
= this->vscroll
->GetPosition();
1434 int maxrows
= this->vscroll
->GetCapacity();
1436 displayed_rows
.clear();
1438 /* Draw waiting cargo. */
1439 NWidgetBase
*nwi
= this->GetWidget
<NWidgetBase
>(WID_SV_WAITING
);
1440 Rect waiting_rect
= { (int)nwi
->pos_x
, (int)nwi
->pos_y
, (int)(nwi
->pos_x
+ nwi
->current_x
- 1), (int)(nwi
->pos_y
+ nwi
->current_y
- 1)};
1441 this->DrawEntries(&cargo
, waiting_rect
, pos
, maxrows
, 0);
1442 scroll_to_row
= INT_MAX
;
1446 virtual void SetStringParameters(int widget
) const
1448 const Station
*st
= Station::Get(this->window_number
);
1449 SetDParam(0, st
->index
);
1450 SetDParam(1, st
->facilities
);
1454 * Rebuild the cache for estimated destinations which is used to quickly show the "destination" entries
1455 * even if we actually don't know the destination of a certain packet from just looking at it.
1456 * @param i Cargo to recalculate the cache for.
1458 void RecalcDestinations(CargoID i
)
1460 const Station
*st
= Station::Get(this->window_number
);
1461 CargoDataEntry
*cargo_entry
= cached_destinations
.InsertOrRetrieve(i
);
1462 cargo_entry
->Clear();
1464 const FlowStatMap
&flows
= st
->goods
[i
].flows
;
1465 for (FlowStatMap::const_iterator it
= flows
.begin(); it
!= flows
.end(); ++it
) {
1466 StationID from
= it
->first
;
1467 CargoDataEntry
*source_entry
= cargo_entry
->InsertOrRetrieve(from
);
1468 const FlowStat::SharesMap
*shares
= it
->second
.GetShares();
1469 uint32 prev_count
= 0;
1470 for (FlowStat::SharesMap::const_iterator flow_it
= shares
->begin(); flow_it
!= shares
->end(); ++flow_it
) {
1471 StationID via
= flow_it
->second
;
1472 CargoDataEntry
*via_entry
= source_entry
->InsertOrRetrieve(via
);
1473 if (via
== this->window_number
) {
1474 via_entry
->InsertOrRetrieve(via
)->Update(flow_it
->first
- prev_count
);
1476 EstimateDestinations(i
, from
, via
, flow_it
->first
- prev_count
, via_entry
);
1478 prev_count
= flow_it
->first
;
1484 * Estimate the amounts of cargo per final destination for a given cargo, source station and next hop and
1485 * save the result as children of the given CargoDataEntry.
1486 * @param cargo ID of the cargo to estimate destinations for.
1487 * @param source Source station of the given batch of cargo.
1488 * @param next Intermediate hop to start the calculation at ("next hop").
1489 * @param count Size of the batch of cargo.
1490 * @param dest CargoDataEntry to save the results in.
1492 void EstimateDestinations(CargoID cargo
, StationID source
, StationID next
, uint count
, CargoDataEntry
*dest
)
1494 if (Station::IsValidID(next
) && Station::IsValidID(source
)) {
1496 const FlowStatMap
&flowmap
= Station::Get(next
)->goods
[cargo
].flows
;
1497 FlowStatMap::const_iterator map_it
= flowmap
.find(source
);
1498 if (map_it
!= flowmap
.end()) {
1499 const FlowStat::SharesMap
*shares
= map_it
->second
.GetShares();
1500 uint32 prev_count
= 0;
1501 for (FlowStat::SharesMap::const_iterator i
= shares
->begin(); i
!= shares
->end(); ++i
) {
1502 tmp
.InsertOrRetrieve(i
->second
)->Update(i
->first
- prev_count
);
1503 prev_count
= i
->first
;
1507 if (tmp
.GetCount() == 0) {
1508 dest
->InsertOrRetrieve(INVALID_STATION
)->Update(count
);
1510 uint sum_estimated
= 0;
1511 while (sum_estimated
< count
) {
1512 for (CargoDataSet::iterator i
= tmp
.Begin(); i
!= tmp
.End() && sum_estimated
< count
; ++i
) {
1513 CargoDataEntry
*child
= *i
;
1514 uint estimate
= DivideApprox(child
->GetCount() * count
, tmp
.GetCount());
1515 if (estimate
== 0) estimate
= 1;
1517 sum_estimated
+= estimate
;
1518 if (sum_estimated
> count
) {
1519 estimate
-= sum_estimated
- count
;
1520 sum_estimated
= count
;
1524 if (child
->GetStation() == next
) {
1525 dest
->InsertOrRetrieve(next
)->Update(estimate
);
1527 EstimateDestinations(cargo
, source
, child
->GetStation(), estimate
, dest
);
1535 dest
->InsertOrRetrieve(INVALID_STATION
)->Update(count
);
1540 * Build up the cargo view for PLANNED mode and a specific cargo.
1541 * @param i Cargo to show.
1542 * @param flows The current station's flows for that cargo.
1543 * @param cargo The CargoDataEntry to save the results in.
1545 void BuildFlowList(CargoID i
, const FlowStatMap
&flows
, CargoDataEntry
*cargo
)
1547 const CargoDataEntry
*source_dest
= this->cached_destinations
.Retrieve(i
);
1548 for (FlowStatMap::const_iterator it
= flows
.begin(); it
!= flows
.end(); ++it
) {
1549 StationID from
= it
->first
;
1550 const CargoDataEntry
*source_entry
= source_dest
->Retrieve(from
);
1551 const FlowStat::SharesMap
*shares
= it
->second
.GetShares();
1552 for (FlowStat::SharesMap::const_iterator flow_it
= shares
->begin(); flow_it
!= shares
->end(); ++flow_it
) {
1553 const CargoDataEntry
*via_entry
= source_entry
->Retrieve(flow_it
->second
);
1554 for (CargoDataSet::iterator dest_it
= via_entry
->Begin(); dest_it
!= via_entry
->End(); ++dest_it
) {
1555 CargoDataEntry
*dest_entry
= *dest_it
;
1556 ShowCargo(cargo
, i
, from
, flow_it
->second
, dest_entry
->GetStation(), dest_entry
->GetCount());
1563 * Build up the cargo view for WAITING mode and a specific cargo.
1564 * @param i Cargo to show.
1565 * @param packets The current station's cargo list for that cargo.
1566 * @param cargo The CargoDataEntry to save the result in.
1568 void BuildCargoList(CargoID i
, const StationCargoList
&packets
, CargoDataEntry
*cargo
)
1570 const CargoDataEntry
*source_dest
= this->cached_destinations
.Retrieve(i
);
1571 for (StationCargoList::ConstIterator it
= packets
.Packets()->begin(); it
!= packets
.Packets()->end(); it
++) {
1572 const CargoPacket
*cp
= *it
;
1573 StationID next
= it
.GetKey();
1575 const CargoDataEntry
*source_entry
= source_dest
->Retrieve(cp
->SourceStation());
1576 if (source_entry
== NULL
) {
1577 this->ShowCargo(cargo
, i
, cp
->SourceStation(), next
, INVALID_STATION
, cp
->Count());
1581 const CargoDataEntry
*via_entry
= source_entry
->Retrieve(next
);
1582 if (via_entry
== NULL
) {
1583 this->ShowCargo(cargo
, i
, cp
->SourceStation(), next
, INVALID_STATION
, cp
->Count());
1587 for (CargoDataSet::iterator dest_it
= via_entry
->Begin(); dest_it
!= via_entry
->End(); ++dest_it
) {
1588 CargoDataEntry
*dest_entry
= *dest_it
;
1589 uint val
= DivideApprox(cp
->Count() * dest_entry
->GetCount(), via_entry
->GetCount());
1590 this->ShowCargo(cargo
, i
, cp
->SourceStation(), next
, dest_entry
->GetStation(), val
);
1593 this->ShowCargo(cargo
, i
, NEW_STATION
, NEW_STATION
, NEW_STATION
, packets
.ReservedCount());
1597 * Build up the cargo view for all cargoes.
1598 * @param cargo The root cargo entry to save all results in.
1599 * @param st The station to calculate the cargo view from.
1601 void BuildCargoList(CargoDataEntry
*cargo
, const Station
*st
)
1603 for (CargoID i
= 0; i
< NUM_CARGO
; i
++) {
1605 if (this->cached_destinations
.Retrieve(i
) == NULL
) {
1606 this->RecalcDestinations(i
);
1609 if (this->current_mode
== MODE_WAITING
) {
1610 this->BuildCargoList(i
, st
->goods
[i
].cargo
, cargo
);
1612 this->BuildFlowList(i
, st
->goods
[i
].flows
, cargo
);
1618 * Mark a specific row, characterized by its CargoDataEntry, as expanded.
1619 * @param data The row to be marked as expanded.
1621 void SetDisplayedRow(const CargoDataEntry
*data
)
1623 std::list
<StationID
> stations
;
1624 const CargoDataEntry
*parent
= data
->GetParent();
1625 if (parent
->GetParent() == NULL
) {
1626 this->displayed_rows
.push_back(RowDisplay(&this->expanded_rows
, data
->GetCargo()));
1630 StationID next
= data
->GetStation();
1631 while (parent
->GetParent()->GetParent() != NULL
) {
1632 stations
.push_back(parent
->GetStation());
1633 parent
= parent
->GetParent();
1636 CargoID cargo
= parent
->GetCargo();
1637 CargoDataEntry
*filter
= this->expanded_rows
.Retrieve(cargo
);
1638 while (!stations
.empty()) {
1639 filter
= filter
->Retrieve(stations
.back());
1640 stations
.pop_back();
1643 this->displayed_rows
.push_back(RowDisplay(filter
, next
));
1647 * Select the correct string for an entry referring to the specified station.
1648 * @param station Station the entry is showing cargo for.
1649 * @param here String to be shown if the entry refers to the same station as this station GUI belongs to.
1650 * @param other_station String to be shown if the entry refers to a specific other station.
1651 * @param any String to be shown if the entry refers to "any station".
1652 * @return One of the three given strings or STR_STATION_VIEW_RESERVED, depending on what station the entry refers to.
1654 StringID
GetEntryString(StationID station
, StringID here
, StringID other_station
, StringID any
)
1656 if (station
== this->window_number
) {
1658 } else if (station
== INVALID_STATION
) {
1660 } else if (station
== NEW_STATION
) {
1661 return STR_STATION_VIEW_RESERVED
;
1663 SetDParam(2, station
);
1664 return other_station
;
1669 * Determine if we need to show the special "non-stop" string.
1670 * @param cd Entry we are going to show.
1671 * @param station Station the entry refers to.
1672 * @param column The "column" the entry will be shown in.
1673 * @return either STR_STATION_VIEW_VIA or STR_STATION_VIEW_NONSTOP.
1675 StringID
SearchNonStop(CargoDataEntry
*cd
, StationID station
, int column
)
1677 CargoDataEntry
*parent
= cd
->GetParent();
1678 for (int i
= column
- 1; i
> 0; --i
) {
1679 if (this->groupings
[i
] == GR_DESTINATION
) {
1680 if (parent
->GetStation() == station
) {
1681 return STR_STATION_VIEW_NONSTOP
;
1683 return STR_STATION_VIEW_VIA
;
1686 parent
= parent
->GetParent();
1689 if (this->groupings
[column
+ 1] == GR_DESTINATION
) {
1690 CargoDataSet::iterator begin
= cd
->Begin();
1691 CargoDataSet::iterator end
= cd
->End();
1692 if (begin
!= end
&& ++(cd
->Begin()) == end
&& (*(begin
))->GetStation() == station
) {
1693 return STR_STATION_VIEW_NONSTOP
;
1695 return STR_STATION_VIEW_VIA
;
1699 return STR_STATION_VIEW_VIA
;
1703 * Draw the given cargo entries in the station GUI.
1704 * @param entry Root entry for all cargo to be drawn.
1705 * @param r Screen rectangle to draw into.
1706 * @param pos Current row to be drawn to (counted down from 0 to -maxrows, same as vscroll->GetPosition()).
1707 * @param maxrows Maximum row to be drawn.
1708 * @param column Current "column" being drawn.
1709 * @param cargo Current cargo being drawn (if cargo column has been passed).
1710 * @return row (in "pos" counting) after the one we have last drawn to.
1712 int DrawEntries(CargoDataEntry
*entry
, Rect
&r
, int pos
, int maxrows
, int column
, CargoID cargo
= CT_INVALID
)
1714 if (this->sortings
[column
] == ST_AS_GROUPING
) {
1715 if (this->groupings
[column
] != GR_CARGO
) {
1716 entry
->Resort(ST_STATION_STRING
, this->sort_orders
[column
]);
1719 entry
->Resort(ST_COUNT
, this->sort_orders
[column
]);
1721 for (CargoDataSet::iterator i
= entry
->Begin(); i
!= entry
->End(); ++i
) {
1722 CargoDataEntry
*cd
= *i
;
1724 Grouping grouping
= this->groupings
[column
];
1725 if (grouping
== GR_CARGO
) cargo
= cd
->GetCargo();
1726 bool auto_distributed
= _settings_game
.linkgraph
.GetDistributionType(cargo
) != DT_MANUAL
;
1728 if (pos
> -maxrows
&& pos
<= 0) {
1729 StringID str
= STR_EMPTY
;
1730 int y
= r
.top
+ WD_FRAMERECT_TOP
- pos
* FONT_HEIGHT_NORMAL
;
1731 SetDParam(0, cargo
);
1732 SetDParam(1, cd
->GetCount());
1734 if (this->groupings
[column
] == GR_CARGO
) {
1735 str
= STR_STATION_VIEW_WAITING_CARGO
;
1736 DrawCargoIcons(cd
->GetCargo(), cd
->GetCount(), r
.left
+ WD_FRAMERECT_LEFT
+ this->expand_shrink_width
, r
.right
- WD_FRAMERECT_RIGHT
- this->expand_shrink_width
, y
);
1738 if (!auto_distributed
) grouping
= GR_SOURCE
;
1739 StationID station
= cd
->GetStation();
1743 str
= this->GetEntryString(station
, STR_STATION_VIEW_FROM_HERE
, STR_STATION_VIEW_FROM
, STR_STATION_VIEW_FROM_ANY
);
1746 str
= this->GetEntryString(station
, STR_STATION_VIEW_VIA_HERE
, STR_STATION_VIEW_VIA
, STR_STATION_VIEW_VIA_ANY
);
1747 if (str
== STR_STATION_VIEW_VIA
) str
= this->SearchNonStop(cd
, station
, column
);
1749 case GR_DESTINATION
:
1750 str
= this->GetEntryString(station
, STR_STATION_VIEW_TO_HERE
, STR_STATION_VIEW_TO
, STR_STATION_VIEW_TO_ANY
);
1755 if (pos
== -this->scroll_to_row
&& Station::IsValidID(station
)) {
1756 ScrollMainWindowToTile(Station::Get(station
)->xy
);
1760 bool rtl
= _current_text_dir
== TD_RTL
;
1761 int text_left
= rtl
? r
.left
+ this->expand_shrink_width
: r
.left
+ WD_FRAMERECT_LEFT
+ column
* this->expand_shrink_width
;
1762 int text_right
= rtl
? r
.right
- WD_FRAMERECT_LEFT
- column
* this->expand_shrink_width
: r
.right
- this->expand_shrink_width
;
1763 int shrink_left
= rtl
? r
.left
+ WD_FRAMERECT_LEFT
: r
.right
- this->expand_shrink_width
+ WD_FRAMERECT_LEFT
;
1764 int shrink_right
= rtl
? r
.left
+ this->expand_shrink_width
- WD_FRAMERECT_RIGHT
: r
.right
- WD_FRAMERECT_RIGHT
;
1766 DrawString(text_left
, text_right
, y
, str
);
1768 if (column
< NUM_COLUMNS
- 1) {
1769 const char *sym
= NULL
;
1770 if (cd
->GetNumChildren() > 0) {
1772 } else if (auto_distributed
&& str
!= STR_STATION_VIEW_RESERVED
) {
1775 /* Only draw '+' if there is something to be shown. */
1776 const StationCargoList
&list
= Station::Get(this->window_number
)->goods
[cargo
].cargo
;
1777 if (grouping
== GR_CARGO
&& (list
.ReservedCount() > 0 || cd
->HasTransfers())) {
1781 if (sym
) DrawString(shrink_left
, shrink_right
, y
, sym
, TC_YELLOW
);
1783 this->SetDisplayedRow(cd
);
1786 if (auto_distributed
|| column
== 0) {
1787 pos
= this->DrawEntries(cd
, r
, pos
, maxrows
, column
+ 1, cargo
);
1794 * Draw accepted cargo in the #WID_SV_ACCEPT_RATING_LIST widget.
1795 * @param r Rectangle of the widget.
1796 * @return Number of lines needed for drawing the accepted cargo.
1798 int DrawAcceptedCargo(const Rect
&r
) const
1800 const Station
*st
= Station::Get(this->window_number
);
1802 uint32 cargo_mask
= 0;
1803 for (CargoID i
= 0; i
< NUM_CARGO
; i
++) {
1804 if (HasBit(st
->goods
[i
].status
, GoodsEntry::GES_ACCEPTANCE
)) SetBit(cargo_mask
, i
);
1806 SetDParam(0, cargo_mask
);
1807 int bottom
= DrawStringMultiLine(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, r
.top
+ WD_FRAMERECT_TOP
, INT32_MAX
, STR_STATION_VIEW_ACCEPTS_CARGO
);
1808 return CeilDiv(bottom
- r
.top
- WD_FRAMERECT_TOP
, FONT_HEIGHT_NORMAL
);
1812 * Draw cargo ratings in the #WID_SV_ACCEPT_RATING_LIST widget.
1813 * @param r Rectangle of the widget.
1814 * @return Number of lines needed for drawing the cargo ratings.
1816 int DrawCargoRatings(const Rect
&r
) const
1818 const Station
*st
= Station::Get(this->window_number
);
1819 int y
= r
.top
+ WD_FRAMERECT_TOP
;
1821 if (st
->town
->exclusive_counter
> 0) {
1822 SetDParam(0, st
->town
->exclusivity
);
1823 y
= DrawStringMultiLine(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, y
, r
.bottom
, st
->town
->exclusivity
== st
->owner
? STR_STATION_VIEW_EXCLUSIVE_RIGHTS_SELF
: STR_STATION_VIEW_EXCLUSIVE_RIGHTS_COMPANY
);
1824 y
+= WD_PAR_VSEP_WIDE
;
1827 DrawString(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, y
, STR_STATION_VIEW_SUPPLY_RATINGS_TITLE
);
1828 y
+= FONT_HEIGHT_NORMAL
;
1830 const CargoSpec
*cs
;
1831 FOR_ALL_SORTED_STANDARD_CARGOSPECS(cs
) {
1832 const GoodsEntry
*ge
= &st
->goods
[cs
->Index()];
1833 if (!ge
->HasRating()) continue;
1835 const LinkGraph
*lg
= LinkGraph::GetIfValid(ge
->link_graph
);
1836 SetDParam(0, cs
->name
);
1837 SetDParam(1, lg
!= NULL
? lg
->Monthly((*lg
)[ge
->node
].Supply()) : 0);
1838 SetDParam(2, STR_CARGO_RATING_APPALLING
+ (ge
->rating
>> 5));
1839 SetDParam(3, ToPercent8(ge
->rating
));
1840 DrawString(r
.left
+ WD_FRAMERECT_LEFT
+ 6, r
.right
- WD_FRAMERECT_RIGHT
- 6, y
, STR_STATION_VIEW_CARGO_SUPPLY_RATING
);
1841 y
+= FONT_HEIGHT_NORMAL
;
1843 return CeilDiv(y
- r
.top
- WD_FRAMERECT_TOP
, FONT_HEIGHT_NORMAL
);
1847 * Expand or collapse a specific row.
1848 * @param filter Parent of the row.
1849 * @param next ID pointing to the row.
1852 void HandleCargoWaitingClick(CargoDataEntry
*filter
, Tid next
)
1854 if (filter
->Retrieve(next
) != NULL
) {
1855 filter
->Remove(next
);
1857 filter
->InsertOrRetrieve(next
);
1862 * Handle a click on a specific row in the cargo view.
1863 * @param row Row being clicked.
1865 void HandleCargoWaitingClick(int row
)
1867 if (row
< 0 || (uint
)row
>= this->displayed_rows
.size()) return;
1868 if (_ctrl_pressed
) {
1869 this->scroll_to_row
= row
;
1871 RowDisplay
&display
= this->displayed_rows
[row
];
1872 if (display
.filter
== &this->expanded_rows
) {
1873 this->HandleCargoWaitingClick
<CargoID
>(display
.filter
, display
.next_cargo
);
1875 this->HandleCargoWaitingClick
<StationID
>(display
.filter
, display
.next_station
);
1878 this->SetWidgetDirty(WID_SV_WAITING
);
1881 virtual void OnClick(Point pt
, int widget
, int click_count
)
1884 case WID_SV_WAITING
:
1885 this->HandleCargoWaitingClick(this->vscroll
->GetScrolledRowFromWidget(pt
.y
, this, WID_SV_WAITING
, WD_FRAMERECT_TOP
, FONT_HEIGHT_NORMAL
) - this->vscroll
->GetPosition());
1888 case WID_SV_LOCATION
:
1889 if (_ctrl_pressed
) {
1890 ShowExtraViewPortWindow(Station::Get(this->window_number
)->xy
);
1892 ScrollMainWindowToTile(Station::Get(this->window_number
)->xy
);
1896 case WID_SV_ACCEPTS_RATINGS
: {
1897 /* Swap between 'accepts' and 'ratings' view. */
1899 NWidgetCore
*nwi
= this->GetWidget
<NWidgetCore
>(WID_SV_ACCEPTS_RATINGS
);
1900 if (this->GetWidget
<NWidgetCore
>(WID_SV_ACCEPTS_RATINGS
)->widget_data
== STR_STATION_VIEW_RATINGS_BUTTON
) {
1901 nwi
->SetDataTip(STR_STATION_VIEW_ACCEPTS_BUTTON
, STR_STATION_VIEW_ACCEPTS_TOOLTIP
); // Switch to accepts view.
1902 height_change
= this->rating_lines
- this->accepts_lines
;
1904 nwi
->SetDataTip(STR_STATION_VIEW_RATINGS_BUTTON
, STR_STATION_VIEW_RATINGS_TOOLTIP
); // Switch to ratings view.
1905 height_change
= this->accepts_lines
- this->rating_lines
;
1907 this->ReInit(0, height_change
* FONT_HEIGHT_NORMAL
);
1912 SetDParam(0, this->window_number
);
1913 ShowQueryString(STR_STATION_NAME
, STR_STATION_VIEW_RENAME_STATION_CAPTION
, MAX_LENGTH_STATION_NAME_CHARS
,
1914 this, CS_ALPHANUMERAL
, QSF_ENABLE_DEFAULT
| QSF_LEN_IN_CHARS
);
1917 case WID_SV_CLOSE_AIRPORT
:
1918 DoCommandP(0, this->window_number
, 0, CMD_OPEN_CLOSE_AIRPORT
);
1921 case WID_SV_TRAINS
: // Show list of scheduled trains to this station
1922 case WID_SV_ROADVEHS
: // Show list of scheduled road-vehicles to this station
1923 case WID_SV_SHIPS
: // Show list of scheduled ships to this station
1924 case WID_SV_PLANES
: { // Show list of scheduled aircraft to this station
1925 Owner owner
= Station::Get(this->window_number
)->owner
;
1926 ShowVehicleListWindow(owner
, (VehicleType
)(widget
- WID_SV_TRAINS
), (StationID
)this->window_number
);
1930 case WID_SV_SORT_BY
: {
1931 /* The initial selection is composed of current mode and
1932 * sorting criteria for columns 1, 2, and 3. Column 0 is always
1933 * sorted by cargo ID. The others can theoretically be sorted
1934 * by different things but there is no UI for that. */
1935 ShowDropDownMenu(this, _sort_names
,
1936 this->current_mode
* 2 + (this->sortings
[1] == ST_COUNT
? 1 : 0),
1937 WID_SV_SORT_BY
, 0, 0);
1941 case WID_SV_GROUP_BY
: {
1942 ShowDropDownMenu(this, _group_names
, this->grouping_index
, WID_SV_GROUP_BY
, 0, 0);
1946 case WID_SV_SORT_ORDER
: { // flip sorting method asc/desc
1947 this->SelectSortOrder(this->sort_orders
[1] == SO_ASCENDING
? SO_DESCENDING
: SO_ASCENDING
);
1949 this->LowerWidget(WID_SV_SORT_ORDER
);
1956 * Select a new sort order for the cargo view.
1957 * @param order New sort order.
1959 void SelectSortOrder(SortOrder order
)
1961 this->sort_orders
[1] = this->sort_orders
[2] = this->sort_orders
[3] = order
;
1962 _settings_client
.gui
.station_gui_sort_order
= this->sort_orders
[1];
1967 * Select a new sort criterium for the cargo view.
1968 * @param index Row being selected in the sort criteria drop down.
1970 void SelectSortBy(int index
)
1972 _settings_client
.gui
.station_gui_sort_by
= index
;
1973 switch (_sort_names
[index
]) {
1974 case STR_STATION_VIEW_WAITING_STATION
:
1975 this->current_mode
= MODE_WAITING
;
1976 this->sortings
[1] = this->sortings
[2] = this->sortings
[3] = ST_AS_GROUPING
;
1978 case STR_STATION_VIEW_WAITING_AMOUNT
:
1979 this->current_mode
= MODE_WAITING
;
1980 this->sortings
[1] = this->sortings
[2] = this->sortings
[3] = ST_COUNT
;
1982 case STR_STATION_VIEW_PLANNED_STATION
:
1983 this->current_mode
= MODE_PLANNED
;
1984 this->sortings
[1] = this->sortings
[2] = this->sortings
[3] = ST_AS_GROUPING
;
1986 case STR_STATION_VIEW_PLANNED_AMOUNT
:
1987 this->current_mode
= MODE_PLANNED
;
1988 this->sortings
[1] = this->sortings
[2] = this->sortings
[3] = ST_COUNT
;
1993 /* Display the current sort variant */
1994 this->GetWidget
<NWidgetCore
>(WID_SV_SORT_BY
)->widget_data
= _sort_names
[index
];
1999 * Select a new grouping mode for the cargo view.
2000 * @param index Row being selected in the grouping drop down.
2002 void SelectGroupBy(int index
)
2004 this->grouping_index
= index
;
2005 _settings_client
.gui
.station_gui_group_order
= index
;
2006 this->GetWidget
<NWidgetCore
>(WID_SV_GROUP_BY
)->widget_data
= _group_names
[index
];
2007 switch (_group_names
[index
]) {
2008 case STR_STATION_VIEW_GROUP_S_V_D
:
2009 this->groupings
[1] = GR_SOURCE
;
2010 this->groupings
[2] = GR_NEXT
;
2011 this->groupings
[3] = GR_DESTINATION
;
2013 case STR_STATION_VIEW_GROUP_S_D_V
:
2014 this->groupings
[1] = GR_SOURCE
;
2015 this->groupings
[2] = GR_DESTINATION
;
2016 this->groupings
[3] = GR_NEXT
;
2018 case STR_STATION_VIEW_GROUP_V_S_D
:
2019 this->groupings
[1] = GR_NEXT
;
2020 this->groupings
[2] = GR_SOURCE
;
2021 this->groupings
[3] = GR_DESTINATION
;
2023 case STR_STATION_VIEW_GROUP_V_D_S
:
2024 this->groupings
[1] = GR_NEXT
;
2025 this->groupings
[2] = GR_DESTINATION
;
2026 this->groupings
[3] = GR_SOURCE
;
2028 case STR_STATION_VIEW_GROUP_D_S_V
:
2029 this->groupings
[1] = GR_DESTINATION
;
2030 this->groupings
[2] = GR_SOURCE
;
2031 this->groupings
[3] = GR_NEXT
;
2033 case STR_STATION_VIEW_GROUP_D_V_S
:
2034 this->groupings
[1] = GR_DESTINATION
;
2035 this->groupings
[2] = GR_NEXT
;
2036 this->groupings
[3] = GR_SOURCE
;
2042 virtual void OnDropdownSelect(int widget
, int index
)
2044 if (widget
== WID_SV_SORT_BY
) {
2045 this->SelectSortBy(index
);
2047 this->SelectGroupBy(index
);
2051 virtual void OnQueryTextFinished(char *str
)
2053 if (str
== NULL
) return;
2055 DoCommandP(0, this->window_number
, 0, CMD_RENAME_STATION
| CMD_MSG(STR_ERROR_CAN_T_RENAME_STATION
), NULL
, str
);
2058 virtual void OnResize()
2060 this->vscroll
->SetCapacityFromWidget(this, WID_SV_WAITING
, WD_FRAMERECT_TOP
+ WD_FRAMERECT_BOTTOM
);
2064 * Some data on this window has become invalid. Invalidate the cache for the given cargo if necessary.
2065 * @param data Information about the changed data. If it's a valid cargo ID, invalidate the cargo data.
2066 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
2068 virtual void OnInvalidateData(int data
= 0, bool gui_scope
= true)
2071 if (data
>= 0 && data
< NUM_CARGO
) {
2072 this->cached_destinations
.Remove((CargoID
)data
);
2080 const StringID
StationViewWindow::_sort_names
[] = {
2081 STR_STATION_VIEW_WAITING_STATION
,
2082 STR_STATION_VIEW_WAITING_AMOUNT
,
2083 STR_STATION_VIEW_PLANNED_STATION
,
2084 STR_STATION_VIEW_PLANNED_AMOUNT
,
2088 const StringID
StationViewWindow::_group_names
[] = {
2089 STR_STATION_VIEW_GROUP_S_V_D
,
2090 STR_STATION_VIEW_GROUP_S_D_V
,
2091 STR_STATION_VIEW_GROUP_V_S_D
,
2092 STR_STATION_VIEW_GROUP_V_D_S
,
2093 STR_STATION_VIEW_GROUP_D_S_V
,
2094 STR_STATION_VIEW_GROUP_D_V_S
,
2098 static WindowDesc
_station_view_desc(
2099 WDP_AUTO
, "view_station", 249, 117,
2100 WC_STATION_VIEW
, WC_NONE
,
2102 _nested_station_view_widgets
, lengthof(_nested_station_view_widgets
)
2106 * Opens StationViewWindow for given station
2108 * @param station station which window should be opened
2110 void ShowStationViewWindow(StationID station
)
2112 AllocateWindowDescFront
<StationViewWindow
>(&_station_view_desc
, station
);
2115 /** Struct containing TileIndex and StationID */
2116 struct TileAndStation
{
2117 TileIndex tile
; ///< TileIndex
2118 StationID station
; ///< StationID
2121 static SmallVector
<TileAndStation
, 8> _deleted_stations_nearby
;
2122 static SmallVector
<StationID
, 8> _stations_nearby_list
;
2125 * Add station on this tile to _stations_nearby_list if it's fully within the
2127 * @param tile Tile just being checked
2128 * @param user_data Pointer to TileArea context
2129 * @tparam T the type of station to look for
2132 static bool AddNearbyStation(TileIndex tile
, void *user_data
)
2134 TileArea
*ctx
= (TileArea
*)user_data
;
2136 /* First check if there were deleted stations here */
2137 for (uint i
= 0; i
< _deleted_stations_nearby
.Length(); i
++) {
2138 TileAndStation
*ts
= _deleted_stations_nearby
.Get(i
);
2139 if (ts
->tile
== tile
) {
2140 *_stations_nearby_list
.Append() = _deleted_stations_nearby
[i
].station
;
2141 _deleted_stations_nearby
.Erase(ts
);
2146 /* Check if own station and if we stay within station spread */
2147 if (!IsTileType(tile
, MP_STATION
)) return false;
2149 StationID sid
= GetStationIndex(tile
);
2151 /* This station is (likely) a waypoint */
2152 if (!T::IsValidID(sid
)) return false;
2154 T
*st
= T::Get(sid
);
2155 if (st
->owner
!= _local_company
|| _stations_nearby_list
.Contains(sid
)) return false;
2157 if (st
->rect
.BeforeAddRect(ctx
->tile
, ctx
->w
, ctx
->h
, StationRect::ADD_TEST
).Succeeded()) {
2158 *_stations_nearby_list
.Append() = sid
;
2161 return false; // We want to include *all* nearby stations
2165 * Circulate around the to-be-built station to find stations we could join.
2166 * Make sure that only stations are returned where joining wouldn't exceed
2167 * station spread and are our own station.
2168 * @param ta Base tile area of the to-be-built station
2169 * @param distant_join Search for adjacent stations (false) or stations fully
2170 * within station spread
2171 * @tparam T the type of station to look for
2174 static const T
*FindStationsNearby(TileArea ta
, bool distant_join
)
2178 _stations_nearby_list
.Clear();
2179 _deleted_stations_nearby
.Clear();
2181 /* Check the inside, to return, if we sit on another station */
2182 TILE_AREA_LOOP(t
, ta
) {
2183 if (t
< MapSize() && IsTileType(t
, MP_STATION
) && T::IsValidID(GetStationIndex(t
))) return T::GetByTile(t
);
2186 /* Look for deleted stations */
2187 const BaseStation
*st
;
2188 FOR_ALL_BASE_STATIONS(st
) {
2189 if (T::IsExpected(st
) && !st
->IsInUse() && st
->owner
== _local_company
) {
2190 /* Include only within station spread (yes, it is strictly less than) */
2191 if (max(DistanceMax(ta
.tile
, st
->xy
), DistanceMax(TILE_ADDXY(ta
.tile
, ta
.w
- 1, ta
.h
- 1), st
->xy
)) < _settings_game
.station
.station_spread
) {
2192 TileAndStation
*ts
= _deleted_stations_nearby
.Append();
2194 ts
->station
= st
->index
;
2196 /* Add the station when it's within where we're going to build */
2197 if (IsInsideBS(TileX(st
->xy
), TileX(ctx
.tile
), ctx
.w
) &&
2198 IsInsideBS(TileY(st
->xy
), TileY(ctx
.tile
), ctx
.h
)) {
2199 AddNearbyStation
<T
>(st
->xy
, &ctx
);
2205 /* Only search tiles where we have a chance to stay within the station spread.
2206 * The complete check needs to be done in the callback as we don't know the
2207 * extent of the found station, yet. */
2208 if (distant_join
&& min(ta
.w
, ta
.h
) >= _settings_game
.station
.station_spread
) return NULL
;
2209 uint max_dist
= distant_join
? _settings_game
.station
.station_spread
- min(ta
.w
, ta
.h
) : 1;
2211 TileIndex tile
= TILE_ADD(ctx
.tile
, TileOffsByDir(DIR_N
));
2212 CircularTileSearch(&tile
, max_dist
, ta
.w
, ta
.h
, AddNearbyStation
<T
>, &ctx
);
2217 static const NWidgetPart _nested_select_station_widgets
[] = {
2218 NWidget(NWID_HORIZONTAL
),
2219 NWidget(WWT_CLOSEBOX
, COLOUR_DARK_GREEN
),
2220 NWidget(WWT_CAPTION
, COLOUR_DARK_GREEN
, WID_JS_CAPTION
), SetDataTip(STR_JOIN_STATION_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
2221 NWidget(WWT_DEFSIZEBOX
, COLOUR_DARK_GREEN
),
2223 NWidget(NWID_HORIZONTAL
),
2224 NWidget(WWT_PANEL
, COLOUR_DARK_GREEN
, WID_JS_PANEL
), SetResize(1, 0), SetScrollbar(WID_JS_SCROLLBAR
), EndContainer(),
2225 NWidget(NWID_VERTICAL
),
2226 NWidget(NWID_VSCROLLBAR
, COLOUR_DARK_GREEN
, WID_JS_SCROLLBAR
),
2227 NWidget(WWT_RESIZEBOX
, COLOUR_DARK_GREEN
),
2233 * Window for selecting stations/waypoints to (distant) join to.
2234 * @tparam T The type of station to join with
2237 struct SelectStationWindow
: Window
{
2238 CommandContainer select_station_cmd
; ///< Command to build new station
2239 TileArea area
; ///< Location of new station
2242 SelectStationWindow(WindowDesc
*desc
, const CommandContainer
&cmd
, TileArea ta
) :
2244 select_station_cmd(cmd
),
2247 this->CreateNestedTree();
2248 this->vscroll
= this->GetScrollbar(WID_JS_SCROLLBAR
);
2249 this->GetWidget
<NWidgetCore
>(WID_JS_CAPTION
)->widget_data
= T::EXPECTED_FACIL
== FACIL_WAYPOINT
? STR_JOIN_WAYPOINT_CAPTION
: STR_JOIN_STATION_CAPTION
;
2250 this->FinishInitNested(0);
2251 this->OnInvalidateData(0);
2254 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
2256 if (widget
!= WID_JS_PANEL
) return;
2258 /* Determine the widest string */
2259 Dimension d
= GetStringBoundingBox(T::EXPECTED_FACIL
== FACIL_WAYPOINT
? STR_JOIN_WAYPOINT_CREATE_SPLITTED_WAYPOINT
: STR_JOIN_STATION_CREATE_SPLITTED_STATION
);
2260 for (uint i
= 0; i
< _stations_nearby_list
.Length(); i
++) {
2261 const T
*st
= T::Get(_stations_nearby_list
[i
]);
2262 SetDParam(0, st
->index
);
2263 SetDParam(1, st
->facilities
);
2264 d
= maxdim(d
, GetStringBoundingBox(T::EXPECTED_FACIL
== FACIL_WAYPOINT
? STR_STATION_LIST_WAYPOINT
: STR_STATION_LIST_STATION
));
2267 resize
->height
= d
.height
;
2269 d
.width
+= WD_FRAMERECT_RIGHT
+ WD_FRAMERECT_LEFT
;
2270 d
.height
+= WD_FRAMERECT_TOP
+ WD_FRAMERECT_BOTTOM
;
2274 virtual void DrawWidget(const Rect
&r
, int widget
) const
2276 if (widget
!= WID_JS_PANEL
) return;
2278 uint y
= r
.top
+ WD_FRAMERECT_TOP
;
2279 if (this->vscroll
->GetPosition() == 0) {
2280 DrawString(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, y
, T::EXPECTED_FACIL
== FACIL_WAYPOINT
? STR_JOIN_WAYPOINT_CREATE_SPLITTED_WAYPOINT
: STR_JOIN_STATION_CREATE_SPLITTED_STATION
);
2281 y
+= this->resize
.step_height
;
2284 for (uint i
= max
<uint
>(1, this->vscroll
->GetPosition()); i
<= _stations_nearby_list
.Length(); ++i
, y
+= this->resize
.step_height
) {
2285 /* Don't draw anything if it extends past the end of the window. */
2286 if (i
- this->vscroll
->GetPosition() >= this->vscroll
->GetCapacity()) break;
2288 const T
*st
= T::Get(_stations_nearby_list
[i
- 1]);
2289 SetDParam(0, st
->index
);
2290 SetDParam(1, st
->facilities
);
2291 DrawString(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, y
, T::EXPECTED_FACIL
== FACIL_WAYPOINT
? STR_STATION_LIST_WAYPOINT
: STR_STATION_LIST_STATION
);
2295 virtual void OnClick(Point pt
, int widget
, int click_count
)
2297 if (widget
!= WID_JS_PANEL
) return;
2299 uint st_index
= this->vscroll
->GetScrolledRowFromWidget(pt
.y
, this, WID_JS_PANEL
, WD_FRAMERECT_TOP
);
2300 bool distant_join
= (st_index
> 0);
2301 if (distant_join
) st_index
--;
2303 if (distant_join
&& st_index
>= _stations_nearby_list
.Length()) return;
2305 /* Insert station to be joined into stored command */
2306 SB(this->select_station_cmd
.p2
, 16, 16,
2307 (distant_join
? _stations_nearby_list
[st_index
] : NEW_STATION
));
2309 /* Execute stored Command */
2310 DoCommandP(&this->select_station_cmd
);
2312 /* Close Window; this might cause double frees! */
2313 DeleteWindowById(WC_SELECT_STATION
, 0);
2316 virtual void OnTick()
2318 if (_thd
.dirty
& 2) {
2324 virtual void OnResize()
2326 this->vscroll
->SetCapacityFromWidget(this, WID_JS_PANEL
, WD_FRAMERECT_TOP
+ WD_FRAMERECT_BOTTOM
);
2330 * Some data on this window has become invalid.
2331 * @param data Information about the changed data.
2332 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
2334 virtual void OnInvalidateData(int data
= 0, bool gui_scope
= true)
2336 if (!gui_scope
) return;
2337 FindStationsNearby
<T
>(this->area
, true);
2338 this->vscroll
->SetCount(_stations_nearby_list
.Length() + 1);
2343 static WindowDesc
_select_station_desc(
2344 WDP_AUTO
, "build_station_join", 200, 180,
2345 WC_SELECT_STATION
, WC_NONE
,
2347 _nested_select_station_widgets
, lengthof(_nested_select_station_widgets
)
2352 * Check whether we need to show the station selection window.
2353 * @param cmd Command to build the station.
2354 * @param ta Tile area of the to-be-built station
2355 * @tparam T the type of station
2356 * @return whether we need to show the station selection window.
2359 static bool StationJoinerNeeded(const CommandContainer
&cmd
, TileArea ta
)
2361 /* Only show selection if distant join is enabled in the settings */
2362 if (!_settings_game
.station
.distant_join_stations
) return false;
2364 /* If a window is already opened and we didn't ctrl-click,
2365 * return true (i.e. just flash the old window) */
2366 Window
*selection_window
= FindWindowById(WC_SELECT_STATION
, 0);
2367 if (selection_window
!= NULL
) {
2368 /* Abort current distant-join and start new one */
2369 delete selection_window
;
2370 UpdateTileSelection();
2373 /* only show the popup, if we press ctrl */
2374 if (!_ctrl_pressed
) return false;
2376 /* Now check if we could build there */
2377 if (DoCommand(&cmd
, CommandFlagsToDCFlags(GetCommandFlags(cmd
.cmd
))).Failed()) return false;
2379 /* Test for adjacent station or station below selection.
2380 * If adjacent-stations is disabled and we are building next to a station, do not show the selection window.
2381 * but join the other station immediately. */
2382 const T
*st
= FindStationsNearby
<T
>(ta
, false);
2383 return st
== NULL
&& (_settings_game
.station
.adjacent_stations
|| _stations_nearby_list
.Length() == 0);
2387 * Show the station selection window when needed. If not, build the station.
2388 * @param cmd Command to build the station.
2389 * @param ta Area to build the station in
2390 * @tparam the class to find stations for
2393 void ShowSelectBaseStationIfNeeded(const CommandContainer
&cmd
, TileArea ta
)
2395 if (StationJoinerNeeded
<T
>(cmd
, ta
)) {
2396 if (!_settings_client
.gui
.persistent_buildingtools
) ResetObjectToPlace();
2397 new SelectStationWindow
<T
>(&_select_station_desc
, cmd
, ta
);
2404 * Show the station selection window when needed. If not, build the station.
2405 * @param cmd Command to build the station.
2406 * @param ta Area to build the station in
2408 void ShowSelectStationIfNeeded(const CommandContainer
&cmd
, TileArea ta
)
2410 ShowSelectBaseStationIfNeeded
<Station
>(cmd
, ta
);
2414 * Show the waypoint selection window when needed. If not, build the waypoint.
2415 * @param cmd Command to build the waypoint.
2416 * @param ta Area to build the waypoint in
2418 void ShowSelectWaypointIfNeeded(const CommandContainer
&cmd
, TileArea ta
)
2420 ShowSelectBaseStationIfNeeded
<Waypoint
>(cmd
, ta
);