/* * This file is part of OpenTTD. * 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. * 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. * 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 . */ /** @file departures_gui.cpp Scheduled departures from a station. */ #include "stdafx.h" #include "debug.h" #include "gui.h" #include "textbuf_gui.h" #include "strings_func.h" #include "window_func.h" #include "vehicle_func.h" #include "string_func.h" #include "window_gui.h" #include "timetable.h" #include "vehiclelist.h" #include "company_base.h" #include "date_func.h" #include "departures_gui.h" #include "station_base.h" #include "waypoint_base.h" #include "vehicle_gui_base.h" #include "vehicle_base.h" #include "vehicle_gui.h" #include "order_base.h" #include "settings_type.h" #include "date_type.h" #include "company_type.h" #include "departures_func.h" #include "cargotype.h" #include "zoom_func.h" #include "core/backup_type.hpp" #include "table/sprites.h" #include "table/strings.h" static constexpr NWidgetPart _nested_departures_list[] = { NWidget(NWID_HORIZONTAL), NWidget(WWT_CLOSEBOX, COLOUR_GREY), NWidget(WWT_CAPTION, COLOUR_GREY, WID_DB_CAPTION), SetDataTip(STR_DEPARTURES_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS), NWidget(WWT_SHADEBOX, COLOUR_GREY), NWidget(WWT_STICKYBOX, COLOUR_GREY), EndContainer(), NWidget(NWID_HORIZONTAL), NWidget(WWT_MATRIX, COLOUR_GREY, WID_DB_LIST), SetMinimalSize(0, 0), SetFill(1, 0), SetResize(1, 1), SetScrollbar(WID_DB_SCROLLBAR), NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_DB_SCROLLBAR), EndContainer(), NWidget(NWID_HORIZONTAL), NWidget(WWT_PANEL, COLOUR_GREY), SetMinimalSize(0, 12), SetResize(1, 0), SetFill(1, 1), EndContainer(), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_PAX), SetMinimalSize(6, 12), SetFill(0, 1), SetDataTip(STR_DEPARTURES_PAX, STR_DEPARTURES_PAX_TOOLTIP), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_FREIGHT), SetMinimalSize(6, 12), SetFill(0, 1), SetDataTip(STR_DEPARTURES_FREIGHT, STR_DEPARTURES_FREIGHT_TOOLTIP), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_ARRS), SetMinimalSize(6, 12), SetFill(0, 1), SetDataTip(STR_DEPARTURES_ARRIVALS, STR_DEPARTURES_ARRIVALS_TOOLTIP), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_DEPS), SetMinimalSize(6, 12), SetFill(0, 1), SetDataTip(STR_DEPARTURES_DEPARTURES, STR_DEPARTURES_DEPARTURES_TOOLTIP), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_VIA), SetMinimalSize(11, 12), SetFill(0, 1), SetDataTip(STR_DEPARTURES_VIA_BUTTON, STR_DEPARTURES_VIA_TOOLTIP), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_TRAINS), SetMinimalSize(14, 12), SetFill(0, 1), SetDataTip(STR_TRAIN, STR_NULL), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_ROADVEHS), SetMinimalSize(14, 12), SetFill(0, 1), SetDataTip(STR_LORRY, STR_NULL), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_SHIPS), SetMinimalSize(14, 12), SetFill(0, 1), SetDataTip(STR_SHIP, STR_NULL), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_DB_SHOW_PLANES), SetMinimalSize(14, 12), SetFill(0, 1), SetDataTip(STR_PLANE, STR_NULL), NWidget(WWT_RESIZEBOX, COLOUR_GREY), EndContainer(), }; static WindowDesc _departures_desc(__FILE__, __LINE__, WDP_AUTO, "depatures", 260, 246, WC_DEPARTURES_BOARD, WC_NONE, 0, std::begin(_nested_departures_list), std::end(_nested_departures_list) ); static uint cached_date_width = 0; ///< The cached maximum width required to display a date. static uint cached_status_width = 0; ///< The cached maximum width required to show the status field. static uint cached_date_arrow_width = 0; ///< The cached width of the red/green arrows that may be displayed alongside times. static uint cached_veh_type_width = 0; ///< The cached width of the vehicle type icon. static bool cached_date_display_method; ///< Whether the above cached values refers to original (d,m,y) dates or the 24h clock. static bool cached_arr_dep_display_method; ///< Whether to show departures and arrivals on a single line. void FlushDeparturesWindowTextCaches() { cached_date_width = cached_status_width = cached_date_arrow_width = cached_veh_type_width = 0; InvalidateWindowClassesData(WC_DEPARTURES_BOARD, 1); } template struct DeparturesWindow : public Window { protected: StationID station; ///< The station whose departures we're showing. DepartureList *departures; ///< The current list of departures from this station. DepartureList *arrivals; ///< The current list of arrivals from this station. bool departures_invalid; ///< The departures and arrivals list are currently invalid. bool vehicles_invalid; ///< The vehicles list is currently invalid. uint entry_height; ///< The height of an entry in the departures list. uint64_t elapsed_ms; ///< The number of milliseconds that have elapsed since the window was created. Used for scrolling text. int calc_tick_countdown; ///< The number of ticks to wait until recomputing the departure list. Signed in case it goes below zero. bool show_types[4]; ///< The vehicle types to show in the departure list. bool departure_types[3]; ///< The types of departure to show in the departure list. bool departure_types_both; ///< Arrivals and departures buttons disabled (shown combined as single entry) bool show_pax; ///< Show passenger vehicles bool show_freight; ///< Show freight vehicles bool cargo_buttons_disabled;///< Show pax/freight buttons disabled mutable bool scroll_refresh; ///< Whether the window should be refreshed when paused due to scrolling uint min_width; ///< The minimum width of this window. Scrollbar *vscroll; std::vector vehicles; /// current set of vehicles int veh_width; /// current width of vehicle field int group_width; /// current width of group field int toc_width; /// current width of company field virtual uint GetMinWidth() const; static void RecomputeDateWidth(); virtual void DrawDeparturesListItems(const Rect &r) const; void DeleteDeparturesList(DepartureList* list); void ToggleCargoFilter(WidgetID widget, bool &flag) { flag = !flag; this->SetWidgetLoweredState(widget, flag); /* We need to recompute the departures list. */ this->calc_tick_countdown = 0; /* We need to redraw the button that was pressed. */ this->SetWidgetDirty(widget); } void SetCargoFilterDisabledState() { this->cargo_buttons_disabled = _settings_client.gui.departure_only_passengers; this->SetWidgetDisabledState(WID_DB_SHOW_PAX, cargo_buttons_disabled); this->SetWidgetDisabledState(WID_DB_SHOW_FREIGHT, cargo_buttons_disabled); if (this->cargo_buttons_disabled) { this->show_pax = true; this->LowerWidget(WID_DB_SHOW_PAX); this->show_freight = false; this->RaiseWidget(WID_DB_SHOW_FREIGHT); } } void SetDepartureTypesDisabledState() { this->departure_types_both = _settings_client.gui.departure_show_both; this->SetWidgetDisabledState(WID_DB_SHOW_DEPS, departure_types_both); this->SetWidgetDisabledState(WID_DB_SHOW_ARRS, departure_types_both); if (this->departure_types_both) { this->LowerWidget(WID_DB_SHOW_DEPS); this->LowerWidget(WID_DB_SHOW_ARRS); } else { this->SetWidgetLoweredState(WID_DB_SHOW_DEPS, this->departure_types[0]); this->SetWidgetLoweredState(WID_DB_SHOW_ARRS, this->departure_types[1]); } } void FillVehicleList() { this->vehicles.clear(); this->veh_width = 0; this->group_width = 0; this->toc_width = 0; btree::btree_set groups; CompanyMask companies = 0; int unitnumber_max[4] = { -1, -1, -1, -1 }; for (const Vehicle *v : Vehicle::IterateFrontOnly()) { if (v->type < 4 && this->show_types[v->type] && v->IsPrimaryVehicle()) { for(const Order *order : v->Orders()) { if ((order->IsType(OT_GOTO_STATION) || order->IsType(OT_GOTO_WAYPOINT) || order->IsType(OT_IMPLICIT)) && order->GetDestination() == this->station) { this->vehicles.push_back(v); if (_settings_client.gui.departure_show_vehicle) { if (v->name.empty() && !(v->group_id != DEFAULT_GROUP && _settings_client.gui.vehicle_names != 0)) { if (v->unitnumber > unitnumber_max[v->type]) unitnumber_max[v->type] = v->unitnumber; } else { SetDParam(0, v->index | (_settings_client.gui.departure_show_group ? VEHICLE_NAME_NO_GROUP : 0)); int width = (GetStringBoundingBox(STR_DEPARTURES_VEH)).width + 4; if (width > this->veh_width) this->veh_width = width; } } if (v->group_id != INVALID_GROUP && v->group_id != DEFAULT_GROUP && _settings_client.gui.departure_show_group) { groups.insert(v->group_id); } if (_settings_client.gui.departure_show_company) { SetBit(companies, v->owner); } break; } } } } for (uint i = 0; i < 4; i++) { if (unitnumber_max[i] >= 0) { uint unitnumber_digits = 2; if (unitnumber_max[i] >= 10000) { unitnumber_digits = 5; } else if (unitnumber_max[i] >= 1000) { unitnumber_digits = 4; } else if (unitnumber_max[i] >= 100) { unitnumber_digits = 3; } SetDParamMaxDigits(0, unitnumber_digits); int width = (GetStringBoundingBox(((_settings_client.gui.vehicle_names == 1) ? STR_SV_TRAIN_NAME : STR_TRADITIONAL_TRAIN_NAME) + i)).width + 4; if (width > this->veh_width) this->veh_width = width; } } for (GroupID gid : groups) { SetDParam(0, (uint64_t)(gid | GROUP_NAME_HIERARCHY)); int width = (GetStringBoundingBox(STR_DEPARTURES_GROUP)).width + 4; if (width > this->group_width) this->group_width = width; } for (uint owner : SetBitIterator(companies)) { SetDParam(0, owner); int width = (GetStringBoundingBox(STR_DEPARTURES_TOC)).width + 4; if (width > this->toc_width) this->toc_width = width; } this->vehicles_invalid = false; } void RefreshVehicleList() { this->FillVehicleList(); this->calc_tick_countdown = 0; } public: DeparturesWindow(WindowDesc *desc, WindowNumber window_number) : Window(desc), station(window_number), departures(new DepartureList()), arrivals(new DepartureList()), departures_invalid(true), vehicles_invalid(true), elapsed_ms(0), calc_tick_countdown(0), min_width(400) { this->SetupValues(); this->CreateNestedTree(); this->vscroll = this->GetScrollbar(WID_DB_SCROLLBAR); this->FinishInitNested(window_number); /* By default, only show departures. */ departure_types[0] = true; departure_types[1] = false; departure_types[2] = false; show_pax = true; show_freight = true; this->LowerWidget(WID_DB_SHOW_DEPS); this->RaiseWidget(WID_DB_SHOW_ARRS); this->RaiseWidget(WID_DB_SHOW_VIA); this->LowerWidget(WID_DB_SHOW_PAX); this->LowerWidget(WID_DB_SHOW_FREIGHT); if (!Twaypoint) this->SetDepartureTypesDisabledState(); this->SetCargoFilterDisabledState(); for (uint i = 0; i < 4; ++i) { show_types[i] = true; this->LowerWidget(WID_DB_SHOW_TRAINS + i); } if (Twaypoint) { this->GetWidget(WID_DB_CAPTION)->SetDataTip(STR_DEPARTURES_CAPTION_WAYPOINT, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS); for (uint i = 0; i < 4; ++i) { this->DisableWidget(WID_DB_SHOW_TRAINS + i); } this->DisableWidget(WID_DB_SHOW_ARRS); this->DisableWidget(WID_DB_SHOW_DEPS); this->DisableWidget(WID_DB_SHOW_VIA); departure_types[2] = true; this->LowerWidget(WID_DB_SHOW_VIA); } this->RefreshVehicleList(); if (_pause_mode != PM_UNPAUSED) this->OnGameTick(); } virtual ~DeparturesWindow() { this->DeleteDeparturesList(this->departures); this->DeleteDeparturesList(this->arrivals); } void SetupValues() { this->entry_height = 1 + GetCharacterHeight(FS_NORMAL) + 1 + (_settings_client.gui.departure_larger_font ? GetCharacterHeight(FS_NORMAL) : GetCharacterHeight(FS_SMALL)) + 1 + 1; if (cached_veh_type_width == 0) { cached_veh_type_width = GetStringBoundingBox(STR_DEPARTURES_TYPE_PLANE).width; } } virtual void UpdateWidgetSize(WidgetID widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override { switch (widget) { case WID_DB_LIST: resize->height = DeparturesWindow::entry_height; size->height = 2 * resize->height; size->width = this->min_width; break; } } virtual void SetStringParameters(WidgetID widget) const override { if (widget == WID_DB_CAPTION) { const Station *st = Station::Get(this->station); SetDParam(0, st->index); } } virtual bool OnTooltip(Point pt, WidgetID widget, TooltipCloseCondition close_cond) override { switch (widget) { case WID_DB_SHOW_TRAINS: case WID_DB_SHOW_ROADVEHS: case WID_DB_SHOW_SHIPS: case WID_DB_SHOW_PLANES: { SetDParam(0, STR_DEPARTURES_SHOW_TRAINS_TOOLTIP + (widget - WID_DB_SHOW_TRAINS)); GuiShowTooltips(this, STR_DEPARTURES_SHOW_TYPE_TOOLTIP_CTRL_SUFFIX, close_cond, 1); return true; } default: return false; } } virtual void OnClick(Point pt, WidgetID widget, int click_count) override { switch (widget) { case WID_DB_SHOW_TRAINS: // Show trains to this station case WID_DB_SHOW_ROADVEHS: // Show road vehicles to this station case WID_DB_SHOW_SHIPS: // Show ships to this station case WID_DB_SHOW_PLANES: { // Show aircraft to this station if (_ctrl_pressed) { for (int w = WID_DB_SHOW_TRAINS; w <= WID_DB_SHOW_PLANES; w++) { if (w == widget) { this->show_types[w - WID_DB_SHOW_TRAINS] = true; this->LowerWidget(w); } else { this->show_types[w - WID_DB_SHOW_TRAINS] = false; this->RaiseWidget(w); } this->SetWidgetDirty(w); } } else { this->show_types[widget - WID_DB_SHOW_TRAINS] = !this->show_types[widget - WID_DB_SHOW_TRAINS]; this->SetWidgetLoweredState(widget, this->show_types[widget - WID_DB_SHOW_TRAINS]); /* We need to redraw the button that was pressed. */ this->SetWidgetDirty(widget); } /* We need to recompute the departures list. */ this->RefreshVehicleList(); if (_pause_mode != PM_UNPAUSED) this->OnGameTick(); break; } case WID_DB_SHOW_DEPS: case WID_DB_SHOW_ARRS: if (_settings_client.gui.departure_show_both) break; /* FALL THROUGH */ case WID_DB_SHOW_VIA: this->departure_types[widget - WID_DB_SHOW_DEPS] = !this->departure_types[widget - WID_DB_SHOW_DEPS]; this->SetWidgetLoweredState(widget, this->departure_types[widget - WID_DB_SHOW_DEPS]); /* Side effects */ if (widget == WID_DB_SHOW_DEPS) { if (!this->departure_types[0]) { this->RaiseWidget(WID_DB_SHOW_VIA); this->DisableWidget(WID_DB_SHOW_VIA); } else { this->EnableWidget(WID_DB_SHOW_VIA); this->SetWidgetLoweredState(WID_DB_SHOW_VIA, this->departure_types[2]); } /* Redraw required. */ this->SetWidgetDirty(WID_DB_SHOW_VIA); } /* We need to recompute the departures list. */ this->calc_tick_countdown = 0; /* We need to redraw the button that was pressed. */ this->SetWidgetDirty(widget); if (_pause_mode != PM_UNPAUSED) this->OnGameTick(); break; case WID_DB_LIST: { // Matrix to show departures if (this->departures_invalid) return; /* We need to find the departure corresponding to where the user clicked. */ uint32_t id_v = (pt.y - this->GetWidget(WID_DB_LIST)->pos_y) / this->entry_height; if (id_v >= (uint32_t)this->vscroll->GetCapacity()) return; // click out of bounds id_v += (uint32_t)this->vscroll->GetPosition(); if (id_v >= (this->departures->size() + this->arrivals->size())) return; // click out of list bound uint departure = 0; uint arrival = 0; /* Draw each departure. */ for (uint i = 0; i <= id_v; ++i) { const Departure *d; if (arrival == this->arrivals->size()) { d = (*(this->departures))[departure++]; } else if (departure == this->departures->size()) { d = (*(this->arrivals))[arrival++]; } else { d = (*(this->departures))[departure]; const Departure *a = (*(this->arrivals))[arrival]; if (a->scheduled_tick < d->scheduled_tick) { d = a; arrival++; } else { departure++; } } if (i == id_v) { ShowVehicleViewWindow(d->vehicle); break; } } break; } case WID_DB_SHOW_PAX: this->ToggleCargoFilter(widget, this->show_pax); if (_pause_mode != PM_UNPAUSED) this->OnGameTick(); break; case WID_DB_SHOW_FREIGHT: this->ToggleCargoFilter(widget, this->show_freight); if (_pause_mode != PM_UNPAUSED) this->OnGameTick(); break; } } virtual void OnGameTick() override { if (_pause_mode == PM_UNPAUSED) { this->calc_tick_countdown -= 1; } /* Recompute the minimum date display width if the cached one is no longer valid. */ if (cached_date_width == 0 || _settings_time.time_in_minutes != cached_date_display_method || _settings_client.gui.departure_show_both != cached_arr_dep_display_method) { this->RecomputeDateWidth(); } if (this->cargo_buttons_disabled != _settings_client.gui.departure_only_passengers) { this->SetCargoFilterDisabledState(); this->calc_tick_countdown = 0; this->SetWidgetDirty(WID_DB_SHOW_PAX); this->SetWidgetDirty(WID_DB_SHOW_FREIGHT); } if (!Twaypoint && this->departure_types_both != _settings_client.gui.departure_show_both) { this->SetDepartureTypesDisabledState(); this->calc_tick_countdown = 0; this->SetWidgetDirty(WID_DB_SHOW_DEPS); this->SetWidgetDirty(WID_DB_SHOW_ARRS); } /* We need to redraw the scrolling text in its new position. */ this->SetWidgetDirty(WID_DB_LIST); if (this->vehicles_invalid) { this->RefreshVehicleList(); } /* Recompute the list of departures if we're due to. */ if (this->calc_tick_countdown <= 0) { this->calc_tick_countdown = _settings_client.gui.departure_calc_frequency; this->DeleteDeparturesList(this->departures); this->DeleteDeparturesList(this->arrivals); bool show_pax = _settings_client.gui.departure_only_passengers ? true : this->show_pax; bool show_freight = _settings_client.gui.departure_only_passengers ? false : this->show_freight; this->departures = (this->departure_types[0] || _settings_client.gui.departure_show_both ? MakeDepartureList(this->station, this->vehicles, D_DEPARTURE, Twaypoint || this->departure_types[2], show_pax, show_freight) : new DepartureList()); this->arrivals = (this->departure_types[1] && !_settings_client.gui.departure_show_both ? MakeDepartureList(this->station, this->vehicles, D_ARRIVAL, false, show_pax, show_freight) : new DepartureList()); this->departures_invalid = false; this->SetWidgetDirty(WID_DB_LIST); } uint new_width = this->GetMinWidth(); if (new_width != this->min_width) { this->min_width = new_width; this->ReInit(); } uint new_height = 1 + GetCharacterHeight(FS_NORMAL) + 1 + (_settings_client.gui.departure_larger_font ? GetCharacterHeight(FS_NORMAL) : GetCharacterHeight(FS_SMALL)) + 1 + 1; if (new_height != this->entry_height) { this->entry_height = new_height; this->SetWidgetDirty(WID_DB_LIST); this->ReInit(); } } virtual void OnRealtimeTick(uint delta_ms) override { this->elapsed_ms += delta_ms; if (_pause_mode != PM_UNPAUSED && this->calc_tick_countdown <= 0) { this->OnGameTick(); } else if (this->scroll_refresh) { this->SetWidgetDirty(WID_DB_LIST); } } virtual void OnPaint() override { this->vscroll->SetCount(std::min(_settings_client.gui.max_departures, (uint)this->departures->size() + (uint)this->arrivals->size())); this->DrawWidgets(); } virtual void DrawWidget(const Rect &r, WidgetID widget) const override { switch (widget) { case WID_DB_LIST: this->DrawDeparturesListItems(r); break; } } virtual void OnResize() override { this->elapsed_ms = 0; this->vscroll->SetCapacityFromWidget(this, WID_DB_LIST); this->GetWidget(WID_DB_LIST)->widget_data = (this->vscroll->GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START); } /** * Some data on this window has become invalid. * @param data Information about the changed data. * @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. */ void OnInvalidateData(int data = 0, bool gui_scope = true) override { this->vehicles_invalid = true; this->departures_invalid = true; if (data > 0) { this->SetupValues(); this->ReInit(); if (_pause_mode != PM_UNPAUSED) this->OnGameTick(); } } }; /** * Shows a window of scheduled departures for a station. * @param station the station to show a departures window for */ void ShowStationDepartures(StationID station) { AllocateWindowDescFront >(&_departures_desc, station); } /** * Shows a window of scheduled departures for a station. * @param station the station to show a departures window for */ void ShowWaypointDepartures(StationID waypoint) { AllocateWindowDescFront >(&_departures_desc, waypoint); } template void DeparturesWindow::RecomputeDateWidth() { cached_date_width = 0; cached_status_width = 0; cached_date_display_method = _settings_time.time_in_minutes; cached_arr_dep_display_method = _settings_client.gui.departure_show_both; cached_status_width = std::max((GetStringBoundingBox(STR_DEPARTURES_ON_TIME)).width, cached_status_width); cached_status_width = std::max((GetStringBoundingBox(STR_DEPARTURES_DELAYED)).width, cached_status_width); cached_status_width = std::max((GetStringBoundingBox(STR_DEPARTURES_CANCELLED)).width, cached_status_width); uint interval = cached_date_display_method ? _settings_time.ticks_per_minute : DAY_TICKS; uint count = cached_date_display_method ? 24*60 : 365; for (uint i = 0; i < count; ++i) { SetDParam(0, STR_JUST_TT_TIME_ABS); SetDParam(1, INT_MAX - (i*interval)); SetDParam(2, STR_JUST_TT_TIME_ABS); SetDParam(3, INT_MAX - (i*interval)); cached_date_width = std::max(GetStringBoundingBox(cached_arr_dep_display_method ? STR_DEPARTURES_TIME_BOTH : STR_DEPARTURES_TIME_DEP).width, cached_date_width); cached_status_width = std::max((GetStringBoundingBox(STR_DEPARTURES_EXPECTED)).width, cached_status_width); } SetDParam(0, 0); cached_date_arrow_width = GetStringBoundingBox(STR_DEPARTURES_TIME_DEP).width - GetStringBoundingBox(STR_DEPARTURES_TIME).width; if (!_settings_client.gui.departure_show_both) { cached_date_width -= cached_date_arrow_width; } } static int PadWidth(int width) { if (width > 0) width += WidgetDimensions::scaled.hsep_wide; return width; } template uint DeparturesWindow::GetMinWidth() const { uint result = 0; /* Time */ result = cached_date_width; /* Vehicle type icon */ result += _settings_client.gui.departure_show_vehicle_type ? cached_veh_type_width : 0; /* Status */ result += PadWidth(cached_status_width) + PadWidth(this->toc_width) + PadWidth(this->veh_width) + PadWidth(this->group_width); return result + ScaleGUITrad(140); } /** * Deletes this window's departure list. */ template void DeparturesWindow::DeleteDeparturesList(DepartureList *list) { /* SmallVector uses free rather than delete on its contents (which doesn't invoke the destructor), so we need to delete each departure manually. */ for (uint i = 0; i < list->size(); ++i) { Departure **d = &(*list)[i]; delete *d; /* Make sure a double free doesn't happen. */ *d = nullptr; } delete list; list = nullptr; } /** * Draws a list of departures. */ template void DeparturesWindow::DrawDeparturesListItems(const Rect &r) const { this->scroll_refresh = false; const int left = r.left + WidgetDimensions::scaled.matrix.left; const int right = r.right - WidgetDimensions::scaled.matrix.right; const bool rtl = _current_text_dir == TD_RTL; const bool ltr = !rtl; const int text_offset = WidgetDimensions::scaled.framerect.right; const int text_left = left + (rtl ? 0 : text_offset); const int text_right = right - (rtl ? text_offset : 0); int y = r.top + 1; uint max_departures = std::min(this->vscroll->GetPosition() + this->vscroll->GetCapacity(), (uint)this->departures->size() + (uint)this->arrivals->size()); if (max_departures > _settings_client.gui.max_departures) { max_departures = _settings_client.gui.max_departures; } const int small_font_size = _settings_client.gui.departure_larger_font ? GetCharacterHeight(FS_NORMAL) : GetCharacterHeight(FS_SMALL); /* Draw the black background. */ GfxFillRect(r.left + 1, r.top, r.right - 1, r.bottom, PC_BLACK); /* Nothing selected? Then display the information text. */ bool none_selected[2] = {true, true}; for (uint i = 0; i < 4; ++i) { if (this->show_types[i]) { none_selected[0] = false; break; } } if (_settings_client.gui.departure_show_both) { none_selected[1] = false; } else { for (uint i = 0; i < 2; ++i) { if (this->departure_types[i]) { none_selected[1] = false; break; } } } if (none_selected[0] || none_selected[1]) { DrawString(text_left, text_right, y + 1, STR_DEPARTURES_NONE_SELECTED); return; } /* No scheduled departures? Then display the information text. */ if (max_departures == 0) { DrawString(text_left, text_right, y + 1, STR_DEPARTURES_EMPTY); return; } /* Find the maximum possible width of the departure time and "Expt