Package-level declarations
Types
Weighted strategy where the weight of each steering action is the inverse of the node's distance from the action's target (the closer the target, the more important the action). defaultWeight is used for actions without a target.
SteeringStrategy decorator applying a filter to the list of steering actions (see computeNextPosition).
Filtered strategy considering only the group steering action and the non-group steering action whose targets are nearest to the node's position. The two actions are combined using DistanceWeighted strategy.
A SteeringStrategy in which one action is prevalent. Only NavigationActions can be prevalent, because they guarantee to navigate the environment consciously (e.g. without getting stuck in obstacles). The purpose of this strategy is to linearly combine the potentially contrasting forces to which the node is subject, while maintaining that warranty. Such forces are combined as follows: let f be the prevalent force,
A PhysicalSteeringStrategy performing a simple sum of the overall intentional force and the physical ones.
A Weighted steering strategy assigning weights based on actions' types (each type has its own weight, specified by the client).
A SteeringStrategy performing a weighted sum of steering actions (see computeNextPosition).