Implementation of AIOrder. More...
#include "../../stdafx.h"
#include "ai_order.hpp"
#include "ai_vehicle.hpp"
#include "../ai_instance.hpp"
#include "../../debug.h"
#include "../../vehicle_base.h"
#include "../../roadstop_base.h"
#include "../../depot_base.h"
#include "../../station_base.h"
#include "../../waypoint_base.h"
Go to the source code of this file.
Functions | |
static OrderType | GetOrderTypeByTile (TileIndex t) |
Gets the order type given a tile. | |
static const Order * | ResolveOrder (VehicleID vehicle_id, AIOrder::OrderPosition order_position) |
Get the current order the vehicle is executing. | |
static int | AIOrderPositionToRealOrderPosition (VehicleID vehicle_id, AIOrder::OrderPosition order_position) |
Convert an AIOrder::OrderPosition (which is the manual order index) to an order index as expected by the OpenTTD commands. | |
static void | _DoCommandReturnSetOrderFlags (class AIInstance *instance) |
Callback handler as SetOrderFlags possibly needs multiple DoCommand calls to be able to set all order flags correctly. |
Implementation of AIOrder.
Definition in file ai_order.cpp.
static void _DoCommandReturnSetOrderFlags | ( | class AIInstance * | instance | ) | [static] |
Callback handler as SetOrderFlags possibly needs multiple DoCommand calls to be able to set all order flags correctly.
As we need to wait till the command has completed before we know the next bits to change we need to call the function multiple times. Each time it'll reduce the difference between the wanted and the current order.
instance | The AI we are doing the callback for. |
Definition at line 519 of file ai_order.cpp.
References AIOrder::_SetOrderFlags(), AIInstance::DoCommandReturn(), and AIObject::SetLastCommandRes().
Referenced by AIOrder::_SetOrderFlags().
static int AIOrderPositionToRealOrderPosition | ( | VehicleID | vehicle_id, | |
AIOrder::OrderPosition | order_position | |||
) | [static] |
Convert an AIOrder::OrderPosition (which is the manual order index) to an order index as expected by the OpenTTD commands.
order_position | The OrderPosition to convert. |
Definition at line 84 of file ai_order.cpp.
References Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tcache, Tzero >::PoolItem<&_vehicle_pool >::Get(), OrderList::GetFirstOrder(), Vehicle::GetNumManualOrders(), Vehicle::GetNumOrders(), Order::GetType(), AIOrder::IsValidVehicleOrder(), Vehicle::list, Order::next, and Vehicle::orders.
Referenced by AIOrder::_SetOrderFlags(), AIOrder::InsertConditionalOrder(), AIOrder::InsertOrder(), AIOrder::IsConditionalOrder(), AIOrder::MoveOrder(), AIOrder::RemoveOrder(), AIOrder::SetOrderCompareFunction(), AIOrder::SetOrderCompareValue(), AIOrder::SetOrderCondition(), AIOrder::SetStopLocation(), and AIOrder::SkipToOrder().
Gets the order type given a tile.
t | the tile to get the order from |
Definition at line 28 of file ai_order.cpp.
References GetRoadTileType(), GetTileType(), IsBuoy(), IsHangar(), IsRailDepot(), IsRailWaypoint(), IsShipDepot(), IsValidTile(), MP_RAILWAY, MP_ROAD, MP_STATION, MP_WATER, and ROAD_TILE_DEPOT.
Referenced by AIOrder::AreOrderFlagsValid(), and AIOrder::InsertOrder().
static const Order* ResolveOrder | ( | VehicleID | vehicle_id, | |
AIOrder::OrderPosition | order_position | |||
) | [static] |
Get the current order the vehicle is executing.
If the current order is in the order list, return the order from the orderlist. If the current order was a manual order, return the current order.
Definition at line 59 of file ai_order.cpp.
References Vehicle::current_order, Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tcache, Tzero >::PoolItem<&_vehicle_pool >::Get(), Order::GetDepotOrderType(), OrderList::GetFirstOrder(), Order::GetType(), Vehicle::list, Order::next, AIOrder::ORDER_CURRENT, AIOrder::ORDER_INVALID, Vehicle::orders, and AIOrder::ResolveOrderPosition().
Referenced by AIOrder::_SetOrderFlags(), AIOrder::GetOrderCompareFunction(), AIOrder::GetOrderCompareValue(), AIOrder::GetOrderCondition(), AIOrder::GetOrderDestination(), AIOrder::GetOrderFlags(), AIOrder::GetOrderJumpTo(), AIOrder::GetStopLocation(), AIOrder::IsGotoDepotOrder(), AIOrder::IsGotoStationOrder(), AIOrder::IsGotoWaypointOrder(), and AIOrder::IsVoidOrder().