OpenTTD Source  14.0-beta1
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  this->FinishInitNested(v->index);
789 
790  this->selected_order = -1;
791  this->order_over = INVALID_VEH_ORDER_ID;
792  this->goto_type = OPOS_NONE;
793  this->owner = v->owner;
794 
795  this->UpdateAutoRefitState();
796 
798  /* If there are less than 2 station, make Go To active. */
799  int station_orders = 0;
800  for (const Order *order : v->Orders()) {
801  if (order->IsType(OT_GOTO_STATION)) station_orders++;
802  }
803 
804  if (station_orders < 2) this->OrderClick_Goto(OPOS_GOTO);
805  }
807  }
808 
809  void UpdateWidgetSize(WidgetID widget, Dimension *size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension *fill, [[maybe_unused]] Dimension *resize) override
810  {
811  switch (widget) {
812  case WID_O_ORDER_LIST:
814  size->height = 6 * resize->height + padding.height;
815  break;
816 
817  case WID_O_COND_VARIABLE: {
818  Dimension d = {0, 0};
819  for (uint i = 0; i < lengthof(_order_conditional_variable); i++) {
820  d = maxdim(d, GetStringBoundingBox(STR_ORDER_CONDITIONAL_LOAD_PERCENTAGE + _order_conditional_variable[i]));
821  }
822  d.width += padding.width;
823  d.height += padding.height;
824  *size = maxdim(*size, d);
825  break;
826  }
827 
828  case WID_O_COND_COMPARATOR: {
829  Dimension d = {0, 0};
830  for (int i = 0; _order_conditional_condition[i] != INVALID_STRING_ID; i++) {
831  d = maxdim(d, GetStringBoundingBox(_order_conditional_condition[i]));
832  }
833  d.width += padding.width;
834  d.height += padding.height;
835  *size = maxdim(*size, d);
836  break;
837  }
838  }
839  }
840 
846  void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
847  {
850 
851  switch (data) {
852  case VIWD_AUTOREPLACE:
853  /* Autoreplace replaced the vehicle */
854  this->vehicle = Vehicle::Get(this->window_number);
855  [[fallthrough]];
856 
858  /* Vehicle composition was changed. */
859  this->UpdateAutoRefitState();
860  break;
861 
863  /* Removed / replaced all orders (after deleting / sharing) */
864  if (this->selected_order == -1) break;
865 
866  this->CloseChildWindows();
867  this->selected_order = -1;
868  break;
869 
870  case VIWD_MODIFY_ORDERS:
871  /* Some other order changes */
872  break;
873 
874  default:
875  if (data < 0) break;
876 
877  if (gui_scope) break; // only do this once; from command scope
878  from = GB(data, 0, 8);
879  to = GB(data, 8, 8);
880  /* Moving an order. If one of these is INVALID_VEH_ORDER_ID, then
881  * the order is being created / removed */
882  if (this->selected_order == -1) break;
883 
884  if (from == to) break; // no need to change anything
885 
886  if (from != this->selected_order) {
887  /* Moving from preceding order? */
888  this->selected_order -= (int)(from <= this->selected_order);
889  /* Moving to preceding order? */
890  this->selected_order += (int)(to <= this->selected_order);
891  break;
892  }
893 
894  /* Now we are modifying the selected order */
895  if (to == INVALID_VEH_ORDER_ID) {
896  /* Deleting selected order */
897  this->CloseChildWindows();
898  this->selected_order = -1;
899  break;
900  }
901 
902  /* Moving selected order */
903  this->selected_order = to;
904  break;
905  }
906 
907  this->vscroll->SetCount(this->vehicle->GetNumOrders() + 1);
908  if (gui_scope) this->UpdateButtonState();
909 
910  /* Scroll to the new order. */
911  if (from == INVALID_VEH_ORDER_ID && to != INVALID_VEH_ORDER_ID && !this->vscroll->IsVisible(to)) {
912  this->vscroll->ScrollTowards(to);
913  }
914  }
915 
916  void UpdateButtonState()
917  {
918  if (this->vehicle->owner != _local_company) return; // No buttons are displayed with competitor order windows.
919 
920  bool shared_orders = this->vehicle->IsOrderListShared();
921  VehicleOrderID sel = this->OrderGetSel();
922  const Order *order = this->vehicle->GetOrder(sel);
923 
924  /* Second row. */
925  /* skip */
926  this->SetWidgetDisabledState(WID_O_SKIP, this->vehicle->GetNumOrders() <= 1);
927 
928  /* delete / stop sharing */
929  NWidgetStacked *delete_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_BOTTOM_MIDDLE);
930  if (shared_orders && this->selected_order == this->vehicle->GetNumOrders()) {
931  /* The 'End of Shared Orders' order is selected, show the 'stop sharing' button. */
933  } else {
934  /* The 'End of Shared Orders' order isn't selected, show the 'delete' button. */
937  (uint)this->vehicle->GetNumOrders() + ((shared_orders || this->vehicle->GetNumOrders() != 0) ? 1 : 0) <= (uint)this->selected_order);
938 
939  /* Set the tooltip of the 'delete' button depending on whether the
940  * 'End of Orders' order or a regular order is selected. */
941  NWidgetCore *nwi = this->GetWidget<NWidgetCore>(WID_O_DELETE);
942  if (this->selected_order == this->vehicle->GetNumOrders()) {
943  nwi->SetDataTip(STR_ORDERS_DELETE_BUTTON, STR_ORDERS_DELETE_ALL_TOOLTIP);
944  } else {
945  nwi->SetDataTip(STR_ORDERS_DELETE_BUTTON, STR_ORDERS_DELETE_TOOLTIP);
946  }
947  }
948 
949  /* First row. */
951  this->RaiseWidget(WID_O_UNLOAD);
952 
953  /* Selection widgets. */
954  /* Train or road vehicle. */
955  NWidgetStacked *train_row_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_ROW_GROUNDVEHICLE);
956  NWidgetStacked *left_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_LEFT);
957  NWidgetStacked *middle_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_MIDDLE);
958  NWidgetStacked *right_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_RIGHT);
959  /* Ship or airplane. */
960  NWidgetStacked *row_sel = this->GetWidget<NWidgetStacked>(WID_O_SEL_TOP_ROW);
961  assert(row_sel != nullptr || (train_row_sel != nullptr && left_sel != nullptr && middle_sel != nullptr && right_sel != nullptr));
962 
963 
964  if (order == nullptr) {
965  if (row_sel != nullptr) {
966  row_sel->SetDisplayedPlane(DP_ROW_LOAD);
967  } else {
969  left_sel->SetDisplayedPlane(DP_LEFT_LOAD);
970  middle_sel->SetDisplayedPlane(DP_MIDDLE_UNLOAD);
971  right_sel->SetDisplayedPlane(DP_RIGHT_EMPTY);
974  }
978  } else {
981 
982  switch (order->GetType()) {
983  case OT_GOTO_STATION:
984  if (row_sel != nullptr) {
985  row_sel->SetDisplayedPlane(DP_ROW_LOAD);
986  } else {
988  left_sel->SetDisplayedPlane(DP_LEFT_LOAD);
989  middle_sel->SetDisplayedPlane(DP_MIDDLE_UNLOAD);
990  right_sel->SetDisplayedPlane(DP_RIGHT_REFIT);
993  }
996 
997  /* Can only do refitting when stopping at the destination and loading cargo.
998  * Also enable the button if a refit is already set to allow clearing it. */
1001  ((!this->can_do_refit || !this->can_do_autorefit) && !order->IsRefit()));
1002 
1003  break;
1004 
1005  case OT_GOTO_WAYPOINT:
1006  if (row_sel != nullptr) {
1007  row_sel->SetDisplayedPlane(DP_ROW_LOAD);
1008  } else {
1010  left_sel->SetDisplayedPlane(DP_LEFT_LOAD);
1011  middle_sel->SetDisplayedPlane(DP_MIDDLE_UNLOAD);
1012  right_sel->SetDisplayedPlane(DP_RIGHT_EMPTY);
1015  }
1017  this->DisableWidget(WID_O_UNLOAD);
1019  break;
1020 
1021  case OT_GOTO_DEPOT:
1022  if (row_sel != nullptr) {
1023  row_sel->SetDisplayedPlane(DP_ROW_DEPOT);
1024  } else {
1026  left_sel->SetDisplayedPlane(DP_LEFT_REFIT);
1027  middle_sel->SetDisplayedPlane(DP_MIDDLE_SERVICE);
1028  right_sel->SetDisplayedPlane(DP_RIGHT_EMPTY);
1031  }
1032  /* Disable refit button if the order is no 'always go' order.
1033  * However, keep the service button enabled for refit-orders to allow clearing refits (without knowing about ctrl). */
1035  (order->GetDepotOrderType() & ODTFB_SERVICE) || (order->GetDepotActionType() & ODATFB_HALT) ||
1036  (!this->can_do_refit && !order->IsRefit()));
1037  break;
1038 
1039  case OT_CONDITIONAL: {
1040  if (row_sel != nullptr) {
1042  } else {
1044  }
1046  /* Set the strings for the dropdown boxes. */
1047  this->GetWidget<NWidgetCore>(WID_O_COND_VARIABLE)->widget_data = STR_ORDER_CONDITIONAL_LOAD_PERCENTAGE + ocv;
1048  this->GetWidget<NWidgetCore>(WID_O_COND_COMPARATOR)->widget_data = _order_conditional_condition[order->GetConditionComparator()];
1051  break;
1052  }
1053 
1054  default: // every other order
1055  if (row_sel != nullptr) {
1056  row_sel->SetDisplayedPlane(DP_ROW_LOAD);
1057  } else {
1059  left_sel->SetDisplayedPlane(DP_LEFT_LOAD);
1060  middle_sel->SetDisplayedPlane(DP_MIDDLE_UNLOAD);
1061  right_sel->SetDisplayedPlane(DP_RIGHT_EMPTY);
1063  }
1065  this->DisableWidget(WID_O_UNLOAD);
1067  break;
1068  }
1069  }
1070 
1071  /* Disable list of vehicles with the same shared orders if there is no list */
1072  this->SetWidgetDisabledState(WID_O_SHARED_ORDER_LIST, !shared_orders);
1073 
1074  this->SetDirty();
1075  }
1076 
1077  void OnPaint() override
1078  {
1079  if (this->vehicle->owner != _local_company) {
1080  this->selected_order = -1; // Disable selection any selected row at a competitor order window.
1081  } else {
1082  this->SetWidgetLoweredState(WID_O_GOTO, this->goto_type != OPOS_NONE);
1083  }
1084  this->DrawWidgets();
1085  }
1086 
1087  void DrawWidget(const Rect &r, WidgetID widget) const override
1088  {
1089  if (widget != WID_O_ORDER_LIST) return;
1090 
1091  Rect ir = r.Shrink(WidgetDimensions::scaled.frametext, WidgetDimensions::scaled.framerect);
1092  bool rtl = _current_text_dir == TD_RTL;
1093  SetDParamMaxValue(0, this->vehicle->GetNumOrders(), 2);
1094  int index_column_width = GetStringBoundingBox(STR_ORDER_INDEX).width + 2 * GetSpriteSize(rtl ? SPR_ARROW_RIGHT : SPR_ARROW_LEFT).width + WidgetDimensions::scaled.hsep_normal;
1095  int middle = rtl ? ir.right - index_column_width : ir.left + index_column_width;
1096 
1097  int y = ir.top;
1098  int line_height = this->GetWidget<NWidgetBase>(WID_O_ORDER_LIST)->resize_y;
1099 
1100  int i = this->vscroll->GetPosition();
1101  const Order *order = this->vehicle->GetOrder(i);
1102  /* First draw the highlighting underground if it exists. */
1103  if (this->order_over != INVALID_VEH_ORDER_ID) {
1104  while (order != nullptr) {
1105  /* Don't draw anything if it extends past the end of the window. */
1106  if (!this->vscroll->IsVisible(i)) break;
1107 
1108  if (i != this->selected_order && i == this->order_over) {
1109  /* Highlight dragged order destination. */
1110  int top = (this->order_over < this->selected_order ? y : y + line_height) - WidgetDimensions::scaled.framerect.top;
1111  int bottom = std::min(top + 2, ir.bottom);
1112  top = std::max(top - 3, ir.top);
1113  GfxFillRect(ir.left, top, ir.right, bottom, _colour_gradient[COLOUR_GREY][7]);
1114  break;
1115  }
1116  y += line_height;
1117 
1118  i++;
1119  order = order->next;
1120  }
1121 
1122  /* Reset counters for drawing the orders. */
1123  y = ir.top;
1124  i = this->vscroll->GetPosition();
1125  order = this->vehicle->GetOrder(i);
1126  }
1127 
1128  /* Draw the orders. */
1129  while (order != nullptr) {
1130  /* Don't draw anything if it extends past the end of the window. */
1131  if (!this->vscroll->IsVisible(i)) break;
1132 
1133  DrawOrderString(this->vehicle, order, i, y, i == this->selected_order, false, ir.left, middle, ir.right);
1134  y += line_height;
1135 
1136  i++;
1137  order = order->next;
1138  }
1139 
1140  if (this->vscroll->IsVisible(i)) {
1141  StringID str = this->vehicle->IsOrderListShared() ? STR_ORDERS_END_OF_SHARED_ORDERS : STR_ORDERS_END_OF_ORDERS;
1142  DrawString(rtl ? ir.left : middle, rtl ? middle : ir.right, y, str, (i == this->selected_order) ? TC_WHITE : TC_BLACK);
1143  }
1144  }
1145 
1146  void SetStringParameters(WidgetID widget) const override
1147  {
1148  switch (widget) {
1149  case WID_O_COND_VALUE: {
1150  VehicleOrderID sel = this->OrderGetSel();
1151  const Order *order = this->vehicle->GetOrder(sel);
1152 
1153  if (order != nullptr && order->IsType(OT_CONDITIONAL)) {
1154  uint value = order->GetConditionValue();
1155  if (order->GetConditionVariable() == OCV_MAX_SPEED) value = ConvertSpeedToDisplaySpeed(value, this->vehicle->type);
1156  SetDParam(0, value);
1157  }
1158  break;
1159  }
1160 
1161  case WID_O_CAPTION:
1162  SetDParam(0, this->vehicle->index);
1163  break;
1164 
1165  case WID_O_DEPOT_ACTION: {
1166  VehicleOrderID sel = this->OrderGetSel();
1167  const Order *order = this->vehicle->GetOrder(sel);
1168  if (order == nullptr || !order->IsType(OT_GOTO_DEPOT)) break;
1169 
1170  /* Select the current action selected in the dropdown. The flags don't match the dropdown so we can't just use an index. */
1171  if (order->GetDepotOrderType() & ODTFB_SERVICE) {
1172  SetDParam(0, STR_ORDER_DROP_SERVICE_DEPOT);
1173  } else if (order->GetDepotActionType() & ODATFB_HALT) {
1174  SetDParam(0, STR_ORDER_DROP_HALT_DEPOT);
1175  } else if (order->GetDepotActionType() & ODATFB_UNBUNCH) {
1176  SetDParam(0, STR_ORDER_DROP_UNBUNCH);
1177  } else {
1178  SetDParam(0, STR_ORDER_DROP_GO_ALWAYS_DEPOT);
1179  }
1180  break;
1181  }
1182  }
1183  }
1184 
1185  void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
1186  {
1187  switch (widget) {
1188  case WID_O_ORDER_LIST: {
1189  if (this->goto_type == OPOS_CONDITIONAL) {
1190  VehicleOrderID order_id = this->GetOrderFromPt(_cursor.pos.y - this->top);
1191  if (order_id != INVALID_VEH_ORDER_ID) {
1192  Order order;
1193  order.next = nullptr;
1194  order.index = 0;
1195  order.MakeConditional(order_id);
1196 
1197  Command<CMD_INSERT_ORDER>::Post(STR_ERROR_CAN_T_INSERT_NEW_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), order);
1198  }
1200  break;
1201  }
1202 
1203  VehicleOrderID sel = this->GetOrderFromPt(pt.y);
1204 
1205  if (_ctrl_pressed && sel < this->vehicle->GetNumOrders()) {
1206  TileIndex xy = this->vehicle->GetOrder(sel)->GetLocation(this->vehicle);
1207  if (xy != INVALID_TILE) ScrollMainWindowToTile(xy);
1208  return;
1209  }
1210 
1211  /* This order won't be selected any more, close all child windows and dropdowns */
1212  this->CloseChildWindows();
1213 
1214  if (sel == INVALID_VEH_ORDER_ID || this->vehicle->owner != _local_company) {
1215  /* Deselect clicked order */
1216  this->selected_order = -1;
1217  } else if (sel == this->selected_order) {
1218  if (this->vehicle->type == VEH_TRAIN && sel < this->vehicle->GetNumOrders()) {
1219  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER,
1220  this->vehicle->tile, this->vehicle->index, sel,
1221  MOF_STOP_LOCATION, (this->vehicle->GetOrder(sel)->GetStopLocation() + 1) % OSL_END);
1222  }
1223  } else {
1224  /* Select clicked order */
1225  this->selected_order = sel;
1226 
1227  if (this->vehicle->owner == _local_company) {
1228  /* Activate drag and drop */
1229  SetObjectToPlaceWnd(SPR_CURSOR_MOUSE, PAL_NONE, HT_DRAG, this);
1230  }
1231  }
1232 
1233  this->UpdateButtonState();
1234  break;
1235  }
1236 
1237  case WID_O_SKIP:
1238  this->OrderClick_Skip();
1239  break;
1240 
1241  case WID_O_DELETE:
1242  this->OrderClick_Delete();
1243  break;
1244 
1245  case WID_O_STOP_SHARING:
1246  this->OrderClick_StopSharing();
1247  break;
1248 
1249  case WID_O_NON_STOP:
1250  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1251  this->OrderClick_Nonstop(-1);
1252  } else {
1253  const Order *o = this->vehicle->GetOrder(this->OrderGetSel());
1254  assert(o != nullptr);
1255  ShowDropDownMenu(this, _order_non_stop_drowdown, o->GetNonStopType(), WID_O_NON_STOP, 0,
1256  o->IsType(OT_GOTO_STATION) ? 0 : (o->IsType(OT_GOTO_WAYPOINT) ? 3 : 12));
1257  }
1258  break;
1259 
1260  case WID_O_GOTO:
1261  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1262  if (this->goto_type != OPOS_NONE) {
1264  } else {
1265  this->OrderClick_Goto(OPOS_GOTO);
1266  }
1267  } else {
1268  int sel;
1269  switch (this->goto_type) {
1270  case OPOS_NONE: sel = -1; break;
1271  case OPOS_GOTO: sel = 0; break;
1272  case OPOS_CONDITIONAL: sel = 2; break;
1273  case OPOS_SHARE: sel = 3; break;
1274  default: NOT_REACHED();
1275  }
1276  ShowDropDownMenu(this, this->vehicle->type == VEH_AIRCRAFT ? _order_goto_dropdown_aircraft : _order_goto_dropdown, sel, WID_O_GOTO, 0, 0);
1277  }
1278  break;
1279 
1280  case WID_O_FULL_LOAD:
1281  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1283  } else {
1284  ShowDropDownMenu(this, _order_full_load_drowdown, this->vehicle->GetOrder(this->OrderGetSel())->GetLoadType(), WID_O_FULL_LOAD, 0, 2);
1285  }
1286  break;
1287 
1288  case WID_O_UNLOAD:
1289  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1290  this->OrderClick_Unload(OUFB_UNLOAD, true);
1291  } else {
1292  ShowDropDownMenu(this, _order_unload_drowdown, this->vehicle->GetOrder(this->OrderGetSel())->GetUnloadType(), WID_O_UNLOAD, 0, 8);
1293  }
1294  break;
1295 
1296  case WID_O_REFIT:
1297  this->OrderClick_Refit(0, false);
1298  break;
1299 
1300  case WID_O_DEPOT_ACTION:
1301  ShowDropDownMenu(this, _order_depot_action_dropdown, DepotActionStringIndex(this->vehicle->GetOrder(this->OrderGetSel())), WID_O_DEPOT_ACTION, 0, 0);
1302  break;
1303 
1304  case WID_O_REFIT_DROPDOWN:
1305  if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
1306  this->OrderClick_Refit(0, true);
1307  } else {
1308  ShowDropDownMenu(this, _order_refit_action_dropdown, 0, WID_O_REFIT_DROPDOWN, 0, 0);
1309  }
1310  break;
1311 
1312  case WID_O_TIMETABLE_VIEW:
1313  ShowTimetableWindow(this->vehicle);
1314  break;
1315 
1316  case WID_O_COND_VARIABLE: {
1317  DropDownList list;
1318  for (uint i = 0; i < lengthof(_order_conditional_variable); i++) {
1319  list.push_back(std::make_unique<DropDownListStringItem>(STR_ORDER_CONDITIONAL_LOAD_PERCENTAGE + _order_conditional_variable[i], _order_conditional_variable[i], false));
1320  }
1321  ShowDropDownList(this, std::move(list), this->vehicle->GetOrder(this->OrderGetSel())->GetConditionVariable(), WID_O_COND_VARIABLE);
1322  break;
1323  }
1324 
1325  case WID_O_COND_COMPARATOR: {
1326  const Order *o = this->vehicle->GetOrder(this->OrderGetSel());
1327  assert(o != nullptr);
1328  ShowDropDownMenu(this, _order_conditional_condition, o->GetConditionComparator(), WID_O_COND_COMPARATOR, 0, (o->GetConditionVariable() == OCV_REQUIRES_SERVICE) ? 0x3F : 0xC0);
1329  break;
1330  }
1331 
1332  case WID_O_COND_VALUE: {
1333  const Order *order = this->vehicle->GetOrder(this->OrderGetSel());
1334  assert(order != nullptr);
1335  uint value = order->GetConditionValue();
1336  if (order->GetConditionVariable() == OCV_MAX_SPEED) value = ConvertSpeedToDisplaySpeed(value, this->vehicle->type);
1337  SetDParam(0, value);
1338  ShowQueryString(STR_JUST_INT, STR_ORDER_CONDITIONAL_VALUE_CAPT, 5, this, CS_NUMERAL, QSF_NONE);
1339  break;
1340  }
1341 
1343  ShowVehicleListWindow(this->vehicle);
1344  break;
1345  }
1346  }
1347 
1348  void OnQueryTextFinished(char *str) override
1349  {
1350  if (!StrEmpty(str)) {
1351  VehicleOrderID sel = this->OrderGetSel();
1352  uint value = atoi(str);
1353 
1354  switch (this->vehicle->GetOrder(sel)->GetConditionVariable()) {
1355  case OCV_MAX_SPEED:
1356  value = ConvertDisplaySpeedToSpeed(value, this->vehicle->type);
1357  break;
1358 
1359  case OCV_RELIABILITY:
1360  case OCV_LOAD_PERCENTAGE:
1361  value = Clamp(value, 0, 100);
1362  break;
1363 
1364  default:
1365  break;
1366  }
1367  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));
1368  }
1369  }
1370 
1371  void OnDropdownSelect(WidgetID widget, int index) override
1372  {
1373  switch (widget) {
1374  case WID_O_NON_STOP:
1375  this->OrderClick_Nonstop(index);
1376  break;
1377 
1378  case WID_O_FULL_LOAD:
1379  this->OrderClick_FullLoad((OrderLoadFlags)index);
1380  break;
1381 
1382  case WID_O_UNLOAD:
1383  this->OrderClick_Unload((OrderUnloadFlags)index);
1384  break;
1385 
1386  case WID_O_GOTO:
1387  switch (index) {
1388  case 0: this->OrderClick_Goto(OPOS_GOTO); break;
1389  case 1: this->OrderClick_NearestDepot(); break;
1390  case 2: this->OrderClick_Goto(OPOS_CONDITIONAL); break;
1391  case 3: this->OrderClick_Goto(OPOS_SHARE); break;
1392  default: NOT_REACHED();
1393  }
1394  break;
1395 
1396  case WID_O_DEPOT_ACTION:
1397  this->OrderClick_Service(index);
1398  break;
1399 
1400  case WID_O_REFIT_DROPDOWN:
1401  this->OrderClick_Refit(index, true);
1402  break;
1403 
1404  case WID_O_COND_VARIABLE:
1405  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), MOF_COND_VARIABLE, index);
1406  break;
1407 
1408  case WID_O_COND_COMPARATOR:
1409  Command<CMD_MODIFY_ORDER>::Post(STR_ERROR_CAN_T_MODIFY_THIS_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), MOF_COND_COMPARATOR, index);
1410  break;
1411  }
1412  }
1413 
1414  void OnDragDrop(Point pt, WidgetID widget) override
1415  {
1416  switch (widget) {
1417  case WID_O_ORDER_LIST: {
1418  VehicleOrderID from_order = this->OrderGetSel();
1419  VehicleOrderID to_order = this->GetOrderFromPt(pt.y);
1420 
1421  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()) &&
1422  Command<CMD_MOVE_ORDER>::Post(STR_ERROR_CAN_T_MOVE_THIS_ORDER, this->vehicle->tile, this->vehicle->index, from_order, to_order)) {
1423  this->selected_order = -1;
1424  this->UpdateButtonState();
1425  }
1426  break;
1427  }
1428 
1429  case WID_O_DELETE:
1430  this->OrderClick_Delete();
1431  break;
1432 
1433  case WID_O_STOP_SHARING:
1434  this->OrderClick_StopSharing();
1435  break;
1436  }
1437 
1439 
1440  if (this->order_over != INVALID_VEH_ORDER_ID) {
1441  /* End of drag-and-drop, hide dragged order destination highlight. */
1442  this->order_over = INVALID_VEH_ORDER_ID;
1444  }
1445  }
1446 
1447  EventState OnHotkey(int hotkey) override
1448  {
1449  if (this->vehicle->owner != _local_company) return ES_NOT_HANDLED;
1450 
1451  switch (hotkey) {
1452  case OHK_SKIP: this->OrderClick_Skip(); break;
1453  case OHK_DELETE: this->OrderClick_Delete(); break;
1454  case OHK_GOTO: this->OrderClick_Goto(OPOS_GOTO); break;
1455  case OHK_NONSTOP: this->OrderClick_Nonstop(-1); break;
1456  case OHK_FULLLOAD: this->OrderClick_FullLoad(OLF_FULL_LOAD_ANY, true); break;
1457  case OHK_UNLOAD: this->OrderClick_Unload(OUFB_UNLOAD, true); break;
1458  case OHK_NEAREST_DEPOT: this->OrderClick_NearestDepot(); break;
1459  case OHK_ALWAYS_SERVICE: this->OrderClick_Service(-1); break;
1460  case OHK_TRANSFER: this->OrderClick_Unload(OUFB_TRANSFER, true); break;
1461  case OHK_NO_UNLOAD: this->OrderClick_Unload(OUFB_NO_UNLOAD, true); break;
1462  case OHK_NO_LOAD: this->OrderClick_FullLoad(OLFB_NO_LOAD, true); break;
1463  default: return ES_NOT_HANDLED;
1464  }
1465  return ES_HANDLED;
1466  }
1467 
1468  void OnPlaceObject([[maybe_unused]] Point pt, TileIndex tile) override
1469  {
1470  if (this->goto_type == OPOS_GOTO) {
1471  const Order cmd = GetOrderCmdFromTile(this->vehicle, tile);
1472  if (cmd.IsType(OT_NOTHING)) return;
1473 
1474  if (Command<CMD_INSERT_ORDER>::Post(STR_ERROR_CAN_T_INSERT_NEW_ORDER, this->vehicle->tile, this->vehicle->index, this->OrderGetSel(), cmd)) {
1475  /* With quick goto the Go To button stays active */
1477  }
1478  }
1479  }
1480 
1481  bool OnVehicleSelect(const Vehicle *v) override
1482  {
1483  /* v is vehicle getting orders. Only copy/clone orders if vehicle doesn't have any orders yet.
1484  * We disallow copying orders of other vehicles if we already have at least one order entry
1485  * ourself as it easily copies orders of vehicles within a station when we mean the station.
1486  * Obviously if you press CTRL on a non-empty orders vehicle you know what you are doing
1487  * TODO: give a warning message */
1488  bool share_order = _ctrl_pressed || this->goto_type == OPOS_SHARE;
1489  if (this->vehicle->GetNumOrders() != 0 && !share_order) return false;
1490 
1491  if (Command<CMD_CLONE_ORDER>::Post(share_order ? STR_ERROR_CAN_T_SHARE_ORDER_LIST : STR_ERROR_CAN_T_COPY_ORDER_LIST,
1492  this->vehicle->tile, share_order ? CO_SHARE : CO_COPY, this->vehicle->index, v->index)) {
1493  this->selected_order = -1;
1495  }
1496  return true;
1497  }
1498 
1505  bool OnVehicleSelect(VehicleList::const_iterator begin, VehicleList::const_iterator end) override
1506  {
1507  bool share_order = _ctrl_pressed || this->goto_type == OPOS_SHARE;
1508  if (this->vehicle->GetNumOrders() != 0 && !share_order) return false;
1509 
1510  if (!share_order) {
1511  /* If CTRL is not pressed: If all the vehicles in this list have the same orders, then copy orders */
1512  if (AllEqual(begin, end, [](const Vehicle *v1, const Vehicle *v2) {
1513  return VehiclesHaveSameOrderList(v1, v2);
1514  })) {
1515  OnVehicleSelect(*begin);
1516  } else {
1517  ShowErrorMessage(STR_ERROR_CAN_T_COPY_ORDER_LIST, STR_ERROR_CAN_T_COPY_ORDER_VEHICLE_LIST, WL_INFO);
1518  }
1519  } else {
1520  /* If CTRL is pressed: If all the vehicles in this list share orders, then copy orders */
1521  if (AllEqual(begin, end, [](const Vehicle *v1, const Vehicle *v2) {
1522  return v1->FirstShared() == v2->FirstShared();
1523  })) {
1524  OnVehicleSelect(*begin);
1525  } else {
1526  ShowErrorMessage(STR_ERROR_CAN_T_SHARE_ORDER_LIST, STR_ERROR_CAN_T_SHARE_ORDER_VEHICLE_LIST, WL_INFO);
1527  }
1528  }
1529 
1530  return true;
1531  }
1532 
1533  void OnPlaceObjectAbort() override
1534  {
1535  this->goto_type = OPOS_NONE;
1536  this->SetWidgetDirty(WID_O_GOTO);
1537 
1538  /* Remove drag highlighting if it exists. */
1539  if (this->order_over != INVALID_VEH_ORDER_ID) {
1540  this->order_over = INVALID_VEH_ORDER_ID;
1542  }
1543  }
1544 
1545  void OnMouseDrag(Point pt, WidgetID widget) override
1546  {
1547  if (this->selected_order != -1 && widget == WID_O_ORDER_LIST) {
1548  /* An order is dragged.. */
1549  VehicleOrderID from_order = this->OrderGetSel();
1550  VehicleOrderID to_order = this->GetOrderFromPt(pt.y);
1551  uint num_orders = this->vehicle->GetNumOrders();
1552 
1553  if (from_order != INVALID_VEH_ORDER_ID && from_order <= num_orders) {
1554  if (to_order != INVALID_VEH_ORDER_ID && to_order <= num_orders) { // ..over an existing order.
1555  this->order_over = to_order;
1556  this->SetWidgetDirty(widget);
1557  } else if (from_order != to_order && this->order_over != INVALID_VEH_ORDER_ID) { // ..outside of the order list.
1558  this->order_over = INVALID_VEH_ORDER_ID;
1559  this->SetWidgetDirty(widget);
1560  }
1561  }
1562  }
1563  }
1564 
1565  void OnResize() override
1566  {
1567  /* Update the scroll bar */
1568  this->vscroll->SetCapacityFromWidget(this, WID_O_ORDER_LIST);
1569  }
1570 
1571  static inline HotkeyList hotkeys{"order", {
1572  Hotkey('D', "skip", OHK_SKIP),
1573  Hotkey('F', "delete", OHK_DELETE),
1574  Hotkey('G', "goto", OHK_GOTO),
1575  Hotkey('H', "nonstop", OHK_NONSTOP),
1576  Hotkey('J', "fullload", OHK_FULLLOAD),
1577  Hotkey('K', "unload", OHK_UNLOAD),
1578  Hotkey(0, "nearest_depot", OHK_NEAREST_DEPOT),
1579  Hotkey(0, "always_service", OHK_ALWAYS_SERVICE),
1580  Hotkey(0, "transfer", OHK_TRANSFER),
1581  Hotkey(0, "no_unload", OHK_NO_UNLOAD),
1582  Hotkey(0, "no_load", OHK_NO_LOAD),
1583  }};
1584 };
1585 
1589  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1590  NWidget(WWT_CAPTION, COLOUR_GREY, WID_O_CAPTION), SetDataTip(STR_ORDERS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1591  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_TIMETABLE_VIEW), SetMinimalSize(61, 14), SetDataTip(STR_ORDERS_TIMETABLE_VIEW, STR_ORDERS_TIMETABLE_VIEW_TOOLTIP),
1592  NWidget(WWT_SHADEBOX, COLOUR_GREY),
1593  NWidget(WWT_DEFSIZEBOX, COLOUR_GREY),
1594  NWidget(WWT_STICKYBOX, COLOUR_GREY),
1595  EndContainer(),
1597  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(),
1598  NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_O_SCROLLBAR),
1599  EndContainer(),
1600 
1601  /* First button row. */
1605  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_NON_STOP), SetMinimalSize(93, 12), SetFill(1, 0),
1606  SetDataTip(STR_ORDER_NON_STOP, STR_ORDER_TOOLTIP_NON_STOP), SetResize(1, 0),
1607  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_O_SEL_TOP_LEFT),
1608  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_FULL_LOAD), SetMinimalSize(93, 12), SetFill(1, 0),
1609  SetDataTip(STR_ORDER_TOGGLE_FULL_LOAD, STR_ORDER_TOOLTIP_FULL_LOAD), SetResize(1, 0),
1610  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_REFIT), SetMinimalSize(93, 12), SetFill(1, 0),
1611  SetDataTip(STR_ORDER_REFIT, STR_ORDER_REFIT_TOOLTIP), SetResize(1, 0),
1612  EndContainer(),
1613  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_O_SEL_TOP_MIDDLE),
1614  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_UNLOAD), SetMinimalSize(93, 12), SetFill(1, 0),
1615  SetDataTip(STR_ORDER_TOGGLE_UNLOAD, STR_ORDER_TOOLTIP_UNLOAD), SetResize(1, 0),
1616  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_DEPOT_ACTION), SetMinimalSize(93, 12), SetFill(1, 0),
1617  SetDataTip(STR_JUST_STRING, STR_ORDER_DEPOT_ACTION_TOOLTIP), SetResize(1, 0),
1618  EndContainer(),
1619  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_O_SEL_TOP_RIGHT),
1620  NWidget(WWT_PANEL, COLOUR_GREY), SetMinimalSize(93, 12), SetFill(1, 0), SetResize(1, 0), EndContainer(),
1622  SetDataTip(STR_ORDER_REFIT_AUTO, STR_ORDER_REFIT_AUTO_TOOLTIP), SetResize(1, 0),
1623  EndContainer(),
1624  EndContainer(),
1626  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_O_COND_VARIABLE), SetMinimalSize(124, 12), SetFill(1, 0),
1627  SetDataTip(STR_NULL, STR_ORDER_CONDITIONAL_VARIABLE_TOOLTIP), SetResize(1, 0),
1628  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_O_COND_COMPARATOR), SetMinimalSize(124, 12), SetFill(1, 0),
1629  SetDataTip(STR_NULL, STR_ORDER_CONDITIONAL_COMPARATOR_TOOLTIP), SetResize(1, 0),
1630  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_COND_VALUE), SetMinimalSize(124, 12), SetFill(1, 0),
1631  SetDataTip(STR_JUST_COMMA, STR_ORDER_CONDITIONAL_VALUE_TOOLTIP), SetResize(1, 0),
1632  EndContainer(),
1633  EndContainer(),
1634  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),
1635  EndContainer(),
1636 
1637  /* Second button row. */
1640  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_SKIP), SetMinimalSize(124, 12), SetFill(1, 0),
1641  SetDataTip(STR_ORDERS_SKIP_BUTTON, STR_ORDERS_SKIP_TOOLTIP), SetResize(1, 0),
1643  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_DELETE), SetMinimalSize(124, 12), SetFill(1, 0),
1644  SetDataTip(STR_ORDERS_DELETE_BUTTON, STR_ORDERS_DELETE_TOOLTIP), SetResize(1, 0),
1645  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_STOP_SHARING), SetMinimalSize(124, 12), SetFill(1, 0),
1646  SetDataTip(STR_ORDERS_STOP_SHARING_BUTTON, STR_ORDERS_STOP_SHARING_TOOLTIP), SetResize(1, 0),
1647  EndContainer(),
1648  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_GOTO), SetMinimalSize(124, 12), SetFill(1, 0),
1649  SetDataTip(STR_ORDERS_GO_TO_BUTTON, STR_ORDERS_GO_TO_TOOLTIP), SetResize(1, 0),
1650  EndContainer(),
1651  NWidget(WWT_RESIZEBOX, COLOUR_GREY),
1652  EndContainer(),
1653 };
1654 
1655 static WindowDesc _orders_train_desc(__FILE__, __LINE__,
1656  WDP_AUTO, "view_vehicle_orders_train", 384, 100,
1660  &OrdersWindow::hotkeys
1661 );
1662 
1664 static constexpr NWidgetPart _nested_orders_widgets[] = {
1666  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1667  NWidget(WWT_CAPTION, COLOUR_GREY, WID_O_CAPTION), SetDataTip(STR_ORDERS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1668  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_TIMETABLE_VIEW), SetMinimalSize(61, 14), SetDataTip(STR_ORDERS_TIMETABLE_VIEW, STR_ORDERS_TIMETABLE_VIEW_TOOLTIP),
1669  NWidget(WWT_SHADEBOX, COLOUR_GREY),
1670  NWidget(WWT_DEFSIZEBOX, COLOUR_GREY),
1671  NWidget(WWT_STICKYBOX, COLOUR_GREY),
1672  EndContainer(),
1674  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(),
1675  NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_O_SCROLLBAR),
1676  EndContainer(),
1677 
1678  /* First button row. */
1680  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_O_SEL_TOP_ROW),
1681  /* Load + unload + refit buttons. */
1683  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_FULL_LOAD), SetMinimalSize(124, 12), SetFill(1, 0),
1684  SetDataTip(STR_ORDER_TOGGLE_FULL_LOAD, STR_ORDER_TOOLTIP_FULL_LOAD), SetResize(1, 0),
1685  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_UNLOAD), SetMinimalSize(124, 12), SetFill(1, 0),
1686  SetDataTip(STR_ORDER_TOGGLE_UNLOAD, STR_ORDER_TOOLTIP_UNLOAD), SetResize(1, 0),
1688  SetDataTip(STR_ORDER_REFIT_AUTO, STR_ORDER_REFIT_AUTO_TOOLTIP), SetResize(1, 0),
1689  EndContainer(),
1690  /* Refit + service buttons. */
1692  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_REFIT), SetMinimalSize(186, 12), SetFill(1, 0),
1693  SetDataTip(STR_ORDER_REFIT, STR_ORDER_REFIT_TOOLTIP), SetResize(1, 0),
1694  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_DEPOT_ACTION), SetMinimalSize(124, 12), SetFill(1, 0),
1695  SetDataTip(STR_JUST_STRING, STR_ORDER_DEPOT_ACTION_TOOLTIP), SetResize(1, 0),
1696  EndContainer(),
1697 
1698  /* Buttons for setting a condition. */
1700  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_O_COND_VARIABLE), SetMinimalSize(124, 12), SetFill(1, 0),
1701  SetDataTip(STR_NULL, STR_ORDER_CONDITIONAL_VARIABLE_TOOLTIP), SetResize(1, 0),
1702  NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_O_COND_COMPARATOR), SetMinimalSize(124, 12), SetFill(1, 0),
1703  SetDataTip(STR_NULL, STR_ORDER_CONDITIONAL_COMPARATOR_TOOLTIP), SetResize(1, 0),
1704  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_COND_VALUE), SetMinimalSize(124, 12), SetFill(1, 0),
1705  SetDataTip(STR_JUST_COMMA, STR_ORDER_CONDITIONAL_VALUE_TOOLTIP), SetResize(1, 0),
1706  EndContainer(),
1707  EndContainer(),
1708 
1709  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),
1710  EndContainer(),
1711 
1712  /* Second button row. */
1714  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_SKIP), SetMinimalSize(124, 12), SetFill(1, 0),
1715  SetDataTip(STR_ORDERS_SKIP_BUTTON, STR_ORDERS_SKIP_TOOLTIP), SetResize(1, 0),
1717  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_DELETE), SetMinimalSize(124, 12), SetFill(1, 0),
1718  SetDataTip(STR_ORDERS_DELETE_BUTTON, STR_ORDERS_DELETE_TOOLTIP), SetResize(1, 0),
1719  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_STOP_SHARING), SetMinimalSize(124, 12), SetFill(1, 0),
1720  SetDataTip(STR_ORDERS_STOP_SHARING_BUTTON, STR_ORDERS_STOP_SHARING_TOOLTIP), SetResize(1, 0),
1721  EndContainer(),
1722  NWidget(NWID_BUTTON_DROPDOWN, COLOUR_GREY, WID_O_GOTO), SetMinimalSize(124, 12), SetFill(1, 0),
1723  SetDataTip(STR_ORDERS_GO_TO_BUTTON, STR_ORDERS_GO_TO_TOOLTIP), SetResize(1, 0),
1724  NWidget(WWT_RESIZEBOX, COLOUR_GREY),
1725  EndContainer(),
1726 };
1727 
1728 static WindowDesc _orders_desc(__FILE__, __LINE__,
1729  WDP_AUTO, "view_vehicle_orders", 384, 100,
1732  std::begin(_nested_orders_widgets), std::end(_nested_orders_widgets),
1733  &OrdersWindow::hotkeys
1734 );
1735 
1739  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
1740  NWidget(WWT_CAPTION, COLOUR_GREY, WID_O_CAPTION), SetDataTip(STR_ORDERS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1741  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_O_TIMETABLE_VIEW), SetMinimalSize(61, 14), SetDataTip(STR_ORDERS_TIMETABLE_VIEW, STR_ORDERS_TIMETABLE_VIEW_TOOLTIP),
1742  NWidget(WWT_SHADEBOX, COLOUR_GREY),
1743  NWidget(WWT_DEFSIZEBOX, COLOUR_GREY),
1744  NWidget(WWT_STICKYBOX, COLOUR_GREY),
1745  EndContainer(),
1747  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(),
1749  NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_O_SCROLLBAR),
1750  NWidget(WWT_RESIZEBOX, COLOUR_GREY),
1751  EndContainer(),
1752  EndContainer(),
1753 };
1754 
1755 static WindowDesc _other_orders_desc(__FILE__, __LINE__,
1756  WDP_AUTO, "view_vehicle_orders_competitor", 384, 86,
1760  &OrdersWindow::hotkeys
1761 );
1762 
1763 void ShowOrdersWindow(const Vehicle *v)
1764 {
1767  if (BringWindowToFrontById(WC_VEHICLE_ORDERS, v->index) != nullptr) return;
1768 
1769  /* Using a different WindowDescs for _local_company causes problems.
1770  * Due to this we have to close order windows in ChangeWindowOwner/CloseCompanyWindows,
1771  * because we cannot change switch the WindowDescs and keeping the old WindowDesc results
1772  * in crashed due to missing widges.
1773  * TODO Rewrite the order GUI to not use different WindowDescs.
1774  */
1775  if (v->owner != _local_company) {
1776  new OrdersWindow(&_other_orders_desc, v);
1777  } else {
1778  new OrdersWindow(v->IsGroundVehicle() ? &_orders_train_desc : &_orders_desc, v);
1779  }
1780 }
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:72
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:3211
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:134
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:1737
_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:1664
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:1565
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:172
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:1083
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:1587
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:1533
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:71
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:1447
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:88
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:1077
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:1505
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:846
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:1257
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:2980
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