Menge
Modular Pedestrian Simulation Framework for Research and Development
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Protected Attributes | Friends | List of all members
Menge::BFSM::RoadMapVelComponent Class Reference

A velocity component that returns a preferred velocity whose direction and preferred speed are computed from a velocity field. More...

#include <VelCompRoadMap.h>

Inheritance diagram for Menge::BFSM::RoadMapVelComponent:
Menge::BFSM::VelComponent Menge::Element

Public Member Functions

 RoadMapVelComponent ()
 Default constructor.
 
 RoadMapVelComponent (const GraphPtr &graph)
 Constructor. More...
 
 ~RoadMapVelComponent ()
 Destructor.
 
void setRoadMap (const GraphPtr &graph)
 Sets the road map for this velocity component. More...
 
virtual void onExit (Agents::BaseAgent *agent)
 Called when the agent leaves the state which possesses this velocity component. More...
 
virtual void setPrefVelocity (const Agents::BaseAgent *agent, const Goal *goal, Agents::PrefVelocity &pVel)
 Computes and sets the agent's preferred velocity. More...
 
virtual VelCompContextgetContext ()
 Provides a display context for interacting with this velocity component. More...
 
- Public Member Functions inherited from Menge::BFSM::VelComponent
 VelComponent ()
 Default constructor.
 
virtual void onEnter (Agents::BaseAgent *agent)
 Called when the agent enters the state which possesses this velocity component. More...
 
- Public Member Functions inherited from Menge::Element
void destroy ()
 This supplants the destructor. More...
 
virtual BFSM::TaskgetTask ()
 Return an optional task associated with this element. More...
 
virtual SceneGraph::GLNodegetSGNode ()
 Returns an optional visualization element associated with the element. More...
 

Protected Attributes

GraphPtr _roadmap
 The roadmap.
 
PathMap _paths
 The paths for all agents in this state.
 
ReadersWriterLock _lock
 Lock to protect _paths;.
 

Friends

class RoadMapVCContext
 

Additional Inherited Members

- Protected Member Functions inherited from Menge::BFSM::VelComponent
virtual ~VelComponent ()
 Virtual destructor.
 

Detailed Description

A velocity component that returns a preferred velocity whose direction and preferred speed are computed from a velocity field.

If the velocity vector is of unit length, the preferred speed will be unchanged. Otherwise, the preferred speed is scaled by the length of the velocity vector.

Constructor & Destructor Documentation

Menge::BFSM::RoadMapVelComponent::RoadMapVelComponent ( const GraphPtr graph)

Constructor.

Parameters
graphThe graph representing the roadmap. The graph will be destroyed when the velocity component is destroyed.

Member Function Documentation

VelCompContext * Menge::BFSM::RoadMapVelComponent::getContext ( )
virtual

Provides a display context for interacting with this velocity component.

It is the responsibility of the caller to delete the provided context.

Returns
A pointer to a context for this vel component.

Reimplemented from Menge::BFSM::VelComponent.

void Menge::BFSM::RoadMapVelComponent::onExit ( Agents::BaseAgent agent)
virtual

Called when the agent leaves the state which possesses this velocity component.

Gives the velocity component to restore any agent-specific data it might have changed.

Parameters
agentThe agent who left the state.

Reimplemented from Menge::BFSM::VelComponent.

void Menge::BFSM::RoadMapVelComponent::setPrefVelocity ( const Agents::BaseAgent agent,
const Goal goal,
Agents::PrefVelocity pVel 
)
virtual

Computes and sets the agent's preferred velocity.

The velocity component directly sets preferred velocity values in the the provided preferred velocity instance. See Agents::PrefVelocity for details. Rather than setting the agent's preferred velocity value directly, a reference to a preferred velocity instance is passed in to make the use more general. This allows the computation of the preferred velocity for the agent, without necessarily making changes to it.

Parameters
agentThe agent for which a preferred velocity is computed.
goalThe agent's goal (although this may be ignored).
pVelThe instance of Agents::PrefVelocity to set.

Implements Menge::BFSM::VelComponent.

void Menge::BFSM::RoadMapVelComponent::setRoadMap ( const GraphPtr graph)
inline

Sets the road map for this velocity component.

Parameters
graphThe graph of the roadmap.

The documentation for this class was generated from the following files: