AI for Games 1.1.1
|
Protected Member Functions | |
Vector2D | hide (MovingEntity me, MovingEntity from) |
Vector2D | alignment (MovingEntity me) |
Vector2D | separation (MovingEntity me) |
Vector2D | cohesion (MovingEntity me) |
Vector2D | flock (MovingEntity me) |
Vector2D | interpose (MovingEntity me, MovingEntity m0, MovingEntity m1) |
Vector2D | interpose (MovingEntity me, MovingEntity m0, Vector2D fixedPos) |
Vector2D | wallAvoidance (MovingEntity me) |
Vector2D | obstacleAvoidance (MovingEntity me) |
Vector2D | seek (MovingEntity me, Vector2D target) |
Vector2D | flee (MovingEntity me, Vector2D target) |
Vector2D | arrive (MovingEntity me, Vector2D target, int rate) |
Vector2D | offsetPursuit (MovingEntity me, MovingEntity leader, Vector2D offset) |
Vector2D | pursuit (MovingEntity me, MovingEntity toPursue) |
Vector2D | evade (MovingEntity me, MovingEntity evadeAgent) |
Private Member Functions | |
Vector2D | calculateWeightedAverage () |
Vector2D | calculateWeightedAverage_LogForces () |
Vector2D | calculatePrioritised () |
Vector2D | calculatePrioritised_LogForces () |
boolean | accumulateForce (Vector2D runningTotal, Vector2D forceToAdd, double maxForce) |
Vector2D | hide () |
Vector2D | getHidingPosition (MovingEntity me, Obstacle ob, BaseEntity target) |
Vector2D | alignment () |
Vector2D | separation () |
Vector2D | cohesion () |
Vector2D | flock () |
Vector2D | interpose () |
Vector2D | wallAvoidance () |
Vector2D[] | createWhiskers (final int nbrWhiskers, final double whiskerLength, final double fov, final Vector2D facing, final Vector2D origin) |
Vector2D | obstacleAvoidance () |
Vector2D | seek () |
Vector2D | flee () |
Vector2D | wander () |
Vector2D | arrive () |
Vector2D | offsetPursuit () |
Vector2D | pursuit () |
Vector2D | evade () |
Vector2D | pathFollow () |
Static Private Member Functions | |
static int | bitPos (int flag) |
Private Attributes | |
Set< Obstacle > | obstacles = null |
Set< Wall > | walls = null |
Set< MovingEntity > | movers = null |
double | deltaTime = 0 |
World | world |
Vehicle | owner = null |
int | flags = 0 |
Vector2D | accum = new Vector2D() |
Vector2D | f = new Vector2D() |
Vector2D | steeringForce = new Vector2D() |
int | forceCalcMethod = WEIGHTED_PRIORITIZED |
Vector2D | gotoTarget = new Vector2D() |
int | arriveRate = NORMAL |
double | arriveDist = 0.5 |
Vector2D | fleeTarget = new Vector2D() |
double | fleeRadius = 100 |
LinkedList< GraphNode > | path = new LinkedList<GraphNode>() |
double | pathSeekDist = 20 |
double | pathArriveDist = 0.5 |
double | detectBoxLength = 20.0 |
MovingEntity[] | agents = new MovingEntity[NBR_AGENT_ARRAY] |
Vector2D | pursueOffset = new Vector2D() |
double | wanderAngle = 0 |
double | wanderAngleJitter = 60 |
double | wanderRadius = 20.0 |
double | wanderDist = 60.0 |
double | wanderAngleDelta = 0 |
int | nbrWhiskers = 5 |
double | whiskerFOV = FastMath.PI |
double | whiskerLength = 30 |
boolean | ovalEnvelope = false |
double | neighbourDist = 100.0 |
double[] | weightings |
Static Private Attributes | |
static double | WANDER_MIN_ANGLE = -1.0 * FastMath.PI |
static double | WANDER_MAX_ANGLE = FastMath.PI |
static double | WANDER_ANGLE_RANGE = 2.0 * FastMath.PI |
static String[] | bnames |
Additional Inherited Members | |
![]() | |
int | BIT_WALL_AVOID = 0 |
int | BIT_OBSTACLE_AVOID = 1 |
int | BIT_EVADE = 2 |
int | BIT_FLEE = 3 |
int | BIT_SEPARATION = 4 |
int | BIT_ALIGNMENT = 5 |
int | BIT_COHESION = 6 |
int | BIT_SEEK = 7 |
int | BIT_ARRIVE = 8 |
int | BIT_WANDER = 9 |
int | BIT_PURSUIT = 10 |
int | BIT_OFFSET_PURSUIT = 11 |
int | BIT_INTERPOSE = 12 |
int | BIT_HIDE = 13 |
int | BIT_PATH = 14 |
int | BIT_FLOCK = 15 |
int | WALL_AVOID = 1 << BIT_WALL_AVOID |
int | OBSTACLE_AVOID = 1 << BIT_OBSTACLE_AVOID |
int | EVADE = 1 << BIT_EVADE |
int | FLEE = 1 << BIT_FLEE |
int | SEPARATION = 1 << BIT_SEPARATION |
int | ALIGNMENT = 1 << BIT_ALIGNMENT |
int | COHESION = 1 << BIT_COHESION |
int | SEEK = 1 << BIT_SEEK |
int | ARRIVE = 1 << BIT_ARRIVE |
int | WANDER = 1 << BIT_WANDER |
int | PURSUIT = 1 << BIT_PURSUIT |
int | OFFSET_PURSUIT = 1 << BIT_OFFSET_PURSUIT |
int | INTERPOSE = 1 << BIT_INTERPOSE |
int | HIDE = 1 << BIT_HIDE |
int | PATH = 1 << BIT_PATH |
int | FLOCK = 1 << BIT_FLOCK |
int | ALL_SB_MASK = 0x0ffffff |
int | WEIGHTED = 1 |
int | WEIGHTED_PRIORITIZED = 2 |
double[] | DECEL_TWEEK = new double[] {0.0, 0.3, 0.6, 0.9} |
int | FAST = 1 |
int | NORMAL = 2 |
int | SLOW = 3 |
int | AGENT0 = 0 |
int | AGENT1 = 1 |
int | AGENT_TO_PURSUE = 2 |
int | AGENT_TO_EVADE = 3 |
int | NBR_AGENT_ARRAY = 4 |
int | PASS_THROUGH = 10000 |
int | WRAP = 10001 |
int | REBOUND = 10002 |
AutoPilot Objects are used to control the motion of a Vehicle object by specifying a set of steering behaviours the Vehicle must obey.
Every Vehicle object has it's own AutoPilot object (An AutoPilot object cannot be shared by multiple Vehicles)
This class supports 16 different behaviours which can be combined to provide appropriate motion based on the game environments.
A large number of constants are defined to simplify the use of this class.
Behaviour constants
WALL_AVOID OBSTACLE_AVOID EVADE FLEE SEPARATION
ALIGNMENT COHESION SEEK ARRIVE WANDER
PURSUIT OFFSET_PURSUIT INTERPOSE HIDE PATH
FLOCK
Force calculation constants. The default is WEIGHTED_PRIORITIZED
WEIGHTED WEIGHTED_PRIORITIZED
Agents (other Vehicle objects) to pursue, evade etc.
AGENT0 AGENT1 AGENT_TO_PURSUE AGENT_TO_FLEE
|
private |
This method is used by the PRIORITISED force calculation method.
For each active behaviour in turn it calculates how much of the maximum steering force is left then adds that amount of to the accumulator.
runningTotal | running total |
forceToAdd | the force we want to add from the current behaviour |
maxForce | the maximum force available. |
|
private |
ALIGNMENT Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
AutoPilot game2dai.steering.AutoPilot.alignmentOff | ( | ) |
Switch off alignment
AutoPilot game2dai.steering.AutoPilot.alignmentOn | ( | ) |
Switch on alignment
double game2dai.steering.AutoPilot.alignmentWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.alignmentWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
AutoPilot game2dai.steering.AutoPilot.allOff | ( | ) |
Switch off all steering behaviours
|
private |
ARRIVE Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
double game2dai.steering.AutoPilot.arriveDistance | ( | ) |
Get current distance from the owning entity to the arrive target position.
AutoPilot game2dai.steering.AutoPilot.arriveOff | ( | ) |
Switch off arrive
AutoPilot game2dai.steering.AutoPilot.arriveOn | ( | ) |
Switch on arrive
AutoPilot game2dai.steering.AutoPilot.arriveOn | ( | double | x, |
double | y | ||
) |
Switch on arrive
x | the x position of the target to arrive at |
y | the y position of the target to arrive at |
AutoPilot game2dai.steering.AutoPilot.arriveOn | ( | double | x, |
double | y, | ||
int | speed | ||
) |
Switch on arrive and define speed of approach. This should be SBF.SLOW, SBF.NORMAL or SBF.FAST any other value will be result in reverting to default (NORMAL)
x | the x position of the target to arrive at |
y | the y position of the target to arrive at |
speed | the approach rate |
Switch on arrive.
The approach rate is unchanged by this method.
target | the location to arrive at |
Switch on arrive and define speed of approach. This should be SBF.SLOW, SBF.NORMAL or SBF.FAST any other value will be result in reverting to default (NORMAL)
target | the location to arrive at |
speed | the approach rate |
double game2dai.steering.AutoPilot.arriveWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.arriveWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
staticprivate |
For a given a bit mask find the position of the least significant set bit.
flag |
Calculates (according to selected calculation method) the steering forces from any active behaviours.
deltaTime | time since last update in seconds |
world | the game world object |
int game2dai.steering.AutoPilot.calculateMethod | ( | ) |
Find out which method is being used for calculating the steering force.
return the calculation method being used (SBF.WEIGHTED_AVERAGE or SBF.PRIORITIZED).
AutoPilot game2dai.steering.AutoPilot.calculateMethod | ( | int | method | ) |
Set which method is to be used for calculating the steering force, options are
SBF.WEIGHTED_AVERAGE (default) or SBF.PRIORITIZED
any other value will be ignored.
method | the method to use |
|
private |
Uses the prioritised weighted average method to calculate the steering force.
|
private |
Uses the prioritised weighted average method to calculate the steering force.
|
private |
Uses the weighted average method to calculate the steering force.
|
private |
Uses the weighted average method to calculate the steering force and logs the results
Object game2dai.steering.AutoPilot.clone | ( | ) |
Creates and returns an 'available' (auto-pilot object that can be used in another Vehicle) copy of this object.
|
private |
COHESION Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
AutoPilot game2dai.steering.AutoPilot.cohesionOff | ( | ) |
Switch off cohesion
AutoPilot game2dai.steering.AutoPilot.cohesionOn | ( | ) |
Switch on cohesion
double game2dai.steering.AutoPilot.cohesionWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.cohesionWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
Used internally by the getFeelers() methods.
Given an origin, a facing direction, a 'field of view' describing the limit of the outer whiskers, a whisker length and the number of whiskers this method returns a vector containing the end positions of a series of whiskers radiating away from the origin and with equal distance between them. (like the spokes of a wheel clipped to a specific segment size)
nbrWhiskers | number of whiskers (>=1) |
whiskerLength | (the length of the whiskers |
fov | the 'field of view' |
facing | the vehicle's heading |
origin | the vehicle's position |
|
private |
EVADE Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
double game2dai.steering.AutoPilot.evadeDistance | ( | ) |
Get current distance from the owning entity and the moving entity we want to evade.
AutoPilot game2dai.steering.AutoPilot.evadeFactors | ( | double | fleeDistance | ) |
Set the factors used for evade behaviour.
There is only one factor the flee distance. While the distance between this entity and the evade agent is less than this the entity will move away from the evade agent.
fleeDistance | the distance we want to evade by (>0) |
AutoPilot game2dai.steering.AutoPilot.evadeOff | ( | ) |
Switch off evade pursuer
AutoPilot game2dai.steering.AutoPilot.evadeOn | ( | ) |
Switch on evade pursuer
AutoPilot game2dai.steering.AutoPilot.evadeOn | ( | MovingEntity | me | ) |
Switch on evade pursuer and specify the entity to avoid.
me | the entity to evade |
double game2dai.steering.AutoPilot.evadeWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.evadeWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
FLEE Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
double game2dai.steering.AutoPilot.fleeDistance | ( | ) |
Get current distance from the owning entity to the flee target position.
AutoPilot game2dai.steering.AutoPilot.fleeFactors | ( | double | fleeDistance | ) |
Set the factors used for flee behaviour agent.
There is only one factor the flee distance. While the distance between this entity and the flee-target is less than this the entity will move away from it.
fleeDistance | the distance we want to evade by (>0) |
AutoPilot game2dai.steering.AutoPilot.fleeOff | ( | ) |
Switch off flee
AutoPilot game2dai.steering.AutoPilot.fleeOn | ( | ) |
Switch on flee
AutoPilot game2dai.steering.AutoPilot.fleeOn | ( | double | x, |
double | y | ||
) |
Switch on flee
x | the x position of the location to flee from |
y | the y position of the location to flee from |
Switch on flee
location | the location to flee from |
double game2dai.steering.AutoPilot.fleeRadius | ( | ) |
The effective range of the flee target.
AutoPilot game2dai.steering.AutoPilot.fleeRadius | ( | double | fleeRadius | ) |
The flee force applied will be zero if the entity is outside the flee radius
fleeRadius |
double game2dai.steering.AutoPilot.fleeWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.fleeWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
FLOCK Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
AutoPilot game2dai.steering.AutoPilot.flockFactors | ( | double | neighbourhoodRadius | ) |
Sets the radius for ALL the group behaviours (separation, alignment and cohesion) even if you are using them without flocking.
neighbourhoodRadius | the neighbourhood radius |
AutoPilot game2dai.steering.AutoPilot.flockOff | ( | ) |
Switch off flock
AutoPilot game2dai.steering.AutoPilot.flockOn | ( | ) |
Switch on flock
double game2dai.steering.AutoPilot.flockWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.flockWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
Vector2D[] game2dai.steering.AutoPilot.getFeelers | ( | ) |
FOR INTERNAL USE ONLY
Calculates and returns an array of feelers around the vehicle that owns this steering behaviour.
Calculates and returns an array of feelers around the vehicle that owns this steering behaviour using the specified heading and origin.
This method is called by the Hints class when drawing the whiskers.
facing | the facing direction |
origin |
Vector2D[] game2dai.steering.AutoPilot.getFeelers | ( | MovingEntity | me | ) |
Calculates and returns an array of feelers arround the specified moving entity using the whisker details in this steering behaviour.
me | the moving entity needing whiskers |
|
private |
Given the position of a hunter, and the position and radius of an obstacle, this method calculates a position DistanceFromBoundary away from its bounding radius and directly opposite the hunter.
double game2dai.steering.AutoPilot.getWeight | ( | int | behaviour | ) |
Get the weighting for a single behaviour.
behaviour | should represent a single behaviour |
boolean game2dai.steering.AutoPilot.hasOwner | ( | ) |
Used to see if this auto-pilot has an owner.
|
private |
HIDE Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
double game2dai.steering.AutoPilot.hideDistance | ( | ) |
Get current distance from the owning entity and the moving entity we want are hiding from.
AutoPilot game2dai.steering.AutoPilot.hideOff | ( | ) |
Switch off hide
AutoPilot game2dai.steering.AutoPilot.hideOn | ( | ) |
Switch on hide
double game2dai.steering.AutoPilot.hideWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.hideWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
INTERPOSE Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
AutoPilot game2dai.steering.AutoPilot.interposeOff | ( | ) |
Switch off interpose
AutoPilot game2dai.steering.AutoPilot.interposeOn | ( | ) |
Switch on interpose
AutoPilot game2dai.steering.AutoPilot.interposeOn | ( | MovingEntity | me0, |
MovingEntity | me1 | ||
) |
Switch on interpose and specify the two moving entities to get between.
me0 | the first mover |
me1 | the second mover |
AutoPilot game2dai.steering.AutoPilot.interposeOn | ( | MovingEntity | me0, |
Vector2D | fixedPos1 | ||
) |
Switch on interpose and specify a moving entity and a fixed point in the world to get between.
me0 | the first mover |
fixedPos1 | fixed position in the world. |
Switch on interpose and specify two fixed points in the world to get between.
This is overkill in this situation, instead use arrive behaviour to the halfway position between the fixed points.
fixedPos0 | first fixed position in the world. |
fixedPos1 | second fixed position in the world. |
double game2dai.steering.AutoPilot.interposeWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.interposeWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
boolean game2dai.steering.AutoPilot.isAlignmentOn | ( | ) |
Is alignment switched on?
boolean game2dai.steering.AutoPilot.isArriveOn | ( | ) |
Is arrive switched on?
boolean game2dai.steering.AutoPilot.isCohesionOn | ( | ) |
Is cohesion switched on?
boolean game2dai.steering.AutoPilot.isEvadeOn | ( | ) |
Is evade switched on?
boolean game2dai.steering.AutoPilot.isFleeOn | ( | ) |
Is seek switched on?
boolean game2dai.steering.AutoPilot.isFlockOn | ( | ) |
Is flock switched on?
boolean game2dai.steering.AutoPilot.isHideOn | ( | ) |
Is hide switched on?
boolean game2dai.steering.AutoPilot.isInterposeOn | ( | ) |
Is interpose switched on?
boolean game2dai.steering.AutoPilot.isObstacleAvoidOn | ( | ) |
Is wall avoidance switched on?
boolean game2dai.steering.AutoPilot.isOffsetPursuitOn | ( | ) |
Is offsetPursuit switched on?
boolean game2dai.steering.AutoPilot.isPathOn | ( | ) |
Is path switched on?
boolean game2dai.steering.AutoPilot.isPursuitOn | ( | ) |
Is pursuit switched on?
boolean game2dai.steering.AutoPilot.isSeekOn | ( | ) |
Is seek switched on?
boolean game2dai.steering.AutoPilot.isSeparationOn | ( | ) |
Is separation switched on?
boolean game2dai.steering.AutoPilot.isWallAvoidOn | ( | ) |
Is wall avoidance switched on?
boolean game2dai.steering.AutoPilot.isWallAvoidOvalEnvelopeOn | ( | ) |
If on then the side whiskers are smaller than the front whiskers.
boolean game2dai.steering.AutoPilot.isWanderOn | ( | ) |
Is wander switched on?
|
private |
OBSTACLE AVOIDANCE Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
double game2dai.steering.AutoPilot.obstacleAvoidDetectBoxLength | ( | ) |
Only provided to enable drawing the box during testing.
AutoPilot game2dai.steering.AutoPilot.obstacleAvoidDetectBoxLength | ( | double | boxLength | ) |
Set the obstacle avoidance detection box length.
boxLength | new length |
AutoPilot game2dai.steering.AutoPilot.obstacleAvoidFactors | ( | double | detectBoxLength | ) |
Set the factors used for obstacle avoidance.
There is only one the detectBoxLength the lager the value the earlier it will see the obstacle.
detectBoxLength | detect box length (>0) |
AutoPilot game2dai.steering.AutoPilot.obstacleAvoidOff | ( | ) |
Switch off obstacle avoidance
AutoPilot game2dai.steering.AutoPilot.obstacleAvoidOn | ( | ) |
Switch on obstacle avoidance
double game2dai.steering.AutoPilot.obstacleAvoidWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.obstacleAvoidWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
OFFSET PURSUIT Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
AutoPilot game2dai.steering.AutoPilot.offsetPursuitOff | ( | ) |
Switch off offsetPursuit
AutoPilot game2dai.steering.AutoPilot.offsetPursuitOn | ( | ) |
Switch on offsetPursuit
AutoPilot game2dai.steering.AutoPilot.offsetPursuitOn | ( | MovingEntity | me, |
Vector2D | offset | ||
) |
Set the target enitiy for offsetPursuit and the offset.
me | |
offset |
double game2dai.steering.AutoPilot.offsetPursuitWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.offsetPursuitWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
Calculate and add the route from the end of the existing path (or the nearest node if there is no existing path) to the dest Node. The path calculation will use A* with crow's flight heuristic when calculating the route.
The instruction is ignored if the graph or destination node does note exist.
graph | |
dest |
Add the route to the end of the existing path. Do nothing if the parameter is null.
route | the path to add |
Add the waypoint to the end of the existing path and switch path following on. Do nothing if the parameter is null or empty.
waypoint | add a single waypoint to the route |
Add the route to the end of the existing path and switch path following on. Do nothing if the parameter is null or empty.
route | the path to follow |
AutoPilot game2dai.steering.AutoPilot.pathFactors | ( | Object | seekDist, |
Object | arriveDist | ||
) |
seekDist | distance to way-point when considered reached |
arriveDist | distance to destination when considered reached |
|
private |
GraphNode game2dai.steering.AutoPilot.pathNextNode | ( | ) |
Get the node the entity is currently moving towards. If there is no path defined or the entity has reached the end of its last path the method returns null.
AutoPilot game2dai.steering.AutoPilot.pathOff | ( | ) |
Switch off path
AutoPilot game2dai.steering.AutoPilot.pathOn | ( | ) |
Switch on path
LinkedList< GraphNode > game2dai.steering.AutoPilot.pathRoute | ( | ) |
Get the path the entity is following
int game2dai.steering.AutoPilot.pathRouteLength | ( | ) |
Get the number of way-points left on the current route
Set the path the entity should follow. Ignore if route is null or has less than 2 locations.
route | the path to follow |
Set the path the entity should follow. Ignore if route is null or has less than 2 nodes.
route | the path to follow |
double game2dai.steering.AutoPilot.pathWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.pathWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
PURSUIT Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
|
protected |
PURSUIT Seek to the agent's predicted position based on velocities and estimated time to intercept
double game2dai.steering.AutoPilot.pursuitDistance | ( | ) |
Get current distance from the owning entity and the moving entity we want are pursuing.
AutoPilot game2dai.steering.AutoPilot.pursuitOff | ( | ) |
Switch off pursuit pursuer
AutoPilot game2dai.steering.AutoPilot.pursuitOn | ( | ) |
Switch on pursuit pursuer
AutoPilot game2dai.steering.AutoPilot.pursuitOn | ( | MovingEntity | me | ) |
Switch on pursuit and specify the entity to persue.
me | the entity to pursuit |
double game2dai.steering.AutoPilot.pursuitWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.pursuitWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
SEEK Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
double game2dai.steering.AutoPilot.seekDistance | ( | ) |
Get current distance from the owning entity to the seek target position.
AutoPilot game2dai.steering.AutoPilot.seekOff | ( | ) |
Switch off seek
AutoPilot game2dai.steering.AutoPilot.seekOn | ( | ) |
Switch on seek
AutoPilot game2dai.steering.AutoPilot.seekOn | ( | double | x, |
double | y | ||
) |
Switch on seek
x | the x position of the target to seek |
y | the y position of the target to seek |
Switch on seek
target | the location to seek |
double game2dai.steering.AutoPilot.seekWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.seekWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
SEPARATION Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
AutoPilot game2dai.steering.AutoPilot.separationOff | ( | ) |
Switch off separation
AutoPilot game2dai.steering.AutoPilot.separationOn | ( | ) |
Switch on separation
double game2dai.steering.AutoPilot.separationWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.separationWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
DO NOT USE THIS METHOD
This method is for sole use by the Vehicle class when a steering behaviour is added.
vehicle |
String game2dai.steering.AutoPilot.toString | ( | ) |
This method provides a String object that describes the active behaviours and their details. This is useful when debugging.
|
private |
WALL AVOIDANCE Used internally to calculate the force for this behaviour on the entity that owns this steering behaviour object.
AutoPilot game2dai.steering.AutoPilot.wallAvoidFactors | ( | Object | nbrWhiskers, |
Object | whiskerLength, | ||
Object | fov, | ||
Boolean | shortOnSide | ||
) |
Set some or all of the factors used for wall avoidance.
Only provide values for the factors you want to set, pass 'null' for any factor that is to be unchanged.
Where appropriate validation will be applied to the value passed and if invalid (eg out of permitted range) will be silently ignored (no warning message) and the factor will remain unchanged.
nbrWhiskers | the number of feelers to use (>0) |
whiskerLength | the length of the feelers (>0) |
fov | the arc angle (radians) covered by the feeler array (>0 and <= 2Pi |
shortOnSide | if true then the side feelers are shorter than front facing feelers else all feelers are the same length |
double game2dai.steering.AutoPilot.wallAvoidFOV | ( | ) |
Get the angle covered by the whiskers
int game2dai.steering.AutoPilot.wallAvoidNbrWhiskers | ( | ) |
Get the number of whiskers used.
AutoPilot game2dai.steering.AutoPilot.wallAvoidOff | ( | ) |
Switch off wall avoidance
AutoPilot game2dai.steering.AutoPilot.wallAvoidOn | ( | ) |
Switch on wall avoidance
double game2dai.steering.AutoPilot.wallAvoidWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.wallAvoidWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
double game2dai.steering.AutoPilot.wallAvoidWhiskerLength | ( | ) |
Get the length of the whiskers
|
private |
WANDER Used internally to calculate the wander force
double game2dai.steering.AutoPilot.wanderAngle | ( | ) |
Gets the current angle in the wander radius circle
double game2dai.steering.AutoPilot.wanderAngleJitter | ( | ) |
Gets the maximum amount of jitter allowed per second
double game2dai.steering.AutoPilot.wanderDist | ( | ) |
AutoPilot game2dai.steering.AutoPilot.wanderFactors | ( | Object | dist, |
Object | radius, | ||
Object | jitter | ||
) |
Set some or all of the factors used for wander behaviour.
Only provide values for the factors you want to set, pass 'null' for any factor that is to be unchanged.
Where appropriate validation will be applied to the value passed and if invalid (eg out of permitted range) will be silently ignored (no warning message) and the factor will remain unchanged.
dist | |
radius | |
jitter |
AutoPilot game2dai.steering.AutoPilot.wanderOff | ( | ) |
Switch off wander
AutoPilot game2dai.steering.AutoPilot.wanderOn | ( | ) |
Switch on wander
double game2dai.steering.AutoPilot.wanderRadius | ( | ) |
double game2dai.steering.AutoPilot.wanderWeight | ( | ) |
Get the weighting for this behaviour
AutoPilot game2dai.steering.AutoPilot.wanderWeight | ( | double | weight | ) |
Set the weight for this behaviour
weight | the weighting to be applied to this behaviour. |
|
private |
the first 2 are used for the interpose AGENT0, AGENT1, AGENT_TO_PURSUE, AGENT_TO_EVADE
|
staticprivate |
|
private |
Default values for steering behaviour objects.