PathEngine home previous: iAgent::findPathAway()next: iAgent::findShortestPathTo()
Contents, API Reference, Interfaces, iAgent, findPathAway_WithQueryCallBack

iAgent::findPathAway_WithQueryCallBack()

Description

Finds the shortest path of escape from a specified region for the agent.
(This version supports passing in a callback object to enable the query to be aborted early.)

Syntax

std::unique_ptr<iPath> findPathAway_WithQueryCallBack(const iCollisionContext* context, const cPosition& awayFrom, int32_t distanceAway, iQueryCallBack* queryCallBack) const

Parameters

context The state of dynamic collision that will apply for this query.
An empty context can be specified by passing nullptr for this argument.
Note that the agent is not considered to obstruct itself even if included in this context.
awayFrom A position defining the centre of a region to escape from. This position must be a valid position on this mesh.
distanceAway Controls the size of the region to escape from, see below.
queryCallBack A pointer to a valid implementation of the iQueryCallBack interface, or else null.

Requirements

Requires that the agent is moveable and that pathfinding preprocess has been generated on the agent's mesh for the agent's collision shape.

The start point for pathfinding (i.e. the agent's current position) must not be obstructed by the base mesh or burnt-in obstacles.

Return Value

A newly created Interface iPath object, if a path can be found.
Otherwise a zero pointer is returned.

Remarks

Calling this method is functionally equivalent to calling iAgent::findPathAway_WithQueryCallBack(), with null for the callback parameter.

C# Mapping

Path findPathAway_WithQueryCallBack(CollisionContext context, PathEngine.Position awayFrom, int distanceAway, QueryCallBack queryCallBack);

Java Mapping

Path findPathAway_WithQueryCallBack(CollisionContext context, Position awayFrom, int distanceAway, QueryCallBack queryCallBack);

Documentation for PathEngine release 6.04 - Copyright © 2002-2024 PathEnginenext: iAgent::findShortestPathTo()