#include <navigationprofile.h>
BaseNavigationProfile and its derivation NavigationProfile<TraverseLogic> is a class that simplifies the customization of the navigation.
Enforces all PathFinding and PathFollowing customizations to use the same TraverseLogic. Gathers explicitly the different customization interfaces that can be implemented in the PathFollower. Makes a clear distinction between [classes that are sharable between bots] and [classes that are per Bot] transparent. NavigationProfile is a very commonly used derivation of BaseNavigationProfile. Most user customizations of BaseNavigationProfile are derivations of NavigationProfile<TraverseLogicT>.
Inherits Kaim::BaseNavigationProfile.
Public Member Functions | |
virtual Ptr< BasePathProgressComputer > | GetSharedPathProgressComputer () |
BasePathProgressComputer::Update() is called in Bot::UpdatePathFollowing() More... | |
virtual Ptr< IPathEventListObserver > | GetSharedPathEventListObserver () |
IPathEventListObserver is called in BasePathProgressComputer::Update() More... | |
virtual Ptr< IPositionOnPathValidator > | GetSharedPositionOnPathValidator () |
IPositionOnPathValidator is called in BasePathProgressComputer::Update() More... | |
virtual Ptr< Trajectory > | CreateTrajectory (Bot *bot) |
Trajectory::Compute() is called in Bot::UpdatePathFollowing() after BasePathProgressComputer::Update() More... | |
virtual Ptr< IAvoidanceComputer > | GetSharedAvoidanceComputer () |
AvoidanceComputer::Compute() is called in Trajectory::Compute() More... | |
virtual Ptr< IAvoidanceSolver > | GetSharedAvoidanceSolver () |
AvoidanceSolver::Solve() is called in the AvoidanceComputer. More... | |
virtual Ptr< IAvoidanceFilter > | GetSharedAvoidanceFilter () |
IAvoidanceFilter::Filter() is called in the AvoidanceComputer. More... | |
|
inlinevirtual |
Trajectory::Compute() is called in Bot::UpdatePathFollowing() after BasePathProgressComputer::Update()
Implements Kaim::BaseNavigationProfile.
|
inlinevirtual |
AvoidanceComputer::Compute() is called in Trajectory::Compute()
Implements Kaim::BaseNavigationProfile.
|
inlinevirtual |
IAvoidanceFilter::Filter() is called in the AvoidanceComputer.
Implements Kaim::BaseNavigationProfile.
|
inlinevirtual |
AvoidanceSolver::Solve() is called in the AvoidanceComputer.
Implements Kaim::BaseNavigationProfile.
|
inlinevirtual |
IPathEventListObserver is called in BasePathProgressComputer::Update()
Implements Kaim::BaseNavigationProfile.
Reimplemented in Kaim::GameKitNavigationProfile.
|
inlinevirtual |
BasePathProgressComputer::Update() is called in Bot::UpdatePathFollowing()
Implements Kaim::BaseNavigationProfile.
|
inlinevirtual |
IPositionOnPathValidator is called in BasePathProgressComputer::Update()
Implements Kaim::BaseNavigationProfile.