Functions

ai_order.cpp File Reference

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 OrderResolveOrder (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.

Detailed Description

Implementation of AIOrder.

Definition in file ai_order.cpp.


Function Documentation

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.

Parameters:
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]
static OrderType GetOrderTypeByTile ( TileIndex  t  )  [static]

Gets the order type given a tile.

Parameters:
t the tile to get the order from
Returns:
the order type, or OT_END when there is no order

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]