NavigationPrioritisedSteering

open class NavigationPrioritisedSteering<T, N : ConvexPolygon> @JvmOverloads constructor(env: Euclidean2DEnvironmentWithGraph<*, T, N, *>, pedestrian: Pedestrian2D<T>, timeDistribution: TimeDistribution<T>, toleranceAngle: Double, alpha: Double) : SteeringBehavior<T>

A SteeringBehavior using SinglePrevalent steering strategy and accepting a collection of actions containing a single NavigationAction2D, which is used as the prevalent one.

Parameters

T

concentration type

N

type of nodes of the environment's graph.

Constructors

Link copied to clipboard
fun <T, N : ConvexPolygon> NavigationPrioritisedSteering(env: Euclidean2DEnvironmentWithGraph<*, T, N, *>, pedestrian: Pedestrian2D<T>, timeDistribution: TimeDistribution<T>, toleranceAngle: Double = Math.toDegrees(SinglePrevalent.DEFAULT_TOLERANCE_ANGLE), alpha: Double = SinglePrevalent.DEFAULT_ALPHA)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
fun addInboundDependency(p0: Dependency)
Link copied to clipboard
fun addOutboundDependency(p0: Dependency)
Link copied to clipboard
open override fun canExecute(): Boolean
Link copied to clipboard
open override fun cloneOnNewNode(node: Node<T>?, currentTime: Time?): SteeringBehavior<T>
Link copied to clipboard
operator override fun compareTo(other: Reaction<T>): Int
Link copied to clipboard
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun execute()
Link copied to clipboard
open override fun getActions(): MutableList<Action<T>>
Link copied to clipboard
open override fun getConditions(): MutableList<Condition<T>>
Link copied to clipboard
override fun getInboundDependencies(): ListSet<Dependency>
Link copied to clipboard
override fun getInputContext(): Context
Link copied to clipboard
override fun getNode(): Node<T>
Link copied to clipboard
override fun getOutboundDependencies(): ListSet<Dependency>
Link copied to clipboard
override fun getOutputContext(): Context
Link copied to clipboard
open override fun getRate(): Double
Link copied to clipboard
open fun getRateAsString(): String
Link copied to clipboard
open fun getReactionName(): String
Link copied to clipboard
override fun getTau(): Time
Link copied to clipboard
override fun getTimeDistribution(): TimeDistribution<T>
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
open override fun initializationComplete(p0: Time, p1: Environment<T, *>)
Link copied to clipboard
open fun <R : Reaction<T>> makeClone(p0: Supplier<R>): R
Link copied to clipboard
open override fun setActions(p0: MutableList<Action<T>>)
Link copied to clipboard
open override fun setConditions(p0: MutableList<Condition<T>>)
Link copied to clipboard
fun setInputContext(p0: Context)
Link copied to clipboard
fun setOutputContext(p0: Context)
Link copied to clipboard
fun steerActions(): List<SteeringAction<T, Euclidean2DPosition>>

The list of steering actions in this reaction.

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
override fun update(p0: Time, p1: Boolean, p2: Environment<T, *>)

Properties

Link copied to clipboard
open val steerStrategy: SteeringStrategy<T, Euclidean2DPosition>

Inheritors

Link copied to clipboard