Click or drag to resize

WrappingNavigationProvider Class

Provides a helper for wrapping a different navigation provider.
Inheritance Hierarchy
System.Object
  ff14bot.Pathing.NavigationProvider
    ff14bot.Pathing.Service_Navigation.WrappingNavigationProvider

Namespace:  ff14bot.Pathing.Service_Navigation
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public class WrappingNavigationProvider : NavigationProvider

The WrappingNavigationProvider type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyIsCurrent
Gets a bool that indicates whether this is the current navigation provider.
(Inherited from NavigationProvider.)
Public propertyOriginal
The original nav provider, which is being wrapped.
Top
Methods
  NameDescription
Public methodAtLocation
Gets a bool that indicates whether one position is considered to be at another position. Can be used to check if the player has reached a destination, for example.
(Overrides NavigationProvider.AtLocation(Vector3, Vector3).)
Public methodCanFullyNavigateFrom
Check if multiple locations can be path from to one specific spot This is an external asynchronous task, and should not be awaited directly from coroutines. See ExternalTask(Task)
(Inherited from NavigationProvider.)
Public methodCanFullyNavigateTo(ICollection<CanFullyNavigateTarget>)
Check if multiple locations can be pathed to on the current zone
(Inherited from NavigationProvider.)
Public methodCanFullyNavigateTo(ICollection<CanFullyNavigateTarget>, Vector3, UInt16)
Check if multiple locations can be pathed to on the given zoneid This is an external asynchronous task, and should not be awaited directly from coroutines. See ExternalTask(Task)
(Inherited from NavigationProvider.)
Public methodClear
Clears the current path in this nav provider.
(Overrides NavigationProvider.Clear().)
Public methodClearStuckInfo
Clears the stuck handler information.
(Overrides NavigationProvider.ClearStuckInfo().)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLookupPathInfo
Looks up the information of a path going to an object.
(Overrides NavigationProvider.LookupPathInfo(GameObject, Single).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMoveTo
Moves towards the specified locations.
(Overrides NavigationProvider.MoveTo(MoveToParameters).)
Public methodOnPulse
Pulses this provider. Called every tick.
(Overrides NavigationProvider.OnPulse().)
Public methodOnRemoveAsCurrent
Called when this NavigationProvider is removed as the current by assigning a different provider to NavigationProvider.
(Overrides NavigationProvider.OnRemoveAsCurrent().)
Public methodOnSetAsCurrent
Called when this NavigationProvider is set as the current by assigning it to NavigationProvider.
(Overrides NavigationProvider.OnSetAsCurrent().)
Public methodSamplePointsAsync
Samples the navigator for points.
(Overrides NavigationProvider.SamplePointsAsync(SamplePointsParameters).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
This class is meant to be derived from when wrapping a different navigation provider to extend or remove certain features from it.
See Also