#include "order_type.h"
#include "vehicle_type.h"
#include "tile_type.h"
#include "group_type.h"
#include "date_type.h"
#include "company_type.h"
Go to the source code of this file.
Data Structures | |
struct | BackuppedOrders |
Defines | |
#define | MIN_SERVINT_PERCENT 5 |
#define | MAX_SERVINT_PERCENT 90 |
#define | MIN_SERVINT_DAYS 30 |
#define | MAX_SERVINT_DAYS 800 |
Functions | |
void | BackupVehicleOrders (const Vehicle *v, BackuppedOrders *order=&_backup_orders_data) |
Backup a vehicle order-list, so you can replace a vehicle without losing the order-list. | |
void | RestoreVehicleOrders (const Vehicle *v, const BackuppedOrders *order=&_backup_orders_data) |
Restore vehicle orders that are backupped via BackupVehicleOrders. | |
void | RemoveOrderFromAllVehicles (OrderType type, DestinationID destination) |
Removes an order from all vehicles. | |
void | InvalidateVehicleOrder (const Vehicle *v, int data) |
Updates the widgets of a vehicle which contains the order-data. | |
bool | VehicleHasDepotOrders (const Vehicle *v) |
Checks if a vehicle has a GOTO_DEPOT in his order list. | |
void | CheckOrders (const Vehicle *) |
Check the orders of a vehicle, to see if there are invalid orders and stuff. | |
void | DeleteVehicleOrders (Vehicle *v, bool keep_orderlist=false) |
Delete all orders from a vehicle. | |
bool | ProcessOrders (Vehicle *v) |
Handle the orders of a vehicle and determine the next place to go to if needed. | |
bool | UpdateOrderDest (Vehicle *v, const Order *order, int conditional_depth=0) |
Update the vehicle's destination tile from an order. | |
VehicleOrderID | ProcessConditionalOrder (const Order *order, const Vehicle *v) |
Process a conditional order and determine the next order. | |
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. | |
uint16 | GetServiceIntervalClamped (uint interval, CompanyID company_id) |
Clamp the service interval to the correct min/max. | |
Variables | |
TileIndex | _backup_orders_tile |
BackuppedOrders | _backup_orders_data |
Definition in file order_func.h.
void BackupVehicleOrders | ( | const Vehicle * | v, | |
BackuppedOrders * | bak | |||
) |
Backup a vehicle order-list, so you can replace a vehicle without losing the order-list.
Definition at line 1282 of file order_cmd.cpp.
References INVALID_VEHICLE.
void CheckOrders | ( | const Vehicle * | v | ) |
Check the orders of a vehicle, to see if there are invalid orders and stuff.
Definition at line 1437 of file order_cmd.cpp.
References _settings_client, AddVehicleNewsItem(), SpecializedStation< Station, false >::Get(), ClientSettings::gui, INVALID_TILE, NS_ADVICE, GUISettings::order_review_system, and SetDParam().
void DeleteVehicleOrders | ( | Vehicle * | v, | |
bool | keep_orderlist | |||
) |
Delete all orders from a vehicle.
Definition at line 1574 of file order_cmd.cpp.
References DeleteOrderWarnings().
Referenced by CmdCloneOrder(), CmdMoveRailVehicle(), CmdSellRailWagon(), and DecloneOrder().
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.
v | Vehicle the order belongs to | |
order | The order to draw | |
order_index | Index of the order in the orders of the vehicle | |
y | Y position for drawing | |
selected | True, if the order is selected | |
timetable | True, when drawing in the timetable GUI | |
left | Left border for text drawing | |
middle | X position between order index and order text | |
right | Right border for text drawing |
Definition at line 192 of file order_gui.cpp.
References _dynlang, _station_load_types, ConvertSpeedToDisplaySpeed(), DrawSprite(), DrawString(), FONT_HEIGHT_NORMAL, CargoSpec::Get(), GetSpriteSize(), Dimension::height, OCC_IS_FALSE, OCC_IS_TRUE, OCV_MAX_SPEED, OCV_UNCONDITIONALLY, ODATFB_HALT, ODATFB_NEAREST_DEPOT, ODTFB_SERVICE, ONSF_NO_STOP_AT_DESTINATION_STATION, ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS, SA_FORCE, SA_RIGHT, SetDParam(), SetTimetableParams(), TD_RTL, DynamicLanguages::text_dir, VEH_AIRCRAFT, VEH_ROAD, VEH_TRAIN, and Dimension::width.
Referenced by OrdersWindow::DrawWidget().
uint16 GetServiceIntervalClamped | ( | uint | interval, | |
CompanyID | company_id | |||
) |
Clamp the service interval to the correct min/max.
The actual min/max values depend on whether it's in percent or days.
interval | proposed service interval | |
company_id | the owner of the vehicle |
Definition at line 1589 of file order_cmd.cpp.
References Clamp().
Referenced by CmdChangeServiceInt(), CmdRestoreOrderIndex(), and VehicleDetailsWindow::OnClick().
void InvalidateVehicleOrder | ( | const Vehicle * | v, | |
int | data | |||
) |
Updates the widgets of a vehicle which contains the order-data.
Definition at line 175 of file order_cmd.cpp.
References InvalidateWindowData(), and SetWindowDirty().
Referenced by CmdCloneOrder(), CmdDeleteOrder(), CmdInsertOrder(), CmdModifyOrder(), CmdMoveOrder(), CmdOrderRefit(), CmdSkipToOrder(), DecloneOrder(), ProcessOrders(), and RemoveOrderFromAllVehicles().
VehicleOrderID ProcessConditionalOrder | ( | const Order * | order, | |
const Vehicle * | v | |||
) |
Process a conditional order and determine the next order.
order | the order the vehicle currently has | |
v | the vehicle to update |
Definition at line 1645 of file order_cmd.cpp.
References CalcPercentVehicleFilled(), DAYS_IN_LEAP_YEAR, INVALID_VEH_ORDER_ID, OCV_AGE, OCV_LOAD_PERCENTAGE, OCV_MAX_SPEED, OCV_RELIABILITY, OCV_REQUIRES_SERVICE, OCV_UNCONDITIONALLY, OrderConditionCompare(), and ToPercent16().
Referenced by VehicleOrderSaver::SwitchToNextOrder(), and UpdateOrderDest().
bool ProcessOrders | ( | Vehicle * | v | ) |
Handle the orders of a vehicle and determine the next place to go to if needed.
v | the vehicle to do this for. |
Reversing because of order change is allowed only just after leaving a station (and the difficulty setting to allowed, of course) this can be detected because only after OT_LEAVESTATION, current_order will be reset to nothing. (That also happens if no order, but in that case it won't hit the point in code where may_reverse is checked)
Definition at line 1756 of file order_cmd.cpp.
References CheckForValidOrders(), SpecializedVehicle< Aircraft, VEH_AIRCRAFT >::From(), SpecializedStation< Station, false >::Get(), GetStationIndex(), GetWindowClassForVehicleType(), INVALID_TILE, InvalidateVehicleOrder(), IsTileType(), MP_STATION, ODTFB_PART_OF_ORDERS, ONSF_NO_STOP_AT_DESTINATION_STATION, SetWindowClassesDirty(), UpdateOrderDest(), VEH_AIRCRAFT, VEH_ROAD, VEH_SHIP, and VEH_TRAIN.
void RemoveOrderFromAllVehicles | ( | OrderType | type, | |
DestinationID | destination | |||
) |
Removes an order from all vehicles.
Triggers when, say, a station is removed.
type | The type of the order (OT_GOTO_[STATION|DEPOT|WAYPOINT]). | |
destination | The destination. Can be a StationID, DepotID or WaypointID. |
Definition at line 1513 of file order_cmd.cpp.
References INVALID_VEH_ORDER_ID, InvalidateVehicleOrder(), ODATFB_NEAREST_DEPOT, SetWindowDirty(), and VEH_AIRCRAFT.
Referenced by Station::~Station().
void RestoreVehicleOrders | ( | const Vehicle * | v, | |
const BackuppedOrders * | bak | |||
) |
Restore vehicle orders that are backupped via BackupVehicleOrders.
Definition at line 1333 of file order_cmd.cpp.
References _settings_game, CMD_ADD_VEHICLE_GROUP, CMD_CHANGE_TIMETABLE, CMD_CLONE_ORDER, CMD_INSERT_ORDER, CMD_MODIFY_ORDER, CMD_NO_TEST_IF_IN_NETWORK, CMD_RENAME_VEHICLE, CMD_RESTORE_ORDER_INDEX, DoCommandP(), INVALID_VEHICLE, MOF_LOAD, GameSettings::order, and OrderSettings::timetabling.
Referenced by CcBuildAircraft().
bool UpdateOrderDest | ( | Vehicle * | v, | |
const Order * | order, | |||
int | conditional_depth | |||
) |
Update the vehicle's destination tile from an order.
order | the order the vehicle currently has | |
v | the vehicle to update | |
conditional_depth | the depth (amount of steps) to go with conditional orders. This to prevent infinite loops. |
Definition at line 1672 of file order_cmd.cpp.
References AircraftNextAirportPos_and_Order(), CMD_REVERSE_TRAIN_DIRECTION, DC_EXEC, DoCommand(), SpecializedVehicle< Aircraft, VEH_AIRCRAFT >::From(), INVALID_VEH_ORDER_ID, ODATFB_NEAREST_DEPOT, ODTFB_SERVICE, ProcessConditionalOrder(), Aircraft::state, Aircraft::targetairport, UpdateOrderDest(), VEH_AIRCRAFT, and VEH_TRAIN.
Referenced by ProcessOrders(), VehicleOrderSaver::SwitchToNextOrder(), and UpdateOrderDest().
bool VehicleHasDepotOrders | ( | const Vehicle * | v | ) |
Checks if a vehicle has a GOTO_DEPOT in his order list.
Definition at line 1557 of file order_cmd.cpp.