Infohazard.HyperNav 2.1.0
A pathfinding and avoidance solution for volumetric and omnidirectional navigation.
Loading...
Searching...
No Matches
Infohazard.HyperNav.NavPathfinder Class Reference

A script used to calculate HyperNav paths. More...

Classes

class  PropNames
 This is used to refer to the names of private fields in this class from a custom Editor. More...
 

Public Member Functions

long FindPath (NavSampleResult startHit, NavSampleResult endHit, Vector3 startPos, Vector3 endPos, NavPathfindingParams pathParams, HyperNavPathCallback receiver)
 Find a path between two already-calculated nav query results, and invoke the receiver when it is completed. More...
 
void CancelPath (long id, bool logError=true)
 Cancel a pending path with the given ID. More...
 

Protected Member Functions

virtual void OnEnable ()
 If IsMainInstance is true, set MainInstance or log an error if it is already set. More...
 
virtual void OnDisable ()
 Dispose the pools of pending paths and completed paths, and all memory allocated for pathfinding jobs. More...
 
virtual void Update ()
 If mode is JobThread, check job completion. If mode is MainThreadAsynchronous, perform pathfinding work. More...
 

Package Functions

void DisposePath (NavPath path)
 Called by NavPath.Dispose. More...
 

Properties

bool IsMainInstance [get, set]
 Whether to set NavPathfinder.Instance to this instance. More...
 
NavPathfindingMode PathfindingMode [get, set]
 The mode to use for calculating paths. More...
 
int MaxConcurrentJobs [get, set]
 (JobThread Mode ONLY) Maximum number of pathfinding jobs that can be actively running at once. More...
 
int MaxCompletionFrames [get, set]
 (JobThread Mode ONLY) Maximum number of frames a job can take before the main thread must wait for it. More...
 
int PathTighteningIterations [get, set]
 Number of times to apply the path tightening operation to attempt to shorten the path. More...
 
static NavPathfinder MainInstance [get, private set]
 The main instance, which should be used in most situations. More...
 

Private Member Functions

void LateUpdate ()
 Move paths from the pending queue and start executing them. More...
 

Detailed Description

A script used to calculate HyperNav paths.

Can be used as a singleton, or you can have more than one if needed.

Member Function Documentation

◆ CancelPath()

void Infohazard.HyperNav.NavPathfinder.CancelPath ( long  id,
bool  logError = true 
)

Cancel a pending path with the given ID.

If the mode is set to JobThread and the requested path is already executing, the actual work thread cannot be cancelled. However, this will still remove the receiver, so no matter what that will not be called for the path.

Parameters
idThe path ID to cancel.
logErrorWhether to log an error if the path is not running.

◆ DisposePath()

void Infohazard.HyperNav.NavPathfinder.DisposePath ( NavPath  path)
package

Called by NavPath.Dispose.

Parameters
pathThe path to dispose.

◆ FindPath()

long Infohazard.HyperNav.NavPathfinder.FindPath ( NavSampleResult  startHit,
NavSampleResult  endHit,
Vector3  startPos,
Vector3  endPos,
NavPathfindingParams  pathParams,
HyperNavPathCallback  receiver 
)

Find a path between two already-calculated nav query results, and invoke the receiver when it is completed.

If pathfinding cannot occur, for example because there are no volumes, this method will return -1 and the receiver will not be invoked. If no path can be found, the receiver will be invoked with a null Path argument.

Parameters
startHitQuery result for the start of the path.
endHitQuery result for the end of the path.
startPosStart position for the path.
endPosDestination for the path.
pathParamsParameters for pathfinding.
receiverCallback to receive the path when it has been calculated.
Returns
The ID of the pending path, or -1 if pathfinding cannot occur.

◆ LateUpdate()

void Infohazard.HyperNav.NavPathfinder.LateUpdate ( )
private

Move paths from the pending queue and start executing them.

◆ OnDisable()

virtual void Infohazard.HyperNav.NavPathfinder.OnDisable ( )
protectedvirtual

Dispose the pools of pending paths and completed paths, and all memory allocated for pathfinding jobs.

◆ OnEnable()

virtual void Infohazard.HyperNav.NavPathfinder.OnEnable ( )
protectedvirtual

If IsMainInstance is true, set MainInstance or log an error if it is already set.

◆ Update()

virtual void Infohazard.HyperNav.NavPathfinder.Update ( )
protectedvirtual

If mode is JobThread, check job completion. If mode is MainThreadAsynchronous, perform pathfinding work.

Property Documentation

◆ IsMainInstance

bool Infohazard.HyperNav.NavPathfinder.IsMainInstance
getset

Whether to set NavPathfinder.Instance to this instance.

This cannot be set while the game is running.

◆ MainInstance

NavPathfinder Infohazard.HyperNav.NavPathfinder.MainInstance
staticgetprivate set

The main instance, which should be used in most situations.

If you need more than one NavPathfinder, you can use direct references to other instances with IsMainInstance set to false.

◆ MaxCompletionFrames

int Infohazard.HyperNav.NavPathfinder.MaxCompletionFrames
getset

(JobThread Mode ONLY) Maximum number of frames a job can take before the main thread must wait for it.

Unity imposes a limit of 3 frames for faster TempJob allocations, so increasing this beyond 3 will slightly decrease memory performance. If a job takes longer than this and is forced to block the main thread, a warning will be logged showing you how long it blocked the main thread for. This cannot be set while any paths are executing.

◆ MaxConcurrentJobs

int Infohazard.HyperNav.NavPathfinder.MaxConcurrentJobs
getset

(JobThread Mode ONLY) Maximum number of pathfinding jobs that can be actively running at once.

Requests beyond this number are queued. You should keep this number fairly low, as each job has the potential to take up a CPU thread.

◆ PathfindingMode

NavPathfindingMode Infohazard.HyperNav.NavPathfinder.PathfindingMode
getset

The mode to use for calculating paths.

This cannot be set while the game is running.

◆ PathTighteningIterations

int Infohazard.HyperNav.NavPathfinder.PathTighteningIterations
getset

Number of times to apply the path tightening operation to attempt to shorten the path.


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