Go to the documentation of this file.
38 #include "table/strings.h"
110 WDP_AUTO,
"depot_aircraft", 332, 99,
126 if (result.
Failed())
return;
137 if (v == wagon)
return;
139 if (wagon ==
nullptr) {
140 if (head !=
nullptr) wagon = head->
Last();
143 if (wagon ==
nullptr)
return;
146 if (wagon == v)
return;
164 switch (image_type) {
167 default: NOT_REACHED();
173 int max_extend_left = 0;
174 int max_extend_right = 0;
178 if (!e->IsEnabled())
continue;
185 default: NOT_REACHED();
191 if (y > max_height) max_height = y;
192 if (-x_offs > max_extend_left) max_extend_left = -x_offs;
193 if ((
int)x + x_offs > max_extend_right) max_extend_right = x + x_offs;
199 switch (image_type) {
211 default: NOT_REACHED();
229 if (!e->IsEnabled())
continue;
231 uint w = TRAININFO_DEFAULT_VEHICLE_WIDTH;
232 if (e->GetGRF() !=
nullptr && is_custom_sprite(e->u.rail.image_index)) {
233 w = e->GetGRF()->traininfo_vehicle_width;
234 if (w != VEHICLEINFO_FULL_VEHICLE_WIDTH) {
254 static void DepotSellAllConfirmationCallback(
Window *w,
bool confirmed);
265 uint unitnumber_digits;
276 this->generate_list =
true;
277 this->hovered_widget = -1;
279 this->num_columns = 1;
280 this->unitnumber_digits = 2;
313 bool free_wagon =
false;
324 uint x_space = free_wagon ?
341 default: NOT_REACHED();
390 int first_line = w + (-this->hscroll->
GetPosition()) % w;
392 for (
int x = image.right - first_line; x >= image.left; x -= w) {
396 for (
int x = image.left + first_line; x <= image.right; x += w) {
405 uint maxval =
static_cast<uint
>(std::min<size_t>(this->vehicle_list.size(), num + (rows_in_display * this->num_columns)));
408 for (uint i = 0; i < this->num_columns && num < maxval; i++, num++) {
410 const Vehicle *v = this->vehicle_list[num];
416 maxval =
static_cast<uint
>(std::min<size_t>(this->vehicle_list.size() + this->wagon_list.size(), (this->vscroll->GetPosition() * this->num_columns) + (rows_in_display * this->num_columns)));
420 const Vehicle *v = this->wagon_list[num - this->vehicle_list.size()];
438 enum DepotGUIAction {
445 DepotGUIAction GetVehicleFromDepotWndPt(
int x,
int y,
const Vehicle **veh, GetDepotVehiclePtData *d)
const
451 uint xt = 0, xm = 0, ym = 0;
457 if (xt >= this->num_columns)
return MODE_ERROR;
462 if (row >= this->vscroll->
GetCapacity())
return MODE_ERROR;
464 uint pos = ((row + this->vscroll->
GetPosition()) * this->num_columns) + xt;
466 if (this->vehicle_list.size() + this->wagon_list.size() <= pos) {
472 return MODE_DRAG_VEHICLE;
479 if (this->vehicle_list.size() > pos) {
480 *veh = this->vehicle_list[pos];
484 pos -= (uint)this->vehicle_list.size();
485 *veh = this->wagon_list[pos];
491 const Train *v =
nullptr;
494 d->head = d->wagon = v;
498 switch (this->type) {
500 if (wagon)
return MODE_ERROR;
504 if (xm <= this->
flag_size.width)
return MODE_START_STOP;
512 default: NOT_REACHED();
514 return MODE_SHOW_VEHICLE;
517 if (this->type !=
VEH_TRAIN)
return MODE_DRAG_VEHICLE;
520 if (xm >= matrix_widget->
current_x - this->count_width)
return wagon ? MODE_ERROR : MODE_SHOW_VEHICLE;
526 for (; v !=
nullptr; v = v->
Next()) {
533 return MODE_DRAG_VEHICLE;
545 DepotGUIAction mode = this->GetVehicleFromDepotWndPt(x, y, &v, &gdvp);
547 if (this->type ==
VEH_TRAIN) v = gdvp.wagon;
553 case MODE_DRAG_VEHICLE: {
560 TrainDepotMoveVehicle(v, sel, gdvp.head);
561 }
else if (v !=
nullptr) {
566 this->sel = v->
index;
572 case MODE_SHOW_VEHICLE:
576 case MODE_START_STOP:
580 default: NOT_REACHED();
592 this->GetWidget<NWidgetCore>(
WID_D_STOP_ALL)->tool_tip = STR_DEPOT_MASS_STOP_DEPOT_TRAIN_TOOLTIP + type;
593 this->GetWidget<NWidgetCore>(
WID_D_START_ALL)->tool_tip = STR_DEPOT_MASS_START_DEPOT_TRAIN_TOOLTIP + type;
594 this->GetWidget<NWidgetCore>(
WID_D_SELL)->tool_tip = STR_DEPOT_TRAIN_SELL_TOOLTIP + type;
595 this->GetWidget<NWidgetCore>(
WID_D_SELL_ALL)->tool_tip = STR_DEPOT_SELL_ALL_BUTTON_TRAIN_TOOLTIP + type;
597 this->GetWidget<NWidgetCore>(
WID_D_BUILD)->SetDataTip(STR_DEPOT_TRAIN_NEW_VEHICLES_BUTTON + type, STR_DEPOT_TRAIN_NEW_VEHICLES_TOOLTIP + type);
598 this->GetWidget<NWidgetCore>(
WID_D_CLONE)->SetDataTip(STR_DEPOT_CLONE_TRAIN + type, STR_DEPOT_CLONE_TRAIN_DEPOT_INFO + type);
600 this->GetWidget<NWidgetCore>(
WID_D_LOCATION)->tool_tip = STR_DEPOT_TRAIN_LOCATION_TOOLTIP + type;
601 this->GetWidget<NWidgetCore>(
WID_D_VEHICLE_LIST)->tool_tip = STR_DEPOT_VEHICLE_ORDER_LIST_TRAIN_TOOLTIP + type;
602 this->GetWidget<NWidgetCore>(
WID_D_AUTOREPLACE)->tool_tip = STR_DEPOT_AUTOREPLACE_TRAIN_TOOLTIP + type;
603 this->GetWidget<NWidgetCore>(
WID_D_MATRIX)->tool_tip = STR_DEPOT_TRAIN_LIST_TOOLTIP + this->type;
606 default: NOT_REACHED();
612 this->GetWidget<NWidgetCore>(
WID_D_SELL)->widget_data = SPR_SELL_TRAIN;
613 this->GetWidget<NWidgetCore>(
WID_D_SELL_ALL)->widget_data = SPR_SELL_ALL_TRAIN;
614 this->GetWidget<NWidgetCore>(
WID_D_AUTOREPLACE)->widget_data = SPR_REPLACE_TRAIN;
621 this->GetWidget<NWidgetCore>(
WID_D_SELL)->widget_data = SPR_SELL_ROADVEH;
622 this->GetWidget<NWidgetCore>(
WID_D_SELL_ALL)->widget_data = SPR_SELL_ALL_ROADVEH;
623 this->GetWidget<NWidgetCore>(
WID_D_AUTOREPLACE)->widget_data = SPR_REPLACE_ROADVEH;
630 this->GetWidget<NWidgetCore>(
WID_D_SELL)->widget_data = SPR_SELL_SHIP;
631 this->GetWidget<NWidgetCore>(
WID_D_SELL_ALL)->widget_data = SPR_SELL_ALL_SHIP;
639 this->GetWidget<NWidgetCore>(
WID_D_SELL)->widget_data = SPR_SELL_AIRCRAFT;
640 this->GetWidget<NWidgetCore>(
WID_D_SELL_ALL)->widget_data = SPR_SELL_ALL_AIRCRAFT;
641 this->GetWidget<NWidgetCore>(
WID_D_AUTOREPLACE)->widget_data = SPR_REPLACE_AIRCRAFT;
668 this->count_width = 0;
675 min_height = std::max<uint>(unumber.height, this->flag_size.height);
681 int base_width = this->count_width + this->header_width + padding.width;
683 resize->height = std::max<uint>(this->cell_size.
height, min_height + padding.height);
687 size->height =
resize->height * 6;
693 fill->width =
resize->width;
694 fill->height =
resize->height;
707 this->generate_list =
true;
712 if (this->generate_list) {
716 this->generate_list =
false;
717 DepotSortList(&this->vehicle_list);
721 if (this->unitnumber_digits < new_unitnumber_digits) {
722 this->unitnumber_digits = new_unitnumber_digits;
730 for (uint num = 0; num < this->vehicle_list.size(); num++) {
735 max_width = std::max(max_width,
width);
738 this->vscroll->
SetCount((uint)this->vehicle_list.size() + (uint)this->wagon_list.size() + 1);
742 this->vscroll->
SetCount(
CeilDiv((uint)this->vehicle_list.size(), this->num_columns));
781 static const CursorID clone_icons[] = {
782 SPR_CURSOR_CLONE_TRAIN, SPR_CURSOR_CLONE_ROADVEH,
783 SPR_CURSOR_CLONE_SHIP, SPR_CURSOR_CLONE_AIRPLANE
815 if (this->vehicle_list.size() != 0 || this->wagon_list.size() != 0) {
820 STR_DEPOT_SELL_CONFIRMATION_TEXT,
822 DepotSellAllConfirmationCallback
828 ShowVehicleListWindow(
GetTileOwner(this->window_number), this->type, (
TileIndex)this->window_number);
840 if (str ==
nullptr)
return;
853 DepotGUIAction mode = this->GetVehicleFromDepotWndPt(pt.x - nwi->
pos_x, pt.y - nwi->
pos_y, &v, &gdvp);
855 if (this->type ==
VEH_TRAIN) v = gdvp.wagon;
857 if (v ==
nullptr || mode != MODE_DRAG_VEHICLE)
return false;
866 for (
const Vehicle *w = v; w !=
nullptr; w = w->
Next()) {
867 if (w->cargo_cap > 0 && w->cargo_type <
NUM_CARGO) {
868 capacity[w->cargo_type] += w->cargo_cap;
869 loaded [w->cargo_type] += w->cargo.StoredCount();
872 if (w->type ==
VEH_TRAIN && !w->HasArticulatedPart()) {
874 if (!whole_chain)
break;
879 static char details[1024];
884 if (capacity[cargo_type] == 0)
continue;
890 pos = GetString(pos, STR_DEPOT_VEHICLE_TOOLTIP_CARGO,
lastof(details));
896 args[1] = (uint64)(
size_t)details;
897 GuiShowTooltips(
this, whole_chain ? STR_DEPOT_VEHICLE_TOOLTIP_CHAIN : STR_DEPOT_VEHICLE_TOOLTIP, 2, args, TCC_RIGHT_CLICK);
928 bool OnVehicleSelect(VehicleList::const_iterator begin, VehicleList::const_iterator end)
override
940 ShowErrorMessage(STR_ERROR_CAN_T_BUY_TRAIN + (*begin)->type, STR_ERROR_CAN_T_COPY_ORDER_VEHICLE_LIST,
WL_INFO);
955 ShowErrorMessage(STR_ERROR_CAN_T_BUY_TRAIN + (*begin)->type, STR_ERROR_CAN_T_SHARE_ORDER_VEHICLE_LIST,
WL_INFO);
976 if (this->hovered_widget != -1) {
979 this->hovered_widget = -1;
986 if (widget != this->hovered_widget) {
991 this->hovered_widget = widget;
1008 NWidgetBase *matrix = this->GetWidget<NWidgetBase>(widget);
1012 if (this->GetVehicleFromDepotWndPt(pt.x - matrix->
pos_x, pt.y - matrix->
pos_y, &v, &gdvp) != MODE_DRAG_VEHICLE)
return;
1015 if (gdvp.head !=
nullptr) {
1016 if (gdvp.wagon ==
nullptr && gdvp.head->
Last()->
index != this->sel) {
1021 new_vehicle_over = gdvp.head->
index;
1022 }
else if (gdvp.wagon !=
nullptr && gdvp.head != gdvp.wagon &&
1023 gdvp.wagon->
index != this->sel &&
1025 new_vehicle_over = gdvp.wagon->
index;
1029 if (this->vehicle_over == new_vehicle_over)
return;
1031 this->vehicle_over = new_vehicle_over;
1049 if (this->GetVehicleFromDepotWndPt(pt.x - nwi->
pos_x, pt.y - nwi->
pos_y, &v, &gdvp) == MODE_DRAG_VEHICLE && sel !=
INVALID_VEHICLE) {
1052 }
else if (gdvp.wagon ==
nullptr || gdvp.wagon->
index != sel) {
1054 TrainDepotMoveVehicle(gdvp.wagon, sel, gdvp.head);
1055 }
else if (gdvp.head !=
nullptr && gdvp.head->
IsFrontEngine()) {
1059 }
else if (this->GetVehicleFromDepotWndPt(pt.x - nwi->
pos_x, pt.y - nwi->
pos_y, &v,
nullptr) == MODE_DRAG_VEHICLE && v !=
nullptr && sel == v->
index) {
1085 this->hovered_widget = -1;
1134 static void DepotSellAllConfirmationCallback(
Window *win,
bool confirmed)
1155 default: NOT_REACHED();
1156 case VEH_TRAIN: desc = &_train_depot_desc;
break;
1157 case VEH_ROAD: desc = &_road_depot_desc;
break;
1158 case VEH_SHIP: desc = &_ship_depot_desc;
break;
1159 case VEH_AIRCRAFT: desc = &_aircraft_depot_desc;
break;
@ VEH_AIRCRAFT
Aircraft vehicle type.
int GetDisplayImageWidth(Point *offset=nullptr) const
Get the width of a train vehicle image in the GUI.
@ ES_HANDLED
The passed event is handled.
bool OnRightClick(Point pt, int widget) override
A click with the right mouse button has been made on the window.
static bool IsCompanyBuildableVehicleType(VehicleType type)
Is the given vehicle type buildable by a company?
void Close() override
Hide the window and all its child windows, and mark them for a later deletion.
void OnTimeout() override
Called when this window's timeout has been reached.
static Pool::IterateWrapperFiltered< Engine, EngineTypeFilter > IterateType(VehicleType vt, size_t from=0)
Returns an iterable ensemble of all valid engines of the given type.
uint height
Vehicle cell height.
std::vector< const Vehicle * > VehicleList
A list of vehicles.
static Titem * Get(size_t index)
Returns Titem with given index.
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
@ INVALID_CLIENT_ID
Client is not part of anything.
void ShowExtraViewportWindow(TileIndex tile=INVALID_TILE)
Show a new Extra Viewport window.
Dimensions (a width and height) of a rectangle in 2D.
const Scrollbar * GetScrollbar(uint widnum) const
Return the Scrollbar to a widget index.
Commands
List of commands.
Rect Shrink(int s) const
Copy and shrink Rect by s pixels.
The information about a vehicle list.
SpecialMouseMode _special_mouse_mode
Mode of the mouse.
Vehicle * Previous() const
Get the previous vehicle of this vehicle.
static uint _consistent_train_width
Whether trains of all lengths are consistently scaled. Either TRAININFO_DEFAULT_VEHICLE_WIDTH,...
void ReInit(int rx=0, int ry=0)
Re-initialize a window, and optionally change its size.
Vehicle * Next() const
Get the next vehicle of this vehicle.
T * Next() const
Get next vehicle in the chain.
void OnInit() override
Notification that the nested widget tree gets initialized.
VehicleCellSize cell_size
Vehicle sprite cell size.
bool vehchain
vehicle chain is dragged
void OnQueryTextFinished(char *str) override
The query window opened from this window has closed.
void CreateNestedTree(bool fill_nested=true)
Perform the first part of the initialization of a nested widget tree.
bool VehiclesHaveSameOrderList(const Vehicle *v1, const Vehicle *v2)
Checks if two vehicles have the same list of orders.
Tindex index
Index of this pool item.
Scrollbar * hscroll
Only for trains.
@ EIT_PURCHASE
Vehicle drawn in purchase list, autoreplace gui, ...
Class for storing amounts of cargo.
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
Window * FindWindowById(WindowClass cls, WindowNumber number)
Find a window by its class and window number.
bool _ctrl_pressed
Is Ctrl pressed?
uint GetUnitNumberDigits(VehicleList &vehicles)
Get the number of digits the biggest unit number of a set of vehicles has.
static const uint TILE_SIZE
Tile size in world coordinates.
int DrawString(int left, int right, int top, const char *str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly truncated to make it fit in its allocated space.
uint extend_right
Extend of the cell to the right.
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable.
EngineImageType
Visualisation contexts of vehicles and engines.
@ SA_RIGHT
Right align the text (must be a single bit).
@ VEH_ROAD
Road vehicle type.
bool IsGroundVehicle() const
Check if the vehicle is a ground vehicle.
void HandleButtonClick(byte widget)
Do all things to make a button look clicked and mark it to be unclicked in a few ticks.
void ShowDepotWindow(TileIndex tile, VehicleType type)
Opens a depot window.
bool OnVehicleSelect(VehicleList::const_iterator begin, VehicleList::const_iterator end) override
Clones a vehicle from a vehicle list.
void GetShipSpriteSize(EngineID engine, uint &width, uint &height, int &xoffs, int &yoffs, EngineImageType image_type)
Get the size of the sprite of a ship sprite heading west (used for lists).
byte _colour_gradient[COLOUR_END][8]
All 16 colour gradients 8 colours per gradient from darkest (0) to lightest (7)
Rect WithHeight(int height, bool end=false) const
Copy Rect and set its height.
static void SetDParam(uint n, uint64 v)
Set a string parameter v at index n in the global string parameter array.
VehicleCellSize GetVehicleImageCellSize(VehicleType type, EngineImageType image_type)
Get the GUI cell size for a vehicle image.
Dimension GetStringBoundingBox(const char *str, FontSize start_fontsize)
Return the string dimension in pixels.
void ShowErrorMessage(StringID summary_msg, StringID detailed_msg, WarningLevel wl, int x=0, int y=0, const GRFFile *textref_stack_grffile=nullptr, uint textref_stack_size=0, const uint32 *textref_stack=nullptr)
Display an error message in a window.
@ QSF_LEN_IN_CHARS
the length of the string is counted in characters
void SetStringParameters(int widget) const override
Initialize string parameters for a widget.
High level window description.
void DepotClick(int x, int y)
Handle click in the depot matrix.
uint16 EngineID
Unique identification number of an engine.
uint16 cached_total_length
Length of the whole vehicle (valid only for the first engine).
void SetupWidgetData(VehicleType type)
Function to set up vehicle specific widgets (mainly sprites and strings).
@ WDP_AUTO
Find a place automatically.
ResizeInfo resize
Resize information.
static uint GetVehicleHeight(VehicleType type)
Get the height of a single vehicle in the GUIs.
Common return value for all commands.
uint16 GetDepotIndex() const
Gets the DepotID of the current window.
void GuiShowTooltips(Window *parent, StringID str, uint paramcount, const uint64 params[], TooltipCloseCondition close_tooltip)
Shows a tooltip.
uint32 CursorID
The number of the cursor (sprite)
void StartStopVehicle(const Vehicle *v, bool texteffect)
Executes CMD_START_STOP_VEHICLE for given vehicle.
Rect Translate(int x, int y) const
Copy and translate Rect by x,y pixels.
@ VEH_COMPANY_END
Last company-ownable type.
bool VehicleClicked(const Vehicle *v)
Dispatch a "vehicle selected" event if any window waits for it.
TileIndex tile
Current tile index.
static const VehicleID INVALID_VEHICLE
Constant representing a non-existing vehicle.
static VehicleCellSize _base_block_sizes_purchase[VEH_COMPANY_END]
Cell size for vehicle images in the purchase list.
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
EngineID engine_type
The type of engine used for this vehicle.
@ FS_SMALL
Index of the small font in the font tables.
@ ES_NOT_HANDLED
The passed event is not handled.
bool Failed() const
Did this command fail?
EventState OnCTRLStateChange() override
The state of the control key has changed.
GroundVehicleCache gcache
Cache of often calculated values.
static int ScaleSpriteTrad(int value)
Scale traditional pixel dimensions to GUI zoom level, for drawing sprites.
bool IsFrontEngine() const
Check if the vehicle is a front engine.
int hovered_widget
Index of the widget being hovered during drag/drop. -1 if no drag is in progress.
@ VS_STOPPED
Vehicle is stopped by the player.
@ WL_INFO
Used for DoCommand-like (and some non-fatal AI GUI) errors/information.
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
void BuildDepotVehicleList(VehicleType type, TileIndex tile, VehicleList *engines, VehicleList *wagons, bool individual_wagons)
Generate a list of vehicles inside a depot.
void ShowQueryString(StringID str, StringID caption, uint maxsize, Window *parent, CharSetFilter afilter, QueryStringFlags flags)
Show a query popup window with a textbox in it.
static const NWidgetPart _nested_train_depot_widgets[]
Nested widget definition for train depots.
void DrawWidget(const Rect &r, int widget) const override
Draw the contents of a nested widget.
bool VehiclesHaveSameEngineList(const Vehicle *v1, const Vehicle *v2)
Checks if two vehicle chains have the same list of engines.
'Train' is either a loco or a wagon.
Rect Indent(int indent, bool end) const
Copy Rect and indent it from its position.
static bool IsTileOwner(TileIndex tile, Owner owner)
Checks if a tile belongs to the given owner.
void SetMouseCursorVehicle(const Vehicle *v, EngineImageType image_type)
Set the mouse cursor to look like a vehicle.
void OnMouseDrag(Point pt, int widget) override
An 'object' is being dragged at the provided position, highlight the target if possible.
Rect WithWidth(int width, bool end) const
Copy Rect and set its width.
Coordinates of a point in 2D.
@ WSM_DRAGDROP
Drag&drop an object.
void DrawRoadVehImage(const Vehicle *v, const Rect &r, VehicleID selection, EngineImageType image_type, int skip)
Draws an image of a road vehicle chain.
static const int DAYS_IN_LEAP_YEAR
sometimes, you need one day more...
WindowNumber window_number
Window number within the window class.
VehicleType
Available vehicle types.
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
uint step_height
Step-size of height resize changes.
static void Reset(TileIndex tile=INVALID_TILE, bool from_gui=true)
Reset the OrderBackups from GUI/game logic.
@ CS_ALPHANUMERAL
Both numeric and alphabetic and spaces and stuff.
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
@ EIT_IN_DEPOT
Vehicle drawn in depot.
static Owner GetTileOwner(TileIndex tile)
Returns the owner of a tile.
@ HT_VEHICLE
vehicle is accepted as target as well (bitmask)
#define FONT_HEIGHT_SMALL
Height of characters in the small (FS_SMALL) font.
@ HT_DRAG
dragging items in the depot windows
static WindowClass GetWindowClassForVehicleType(VehicleType vt)
Get WindowClass for vehicle list of given vehicle type.
void OnDragDrop(Point pt, int widget) override
A dragged 'object' has been released.
Vehicle * FirstShared() const
Get the first vehicle of this vehicle chain.
void ShowQuery(StringID caption, StringID message, Window *parent, QueryCallbackProc *callback)
Show a modal confirmation window with standard 'yes' and 'no' buttons The window is aligned to the ce...
static T Clamp(const T a, const T min, const T max)
Clamp a value between an interval.
void GetAircraftSpriteSize(EngineID engine, uint &width, uint &height, int &xoffs, int &yoffs, EngineImageType image_type)
Get the size of the sprite of an aircraft sprite heading west (used for lists).
uint step_width
Step-size of width resize changes.
void OnClick(Point pt, int widget, int click_count) override
A click with the left mouse button has been made on the window.
@ WC_BUILD_VEHICLE
Build vehicle; Window numbers:
static const uint MAX_LENGTH_DEPOT_NAME_CHARS
The maximum length of a depot name in characters including '\0'.
static Train * From(Vehicle *v)
Converts a Vehicle to SpecializedVehicle with type checking.
void OnResize() override
Called after the window got resized.
#define FONT_HEIGHT_NORMAL
Height of characters in the normal (FS_NORMAL) font.
void GetTrainSpriteSize(EngineID engine, uint &width, uint &height, int &xoffs, int &yoffs, EngineImageType image_type)
Get the size of the sprite of a train sprite heading west, or both heads (used for lists).
void SetDParamMaxValue(uint n, uint64 max_value, uint min_count, FontSize size)
Set DParam n to some number that is suitable for string size computations.
void GetRoadVehSpriteSize(EngineID engine, uint &width, uint &height, int &xoffs, int &yoffs, EngineImageType image_type)
Get the size of the sprite of a road vehicle sprite heading west (used for lists).
uint header_width
Width of unit number and flag, including separator.
void CDECL SetWidgetsDisabledState(bool disab_stat, int widgets,...)
Sets the enabled/disabled status of a list of widgets.
@ WC_VEHICLE_DEPOT
Depot view; Window numbers:
bool IsWidgetLowered(byte widget_index) const
Gets the lowered state of a widget.
@ NUM_CARGO
Maximal number of cargo types in a game.
static StationID GetStationIndex(TileIndex t)
Get StationID from a tile.
static VehicleCellSize _base_block_sizes_depot[VEH_COMPANY_END]
Cell size for vehicle images in the depot view.
EventState
State of handling an event.
void CcCloneVehicle(Commands cmd, const CommandCost &result, VehicleID veh_id)
This is the Callback method after the cloning attempt of a vehicle.
void InitDepotWindowBlockSizes()
Set the size of the blocks in the window so we can be sure that they are big enough for the vehicle s...
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
UnitID unitnumber
unit number, for display purposes only
Dimensions of a cell in the purchase/depot windows.
uint count_width
Width of length count, including separator.
Vehicle * Last()
Get the last vehicle of this vehicle chain.
uint32 VehicleID
The type all our vehicle IDs have.
void ShowVehicleViewWindow(const Vehicle *v)
Shows the vehicle view window of the given vehicle.
@ SA_CENTER
Center both horizontally and vertically.
void ToggleWidgetLoweredState(byte widget_index)
Invert the lowered/raised status of a widget.
void DrawShipImage(const Vehicle *v, const Rect &r, VehicleID selection, EngineImageType image_type)
Draws an image of a ship.
#define lengthof(x)
Return the length of an fixed size array.
int width
width of the window (number of pixels to the right in x direction)
void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
Update size and resize step of a widget in the window.
byte CargoID
Cargo slots to indicate a cargo type within a game.
void CloseWindowById(WindowClass cls, WindowNumber number, bool force)
Close a window by its class and window number (if it is open).
void SetObjectToPlaceWnd(CursorID icon, PaletteID pal, HighLightStyle mode, Window *w)
Change the cursor and mouse click/drag handling to a mode for performing special operations like tile...
bool OnVehicleSelect(const Vehicle *v) override
Clones a vehicle.
static const CursorID SPR_CURSOR_MOUSE
Cursor sprite numbers.
static uint CeilDiv(uint a, uint b)
Computes ceil(a / b) for non-negative a and b.
Data structure for an opened window.
bool IsFreeWagon() const
Check if the vehicle is a free wagon (got no engine in front of it).
@ VEH_TRAIN
Train vehicle type.
void RaiseWidget(byte widget_index)
Marks a widget as raised.
void DrawAircraftImage(const Vehicle *v, const Rect &r, VehicleID selection, EngineImageType image_type)
Draws an image of an aircraft.
VehicleType type
Type of vehicle.
void DrawWidgets() const
Paint all widgets of a window.
bool AllEqual(It begin, It end, Pred pred)
Generic helper function that checks if all elements of the range are equal with respect to the given ...
bool IsWidgetDisabled(byte widget_index) const
Gets the enabled/disabled status of a widget.
Dimension GetScaledSpriteSize(SpriteID sprid)
Scale sprite size for GUI.
void SetWidgetDirty(byte widget_index) const
Invalidate a widget, i.e.
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
void DeleteDepotHighlightOfVehicle(const Vehicle *v)
Removes the highlight of a vehicle in a depot window.
@ VEH_SHIP
Ship vehicle type.
Specification of a rectangle with absolute coordinates of all edges.
Window * BringWindowToFrontById(WindowClass cls, WindowNumber number)
Find a window and make it the relative top-window on the screen.
Data structure describing a sprite.
@ QSF_ENABLE_DEFAULT
enable the 'Default' button ("\0" is returned)
#define lastof(x)
Get the last element of an fixed size array.
void SetDParamMaxDigits(uint n, uint count, FontSize size)
Set DParam n to some number that is suitable for string size computations.
void ResetObjectToPlace()
Reset the cursor and mouse mode handling back to default (normal cursor, only clicking in windows).
void SetWidgetLoweredState(byte widget_index, bool lowered_stat)
Sets the lowered/raised status of a widget.
void OnPaint() override
The window must be repainted.
@ TD_RTL
Text is written right-to-left by default.
TextDirection _current_text_dir
Text direction of the currently selected language.
void DrawVehicleInDepot(const Vehicle *v, const Rect &r) const
Draw a vehicle in the depot window in the box with the top left corner at x,y.
T * GetFirstEnginePart()
Get the first part of an articulated engine.
uint num_columns
Number of columns.
uint extend_left
Extend of the cell to the left.
Dimension flag_size
Size of start/stop flag.
void DrawTrainImage(const Train *v, const Rect &r, VehicleID selection, EngineImageType image_type, int skip, VehicleID drag_dest)
Draws an image of a whole train.
VehicleID vehicle_over
Rail vehicle over which another one is dragged, INVALID_VEHICLE if none.
virtual void Close()
Hide the window and all its child windows, and mark them for a later deletion.