OpenTTD Source  14.0-beta3
order_gui.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #include "stdafx.h"
11 #include "command_func.h"
12 #include "viewport_func.h"
13 #include "depot_map.h"
14 #include "roadveh.h"
15 #include "timetable.h"
16 #include "strings_func.h"
17 #include "company_func.h"
18 #include "widgets/dropdown_type.h"
19 #include "widgets/dropdown_func.h"
20 #include "textbuf_gui.h"
21 #include "string_func.h"
22 #include "tilehighlight_func.h"
23 #include "network/network.h"
24 #include "station_base.h"
25 #include "industry.h"
26 #include "waypoint_base.h"
27 #include "core/geometry_func.hpp"
28 #include "hotkeys.h"
29 #include "aircraft.h"
30 #include "engine_func.h"
31 #include "vehicle_func.h"
32 #include "vehiclelist.h"
33 #include "vehicle_func.h"
34 #include "error.h"
35 #include "order_cmd.h"
36 #include "company_cmd.h"
37 
38 #include "widgets/order_widget.h"
39 
40 #include "safeguards.h"
41 
42 
44 static const StringID _station_load_types[][5][5] = {
45  {
46  /* No refitting. */
47  {
48  STR_EMPTY,
50  STR_ORDER_FULL_LOAD,
51  STR_ORDER_FULL_LOAD_ANY,
52  STR_ORDER_NO_LOAD,
53  }, {
54  STR_ORDER_UNLOAD,
56  STR_ORDER_UNLOAD_FULL_LOAD,
57  STR_ORDER_UNLOAD_FULL_LOAD_ANY,
58  STR_ORDER_UNLOAD_NO_LOAD,
59  }, {
60  STR_ORDER_TRANSFER,
62  STR_ORDER_TRANSFER_FULL_LOAD,
63  STR_ORDER_TRANSFER_FULL_LOAD_ANY,
64  STR_ORDER_TRANSFER_NO_LOAD,
65  }, {
66  /* Unload and transfer do not work together. */
71  }, {
72  STR_ORDER_NO_UNLOAD,
74  STR_ORDER_NO_UNLOAD_FULL_LOAD,
75  STR_ORDER_NO_UNLOAD_FULL_LOAD_ANY,
76  STR_ORDER_NO_UNLOAD_NO_LOAD,
77  }
78  }, {
79  /* With auto-refitting. No loading and auto-refitting do not work together. */
80  {
81  STR_ORDER_AUTO_REFIT,
83  STR_ORDER_FULL_LOAD_REFIT,
84  STR_ORDER_FULL_LOAD_ANY_REFIT,
86  }, {
87  STR_ORDER_UNLOAD_REFIT,
89  STR_ORDER_UNLOAD_FULL_LOAD_REFIT,
90  STR_ORDER_UNLOAD_FULL_LOAD_ANY_REFIT,
92  }, {
93  STR_ORDER_TRANSFER_REFIT,
95  STR_ORDER_TRANSFER_FULL_LOAD_REFIT,
96  STR_ORDER_TRANSFER_FULL_LOAD_ANY_REFIT,
98  }, {
99  /* Unload and transfer do not work together. */
104  }, {
105  STR_ORDER_NO_UNLOAD_REFIT,
107  STR_ORDER_NO_UNLOAD_FULL_LOAD_REFIT,
108  STR_ORDER_NO_UNLOAD_FULL_LOAD_ANY_REFIT,
110  }
111  }
112 };
113 
114 static const StringID _order_non_stop_drowdown[] = {
115  STR_ORDER_GO_TO,
116  STR_ORDER_GO_NON_STOP_TO,
117  STR_ORDER_GO_VIA,
118  STR_ORDER_GO_NON_STOP_VIA,
120 };
121 
122 static const StringID _order_full_load_drowdown[] = {
123  STR_ORDER_DROP_LOAD_IF_POSSIBLE,
124  STR_EMPTY,
125  STR_ORDER_DROP_FULL_LOAD_ALL,
126  STR_ORDER_DROP_FULL_LOAD_ANY,
127  STR_ORDER_DROP_NO_LOADING,
129 };
130 
131 static const StringID _order_unload_drowdown[] = {
132  STR_ORDER_DROP_UNLOAD_IF_ACCEPTED,
133  STR_ORDER_DROP_UNLOAD,
134  STR_ORDER_DROP_TRANSFER,
135  STR_EMPTY,
136  STR_ORDER_DROP_NO_UNLOADING,
138 };
139 
140 static const StringID _order_goto_dropdown[] = {
141  STR_ORDER_GO_TO,
142  STR_ORDER_GO_TO_NEAREST_DEPOT,
143  STR_ORDER_CONDITIONAL,
144  STR_ORDER_SHARE,
146 };
147 
148 static const StringID _order_goto_dropdown_aircraft[] = {
149  STR_ORDER_GO_TO,
150  STR_ORDER_GO_TO_NEAREST_HANGAR,
151  STR_ORDER_CONDITIONAL,
152  STR_ORDER_SHARE,
154 };
155 
162  OCV_AGE,
166 };
167 
168 static const StringID _order_conditional_condition[] = {
169  STR_ORDER_CONDITIONAL_COMPARATOR_EQUALS,
170  STR_ORDER_CONDITIONAL_COMPARATOR_NOT_EQUALS,
171  STR_ORDER_CONDITIONAL_COMPARATOR_LESS_THAN,
172  STR_ORDER_CONDITIONAL_COMPARATOR_LESS_EQUALS,
173  STR_ORDER_CONDITIONAL_COMPARATOR_MORE_THAN,
174  STR_ORDER_CONDITIONAL_COMPARATOR_MORE_EQUALS,
175  STR_ORDER_CONDITIONAL_COMPARATOR_IS_TRUE,
176  STR_ORDER_CONDITIONAL_COMPARATOR_IS_FALSE,
178 };
179 
180 extern uint ConvertSpeedToDisplaySpeed(uint speed, VehicleType type);
181 extern uint ConvertDisplaySpeedToSpeed(uint speed, VehicleType type);
182 
183 static const StringID _order_depot_action_dropdown[] = {
184  STR_ORDER_DROP_GO_ALWAYS_DEPOT,
185  STR_ORDER_DROP_SERVICE_DEPOT,
186  STR_ORDER_DROP_HALT_DEPOT,
187  STR_ORDER_DROP_UNBUNCH,
189 };
190 
191 static int DepotActionStringIndex(const Order *order)
192 {
193  if (order->GetDepotActionType() & ODATFB_HALT) {
194  return DA_STOP;
195  } else if (order->GetDepotOrderType() & ODTFB_SERVICE) {
196  return DA_SERVICE;
197  } else {
198  return DA_ALWAYS_GO;
199  }
200 }
201 
202 static const StringID _order_refit_action_dropdown[] = {
203  STR_ORDER_DROP_REFIT_AUTO,
204  STR_ORDER_DROP_REFIT_AUTO_ANY,
206 };
207 
220 void DrawOrderString(const Vehicle *v, const Order *order, int order_index, int y, bool selected, bool timetable, int left, int middle, int right)
221 {
222  bool rtl = _current_text_dir == TD_RTL;
223 
224  SpriteID sprite = rtl ? SPR_ARROW_LEFT : SPR_ARROW_RIGHT;
225  Dimension sprite_size = GetSpriteSize(sprite);
226  if (v->cur_real_order_index == order_index) {
227  /* Draw two arrows before the next real order. */
228  DrawSprite(sprite, PAL_NONE, rtl ? right - sprite_size.width : left, y + ((int)GetCharacterHeight(FS_NORMAL) - (int)sprite_size.height) / 2);
229  DrawSprite(sprite, PAL_NONE, rtl ? right - 2 * sprite_size.width : left + sprite_size.width, y + ((int)GetCharacterHeight(FS_NORMAL) - (int)sprite_size.height) / 2);
230  } else if (v->cur_implicit_order_index == order_index) {
231  /* Draw one arrow before the next implicit order; the next real order will still get two arrows. */
232  DrawSprite(sprite, PAL_NONE, rtl ? right - sprite_size.width : left, y + ((int)GetCharacterHeight(FS_NORMAL) - (int)sprite_size.height) / 2);
233  }
234 
235  TextColour colour = TC_BLACK;
236  if (order->IsType(OT_IMPLICIT)) {
237  colour = (selected ? TC_SILVER : TC_GREY) | TC_NO_SHADE;
238  } else if (selected) {
239  colour = TC_WHITE;
240  }
241 
242  SetDParam(0, order_index + 1);
243  DrawString(left, rtl ? right - 2 * sprite_size.width - 3 : middle, y, STR_ORDER_INDEX, colour, SA_RIGHT | SA_FORCE);
244 
245  SetDParam(5, STR_EMPTY);
246  SetDParam(8, STR_EMPTY);
247  SetDParam(9, STR_EMPTY);
248 
249  /* Check range for aircraft. */
250  if (v->type == VEH_AIRCRAFT && Aircraft::From(v)->GetRange() > 0 && order->IsGotoOrder()) {
251  const Order *next = order->next != nullptr ? order->next : v->GetFirstOrder();
252  if (GetOrderDistance(order, next, v) > Aircraft::From(v)->acache.cached_max_range_sqr) SetDParam(9, STR_ORDER_OUT_OF_RANGE);
253  }
254 
255  switch (order->GetType()) {
256  case OT_DUMMY:
257  SetDParam(0, STR_INVALID_ORDER);
258  SetDParam(1, order->GetDestination());
259  break;
260 
261  case OT_IMPLICIT:
262  SetDParam(0, STR_ORDER_GO_TO_STATION);
263  SetDParam(1, STR_ORDER_GO_TO);
264  SetDParam(2, order->GetDestination());
265  SetDParam(3, timetable ? STR_EMPTY : STR_ORDER_IMPLICIT);
266  break;
267 
268  case OT_GOTO_STATION: {
269  OrderLoadFlags load = order->GetLoadType();
270  OrderUnloadFlags unload = order->GetUnloadType();
271  bool valid_station = CanVehicleUseStation(v, Station::Get(order->GetDestination()));
272 
273  SetDParam(0, valid_station ? STR_ORDER_GO_TO_STATION : STR_ORDER_GO_TO_STATION_CAN_T_USE_STATION);
274  SetDParam(1, STR_ORDER_GO_TO + (v->IsGroundVehicle() ? order->GetNonStopType() : 0));
275  SetDParam(2, order->GetDestination());
276 
277  if (timetable) {
278  /* Show only wait time in the timetable window. */
279  SetDParam(3, STR_EMPTY);
280 
281  if (order->GetWaitTime() > 0) {
282  SetDParam(5, order->IsWaitTimetabled() ? STR_TIMETABLE_STAY_FOR : STR_TIMETABLE_STAY_FOR_ESTIMATED);
283  SetTimetableParams(6, 7, order->GetWaitTime());
284  }
285  } else {
286  /* Show non-stop, refit and stop location only in the order window. */
287  SetDParam(3, (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) ? STR_EMPTY : _station_load_types[order->IsRefit()][unload][load]);
288  if (order->IsRefit()) {
289  SetDParam(4, order->IsAutoRefit() ? STR_ORDER_AUTO_REFIT_ANY : CargoSpec::Get(order->GetRefitCargo())->name);
290  }
291  if (v->type == VEH_TRAIN && (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) == 0) {
292  /* Only show the stopping location if other than the default chosen by the player. */
294  SetDParam(5, order->GetStopLocation() + STR_ORDER_STOP_LOCATION_NEAR_END);
295  } else {
296  SetDParam(5, STR_EMPTY);
297  }
298  }
299  }
300  break;
301  }
302 
303  case OT_GOTO_DEPOT:
304  if (order->GetDepotActionType() & ODATFB_NEAREST_DEPOT) {
305  /* Going to the nearest depot. */
306  SetDParam(0, STR_ORDER_GO_TO_NEAREST_DEPOT_FORMAT);
307  if (v->type == VEH_AIRCRAFT) {
308  SetDParam(2, STR_ORDER_NEAREST_HANGAR);
309  SetDParam(3, STR_EMPTY);
310  } else {
311  SetDParam(2, STR_ORDER_NEAREST_DEPOT);
312  SetDParam(3, STR_ORDER_TRAIN_DEPOT + v->type);
313  }
314  } else {
315  /* Going to a specific depot. */
316  SetDParam(0, STR_ORDER_GO_TO_DEPOT_FORMAT);
317  SetDParam(2, v->type);
318  SetDParam(3, order->GetDestination());
319  }
320 
321  if (order->GetDepotOrderType() & ODTFB_SERVICE) {
322  SetDParam(1, (order->GetNonStopType() & ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS) ? STR_ORDER_SERVICE_NON_STOP_AT : STR_ORDER_SERVICE_AT);
323  } else {
324  SetDParam(1, (order->GetNonStopType() & ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS) ? STR_ORDER_GO_NON_STOP_TO : STR_ORDER_GO_TO);
325  }
326 
327  /* Do not show stopping in the depot in the timetable window. */
328  if (!timetable && (order->GetDepotActionType() & ODATFB_HALT)) {
329  SetDParam(5, STR_ORDER_STOP_ORDER);
330  }
331 
332  /* Do not show refitting in the depot in the timetable window. */
333  if (!timetable && order->IsRefit()) {
334  SetDParam(5, (order->GetDepotActionType() & ODATFB_HALT) ? STR_ORDER_REFIT_STOP_ORDER : STR_ORDER_REFIT_ORDER);
336  }
337 
338  /* Do not show unbunching in the depot in the timetable window. */
339  if (!timetable && (order->GetDepotActionType() & ODATFB_UNBUNCH)) {
340  SetDParam(8, STR_ORDER_WAIT_TO_UNBUNCH);
341  }
342 
343  break;
344 
345  case OT_GOTO_WAYPOINT:
346  SetDParam(0, (order->GetNonStopType() & ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS) ? STR_ORDER_GO_NON_STOP_TO_WAYPOINT : STR_ORDER_GO_TO_WAYPOINT);
347  SetDParam(1, order->GetDestination());
348  break;
349 
350  case OT_CONDITIONAL:
351  SetDParam(1, order->GetConditionSkipToOrder() + 1);
352  if (order->GetConditionVariable() == OCV_UNCONDITIONALLY) {
353  SetDParam(0, STR_ORDER_CONDITIONAL_UNCONDITIONAL);
354  } else {
356  SetDParam(0, (occ == OCC_IS_TRUE || occ == OCC_IS_FALSE) ? STR_ORDER_CONDITIONAL_TRUE_FALSE : STR_ORDER_CONDITIONAL_NUM);
357  SetDParam(2, STR_ORDER_CONDITIONAL_LOAD_PERCENTAGE + order->GetConditionVariable());
358  SetDParam(3, STR_ORDER_CONDITIONAL_COMPARATOR_EQUALS + occ);
359 
360  uint value = order->GetConditionValue();
361  if (order->GetConditionVariable() == OCV_MAX_SPEED) value = ConvertSpeedToDisplaySpeed(value, v->type);
362  SetDParam(4, value);
363  }
364 
365  if (timetable && order->GetWaitTime() > 0) {
366  SetDParam(5, order->IsWaitTimetabled() ? STR_TIMETABLE_AND_TRAVEL_FOR : STR_TIMETABLE_AND_TRAVEL_FOR_ESTIMATED);
367  SetTimetableParams(6, 7, order->GetWaitTime());
368  } else {
369  SetDParam(5, STR_EMPTY);
370  }
371  break;
372 
373  default: NOT_REACHED();
374  }
375 
376  DrawString(rtl ? left : middle, rtl ? middle : right, y, STR_ORDER_TEXT, colour);
377 }
378 
386 {
387  /* Hack-ish; unpack order 0, so everything gets initialised with either zero
388  * or a suitable default value for the variable. Then also override the index
389  * as it is not coming from a pool, so would be initialised. */
390  Order order(0);
391  order.index = 0;
392 
393  /* check depot first */
394  if (IsDepotTypeTile(tile, (TransportType)(uint)v->type) && IsTileOwner(tile, _local_company)) {
395  order.MakeGoToDepot(v->type == VEH_AIRCRAFT ? GetStationIndex(tile) : GetDepotIndex(tile),
398 
400 
401  return order;
402  }
403 
404  /* check rail waypoint */
405  if (IsRailWaypointTile(tile) &&
406  v->type == VEH_TRAIN &&
407  IsTileOwner(tile, _local_company)) {
408  order.MakeGoToWaypoint(GetStationIndex(tile));
410  return order;
411  }
412 
413  /* check buoy (no ownership) */
414  if (IsBuoyTile(tile) && v->type == VEH_SHIP) {
415  order.MakeGoToWaypoint(GetStationIndex(tile));
416  return order;
417  }
418 
419  /* check for station or industry with neutral station */
420  if (IsTileType(tile, MP_STATION) || IsTileType(tile, MP_INDUSTRY)) {
421  const Station *st = nullptr;
422 
423  if (IsTileType(tile, MP_STATION)) {
424  st = Station::GetByTile(tile);
425  } else {
426  const Industry *in = Industry::GetByTile(tile);
427  st = in->neutral_station;
428  }
429  if (st != nullptr && (st->owner == _local_company || st->owner == OWNER_NONE)) {
430  byte facil;
431  switch (v->type) {
432  case VEH_SHIP: facil = FACIL_DOCK; break;
433  case VEH_TRAIN: facil = FACIL_TRAIN; break;
434  case VEH_AIRCRAFT: facil = FACIL_AIRPORT; break;
435  case VEH_ROAD: facil = FACIL_BUS_STOP | FACIL_TRUCK_STOP; break;
436  default: NOT_REACHED();
437  }
438  if (st->facilities & facil) {
439  order.MakeGoToStation(st->index);
443  return order;
444  }
445  }
446  }
447 
448  /* not found */
449  order.Free();
450  return order;
451 }
452 
454 enum {
455  OHK_SKIP,
456  OHK_DELETE,
457  OHK_GOTO,
458  OHK_NONSTOP,
459  OHK_FULLLOAD,
460  OHK_UNLOAD,
461  OHK_NEAREST_DEPOT,
462  OHK_ALWAYS_SERVICE,
463  OHK_TRANSFER,
464  OHK_NO_UNLOAD,
465  OHK_NO_LOAD,
466 };
467 
508 struct OrdersWindow : public Window {
509 private:
512  OPOS_NONE,
513  OPOS_GOTO,
514  OPOS_CONDITIONAL,
515  OPOS_SHARE,
516  OPOS_END,
517  };
518 
520  enum DisplayPane {
521  /* WID_O_SEL_TOP_ROW_GROUNDVEHICLE */
524 
525  /* WID_O_SEL_TOP_LEFT */
528 
529  /* WID_O_SEL_TOP_MIDDLE */
532 
533  /* WID_O_SEL_TOP_RIGHT */
536 
537  /* WID_O_SEL_TOP_ROW */
541 
542  /* WID_O_SEL_BOTTOM_MIDDLE */
545  };
546 
547  int selected_order;
549  OrderPlaceObjectState goto_type;
550  const Vehicle *vehicle;
551  Scrollbar *vscroll;
554 
561  {
562  int num = this->selected_order;
563  return (num >= 0 && num < vehicle->GetNumOrders()) ? num : vehicle->GetNumOrders();
564  }
565 
575  {
576  int sel = this->vscroll->GetScrolledRowFromWidget(y, this, WID_O_ORDER_LIST, WidgetDimensions::scaled.framerect.top);
577  if (sel == INT_MAX) return INVALID_VEH_ORDER_ID;
578  /* One past the orders is the 'End of Orders' line. */
579  assert(IsInsideBS(sel, 0, vehicle->GetNumOrders() + 1));
580  return sel;
581  }
582 
587  {
588  assert(type > OPOS_NONE && type < OPOS_END);
589 
590  static const HighLightStyle goto_place_style[OPOS_END - 1] = {
591  HT_RECT | HT_VEHICLE, // OPOS_GOTO
592  HT_NONE, // OPOS_CONDITIONAL
593  HT_VEHICLE, // OPOS_SHARE
594  };
595  SetObjectToPlaceWnd(ANIMCURSOR_PICKSTATION, PAL_NONE, goto_place_style[type - 1], this);
596  this->goto_type = type;
597  this->SetWidgetDirty(WID_O_GOTO);
598  }
599 
605  void OrderClick_FullLoad(OrderLoadFlags load_type, bool toggle = false)
606  {
607  VehicleOrderID sel_ord = this->OrderGetSel();
608  const Order *order = this->vehicle->GetOrder(sel_ord);
609 
610  if (order == nullptr) return;
611 
612  if (toggle && order->GetLoadType() == load_type) {
613  load_type = OLF_LOAD_IF_POSSIBLE; // reset to 'default'
614  }
615  if (order->GetLoadType() == load_type) return; // If we still match, do nothing
616 
617  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, sel_ord, MOF_LOAD, load_type);
618  }
619 
623  void OrderClick_Service(int i)
624  {
625  VehicleOrderID sel_ord = this->OrderGetSel();
626 
627  if (i < 0) {
628  const Order *order = this->vehicle->GetOrder(sel_ord);
629  if (order == nullptr) return;
631  }
632  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, sel_ord, MOF_DEPOT_ACTION, i);
633  }
634 
639  {
640  Order order;
641  order.next = nullptr;
642  order.index = 0;
643  order.MakeGoToDepot(INVALID_DEPOT, ODTFB_PART_OF_ORDERS,
646 
647  Command<CMD_INSERT_ORDER>::Post(STR_ERROR_CAN_T_INSERT_NEW_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), order);
648  }
649 
655  void OrderClick_Unload(OrderUnloadFlags unload_type, bool toggle = false)
656  {
657  VehicleOrderID sel_ord = this->OrderGetSel();
658  const Order *order = this->vehicle->GetOrder(sel_ord);
659 
660  if (order == nullptr) return;
661 
662  if (toggle && order->GetUnloadType() == unload_type) {
663  unload_type = OUF_UNLOAD_IF_POSSIBLE;
664  }
665  if (order->GetUnloadType() == unload_type) return; // If we still match, do nothing
666 
667  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, sel_ord, MOF_UNLOAD, unload_type);
668 
669  /* Transfer and unload orders with leave empty as default */
670  if (unload_type == OUFB_TRANSFER || unload_type == OUFB_UNLOAD) {
671  Command<CMD_MODIFY_ORDER>::Post(this->vehicle->tile, this->vehicle->index, sel_ord, MOF_LOAD, OLFB_NO_LOAD);
673  }
674  }
675 
680  void OrderClick_Nonstop(int non_stop)
681  {
682  if (!this->vehicle->IsGroundVehicle()) return;
683 
684  VehicleOrderID sel_ord = this->OrderGetSel();
685  const Order *order = this->vehicle->GetOrder(sel_ord);
686 
687  if (order == nullptr || order->GetNonStopType() == non_stop) return;
688 
689  /* Keypress if negative, so 'toggle' to the next */
690  if (non_stop < 0) {
692  }
693 
695  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, sel_ord, MOF_NON_STOP, non_stop);
696  }
697 
703  {
704  /* Don't skip when there's nothing to skip */
705  if (_ctrl_pressed && this->vehicle->cur_implicit_order_index == this->OrderGetSel()) return;
706  if (this->vehicle->GetNumOrders() <= 1) return;
707 
708  Command<CMD_SKIP_TO_ORDER>::Post(_ctrl_pressed ? STR_ERROR_CAN_T_SKIP_TO_ORDER : STR_ERROR_CAN_T_SKIP_ORDER,
709  this->vehicle->tile, this->vehicle->index, _ctrl_pressed ? this->OrderGetSel() : ((this->vehicle->cur_implicit_order_index + 1) % this->vehicle->GetNumOrders()));
710  }
711 
716  {
717  /* When networking, move one order lower */
718  int selected = this->selected_order + (int)_networking;
719 
720  if (Command<CMD_DELETE_ORDER>::Post(STR_ERROR_CAN_T_DELETE_THIS_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel())) {
721  this->selected_order = selected >= this->vehicle->GetNumOrders() ? -1 : selected;
722  this->UpdateButtonState();
723  }
724  }
725 
733  {
734  /* Don't try to stop sharing orders if 'End of Shared Orders' isn't selected. */
735  if (!this->vehicle->IsOrderListShared() || this->selected_order != this->vehicle->GetNumOrders()) return;
736  /* If Ctrl is pressed, delete the order list as if we clicked the 'Delete' button. */
737  if (_ctrl_pressed) {
738  this->OrderClick_Delete();
739  return;
740  }
741 
742  /* Get another vehicle that share orders with this vehicle. */
743  Vehicle *other_shared = (this->vehicle->FirstShared() == this->vehicle) ? this->vehicle->NextShared() : this->vehicle->PreviousShared();
744  /* Copy the order list of the other vehicle. */
745  if (Command<CMD_CLONE_ORDER>::Post(STR_ERROR_CAN_T_STOP_SHARING_ORDER_LIST, this->vehicle->tile, CO_COPY, this->vehicle->index, other_shared->index)) {
746  this->UpdateButtonState();
747  }
748  }
749 
756  void OrderClick_Refit(int i, bool auto_refit)
757  {
758  if (_ctrl_pressed) {
759  /* Cancel refitting */
760  Command<CMD_ORDER_REFIT>::Post(this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), CARGO_NO_REFIT);
761  } else {
762  if (i == 1) { // Auto-refit to available cargo type.
763  Command<CMD_ORDER_REFIT>::Post(this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), CARGO_AUTO_REFIT);
764  } else {
765  ShowVehicleRefitWindow(this->vehicle, this->OrderGetSel(), this, auto_refit);
766  }
767  }
768  }
769 
772  {
773  this->can_do_refit = false;
774  this->can_do_autorefit = false;
775  for (const Vehicle *w = this->vehicle; w != nullptr; w = w->IsGroundVehicle() ? w->Next() : nullptr) {
776  if (IsEngineRefittable(w->engine_type)) this->can_do_refit = true;
777  if (HasBit(Engine::Get(w->engine_type)->info.misc_flags, EF_AUTO_REFIT)) this->can_do_autorefit = true;
778  }
779  }
780 
781 public:
782  OrdersWindow(WindowDesc *desc, const Vehicle *v) : Window(desc)
783  {
784  this->vehicle = v;
785 
786  this->CreateNestedTree();
787  this->vscroll = this->GetScrollbar(WID_O_SCROLLBAR);
788  if (NWidgetCore *nwid = this->GetWidget<NWidgetCore>(WID_O_DEPOT_ACTION); nwid != nullptr) {
789  nwid->tool_tip = STR_ORDER_TRAIN_DEPOT_ACTION_TOOLTIP + v->type;
790  }
791  this->FinishInitNested(v->index);
792 
793  this->selected_order = -1;
794  this->order_over = INVALID_VEH_ORDER_ID;
795  this->goto_type = OPOS_NONE;
796  this->owner = v->owner;
797 
798  this->UpdateAutoRefitState();
799 
801  /* If there are less than 2 station, make Go To active. */
802  int station_orders = 0;
803  for (const Order *order : v->Orders()) {
804  if (order->IsType(OT_GOTO_STATION)) station_orders++;
805  }
806 
807  if (station_orders < 2) this->OrderClick_Goto(OPOS_GOTO);
808  }
810  }
811 
812  void UpdateWidgetSize(WidgetID widget, Dimension *size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension *fill, [[maybe_unused]] Dimension *resize) override
813  {
814  switch (widget) {
815  case WID_O_ORDER_LIST:
817  size->height = 6 * resize->height + padding.height;
818  break;
819 
820  case WID_O_COND_VARIABLE: {
821  Dimension d = {0, 0};
822  for (uint i = 0; i < lengthof(_order_conditional_variable); i++) {
823  d = maxdim(d, GetStringBoundingBox(STR_ORDER_CONDITIONAL_LOAD_PERCENTAGE + _order_conditional_variable[i]));
824  }
825  d.width += padding.width;
826  d.height += padding.height;
827  *size = maxdim(*size, d);
828  break;
829  }
830 
831  case WID_O_COND_COMPARATOR: {
832  Dimension d = {0, 0};
833  for (int i = 0; _order_conditional_condition[i] != INVALID_STRING_ID; i++) {
834  d = maxdim(d, GetStringBoundingBox(_order_conditional_condition[i]));
835  }
836  d.width += padding.width;
837  d.height += padding.height;
838  *size = maxdim(*size, d);
839  break;
840  }
841  }
842  }
843 
849  void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
850  {
853 
854  switch (data) {
855  case VIWD_AUTOREPLACE:
856  /* Autoreplace replaced the vehicle */
857  this->vehicle = Vehicle::Get(this->window_number);
858  [[fallthrough]];
859 
861  /* Vehicle composition was changed. */
862  this->UpdateAutoRefitState();
863  break;
864 
866  /* Removed / replaced all orders (after deleting / sharing) */
867  if (this->selected_order == -1) break;
868 
869  this->CloseChildWindows();
870  this->selected_order = -1;
871  break;
872 
873  case VIWD_MODIFY_ORDERS:
874  /* Some other order changes */
875  break;
876 
877  default:
878  if (data < 0) break;
879 
880  if (gui_scope) break; // only do this once; from command scope
881  from = GB(data, 0, 8);
882  to = GB(data, 8, 8);
883  /* Moving an order. If one of these is INVALID_VEH_ORDER_ID, then
884  * the order is being created / removed */
885  if (this->selected_order == -1) break;
886 
887  if (from == to) break; // no need to change anything
888 
889  if (from != this->selected_order) {
890  /* Moving from preceding order? */
891  this->selected_order -= (int)(from <= this->selected_order);
892  /* Moving to preceding order? */
893  this->selected_order += (int)(to <= this->selected_order);
894  break;
895  }
896 
897  /* Now we are modifying the selected order */
898  if (to == INVALID_VEH_ORDER_ID) {
899  /* Deleting selected order */
900  this->CloseChildWindows();
901  this->selected_order = -1;
902  break;
903  }
904 
905  /* Moving selected order */
906  this->selected_order = to;
907  break;
908  }
909 
910  this->vscroll->SetCount(this->vehicle->GetNumOrders() + 1);
911  if (gui_scope) this->UpdateButtonState();
912 
913  /* Scroll to the new order. */
914  if (from == INVALID_VEH_ORDER_ID && to != INVALID_VEH_ORDER_ID && !this->vscroll->IsVisible(to)) {
915  this->vscroll->ScrollTowards(to);
916  }
917  }
918 
919  void UpdateButtonState()
920  {
921  if (this->vehicle->owner != _local_company) return; // No buttons are displayed with competitor order windows.
922 
923  bool shared_orders = this->vehicle->IsOrderListShared();
924  VehicleOrderID sel = this->OrderGetSel();
925  const Order *order = this->vehicle->GetOrder(sel);
926 
927  /* Second row. */
928  /* skip */
929  this->SetWidgetDisabledState(WID_O_SKIP, this->vehicle->GetNumOrders() <= 1);
930 
931  /* delete / stop sharing */
932  NWidgetStacked *delete_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_BOTTOM_MIDDLE);
933  if (shared_orders && this->selected_order == this->vehicle->GetNumOrders()) {
934  /* The 'End of Shared Orders' order is selected, show the 'stop sharing' button. */
936  } else {
937  /* The 'End of Shared Orders' order isn't selected, show the 'delete' button. */
940  (uint)this->vehicle->GetNumOrders() + ((shared_orders || this->vehicle->GetNumOrders() != 0) ? 1 : 0) <= (uint)this->selected_order);
941 
942  /* Set the tooltip of the 'delete' button depending on whether the
943  * 'End of Orders' order or a regular order is selected. */
944  NWidgetCore *nwi = this->GetWidget<NWidgetCore>(WID_O_DELETE);
945  if (this->selected_order == this->vehicle->GetNumOrders()) {
946  nwi->SetDataTip(STR_ORDERS_DELETE_BUTTON, STR_ORDERS_DELETE_ALL_TOOLTIP);
947  } else {
948  nwi->SetDataTip(STR_ORDERS_DELETE_BUTTON, STR_ORDERS_DELETE_TOOLTIP);
949  }
950  }
951 
952  /* First row. */
954  this->RaiseWidget(WID_O_UNLOAD);
955 
956  /* Selection widgets. */
957  /* Train or road vehicle. */
958  NWidgetStacked *train_row_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_ROW_GROUNDVEHICLE);
959  NWidgetStacked *left_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_LEFT);
960  NWidgetStacked *middle_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_MIDDLE);
961  NWidgetStacked *right_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_RIGHT);
962  /* Ship or airplane. */
963  NWidgetStacked *row_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_ROW);
964  assert(row_sel != nullptr || (train_row_sel != nullptr && left_sel != nullptr && middle_sel != nullptr && right_sel != nullptr));
965 
966 
967  if (order == nullptr) {
968  if (row_sel != nullptr) {
969  row_sel->SetDisplayedPlane(DP_ROW_LOAD);
970  } else {
972  left_sel->SetDisplayedPlane(DP_LEFT_LOAD);
973  middle_sel->SetDisplayedPlane(DP_MIDDLE_UNLOAD);
974  right_sel->SetDisplayedPlane(DP_RIGHT_EMPTY);
977  }
981  } else {
984 
985  switch (order->GetType()) {
986  case OT_GOTO_STATION:
987  if (row_sel != nullptr) {
988  row_sel->SetDisplayedPlane(DP_ROW_LOAD);
989  } else {
991  left_sel->SetDisplayedPlane(DP_LEFT_LOAD);
992  middle_sel->SetDisplayedPlane(DP_MIDDLE_UNLOAD);
993  right_sel->SetDisplayedPlane(DP_RIGHT_REFIT);
996  }
999 
1000  /* Can only do refitting when stopping at the destination and loading cargo.
1001  * Also enable the button if a refit is already set to allow clearing it. */
1004  ((!this->can_do_refit || !this->can_do_autorefit) && !order->IsRefit()));
1005 
1006  break;
1007 
1008  case OT_GOTO_WAYPOINT:
1009  if (row_sel != nullptr) {
1010  row_sel->SetDisplayedPlane(DP_ROW_LOAD);
1011  } else {
1013  left_sel->SetDisplayedPlane(DP_LEFT_LOAD);
1014  middle_sel->SetDisplayedPlane(DP_MIDDLE_UNLOAD);
1015  right_sel->SetDisplayedPlane(DP_RIGHT_EMPTY);
1018  }
1020  this->DisableWidget(WID_O_UNLOAD);
1022  break;
1023 
1024  case OT_GOTO_DEPOT:
1025  if (row_sel != nullptr) {
1026  row_sel->SetDisplayedPlane(DP_ROW_DEPOT);
1027  } else {
1029  left_sel->SetDisplayedPlane(DP_LEFT_REFIT);
1030  middle_sel->SetDisplayedPlane(DP_MIDDLE_SERVICE);
1031  right_sel->SetDisplayedPlane(DP_RIGHT_EMPTY);
1034  }
1035  /* Disable refit button if the order is no 'always go' order.
1036  * However, keep the service button enabled for refit-orders to allow clearing refits (without knowing about ctrl). */
1038  (order->GetDepotOrderType() & ODTFB_SERVICE) || (order->GetDepotActionType() & ODATFB_HALT) ||
1039  (!this->can_do_refit && !order->IsRefit()));
1040  break;
1041 
1042  case OT_CONDITIONAL: {
1043  if (row_sel != nullptr) {
1045  } else {
1047  }
1049  /* Set the strings for the dropdown boxes. */
1050  this->GetWidget<NWidgetCore>(WID_O_COND_VARIABLE)->widget_data = STR_ORDER_CONDITIONAL_LOAD_PERCENTAGE + ocv;
1051  this->GetWidget<NWidgetCore>(WID_O_COND_COMPARATOR)->widget_data = _order_conditional_condition[order->GetConditionComparator()];
1054  break;
1055  }
1056 
1057  default: // every other order
1058  if (row_sel != nullptr) {
1059  row_sel->SetDisplayedPlane(DP_ROW_LOAD);
1060  } else {
1062  left_sel->SetDisplayedPlane(DP_LEFT_LOAD);
1063  middle_sel->SetDisplayedPlane(DP_MIDDLE_UNLOAD);
1064  right_sel->SetDisplayedPlane(DP_RIGHT_EMPTY);
1066  }
1068  this->DisableWidget(WID_O_UNLOAD);
1070  break;
1071  }
1072  }
1073 
1074  /* Disable list of vehicles with the same shared orders if there is no list */
1075  this->SetWidgetDisabledState(WID_O_SHARED_ORDER_LIST, !shared_orders);
1076 
1077  this->SetDirty();
1078  }
1079 
1080  void OnPaint() override
1081  {
1082  if (this->vehicle->owner != _local_company) {
1083  this->selected_order = -1; // Disable selection any selected row at a competitor order window.
1084  } else {
1085  this->SetWidgetLoweredState(WID_O_GOTO, this->goto_type != OPOS_NONE);
1086  }
1087  this->DrawWidgets();
1088  }
1089 
1090  void DrawWidget(const Rect &r, WidgetID widget) const override
1091  {
1092  if (widget != WID_O_ORDER_LIST) return;
1093 
1094  Rect ir = r.Shrink(WidgetDimensions::scaled.frametext, WidgetDimensions::scaled.framerect);
1095  bool rtl = _current_text_dir == TD_RTL;
1096  SetDParamMaxValue(0, this->vehicle->GetNumOrders(), 2);
1097  int index_column_width = GetStringBoundingBox(STR_ORDER_INDEX).width + 2 * GetSpriteSize(rtl ? SPR_ARROW_RIGHT : SPR_ARROW_LEFT).width + WidgetDimensions::scaled.hsep_normal;
1098  int middle = rtl ? ir.right - index_column_width : ir.left + index_column_width;
1099 
1100  int y = ir.top;
1101  int line_height = this->GetWidget<NWidgetBase>(WID_O_ORDER_LIST)->resize_y;
1102 
1103  int i = this->vscroll->GetPosition();
1104  const Order *order = this->vehicle->GetOrder(i);
1105  /* First draw the highlighting underground if it exists. */
1106  if (this->order_over != INVALID_VEH_ORDER_ID) {
1107  while (order != nullptr) {
1108  /* Don't draw anything if it extends past the end of the window. */
1109  if (!this->vscroll->IsVisible(i)) break;
1110 
1111  if (i != this->selected_order && i == this->order_over) {
1112  /* Highlight dragged order destination. */
1113  int top = (this->order_over < this->selected_order ? y : y + line_height) - WidgetDimensions::scaled.framerect.top;
1114  int bottom = std::min(top + 2, ir.bottom);
1115  top = std::max(top - 3, ir.top);
1116  GfxFillRect(ir.left, top, ir.right, bottom, _colour_gradient[COLOUR_GREY][7]);
1117  break;
1118  }
1119  y += line_height;
1120 
1121  i++;
1122  order = order->next;
1123  }
1124 
1125  /* Reset counters for drawing the orders. */
1126  y = ir.top;
1127  i = this->vscroll->GetPosition();
1128  order = this->vehicle->GetOrder(i);
1129  }
1130 
1131  /* Draw the orders. */
1132  while (order != nullptr) {
1133  /* Don't draw anything if it extends past the end of the window. */
1134  if (!this->vscroll->IsVisible(i)) break;
1135 
1136  DrawOrderString(this->vehicle, order, i, y, i == this->selected_order, false, ir.left, middle, ir.right);
1137  y += line_height;
1138 
1139  i++;
1140  order = order->next;
1141  }
1142 
1143  if (this->vscroll->IsVisible(i)) {
1144  StringID str = this->vehicle->IsOrderListShared() ? STR_ORDERS_END_OF_SHARED_ORDERS : STR_ORDERS_END_OF_ORDERS;
1145  DrawString(rtl ? ir.left : middle, rtl ? middle : ir.right, y, str, (i == this->selected_order) ? TC_WHITE : TC_BLACK);
1146  }
1147  }
1148 
1149  void SetStringParameters(WidgetID widget) const override
1150  {
1151  switch (widget) {
1152  case WID_O_COND_VALUE: {
1153  VehicleOrderID sel = this->OrderGetSel();
1154  const Order *order = this->vehicle->GetOrder(sel);
1155 
1156  if (order != nullptr && order->IsType(OT_CONDITIONAL)) {
1157  uint value = order->GetConditionValue();
1158  if (order->GetConditionVariable() == OCV_MAX_SPEED) value = ConvertSpeedToDisplaySpeed(value, this->vehicle->type);
1159  SetDParam(0, value);
1160  }
1161  break;
1162  }
1163 
1164  case WID_O_CAPTION:
1165  SetDParam(0, this->vehicle->index);
1166  break;
1167 
1168  case WID_O_DEPOT_ACTION: {
1169  VehicleOrderID sel = this->OrderGetSel();
1170  const Order *order = this->vehicle->GetOrder(sel);
1171  if (order == nullptr || !order->IsType(OT_GOTO_DEPOT)) {
1172  /* We can't leave this param unset or the undefined behavior can cause a crash. */
1173  SetDParam(0, STR_EMPTY);
1174  break;
1175  };
1176 
1177  /* Select the current action selected in the dropdown. The flags don't match the dropdown so we can't just use an index. */
1178  if (order->GetDepotOrderType() & ODTFB_SERVICE) {
1179  SetDParam(0, STR_ORDER_DROP_SERVICE_DEPOT);
1180  } else if (order->GetDepotActionType() & ODATFB_HALT) {
1181  SetDParam(0, STR_ORDER_DROP_HALT_DEPOT);
1182  } else if (order->GetDepotActionType() & ODATFB_UNBUNCH) {
1183  SetDParam(0, STR_ORDER_DROP_UNBUNCH);
1184  } else {
1185  SetDParam(0, STR_ORDER_DROP_GO_ALWAYS_DEPOT);
1186  }
1187  break;
1188  }
1189  }
1190  }
1191 
1192  void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
1193  {
1194  switch (widget) {
1195  case WID_O_ORDER_LIST: {
1196  if (this->goto_type == OPOS_CONDITIONAL) {
1197  VehicleOrderID order_id = this->GetOrderFromPt(_cursor.pos.y - this->top);
1198  if (order_id != INVALID_VEH_ORDER_ID) {
1199  Order order;
1200  order.next = nullptr;
1201  order.index = 0;
1202  order.MakeConditional(order_id);
1203 
1204  Command<CMD_INSERT_ORDER>::Post(STR_ERROR_CAN_T_INSERT_NEW_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), order);
1205  }
1207  break;
1208  }
1209 
1210  VehicleOrderID sel = this->GetOrderFromPt(pt.y);
1211 
1212  if (_ctrl_pressed && sel < this->vehicle->GetNumOrders()) {
1213  TileIndex xy = this->vehicle->GetOrder(sel)->GetLocation(this->vehicle);
1214  if (xy != INVALID_TILE) ScrollMainWindowToTile(xy);
1215  return;
1216  }
1217 
1218  /* This order won't be selected any more, close all child windows and dropdowns */
1219  this->CloseChildWindows();
1220 
1221  if (sel == INVALID_VEH_ORDER_ID || this->vehicle->owner != _local_company) {
1222  /* Deselect clicked order */
1223  this->selected_order = -1;
1224  } else if (sel == this->selected_order) {
1225  if (this->vehicle->type == VEH_TRAIN && sel < this->vehicle->GetNumOrders()) {
1226  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER,
1227  this->vehicle->tile, this->vehicle->index, sel,
1228  MOF_STOP_LOCATION, (this->vehicle->GetOrder(sel)->GetStopLocation() + 1) % OSL_END);
1229  }
1230  } else {
1231  /* Select clicked order */
1232  this->selected_order = sel;
1233 
1234  if (this->vehicle->owner == _local_company) {
1235  /* Activate drag and drop */
1236  SetObjectToPlaceWnd(SPR_CURSOR_MOUSE, PAL_NONE, HT_DRAG, this);
1237  }
1238  }
1239 
1240  this->UpdateButtonState();
1241  break;
1242  }
1243 
1244  case WID_O_SKIP:
1245  this->OrderClick_Skip();
1246  break;
1247 
1248  case WID_O_DELETE:
1249  this->OrderClick_Delete();
1250  break;
1251 
1252  case WID_O_STOP_SHARING:
1253  this->OrderClick_StopSharing();
1254  break;
1255 
1256  case WID_O_NON_STOP:
1257  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1258  this->OrderClick_Nonstop(-1);
1259  } else {
1260  const Order *o = this->vehicle->GetOrder(this->OrderGetSel());
1261  assert(o != nullptr);
1262  ShowDropDownMenu(this, _order_non_stop_drowdown, o->GetNonStopType(), WID_O_NON_STOP, 0,
1263  o->IsType(OT_GOTO_STATION) ? 0 : (o->IsType(OT_GOTO_WAYPOINT) ? 3 : 12));
1264  }
1265  break;
1266 
1267  case WID_O_GOTO:
1268  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1269  if (this->goto_type != OPOS_NONE) {
1271  } else {
1272  this->OrderClick_Goto(OPOS_GOTO);
1273  }
1274  } else {
1275  int sel;
1276  switch (this->goto_type) {
1277  case OPOS_NONE: sel = -1; break;
1278  case OPOS_GOTO: sel = 0; break;
1279  case OPOS_CONDITIONAL: sel = 2; break;
1280  case OPOS_SHARE: sel = 3; break;
1281  default: NOT_REACHED();
1282  }
1283  ShowDropDownMenu(this, this->vehicle->type == VEH_AIRCRAFT ? _order_goto_dropdown_aircraft : _order_goto_dropdown, sel, WID_O_GOTO, 0, 0);
1284  }
1285  break;
1286 
1287  case WID_O_FULL_LOAD:
1288  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1290  } else {
1291  ShowDropDownMenu(this, _order_full_load_drowdown, this->vehicle->GetOrder(this->OrderGetSel())->GetLoadType(), WID_O_FULL_LOAD, 0, 2);
1292  }
1293  break;
1294 
1295  case WID_O_UNLOAD:
1296  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1297  this->OrderClick_Unload(OUFB_UNLOAD, true);
1298  } else {
1299  ShowDropDownMenu(this, _order_unload_drowdown, this->vehicle->GetOrder(this->OrderGetSel())->GetUnloadType(), WID_O_UNLOAD, 0, 8);
1300  }
1301  break;
1302 
1303  case WID_O_REFIT:
1304  this->OrderClick_Refit(0, false);
1305  break;
1306 
1307  case WID_O_DEPOT_ACTION:
1308  ShowDropDownMenu(this, _order_depot_action_dropdown, DepotActionStringIndex(this->vehicle->GetOrder(this->OrderGetSel())), WID_O_DEPOT_ACTION, 0, 0);
1309  break;
1310 
1311  case WID_O_REFIT_DROPDOWN:
1312  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1313  this->OrderClick_Refit(0, true);
1314  } else {
1315  ShowDropDownMenu(this, _order_refit_action_dropdown, 0, WID_O_REFIT_DROPDOWN, 0, 0);
1316  }
1317  break;
1318 
1319  case WID_O_TIMETABLE_VIEW:
1320  ShowTimetableWindow(this->vehicle);
1321  break;
1322 
1323  case WID_O_COND_VARIABLE: {
1324  DropDownList list;
1325  for (uint i = 0; i < lengthof(_order_conditional_variable); i++) {
1326  list.push_back(std::make_unique<DropDownListStringItem>(STR_ORDER_CONDITIONAL_LOAD_PERCENTAGE + _order_conditional_variable[i], _order_conditional_variable[i], false));
1327  }
1328  ShowDropDownList(this, std::move(list), this->vehicle->GetOrder(this->OrderGetSel())->GetConditionVariable(), WID_O_COND_VARIABLE);
1329  break;
1330  }
1331 
1332  case WID_O_COND_COMPARATOR: {
1333  const Order *o = this->vehicle->GetOrder(this->OrderGetSel());
1334  assert(o != nullptr);
1335  ShowDropDownMenu(this, _order_conditional_condition, o->GetConditionComparator(), WID_O_COND_COMPARATOR, 0, (o->GetConditionVariable() == OCV_REQUIRES_SERVICE) ? 0x3F : 0xC0);
1336  break;
1337  }
1338 
1339  case WID_O_COND_VALUE: {
1340  const Order *order = this->vehicle->GetOrder(this->OrderGetSel());
1341  assert(order != nullptr);
1342  uint value = order->GetConditionValue();
1343  if (order->GetConditionVariable() == OCV_MAX_SPEED) value = ConvertSpeedToDisplaySpeed(value, this->vehicle->type);
1344  SetDParam(0, value);
1345  ShowQueryString(STR_JUST_INT, STR_ORDER_CONDITIONAL_VALUE_CAPT, 5, this, CS_NUMERAL, QSF_NONE);
1346  break;
1347  }
1348 
1350  ShowVehicleListWindow(this->vehicle);
1351  break;
1352  }
1353  }
1354 
1355  void OnQueryTextFinished(char *str) override
1356  {
1357  if (!StrEmpty(str)) {
1358  VehicleOrderID sel = this->OrderGetSel();
1359  uint value = atoi(str);
1360 
1361  switch (this->vehicle->GetOrder(sel)->GetConditionVariable()) {
1362  case OCV_MAX_SPEED:
1363  value = ConvertDisplaySpeedToSpeed(value, this->vehicle->type);
1364  break;
1365 
1366  case OCV_RELIABILITY:
1367  case OCV_LOAD_PERCENTAGE:
1368  value = Clamp(value, 0, 100);
1369  break;
1370 
1371  default:
1372  break;
1373  }
1374  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, sel, MOF_COND_VALUE, Clamp(value, 0, 2047));
1375  }
1376  }
1377 
1378  void OnDropdownSelect(WidgetID widget, int index) override
1379  {
1380  switch (widget) {
1381  case WID_O_NON_STOP:
1382  this->OrderClick_Nonstop(index);
1383  break;
1384 
1385  case WID_O_FULL_LOAD:
1386  this->OrderClick_FullLoad((OrderLoadFlags)index);
1387  break;
1388 
1389  case WID_O_UNLOAD:
1390  this->OrderClick_Unload((OrderUnloadFlags)index);
1391  break;
1392 
1393  case WID_O_GOTO:
1394  switch (index) {
1395  case 0: this->OrderClick_Goto(OPOS_GOTO); break;
1396  case 1: this->OrderClick_NearestDepot(); break;
1397  case 2: this->OrderClick_Goto(OPOS_CONDITIONAL); break;
1398  case 3: this->OrderClick_Goto(OPOS_SHARE); break;
1399  default: NOT_REACHED();
1400  }
1401  break;
1402 
1403  case WID_O_DEPOT_ACTION:
1404  this->OrderClick_Service(index);
1405  break;
1406 
1407  case WID_O_REFIT_DROPDOWN:
1408  this->OrderClick_Refit(index, true);
1409  break;
1410 
1411  case WID_O_COND_VARIABLE:
1412  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), MOF_COND_VARIABLE, index);
1413  break;
1414 
1415  case WID_O_COND_COMPARATOR:
1416  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), MOF_COND_COMPARATOR, index);
1417  break;
1418  }
1419  }
1420 
1421  void OnDragDrop(Point pt, WidgetID widget) override
1422  {
1423  switch (widget) {
1424  case WID_O_ORDER_LIST: {
1425  VehicleOrderID from_order = this->OrderGetSel();
1426  VehicleOrderID to_order = this->GetOrderFromPt(pt.y);
1427 
1428  if (!(from_order == to_order || from_order == INVALID_VEH_ORDER_ID || from_order > this->vehicle->GetNumOrders() || to_order == INVALID_VEH_ORDER_ID || to_order > this->vehicle->GetNumOrders()) &&
1429  Command<CMD_MOVE_ORDER>::Post(STR_ERROR_CAN_T_MOVE_THIS_ORDER, this->vehicle->tile, this->vehicle->index, from_order, to_order)) {
1430  this->selected_order = -1;
1431  this->UpdateButtonState();
1432  }
1433  break;
1434  }
1435 
1436  case WID_O_DELETE:
1437  this->OrderClick_Delete();
1438  break;
1439 
1440  case WID_O_STOP_SHARING:
1441  this->OrderClick_StopSharing();
1442  break;
1443  }
1444 
1446 
1447  if (this->order_over != INVALID_VEH_ORDER_ID) {
1448  /* End of drag-and-drop, hide dragged order destination highlight. */
1449  this->order_over = INVALID_VEH_ORDER_ID;
1451  }
1452  }
1453 
1454  EventState OnHotkey(int hotkey) override
1455  {
1456  if (this->vehicle->owner != _local_company) return ES_NOT_HANDLED;
1457 
1458  switch (hotkey) {
1459  case OHK_SKIP: this->OrderClick_Skip(); break;
1460  case OHK_DELETE: this->OrderClick_Delete(); break;
1461  case OHK_GOTO: this->OrderClick_Goto(OPOS_GOTO); break;
1462  case OHK_NONSTOP: this->OrderClick_Nonstop(-1); break;
1463  case OHK_FULLLOAD: this->OrderClick_FullLoad(OLF_FULL_LOAD_ANY, true); break;
1464  case OHK_UNLOAD: this->OrderClick_Unload(OUFB_UNLOAD, true); break;
1465  case OHK_NEAREST_DEPOT: this->OrderClick_NearestDepot(); break;
1466  case OHK_ALWAYS_SERVICE: this->OrderClick_Service(-1); break;
1467  case OHK_TRANSFER: this->OrderClick_Unload(OUFB_TRANSFER, true); break;
1468  case OHK_NO_UNLOAD: this->OrderClick_Unload(OUFB_NO_UNLOAD, true); break;
1469  case OHK_NO_LOAD: this->OrderClick_FullLoad(OLFB_NO_LOAD, true); break;
1470  default: return ES_NOT_HANDLED;
1471  }
1472  return ES_HANDLED;
1473  }
1474 
1475  void OnPlaceObject([[maybe_unused]] Point pt, TileIndex tile) override
1476  {
1477  if (this->goto_type == OPOS_GOTO) {
1478  const Order cmd = GetOrderCmdFromTile(this->vehicle, tile);
1479  if (cmd.IsType(OT_NOTHING)) return;
1480 
1481  if (Command<CMD_INSERT_ORDER>::Post(STR_ERROR_CAN_T_INSERT_NEW_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), cmd)) {
1482  /* With quick goto the Go To button stays active */
1484  }
1485  }
1486  }
1487 
1488  bool OnVehicleSelect(const Vehicle *v) override
1489  {
1490  /* v is vehicle getting orders. Only copy/clone orders if vehicle doesn't have any orders yet.
1491  * We disallow copying orders of other vehicles if we already have at least one order entry
1492  * ourself as it easily copies orders of vehicles within a station when we mean the station.
1493  * Obviously if you press CTRL on a non-empty orders vehicle you know what you are doing
1494  * TODO: give a warning message */
1495  bool share_order = _ctrl_pressed || this->goto_type == OPOS_SHARE;
1496  if (this->vehicle->GetNumOrders() != 0 && !share_order) return false;
1497 
1498  if (Command<CMD_CLONE_ORDER>::Post(share_order ? STR_ERROR_CAN_T_SHARE_ORDER_LIST : STR_ERROR_CAN_T_COPY_ORDER_LIST,
1499  this->vehicle->tile, share_order ? CO_SHARE : CO_COPY, this->vehicle->index, v->index)) {
1500  this->selected_order = -1;
1502  }
1503  return true;
1504  }
1505 
1512  bool OnVehicleSelect(VehicleList::const_iterator begin, VehicleList::const_iterator end) override
1513  {
1514  bool share_order = _ctrl_pressed || this->goto_type == OPOS_SHARE;
1515  if (this->vehicle->GetNumOrders() != 0 && !share_order) return false;
1516 
1517  if (!share_order) {
1518  /* If CTRL is not pressed: If all the vehicles in this list have the same orders, then copy orders */
1519  if (AllEqual(begin, end, [](const Vehicle *v1, const Vehicle *v2) {
1520  return VehiclesHaveSameOrderList(v1, v2);
1521  })) {
1522  OnVehicleSelect(*begin);
1523  } else {
1524  ShowErrorMessage(STR_ERROR_CAN_T_COPY_ORDER_LIST, STR_ERROR_CAN_T_COPY_ORDER_VEHICLE_LIST, WL_INFO);
1525  }
1526  } else {
1527  /* If CTRL is pressed: If all the vehicles in this list share orders, then copy orders */
1528  if (AllEqual(begin, end, [](const Vehicle *v1, const Vehicle *v2) {
1529  return v1->FirstShared() == v2->FirstShared();
1530  })) {
1531  OnVehicleSelect(*begin);
1532  } else {
1533  ShowErrorMessage(STR_ERROR_CAN_T_SHARE_ORDER_LIST, STR_ERROR_CAN_T_SHARE_ORDER_VEHICLE_LIST, WL_INFO);
1534  }
1535  }
1536 
1537  return true;
1538  }
1539 
1540  void OnPlaceObjectAbort() override
1541  {
1542  this->goto_type = OPOS_NONE;
1543  this->SetWidgetDirty(WID_O_GOTO);
1544 
1545  /* Remove drag highlighting if it exists. */
1546  if (this->order_over != INVALID_VEH_ORDER_ID) {
1547  this->order_over = INVALID_VEH_ORDER_ID;
1549  }
1550  }
1551 
1552  void OnMouseDrag(Point pt, WidgetID widget) override
1553  {
1554  if (this->selected_order != -1 && widget == WID_O_ORDER_LIST) {
1555  /* An order is dragged.. */
1556  VehicleOrderID from_order = this->OrderGetSel();
1557  VehicleOrderID to_order = this->GetOrderFromPt(pt.y);
1558  uint num_orders = this->vehicle->GetNumOrders();
1559 
1560  if (from_order != INVALID_VEH_ORDER_ID && from_order <= num_orders) {
1561  if (to_order != INVALID_VEH_ORDER_ID && to_order <= num_orders) { // ..over an existing order.
1562  this->order_over = to_order;
1563  this->SetWidgetDirty(widget);
1564  } else if (from_order != to_order && this->order_over != INVALID_VEH_ORDER_ID) { // ..outside of the order list.
1565  this->order_over = INVALID_VEH_ORDER_ID;
1566  this->SetWidgetDirty(widget);
1567  }
1568  }
1569  }
1570  }
1571 
1572  void OnResize() override
1573  {
1574  /* Update the scroll bar */
1575  this->vscroll->SetCapacityFromWidget(this, WID_O_ORDER_LIST);
1576  }
1577 
1578  static inline HotkeyList hotkeys{"order", {
1579  Hotkey('D', "skip", OHK_SKIP),
1580  Hotkey('F', "delete", OHK_DELETE),
1581  Hotkey('G', "goto", OHK_GOTO),
1582  Hotkey('H', "nonstop", OHK_NONSTOP),
1583  Hotkey('J', "fullload", OHK_FULLLOAD),
1584  Hotkey('K', "unload", OHK_UNLOAD),
1585  Hotkey(0, "nearest_depot", OHK_NEAREST_DEPOT),
1586  Hotkey(0, "always_service", OHK_ALWAYS_SERVICE),
1587  Hotkey(0, "transfer", OHK_TRANSFER),
1588  Hotkey(0, "no_unload", OHK_NO_UNLOAD),
1589  Hotkey(0, "no_load", OHK_NO_LOAD),
1590  }};
1591 };
1592 
1596  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1597  NWidget(WWT_CAPTION, COLOUR_GREY, WID_O_CAPTION), SetDataTip(STR_ORDERS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1598  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_TIMETABLE_VIEW), SetMinimalSize(61, 14), SetDataTip(STR_ORDERS_TIMETABLE_VIEW, STR_ORDERS_TIMETABLE_VIEW_TOOLTIP),
1599  NWidget(WWT_SHADEBOX, COLOUR_GREY),
1600  NWidget(WWT_DEFSIZEBOX, COLOUR_GREY),
1601  NWidget(WWT_STICKYBOX, COLOUR_GREY),
1602  EndContainer(),
1604  NWidget(WWT_PANEL, COLOUR_GREY, WID_O_ORDER_LIST), SetMinimalSize(372, 62), SetDataTip(0x0, STR_ORDERS_LIST_TOOLTIP), SetResize(1, 1), SetScrollbar(WID_O_SCROLLBAR), EndContainer(),
1605  NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_O_SCROLLBAR),
1606  EndContainer(),
1607 
1608  /* First button row. */
1612  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_NON_STOP), SetMinimalSize(93, 12), SetFill(1, 0),
1613  SetDataTip(STR_ORDER_NON_STOP, STR_ORDER_TOOLTIP_NON_STOP), SetResize(1, 0),
1614  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_O_SEL_TOP_LEFT),
1615  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_FULL_LOAD), SetMinimalSize(93, 12), SetFill(1, 0),
1616  SetDataTip(STR_ORDER_TOGGLE_FULL_LOAD, STR_ORDER_TOOLTIP_FULL_LOAD), SetResize(1, 0),
1617  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_REFIT), SetMinimalSize(93, 12), SetFill(1, 0),
1618  SetDataTip(STR_ORDER_REFIT, STR_ORDER_REFIT_TOOLTIP), SetResize(1, 0),
1619  EndContainer(),
1620  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_O_SEL_TOP_MIDDLE),
1621  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_UNLOAD), SetMinimalSize(93, 12), SetFill(1, 0),
1622  SetDataTip(STR_ORDER_TOGGLE_UNLOAD, STR_ORDER_TOOLTIP_UNLOAD), SetResize(1, 0),
1623  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_DEPOT_ACTION), SetMinimalSize(93, 12), SetFill(1, 0),
1624  SetDataTip(STR_JUST_STRING, STR_NULL), SetResize(1, 0),
1625  EndContainer(),
1626  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_O_SEL_TOP_RIGHT),
1627  NWidget(WWT_PANEL, COLOUR_GREY), SetMinimalSize(93, 12), SetFill(1, 0), SetResize(1, 0), EndContainer(),
1629  SetDataTip(STR_ORDER_REFIT_AUTO, STR_ORDER_REFIT_AUTO_TOOLTIP), SetResize(1, 0),
1630  EndContainer(),
1631  EndContainer(),
1633  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_O_COND_VARIABLE), SetMinimalSize(124, 12), SetFill(1, 0),
1634  SetDataTip(STR_NULL, STR_ORDER_CONDITIONAL_VARIABLE_TOOLTIP), SetResize(1, 0),
1635  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_O_COND_COMPARATOR), SetMinimalSize(124, 12), SetFill(1, 0),
1636  SetDataTip(STR_NULL, STR_ORDER_CONDITIONAL_COMPARATOR_TOOLTIP), SetResize(1, 0),
1637  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_COND_VALUE), SetMinimalSize(124, 12), SetFill(1, 0),
1638  SetDataTip(STR_JUST_COMMA, STR_ORDER_CONDITIONAL_VALUE_TOOLTIP), SetResize(1, 0),
1639  EndContainer(),
1640  EndContainer(),
1641  NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_O_SHARED_ORDER_LIST), SetMinimalSize(12, 12), SetDataTip(SPR_SHARED_ORDERS_ICON, STR_ORDERS_VEH_WITH_SHARED_ORDERS_LIST_TOOLTIP),
1642  EndContainer(),
1643 
1644  /* Second button row. */
1647  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_SKIP), SetMinimalSize(124, 12), SetFill(1, 0),
1648  SetDataTip(STR_ORDERS_SKIP_BUTTON, STR_ORDERS_SKIP_TOOLTIP), SetResize(1, 0),
1650  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_DELETE), SetMinimalSize(124, 12), SetFill(1, 0),
1651  SetDataTip(STR_ORDERS_DELETE_BUTTON, STR_ORDERS_DELETE_TOOLTIP), SetResize(1, 0),
1652  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_STOP_SHARING), SetMinimalSize(124, 12), SetFill(1, 0),
1653  SetDataTip(STR_ORDERS_STOP_SHARING_BUTTON, STR_ORDERS_STOP_SHARING_TOOLTIP), SetResize(1, 0),
1654  EndContainer(),
1655  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_GOTO), SetMinimalSize(124, 12), SetFill(1, 0),
1656  SetDataTip(STR_ORDERS_GO_TO_BUTTON, STR_ORDERS_GO_TO_TOOLTIP), SetResize(1, 0),
1657  EndContainer(),
1658  NWidget(WWT_RESIZEBOX, COLOUR_GREY),
1659  EndContainer(),
1660 };
1661 
1662 static WindowDesc _orders_train_desc(__FILE__, __LINE__,
1663  WDP_AUTO, "view_vehicle_orders_train", 384, 100,
1667  &OrdersWindow::hotkeys
1668 );
1669 
1671 static constexpr NWidgetPart _nested_orders_widgets[] = {
1673  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1674  NWidget(WWT_CAPTION, COLOUR_GREY, WID_O_CAPTION), SetDataTip(STR_ORDERS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1675  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_TIMETABLE_VIEW), SetMinimalSize(61, 14), SetDataTip(STR_ORDERS_TIMETABLE_VIEW, STR_ORDERS_TIMETABLE_VIEW_TOOLTIP),
1676  NWidget(WWT_SHADEBOX, COLOUR_GREY),
1677  NWidget(WWT_DEFSIZEBOX, COLOUR_GREY),
1678  NWidget(WWT_STICKYBOX, COLOUR_GREY),
1679  EndContainer(),
1681  NWidget(WWT_PANEL, COLOUR_GREY, WID_O_ORDER_LIST), SetMinimalSize(372, 62), SetDataTip(0x0, STR_ORDERS_LIST_TOOLTIP), SetResize(1, 1), SetScrollbar(WID_O_SCROLLBAR), EndContainer(),
1682  NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_O_SCROLLBAR),
1683  EndContainer(),
1684 
1685  /* First button row. */
1687  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_O_SEL_TOP_ROW),
1688  /* Load + unload + refit buttons. */
1690  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_FULL_LOAD), SetMinimalSize(124, 12), SetFill(1, 0),
1691  SetDataTip(STR_ORDER_TOGGLE_FULL_LOAD, STR_ORDER_TOOLTIP_FULL_LOAD), SetResize(1, 0),
1692  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_UNLOAD), SetMinimalSize(124, 12), SetFill(1, 0),
1693  SetDataTip(STR_ORDER_TOGGLE_UNLOAD, STR_ORDER_TOOLTIP_UNLOAD), SetResize(1, 0),
1695  SetDataTip(STR_ORDER_REFIT_AUTO, STR_ORDER_REFIT_AUTO_TOOLTIP), SetResize(1, 0),
1696  EndContainer(),
1697  /* Refit + service buttons. */
1699  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_REFIT), SetMinimalSize(186, 12), SetFill(1, 0),
1700  SetDataTip(STR_ORDER_REFIT, STR_ORDER_REFIT_TOOLTIP), SetResize(1, 0),
1701  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_DEPOT_ACTION), SetMinimalSize(124, 12), SetFill(1, 0),
1702  SetDataTip(STR_JUST_STRING, STR_NULL), SetResize(1, 0),
1703  EndContainer(),
1704 
1705  /* Buttons for setting a condition. */
1707  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_O_COND_VARIABLE), SetMinimalSize(124, 12), SetFill(1, 0),
1708  SetDataTip(STR_NULL, STR_ORDER_CONDITIONAL_VARIABLE_TOOLTIP), SetResize(1, 0),
1709  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_O_COND_COMPARATOR), SetMinimalSize(124, 12), SetFill(1, 0),
1710  SetDataTip(STR_NULL, STR_ORDER_CONDITIONAL_COMPARATOR_TOOLTIP), SetResize(1, 0),
1711  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_COND_VALUE), SetMinimalSize(124, 12), SetFill(1, 0),
1712  SetDataTip(STR_JUST_COMMA, STR_ORDER_CONDITIONAL_VALUE_TOOLTIP), SetResize(1, 0),
1713  EndContainer(),
1714  EndContainer(),
1715 
1716  NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_O_SHARED_ORDER_LIST), SetMinimalSize(12, 12), SetDataTip(SPR_SHARED_ORDERS_ICON, STR_ORDERS_VEH_WITH_SHARED_ORDERS_LIST_TOOLTIP),
1717  EndContainer(),
1718 
1719  /* Second button row. */
1721  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_SKIP), SetMinimalSize(124, 12), SetFill(1, 0),
1722  SetDataTip(STR_ORDERS_SKIP_BUTTON, STR_ORDERS_SKIP_TOOLTIP), SetResize(1, 0),
1724  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_DELETE), SetMinimalSize(124, 12), SetFill(1, 0),
1725  SetDataTip(STR_ORDERS_DELETE_BUTTON, STR_ORDERS_DELETE_TOOLTIP), SetResize(1, 0),
1726  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_STOP_SHARING), SetMinimalSize(124, 12), SetFill(1, 0),
1727  SetDataTip(STR_ORDERS_STOP_SHARING_BUTTON, STR_ORDERS_STOP_SHARING_TOOLTIP), SetResize(1, 0),
1728  EndContainer(),
1729  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_GOTO), SetMinimalSize(124, 12), SetFill(1, 0),
1730  SetDataTip(STR_ORDERS_GO_TO_BUTTON, STR_ORDERS_GO_TO_TOOLTIP), SetResize(1, 0),
1731  NWidget(WWT_RESIZEBOX, COLOUR_GREY),
1732  EndContainer(),
1733 };
1734 
1735 static WindowDesc _orders_desc(__FILE__, __LINE__,
1736  WDP_AUTO, "view_vehicle_orders", 384, 100,
1739  std::begin(_nested_orders_widgets), std::end(_nested_orders_widgets),
1740  &OrdersWindow::hotkeys
1741 );
1742 
1746  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1747  NWidget(WWT_CAPTION, COLOUR_GREY, WID_O_CAPTION), SetDataTip(STR_ORDERS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1748  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_TIMETABLE_VIEW), SetMinimalSize(61, 14), SetDataTip(STR_ORDERS_TIMETABLE_VIEW, STR_ORDERS_TIMETABLE_VIEW_TOOLTIP),
1749  NWidget(WWT_SHADEBOX, COLOUR_GREY),
1750  NWidget(WWT_DEFSIZEBOX, COLOUR_GREY),
1751  NWidget(WWT_STICKYBOX, COLOUR_GREY),
1752  EndContainer(),
1754  NWidget(WWT_PANEL, COLOUR_GREY, WID_O_ORDER_LIST), SetMinimalSize(372, 72), SetDataTip(0x0, STR_ORDERS_LIST_TOOLTIP), SetResize(1, 1), SetScrollbar(WID_O_SCROLLBAR), EndContainer(),
1756  NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_O_SCROLLBAR),
1757  NWidget(WWT_RESIZEBOX, COLOUR_GREY),
1758  EndContainer(),
1759  EndContainer(),
1760 };
1761 
1762 static WindowDesc _other_orders_desc(__FILE__, __LINE__,
1763  WDP_AUTO, "view_vehicle_orders_competitor", 384, 86,
1767  &OrdersWindow::hotkeys
1768 );
1769 
1770 void ShowOrdersWindow(const Vehicle *v)
1771 {
1774  if (BringWindowToFrontById(WC_VEHICLE_ORDERS, v->index) != nullptr) return;
1775 
1776  /* Using a different WindowDescs for _local_company causes problems.
1777  * Due to this we have to close order windows in ChangeWindowOwner/CloseCompanyWindows,
1778  * because we cannot change switch the WindowDescs and keeping the old WindowDesc results
1779  * in crashed due to missing widges.
1780  * TODO Rewrite the order GUI to not use different WindowDescs.
1781  */
1782  if (v->owner != _local_company) {
1783  new OrdersWindow(&_other_orders_desc, v);
1784  } else {
1785  new OrdersWindow(v->IsGroundVehicle() ? &_orders_train_desc : &_orders_desc, v);
1786  }
1787 }
VEH_AIRCRAFT
@ VEH_AIRCRAFT
Aircraft vehicle type.
Definition: vehicle_type.h:27
ES_HANDLED
@ ES_HANDLED
The passed event is handled.
Definition: window_type.h:739
DA_STOP
@ DA_STOP
Go to the depot and stop there.
Definition: order_type.h:163
SetFill
constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
Widget part function for setting filling.
Definition: widget_type.h:1141
BaseStation::facilities
StationFacility facilities
The facilities that this station has.
Definition: base_station_base.h:75
BaseConsist::cur_implicit_order_index
VehicleOrderID cur_implicit_order_index
The index to the current implicit order.
Definition: base_consist.h:32
VehicleOrderID
byte VehicleOrderID
The index of an order within its current vehicle (not pool related)
Definition: order_type.h:15
Order::IsRefit
bool IsRefit() const
Is this order a refit order.
Definition: order_base.h:118
OUFB_UNLOAD
@ OUFB_UNLOAD
Force unloading all cargo onto the platform, possibly not getting paid.
Definition: order_type.h:54
Order::IsType
bool IsType(OrderType type) const
Check whether this order is of the given type.
Definition: order_base.h:71
order_cmd.h
Pool::PoolItem<&_engine_pool >::Get
static Titem * Get(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:335
ScrollMainWindowToTile
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
Definition: viewport.cpp:2509
OrdersWindow::OrderClick_Delete
void OrderClick_Delete()
Handle the click on the delete button.
Definition: order_gui.cpp:715
Vehicle::PreviousShared
Vehicle * PreviousShared() const
Get the previous vehicle of the shared vehicle chain.
Definition: vehicle_base.h:715
Order::SetLoadType
void SetLoadType(OrderLoadFlags load_type)
Set how the consist must be loaded.
Definition: order_base.h:158
HotkeyList
List of hotkeys for a window.
Definition: hotkeys.h:37
CARGO_NO_REFIT
static const CargoID CARGO_NO_REFIT
Do not refit cargo of a vehicle (used in vehicle orders and auto-replace/auto-renew).
Definition: cargo_type.h:78
Dimension
Dimensions (a width and height) of a rectangle in 2D.
Definition: geometry_type.hpp:30
command_func.h
WidgetDimensions::scaled
static WidgetDimensions scaled
Widget dimensions scaled for current zoom level.
Definition: window_gui.h:68
WID_O_SKIP
@ WID_O_SKIP
Skip current order.
Definition: order_widget.h:19
WWT_STICKYBOX
@ WWT_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition: widget_type.h:68
ShowErrorMessage
void ShowErrorMessage(StringID summary_msg, int x, int y, CommandCost cc)
Display an error message in a window.
Definition: error_gui.cpp:367
ODTFB_SERVICE
@ ODTFB_SERVICE
This depot order is because of the servicing limit.
Definition: order_type.h:95
WDF_CONSTRUCTION
@ WDF_CONSTRUCTION
This window is used for construction; close it whenever changing company.
Definition: window_gui.h:197
dropdown_func.h
Rect::Shrink
Rect Shrink(int s) const
Copy and shrink Rect by s pixels.
Definition: geometry_type.hpp:98
MOF_COND_VARIABLE
@ MOF_COND_VARIABLE
A conditional variable changes.
Definition: order_type.h:150
NWidgetCore::SetDataTip
void SetDataTip(uint32_t widget_data, StringID tool_tip)
Set data and tool tip of the nested widget.
Definition: widget.cpp:1094
OrderLoadFlags
OrderLoadFlags
Flags related to the loading order.
Definition: order_type.h:62
OrdersWindow::OrderClick_StopSharing
void OrderClick_StopSharing()
Handle the click on the 'stop sharing' button.
Definition: order_gui.cpp:732
OrdersWindow::order_over
VehicleOrderID order_over
Order over which another order is dragged, INVALID_VEH_ORDER_ID if none.
Definition: order_gui.cpp:548
OUFB_TRANSFER
@ OUFB_TRANSFER
Transfer all cargo onto the platform.
Definition: order_type.h:55
OrdersWindow::DisplayPane
DisplayPane
Displayed planes of the NWID_SELECTION widgets.
Definition: order_gui.cpp:520
FACIL_TRUCK_STOP
@ FACIL_TRUCK_STOP
Station with truck stops.
Definition: station_type.h:53
WWT_CAPTION
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition: widget_type.h:63
Scrollbar::ScrollTowards
void ScrollTowards(int position)
Scroll towards the given position; if the item is visible nothing happens, otherwise it will be shown...
Definition: widget_type.h:821
Station
Station data structure.
Definition: station_base.h:442
Order::GetDestination
DestinationID GetDestination() const
Gets the destination of this order.
Definition: order_base.h:104
OrdersWindow::OrderClick_Skip
void OrderClick_Skip()
Handle the click on the skip button.
Definition: order_gui.cpp:702
Window::SetWidgetDirty
void SetWidgetDirty(WidgetID widget_index) const
Invalidate a widget, i.e.
Definition: window.cpp:552
OrdersWindow::DP_ROW_LOAD
@ DP_ROW_LOAD
Display 'load' / 'unload' / 'refit' buttons in the top row of the ship/airplane order window.
Definition: order_gui.cpp:538
Order::GetConditionValue
uint16_t GetConditionValue() const
Get the value to base the skip on.
Definition: order_base.h:155
StringID
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
DrawOrderString
void DrawOrderString(const Vehicle *v, const Order *order, int order_index, int y, bool selected, bool timetable, int left, int middle, int right)
Draws an order in order or timetable GUI.
Definition: order_gui.cpp:220
OrdersWindow::DP_ROW_CONDITIONAL
@ DP_ROW_CONDITIONAL
Display the conditional order buttons in the top row of the ship/airplane order window.
Definition: order_gui.cpp:540
CloseWindowById
void CloseWindowById(WindowClass cls, WindowNumber number, bool force, int data)
Close a window by its class and window number (if it is open).
Definition: window.cpp:1141
vehiclelist.h
DropDownList
std::vector< std::unique_ptr< const DropDownListItem > > DropDownList
A drop down list is a collection of drop down list items.
Definition: dropdown_type.h:210
WWT_DEFSIZEBOX
@ WWT_DEFSIZEBOX
Default window size box (at top-right of a window, between WWT_SHADEBOX and WWT_STICKYBOX)
Definition: widget_type.h:67
GB
constexpr static debug_inline uint GB(const T x, const uint8_t s, const uint8_t n)
Fetch n bits from x, started at bit s.
Definition: bitmath_func.hpp:32
GUISettings::new_nonstop
bool new_nonstop
ttdpatch compatible nonstop handling
Definition: settings_type.h:137
VehiclesHaveSameOrderList
bool VehiclesHaveSameOrderList(const Vehicle *v1, const Vehicle *v2)
Checks if two vehicles have the same list of orders.
Definition: vehicle.cpp:3214
OrdersWindow::OrderClick_NearestDepot
void OrderClick_NearestDepot()
Handle the click on the service in nearest depot button.
Definition: order_gui.cpp:638
Pool::PoolItem::index
Tindex index
Index of this pool item.
Definition: pool_type.hpp:234
CargoSpec::Get
static CargoSpec * Get(size_t index)
Retrieve cargo details for the given cargo ID.
Definition: cargotype.h:131
NWID_HORIZONTAL
@ NWID_HORIZONTAL
Horizontal container.
Definition: widget_type.h:77
maxdim
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
Definition: geometry_func.cpp:22
Order::Free
void Free()
'Free' the order
Definition: order_cmd.cpp:63
Window::EnableWidget
void EnableWidget(WidgetID widget_index)
Sets a widget to Enabled.
Definition: window_gui.h:400
MOF_STOP_LOCATION
@ MOF_STOP_LOCATION
Passes an OrderStopLocation.
Definition: order_type.h:146
INVALID_TILE
constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition: tile_type.h:95
EndContainer
constexpr NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
Definition: widget_type.h:1151
Order::GetUnloadType
OrderUnloadFlags GetUnloadType() const
How must the consist be unloaded?
Definition: order_base.h:139
WID_O_SEL_TOP_ROW
@ WID_O_SEL_TOP_ROW
NWID_SELECTION widget for the top row of the 'your non-trains' order window.
Definition: order_widget.h:37
_nested_other_orders_widgets
static constexpr NWidgetPart _nested_other_orders_widgets[]
Nested widget definition for competitor orders.
Definition: order_gui.cpp:1744
_ctrl_pressed
bool _ctrl_pressed
Is Ctrl pressed?
Definition: gfx.cpp:37
TextColour
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Definition: gfx_type.h:253
aircraft.h
Scrollbar::SetCapacityFromWidget
void SetCapacityFromWidget(Window *w, WidgetID widget, int padding=0)
Set capacity of visible elements from the size and resize properties of a widget.
Definition: widget.cpp:2334
OrderDepotTypeFlags
OrderDepotTypeFlags
Reasons that could cause us to go to the depot.
Definition: order_type.h:93
OrdersWindow::UpdateAutoRefitState
void UpdateAutoRefitState()
Cache auto-refittability of the vehicle chain.
Definition: order_gui.cpp:771
SpecializedStation< Station, false >::Get
static Station * Get(size_t index)
Gets station with given index.
Definition: base_station_base.h:259
_settings_client
ClientSettings _settings_client
The current settings for this game.
Definition: settings.cpp:54
WC_VEHICLE_TIMETABLE
@ WC_VEHICLE_TIMETABLE
Vehicle timetable; Window numbers:
Definition: window_type.h:224
MP_INDUSTRY
@ MP_INDUSTRY
Part of an industry.
Definition: tile_type.h:56
_nested_orders_widgets
static constexpr NWidgetPart _nested_orders_widgets[]
Nested widget definition for "your" orders (non-train).
Definition: order_gui.cpp:1671
Window::owner
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable.
Definition: window_gui.h:310
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > >
SA_RIGHT
@ SA_RIGHT
Right align the text (must be a single bit).
Definition: gfx_type.h:340
VEH_ROAD
@ VEH_ROAD
Road vehicle type.
Definition: vehicle_type.h:25
WID_O_DEPOT_ACTION
@ WID_O_DEPOT_ACTION
Dropdown to select the depot action (stop, service if needed, unbunch).
Definition: order_widget.h:28
Vehicle
Vehicle data structure.
Definition: vehicle_base.h:240
Industry
Defines the internal data of a functional industry.
Definition: industry.h:68
Vehicle::owner
Owner owner
Which company owns the vehicle?
Definition: vehicle_base.h:304
_station_load_types
static const StringID _station_load_types[][5][5]
Order load types that could be given to station orders.
Definition: order_gui.cpp:44
Scrollbar
Scrollbar data structure.
Definition: widget_type.h:678
Window::GetScrollbar
const Scrollbar * GetScrollbar(WidgetID widnum) const
Return the Scrollbar to a widget index.
Definition: window.cpp:315
StrEmpty
bool StrEmpty(const char *s)
Check if a string buffer is empty.
Definition: string_func.h:56
WID_O_REFIT_DROPDOWN
@ WID_O_REFIT_DROPDOWN
Open refit options.
Definition: order_widget.h:29
BaseStation::owner
Owner owner
The owner of this station.
Definition: base_station_base.h:74
ShowTimetableWindow
void ShowTimetableWindow(const Vehicle *v)
Show the timetable for a given vehicle.
Definition: timetable_gui.cpp:866
MOF_NON_STOP
@ MOF_NON_STOP
Passes an OrderNonStopFlags.
Definition: order_type.h:145
Vehicle::IsGroundVehicle
debug_inline bool IsGroundVehicle() const
Check if the vehicle is a ground vehicle.
Definition: vehicle_base.h:510
OrderStopLocation
OrderStopLocation
Where to stop the trains.
Definition: order_type.h:83
IsRailWaypointTile
bool IsRailWaypointTile(Tile t)
Is this tile a station tile and a rail waypoint?
Definition: station_map.h:123
NWidgetPart
Partial widget specification to allow NWidgets to be written nested.
Definition: widget_type.h:1038
OrdersWindow::OrderClick_Goto
void OrderClick_Goto(OrderPlaceObjectState type)
Handle the click on the goto button.
Definition: order_gui.cpp:586
Scrollbar::GetPosition
uint16_t GetPosition() const
Gets the position of the first visible element in the list.
Definition: widget_type.h:720
ODATFB_UNBUNCH
@ ODATFB_UNBUNCH
Service the vehicle and then unbunch it.
Definition: order_type.h:106
OrdersWindow::OnResize
void OnResize() override
Called after the window got resized.
Definition: order_gui.cpp:1572
Industry::neutral_station
Station * neutral_station
Associated neutral station.
Definition: industry.h:98
OrdersWindow::OrderClick_Nonstop
void OrderClick_Nonstop(int non_stop)
Handle the click on the nonstop button.
Definition: order_gui.cpp:680
_colour_gradient
byte _colour_gradient[COLOUR_END][8]
All 16 colour gradients 8 colours per gradient from darkest (0) to lightest (7)
Definition: palette.cpp:26
textbuf_gui.h
WID_O_NON_STOP
@ WID_O_NON_STOP
Goto non-stop to destination.
Definition: order_widget.h:22
Order::GetType
OrderType GetType() const
Get the type of order of this order.
Definition: order_base.h:77
Order::GetStopLocation
OrderStopLocation GetStopLocation() const
Where must we stop at the platform?
Definition: order_base.h:143
ONSF_NO_STOP_AT_ANY_STATION
@ ONSF_NO_STOP_AT_ANY_STATION
The vehicle will not stop at any stations it passes including the destination.
Definition: order_type.h:76
WindowDesc
High level window description.
Definition: window_gui.h:153
WidgetID
int WidgetID
Widget ID.
Definition: window_type.h:18
GetOrderDistance
uint GetOrderDistance(const Order *prev, const Order *cur, const Vehicle *v, int conditional_depth)
Get the distance between two orders of a vehicle.
Definition: order_cmd.cpp:685
company_cmd.h
ANIMCURSOR_PICKSTATION
static const CursorID ANIMCURSOR_PICKSTATION
716 - 718 - goto-order icon
Definition: sprites.h:1503
ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS
@ ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS
The vehicle will not stop at any stations it passes except the destination.
Definition: order_type.h:74
Order::GetNonStopType
OrderNonStopFlags GetNonStopType() const
At which stations must we stop?
Definition: order_base.h:141
NC_EQUALSIZE
@ NC_EQUALSIZE
Value of the NCB_EQUALSIZE flag.
Definition: widget_type.h:508
Vehicle::Orders
IterateWrapper Orders() const
Returns an iterable ensemble of orders of a vehicle.
Definition: vehicle_base.h:1070
FACIL_BUS_STOP
@ FACIL_BUS_STOP
Station with bus stops.
Definition: station_type.h:54
IsInsideBS
constexpr bool IsInsideBS(const T x, const size_t base, const size_t size)
Checks if a value is between a window started at some base point.
Definition: math_func.hpp:252
OLF_FULL_LOAD_ANY
@ OLF_FULL_LOAD_ANY
Full load a single cargo of the consist.
Definition: order_type.h:65
SetResize
constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
Widget part function for setting the resize step.
Definition: widget_type.h:1086
EF_AUTO_REFIT
@ EF_AUTO_REFIT
Automatic refitting is allowed.
Definition: engine_type.h:173
WDP_AUTO
@ WDP_AUTO
Find a place automatically.
Definition: window_gui.h:141
Order::GetRefitCargo
CargoID GetRefitCargo() const
Get the cargo to to refit to.
Definition: order_base.h:132
timetable.h
WID_O_COND_VARIABLE
@ WID_O_COND_VARIABLE
Choose condition variable.
Definition: order_widget.h:30
OrdersWindow::can_do_autorefit
bool can_do_autorefit
Vehicle chain can be auto-refitted.
Definition: order_gui.cpp:553
Window::resize
ResizeInfo resize
Resize information.
Definition: window_gui.h:308
WID_O_SEL_TOP_LEFT
@ WID_O_SEL_TOP_LEFT
NWID_SELECTION widget for left part of the top row of the 'your train' order window.
Definition: order_widget.h:33
ONSF_STOP_EVERYWHERE
@ ONSF_STOP_EVERYWHERE
The vehicle will stop at any station it passes and the destination.
Definition: order_type.h:73
WC_VEHICLE_VIEW
@ WC_VEHICLE_VIEW
Vehicle view; Window numbers:
Definition: window_type.h:339
tilehighlight_func.h
FS_NORMAL
@ FS_NORMAL
Index of the normal font in the font tables.
Definition: gfx_type.h:203
INVALID_VEH_ORDER_ID
static const VehicleOrderID INVALID_VEH_ORDER_ID
Invalid vehicle order index (sentinel)
Definition: order_type.h:21
Industry::GetByTile
static Industry * GetByTile(TileIndex tile)
Get the industry of the given tile.
Definition: industry.h:207
SetScrollbar
constexpr NWidgetPart SetScrollbar(WidgetID index)
Attach a scrollbar to a widget.
Definition: widget_type.h:1244
SetTimetableParams
void SetTimetableParams(int param1, int param2, TimerGameTick::Ticks ticks)
Set the timetable parameters in the format as described by the setting.
Definition: timetable_gui.cpp:50
_order_conditional_variable
static const OrderConditionVariable _order_conditional_variable[]
Variables for conditional orders; this defines the order of appearance in the dropdown box.
Definition: order_gui.cpp:157
Vehicle::tile
TileIndex tile
Current tile index.
Definition: vehicle_base.h:260
MOF_COND_COMPARATOR
@ MOF_COND_COMPARATOR
A comparator changes.
Definition: order_type.h:151
Order::MakeGoToWaypoint
void MakeGoToWaypoint(StationID destination)
Makes this order a Go To Waypoint order.
Definition: order_cmd.cpp:104
Window::SetDirty
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
Definition: window.cpp:941
TransportType
TransportType
Available types of transport.
Definition: transport_type.h:19
ConvertDisplaySpeedToSpeed
uint ConvertDisplaySpeedToSpeed(uint speed, VehicleType type)
Convert the given display speed to the (internal) speed.
Definition: strings.cpp:884
OrdersWindow::OrderClick_Service
void OrderClick_Service(int i)
Handle the click on the service.
Definition: order_gui.cpp:623
OUF_UNLOAD_IF_POSSIBLE
@ OUF_UNLOAD_IF_POSSIBLE
Unload all cargo that the station accepts.
Definition: order_type.h:53
WID_O_SEL_TOP_MIDDLE
@ WID_O_SEL_TOP_MIDDLE
NWID_SELECTION widget for middle part of the top row of the 'your train' order window.
Definition: order_widget.h:34
ES_NOT_HANDLED
@ ES_NOT_HANDLED
The passed event is not handled.
Definition: window_type.h:740
WWT_PUSHTXTBTN
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
Definition: widget_type.h:110
OrdersWindow::DP_MIDDLE_SERVICE
@ DP_MIDDLE_SERVICE
Display 'service' in the middle button of the top row of the train/rv order window.
Definition: order_gui.cpp:531
WID_O_ORDER_LIST
@ WID_O_ORDER_LIST
Order list panel.
Definition: order_widget.h:17
dropdown_type.h
WID_O_STOP_SHARING
@ WID_O_STOP_SHARING
Stop sharing orders.
Definition: order_widget.h:21
ODATFB_NEAREST_DEPOT
@ ODATFB_NEAREST_DEPOT
Send the vehicle to the nearest depot.
Definition: order_type.h:105
OrdersWindow::OrderClick_FullLoad
void OrderClick_FullLoad(OrderLoadFlags load_type, bool toggle=false)
Handle the click on the full load button.
Definition: order_gui.cpp:605
OrdersWindow::DP_GROUNDVEHICLE_ROW_NORMAL
@ DP_GROUNDVEHICLE_ROW_NORMAL
Display the row for normal/depot orders in the top row of the train/rv order window.
Definition: order_gui.cpp:522
OrdersWindow::OrderGetSel
VehicleOrderID OrderGetSel() const
Return the memorised selected order.
Definition: order_gui.cpp:560
SA_FORCE
@ SA_FORCE
Force the alignment, i.e. don't swap for RTL languages.
Definition: gfx_type.h:350
IsBuoyTile
bool IsBuoyTile(Tile t)
Is tile t a buoy tile?
Definition: station_map.h:317
WC_VEHICLE_DETAILS
@ WC_VEHICLE_DETAILS
Vehicle details; Window numbers:
Definition: window_type.h:200
OCC_IS_TRUE
@ OCC_IS_TRUE
Skip if the variable is true.
Definition: order_type.h:135
WL_INFO
@ WL_INFO
Used for DoCommand-like (and some non-fatal AI GUI) errors/information.
Definition: error.h:24
NWidget
constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx=-1)
Widget part function for starting a new 'real' widget.
Definition: widget_type.h:1258
_local_company
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Definition: company_cmd.cpp:49
industry.h
safeguards.h
ShowQueryString
void ShowQueryString(StringID str, StringID caption, uint maxsize, Window *parent, CharSetFilter afilter, QueryStringFlags flags)
Show a query popup window with a textbox in it.
Definition: misc_gui.cpp:1086
DA_ALWAYS_GO
@ DA_ALWAYS_GO
Always go to the depot.
Definition: order_type.h:161
OrdersWindow::GetOrderFromPt
VehicleOrderID GetOrderFromPt(int y)
Calculate the selected order.
Definition: order_gui.cpp:574
ODTFB_PART_OF_ORDERS
@ ODTFB_PART_OF_ORDERS
This depot order is because of a regular order.
Definition: order_type.h:96
Order::IsGotoOrder
bool IsGotoOrder() const
Is this a 'goto' order with a real destination?
Definition: order_base.h:94
Order::GetConditionComparator
OrderConditionComparator GetConditionComparator() const
What is the comparator to use?
Definition: order_base.h:151
WID_O_REFIT
@ WID_O_REFIT
Select refit.
Definition: order_widget.h:27
TC_NO_SHADE
@ TC_NO_SHADE
Do not add shading to this text colour.
Definition: gfx_type.h:277
_networking
bool _networking
are we in networking mode?
Definition: network.cpp:59
OrdersWindow::DP_MIDDLE_UNLOAD
@ DP_MIDDLE_UNLOAD
Display 'unload' in the middle button of the top row of the train/rv order window.
Definition: order_gui.cpp:530
HT_NONE
@ HT_NONE
default
Definition: tilehighlight_type.h:20
IsDepotTypeTile
bool IsDepotTypeTile(Tile tile, TransportType type)
Check if a tile is a depot and it is a depot of the given type.
Definition: depot_map.h:18
DrawSprite
void DrawSprite(SpriteID img, PaletteID pal, int x, int y, const SubSprite *sub, ZoomLevel zoom)
Draw a sprite, not in a viewport.
Definition: gfx.cpp:1007
OrdersWindow::OrderPlaceObjectState
OrderPlaceObjectState
Under what reason are we using the PlaceObject functionality?
Definition: order_gui.cpp:511
Point
Coordinates of a point in 2D.
Definition: geometry_type.hpp:21
error.h
FACIL_DOCK
@ FACIL_DOCK
Station with a dock.
Definition: station_type.h:56
Order::MakeGoToStation
void MakeGoToStation(StationID destination)
Makes this order a Go To Station order.
Definition: order_cmd.cpp:75
ShowDropDownMenu
void ShowDropDownMenu(Window *w, const StringID *strings, int selected, WidgetID button, uint32_t disabled_mask, uint32_t hidden_mask, uint width)
Show a dropdown menu window near a widget of the parent window.
Definition: dropdown.cpp:386
Order::GetConditionSkipToOrder
VehicleOrderID GetConditionSkipToOrder() const
Get the order to skip to.
Definition: order_base.h:153
stdafx.h
Window::window_number
WindowNumber window_number
Window number within the window class.
Definition: window_gui.h:296
OrdersWindow::DP_RIGHT_EMPTY
@ DP_RIGHT_EMPTY
Display an empty panel in the right button of the top row of the train/rv order window.
Definition: order_gui.cpp:534
VehicleType
VehicleType
Available vehicle types.
Definition: vehicle_type.h:21
GfxFillRect
void GfxFillRect(int left, int top, int right, int bottom, int colour, FillRectMode mode)
Applies a certain FillRectMode-operation to a rectangle [left, right] x [top, bottom] on the screen.
Definition: gfx.cpp:113
SpriteID
uint32_t SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition: gfx_type.h:17
GetDepotIndex
DepotID GetDepotIndex(Tile t)
Get the index of which depot is attached to the tile.
Definition: depot_map.h:52
Vehicle::IsOrderListShared
bool IsOrderListShared() const
Check if we share our orders with another vehicle.
Definition: vehicle_base.h:727
OLF_LOAD_IF_POSSIBLE
@ OLF_LOAD_IF_POSSIBLE
Load as long as there is cargo that fits in the train.
Definition: order_type.h:63
Order::SetStopLocation
void SetStopLocation(OrderStopLocation stop_location)
Set where we must stop at the platform.
Definition: order_base.h:164
viewport_func.h
NWidgetStacked
Stacked widgets, widgets all occupying the same space in the window.
Definition: widget_type.h:484
Window::SetWidgetLoweredState
void SetWidgetLoweredState(WidgetID widget_index, bool lowered_stat)
Sets the lowered/raised status of a widget.
Definition: window_gui.h:441
ODATFB_HALT
@ ODATFB_HALT
Service the vehicle and then halt it.
Definition: order_type.h:104
NWID_VERTICAL
@ NWID_VERTICAL
Vertical container.
Definition: widget_type.h:79
HT_VEHICLE
@ HT_VEHICLE
vehicle is accepted as target as well (bitmask)
Definition: tilehighlight_type.h:27
OrdersWindow::DP_RIGHT_REFIT
@ DP_RIGHT_REFIT
Display 'refit' in the right button of the top row of the train/rv order window.
Definition: order_gui.cpp:535
HT_DRAG
@ HT_DRAG
dragging items in the depot windows
Definition: tilehighlight_type.h:24
VIWD_CONSIST_CHANGED
@ VIWD_CONSIST_CHANGED
Vehicle composition was changed.
Definition: vehicle_gui.h:37
Scrollbar::GetScrolledRowFromWidget
int GetScrolledRowFromWidget(int clickpos, const Window *const w, WidgetID widget, int padding=0, int line_height=-1) const
Compute the row of a scrolled widget that a user clicked in.
Definition: widget.cpp:2260
_nested_orders_train_widgets
static constexpr NWidgetPart _nested_orders_train_widgets[]
Nested widget definition for "your" train orders.
Definition: order_gui.cpp:1594
Window::SetWidgetDisabledState
void SetWidgetDisabledState(WidgetID widget_index, bool disab_stat)
Sets the enabled/disabled status of a widget.
Definition: window_gui.h:381
GetSpriteSize
Dimension GetSpriteSize(SpriteID sprid, Point *offset, ZoomLevel zoom)
Get the size of a sprite.
Definition: gfx.cpp:941
WWT_CLOSEBOX
@ WWT_CLOSEBOX
Close box (at top-left of a window)
Definition: widget_type.h:71
WWT_RESIZEBOX
@ WWT_RESIZEBOX
Resize box (normally at bottom-right of a window)
Definition: widget_type.h:70
OrdersWindow::OnPlaceObjectAbort
void OnPlaceObjectAbort() override
The user cancelled a tile highlight mode that has been set.
Definition: order_gui.cpp:1540
BaseConsist::cur_real_order_index
VehicleOrderID cur_real_order_index
The index to the current real (non-implicit) order.
Definition: base_consist.h:31
WID_O_SEL_TOP_ROW_GROUNDVEHICLE
@ WID_O_SEL_TOP_ROW_GROUNDVEHICLE
NWID_SELECTION widget for the top row of the 'your train' order window.
Definition: order_widget.h:36
ONSF_NO_STOP_AT_DESTINATION_STATION
@ ONSF_NO_STOP_AT_DESTINATION_STATION
The vehicle will stop at any station it passes except the destination.
Definition: order_type.h:75
CARGO_AUTO_REFIT
static const CargoID CARGO_AUTO_REFIT
Automatically choose cargo type when doing auto refitting.
Definition: cargo_type.h:77
Order::GetWaitTime
uint16_t GetWaitTime() const
Get the time in ticks a vehicle will probably wait at the destination (timetabled or not).
Definition: order_base.h:193
string_func.h
Vehicle::FirstShared
Vehicle * FirstShared() const
Get the first vehicle of this vehicle chain.
Definition: vehicle_base.h:721
WWT_PUSHIMGBTN
@ WWT_PUSHIMGBTN
Normal push-button (no toggle button) with image caption.
Definition: widget_type.h:111
OrderUnloadFlags
OrderUnloadFlags
Flags related to the unloading order.
Definition: order_type.h:52
GUISettings::quick_goto
bool quick_goto
Allow quick access to 'goto button' in vehicle orders window.
Definition: settings_type.h:179
vehicle_func.h
OrdersWindow::OnHotkey
EventState OnHotkey(int hotkey) override
A hotkey has been pressed.
Definition: order_gui.cpp:1454
station_base.h
Window::CreateNestedTree
void CreateNestedTree()
Perform the first part of the initialization of a nested widget tree.
Definition: window.cpp:1724
strings_func.h
NWID_VSCROLLBAR
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition: widget_type.h:86
ShowDropDownList
void ShowDropDownList(Window *w, DropDownList &&list, int selected, WidgetID button, uint width, bool instant_close)
Show a drop down list.
Definition: dropdown.cpp:349
OCV_MAX_SPEED
@ OCV_MAX_SPEED
Skip based on the maximum speed.
Definition: order_type.h:116
OSL_PLATFORM_FAR_END
@ OSL_PLATFORM_FAR_END
Stop at the far end of the platform.
Definition: order_type.h:86
MOF_UNLOAD
@ MOF_UNLOAD
Passes an OrderUnloadType.
Definition: order_type.h:147
WID_O_SCROLLBAR
@ WID_O_SCROLLBAR
Order list scrollbar.
Definition: order_widget.h:18
OCV_RELIABILITY
@ OCV_RELIABILITY
Skip based on the reliability.
Definition: order_type.h:115
FACIL_TRAIN
@ FACIL_TRAIN
Station with train station.
Definition: station_type.h:52
Scrollbar::IsVisible
bool IsVisible(uint16_t item) const
Checks whether given current item is visible in the list.
Definition: widget_type.h:730
Window::DisableWidget
void DisableWidget(WidgetID widget_index)
Sets a widget to disabled.
Definition: window_gui.h:391
Window::CloseChildWindows
void CloseChildWindows(WindowClass wc=WC_INVALID) const
Close all children a window might have in a head-recursive manner.
Definition: window.cpp:1036
Vehicle::GetFirstOrder
Order * GetFirstOrder() const
Get the first order of the vehicles order list.
Definition: vehicle_base.h:700
ConvertSpeedToDisplaySpeed
uint ConvertSpeedToDisplaySpeed(uint speed, VehicleType type)
Convert the given (internal) speed to the display speed.
Definition: strings.cpp:871
SetDParamMaxValue
void SetDParamMaxValue(size_t n, uint64_t max_value, uint min_count, FontSize size)
Set DParam n to some number that is suitable for string size computations.
Definition: strings.cpp:127
SpecializedVehicle< Aircraft, VEH_AIRCRAFT >::From
static Aircraft * From(Vehicle *v)
Converts a Vehicle to SpecializedVehicle with type checking.
Definition: vehicle_base.h:1201
WID_O_UNLOAD
@ WID_O_UNLOAD
Select unload.
Definition: order_widget.h:26
VIWD_AUTOREPLACE
@ VIWD_AUTOREPLACE
Autoreplace replaced the vehicle.
Definition: vehicle_gui.h:38
GetOrderCmdFromTile
static Order GetOrderCmdFromTile(const Vehicle *v, TileIndex tile)
Get the order command a vehicle can do in a given tile.
Definition: order_gui.cpp:385
SetDParam
void SetDParam(size_t n, uint64_t v)
Set a string parameter v at index n in the global string parameter array.
Definition: strings.cpp:104
WID_O_GOTO
@ WID_O_GOTO
Goto destination.
Definition: order_widget.h:24
GetStationIndex
StationID GetStationIndex(Tile t)
Get StationID from a tile.
Definition: station_map.h:28
OCV_REMAINING_LIFETIME
@ OCV_REMAINING_LIFETIME
Skip based on the remaining lifetime.
Definition: order_type.h:120
Aircraft::GetRange
uint16_t GetRange() const
Get the range of this aircraft.
Definition: aircraft.h:134
geometry_func.hpp
OUFB_NO_UNLOAD
@ OUFB_NO_UNLOAD
Totally no unloading will be done.
Definition: order_type.h:56
order_widget.h
WWT_PANEL
@ WWT_PANEL
Simple depressed panel.
Definition: widget_type.h:52
Vehicle::NextShared
Vehicle * NextShared() const
Get the next vehicle of the shared vehicle chain.
Definition: vehicle_base.h:709
OWNER_NONE
@ OWNER_NONE
The tile has no ownership.
Definition: company_type.h:25
NWidgetStacked::SetDisplayedPlane
bool SetDisplayedPlane(int plane)
Select which plane to show (for NWID_SELECTION only).
Definition: widget.cpp:1299
MOF_COND_VALUE
@ MOF_COND_VALUE
The value to set the condition to.
Definition: order_type.h:152
OrdersWindow::DP_ROW_DEPOT
@ DP_ROW_DEPOT
Display 'refit' / 'service' buttons in the top row of the ship/airplane order window.
Definition: order_gui.cpp:539
MP_STATION
@ MP_STATION
A tile of a station.
Definition: tile_type.h:53
Scrollbar::SetCount
void SetCount(size_t num)
Sets the number of elements in the list.
Definition: widget_type.h:760
SpecializedStation< Station, false >::GetByTile
static Station * GetByTile(TileIndex tile)
Get the station belonging to a specific tile.
Definition: base_station_base.h:278
waypoint_base.h
EventState
EventState
State of handling an event.
Definition: window_type.h:738
HT_RECT
@ HT_RECT
rectangle (stations, depots, ...)
Definition: tilehighlight_type.h:21
GUISettings::stop_location
uint8_t stop_location
what is the default stop location of trains?
Definition: settings_type.h:138
WID_O_COND_VALUE
@ WID_O_COND_VALUE
Choose condition value.
Definition: order_widget.h:32
OrdersWindow
Order window code for all vehicles.
Definition: order_gui.cpp:508
Order::SetDepotOrderType
void SetDepotOrderType(OrderDepotTypeFlags depot_order_type)
Set the cause to go to the depot.
Definition: order_base.h:166
CargoSpec::name
StringID name
Name of this type of cargo.
Definition: cargotype.h:85
Order::IsAutoRefit
bool IsAutoRefit() const
Is this order a auto-refit order.
Definition: order_base.h:125
Window::FinishInitNested
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition: window.cpp:1734
depot_map.h
OrdersWindow::OnPaint
void OnPaint() override
The window must be repainted.
Definition: order_gui.cpp:1080
Order::SetDepotActionType
void SetDepotActionType(OrderDepotActionFlags depot_service_type)
Set what we are going to do in the depot.
Definition: order_base.h:168
company_func.h
OCV_LOAD_PERCENTAGE
@ OCV_LOAD_PERCENTAGE
Skip based on the amount of load.
Definition: order_type.h:114
Window::top
int top
y position of top edge of the window
Definition: window_gui.h:304
WID_O_FULL_LOAD
@ WID_O_FULL_LOAD
Select full load.
Definition: order_widget.h:25
Order::MakeConditional
void MakeConditional(VehicleOrderID order)
Makes this order an conditional order.
Definition: order_cmd.cpp:143
Window::RaiseWidget
void RaiseWidget(WidgetID widget_index)
Marks a widget as raised.
Definition: window_gui.h:469
HighLightStyle
HighLightStyle
Highlighting draw styles.
Definition: tilehighlight_type.h:19
Order::GetDepotOrderType
OrderDepotTypeFlags GetDepotOrderType() const
What caused us going to the depot?
Definition: order_base.h:145
network.h
WID_O_COND_COMPARATOR
@ WID_O_COND_COMPARATOR
Choose condition type.
Definition: order_widget.h:31
CommandHelper
Definition: command_func.h:93
Order::GetConditionVariable
OrderConditionVariable GetConditionVariable() const
What variable do we have to compare?
Definition: order_base.h:149
GetCharacterHeight
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Definition: fontcache.cpp:78
lengthof
#define lengthof(x)
Return the length of an fixed size array.
Definition: stdafx.h:300
WID_O_CAPTION
@ WID_O_CAPTION
Caption of the window.
Definition: order_widget.h:15
SetMinimalSize
constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
Definition: widget_type.h:1097
WID_O_SEL_TOP_RIGHT
@ WID_O_SEL_TOP_RIGHT
NWID_SELECTION widget for right part of the top row of the 'your train' order window.
Definition: order_widget.h:35
OrdersWindow::OnVehicleSelect
bool OnVehicleSelect(VehicleList::const_iterator begin, VehicleList::const_iterator end) override
Clones an order list from a vehicle list.
Definition: order_gui.cpp:1512
OrderConditionVariable
OrderConditionVariable
Variables (of a vehicle) to 'cause' skipping on.
Definition: order_type.h:113
DrawString
int DrawString(int left, int right, int top, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly truncated to make it fit in its allocated space.
Definition: gfx.cpp:658
SetObjectToPlaceWnd
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...
Definition: viewport.cpp:3420
OrdersWindow::OnInvalidateData
void OnInvalidateData([[maybe_unused]] int data=0, [[maybe_unused]] bool gui_scope=true) override
Some data on this window has become invalid.
Definition: order_gui.cpp:849
OrdersWindow::can_do_refit
bool can_do_refit
Vehicle chain can be refitted in depot.
Definition: order_gui.cpp:552
Order::GetLocation
TileIndex GetLocation(const Vehicle *v, bool airport=false) const
Returns a tile somewhat representing the order destination (not suitable for pathfinding).
Definition: order_cmd.cpp:658
SPR_CURSOR_MOUSE
static const CursorID SPR_CURSOR_MOUSE
Cursor sprite numbers.
Definition: sprites.h:1382
WID_O_SHARED_ORDER_LIST
@ WID_O_SHARED_ORDER_LIST
Open list of shared vehicles.
Definition: order_widget.h:39
WID_O_TIMETABLE_VIEW
@ WID_O_TIMETABLE_VIEW
Toggle timetable view.
Definition: order_widget.h:16
IsEngineRefittable
bool IsEngineRefittable(EngineID engine)
Check if an engine is refittable.
Definition: engine.cpp:1259
OCV_REQUIRES_SERVICE
@ OCV_REQUIRES_SERVICE
Skip when the vehicle requires service.
Definition: order_type.h:118
Window
Data structure for an opened window.
Definition: window_gui.h:267
IsTileType
static debug_inline bool IsTileType(Tile tile, TileType type)
Checks if a tile is a given tiletype.
Definition: tile_map.h:150
VEH_TRAIN
@ VEH_TRAIN
Train vehicle type.
Definition: vehicle_type.h:24
Vehicle::GetOrder
Order * GetOrder(int index) const
Returns order 'index' of a vehicle or nullptr when it doesn't exists.
Definition: vehicle_base.h:908
OrdersWindow::DP_LEFT_REFIT
@ DP_LEFT_REFIT
Display 'refit' in the left button of the top row of the train/rv order window.
Definition: order_gui.cpp:527
BaseVehicle::type
VehicleType type
Type of vehicle.
Definition: vehicle_type.h:51
OrdersWindow::OrderClick_Refit
void OrderClick_Refit(int i, bool auto_refit)
Handle the click on the refit button.
Definition: order_gui.cpp:756
Window::DrawWidgets
void DrawWidgets() const
Paint all widgets of a window.
Definition: widget.cpp:731
Clamp
constexpr T Clamp(const T a, const T min, const T max)
Clamp a value between an interval.
Definition: math_func.hpp:79
AllEqual
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 ...
Definition: window_gui.h:933
FACIL_AIRPORT
@ FACIL_AIRPORT
Station with an airport.
Definition: station_type.h:55
OrdersWindow::DP_LEFT_LOAD
@ DP_LEFT_LOAD
Display 'load' in the left button of the top row of the train/rv order window.
Definition: order_gui.cpp:526
VIWD_MODIFY_ORDERS
@ VIWD_MODIFY_ORDERS
Other order modifications.
Definition: vehicle_gui.h:36
SetDataTip
constexpr NWidgetPart SetDataTip(uint32_t data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1162
CanVehicleUseStation
bool CanVehicleUseStation(EngineID engine_type, const Station *st)
Can this station be used by the given engine type?
Definition: vehicle.cpp:2983
NWID_SELECTION
@ NWID_SELECTION
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition: widget_type.h:82
NWidgetCore
Base class for a 'real' widget.
Definition: widget_type.h:356
VEH_SHIP
@ VEH_SHIP
Ship vehicle type.
Definition: vehicle_type.h:26
OCV_MAX_RELIABILITY
@ OCV_MAX_RELIABILITY
Skip based on the maximum reliability.
Definition: order_type.h:121
Rect
Specification of a rectangle with absolute coordinates of all edges.
Definition: geometry_type.hpp:75
OrdersWindow::DP_GROUNDVEHICLE_ROW_CONDITIONAL
@ DP_GROUNDVEHICLE_ROW_CONDITIONAL
Display the row for conditional orders in the top row of the train/rv order window.
Definition: order_gui.cpp:523
CursorVars::pos
Point pos
logical mouse position
Definition: gfx_type.h:117
BringWindowToFrontById
Window * BringWindowToFrontById(WindowClass cls, WindowNumber number)
Find a window and make it the relative top-window on the screen.
Definition: window.cpp:1224
MOF_LOAD
@ MOF_LOAD
Passes an OrderLoadType.
Definition: order_type.h:148
OCC_IS_FALSE
@ OCC_IS_FALSE
Skip if the variable is false.
Definition: order_type.h:136
Vehicle::GetNumOrders
VehicleOrderID GetNumOrders() const
Get the number of orders this vehicle has.
Definition: vehicle_base.h:733
VIWD_REMOVE_ALL_ORDERS
@ VIWD_REMOVE_ALL_ORDERS
Removed / replaced all orders (after deleting / sharing).
Definition: vehicle_gui.h:35
IsTileOwner
bool IsTileOwner(Tile tile, Owner owner)
Checks if a tile belongs to the given owner.
Definition: tile_map.h:214
Order::GetDepotActionType
OrderDepotActionFlags GetDepotActionType() const
What are we going to do when in the depot.
Definition: order_base.h:147
Order::MakeGoToDepot
void MakeGoToDepot(DepotID destination, OrderDepotTypeFlags order, OrderNonStopFlags non_stop_type=ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS, OrderDepotActionFlags action=ODATF_SERVICE_ONLY, CargoID cargo=CARGO_NO_REFIT)
Makes this order a Go To Depot order.
Definition: order_cmd.cpp:90
ShowVehicleRefitWindow
void ShowVehicleRefitWindow(const Vehicle *v, VehicleOrderID order, Window *parent, bool auto_refit)
Show the refit window for a vehicle.
Definition: vehicle_gui.cpp:1288
OrdersWindow::OrderClick_Unload
void OrderClick_Unload(OrderUnloadFlags unload_type, bool toggle=false)
Handle the click on the unload button.
Definition: order_gui.cpp:655
Order::next
Order * next
Pointer to next order. If nullptr, end of list.
Definition: order_base.h:59
WidgetDimensions::hsep_normal
int hsep_normal
Normal horizontal spacing.
Definition: window_gui.h:63
MOF_DEPOT_ACTION
@ MOF_DEPOT_ACTION
Selects the OrderDepotAction.
Definition: order_type.h:149
Order
Definition: order_base.h:36
ResetObjectToPlace
void ResetObjectToPlace()
Reset the cursor and mouse mode handling back to default (normal cursor, only clicking in windows).
Definition: viewport.cpp:3483
DA_SERVICE
@ DA_SERVICE
Service only if needed.
Definition: order_type.h:162
TD_RTL
@ TD_RTL
Text is written right-to-left by default.
Definition: strings_type.h:24
_current_text_dir
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition: strings.cpp:56
CS_NUMERAL
@ CS_NUMERAL
Only numeric ones.
Definition: string_type.h:26
OCV_AGE
@ OCV_AGE
Skip based on the age.
Definition: order_type.h:117
Order::IsWaitTimetabled
bool IsWaitTimetabled() const
Does this order have an explicit wait time set?
Definition: order_base.h:184
Order::SetNonStopType
void SetNonStopType(OrderNonStopFlags non_stop_type)
Set whether we must stop at stations or not.
Definition: order_base.h:162
GetStringBoundingBox
Dimension GetStringBoundingBox(std::string_view str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition: gfx.cpp:852
OrderConditionComparator
OrderConditionComparator
Comparator for the skip reasoning.
Definition: order_type.h:128
INVALID_STRING_ID
static const StringID INVALID_STRING_ID
Constant representing an invalid string (16bit in case it is used in savegames)
Definition: strings_type.h:17
WC_VEHICLE_ORDERS
@ WC_VEHICLE_ORDERS
Vehicle orders; Window numbers:
Definition: window_type.h:212
ClientSettings::gui
GUISettings gui
settings related to the GUI
Definition: settings_type.h:636
NWID_BUTTON_DROPDOWN
@ NWID_BUTTON_DROPDOWN
Button with a drop-down.
Definition: widget_type.h:84
OCV_UNCONDITIONALLY
@ OCV_UNCONDITIONALLY
Always skip.
Definition: order_type.h:119
OLFB_NO_LOAD
@ OLFB_NO_LOAD
Do not load anything.
Definition: order_type.h:66
WWT_DROPDOWN
@ WWT_DROPDOWN
Drop down list.
Definition: widget_type.h:72
WID_O_DELETE
@ WID_O_DELETE
Delete selected order.
Definition: order_widget.h:20
Order::GetLoadType
OrderLoadFlags GetLoadType() const
How must the consist be loaded?
Definition: order_base.h:137
engine_func.h
Hotkey
All data for a single hotkey.
Definition: hotkeys.h:21
hotkeys.h
roadveh.h
OrdersWindow::DP_BOTTOM_MIDDLE_STOP_SHARING
@ DP_BOTTOM_MIDDLE_STOP_SHARING
Display 'stop sharing' in the middle button of the bottom row of the vehicle order window.
Definition: order_gui.cpp:544
WID_O_SEL_BOTTOM_MIDDLE
@ WID_O_SEL_BOTTOM_MIDDLE
NWID_SELECTION widget for the middle part of the bottom row of the 'your train' order window.
Definition: order_widget.h:38
WWT_SHADEBOX
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition: widget_type.h:66
OrdersWindow::vehicle
const Vehicle * vehicle
Vehicle owning the orders being displayed and manipulated.
Definition: order_gui.cpp:550
OrdersWindow::DP_BOTTOM_MIDDLE_DELETE
@ DP_BOTTOM_MIDDLE_DELETE
Display 'delete' in the middle button of the bottom row of the vehicle order window.
Definition: order_gui.cpp:543
HasBit
constexpr debug_inline bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103