OSVR
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
Public Member Functions | Public Attributes | List of all members
Gestures.GestureMonitor Class Reference

Class responsible for tracking gestures. See TrackerSetup for example of how to set up instance. More...

Inheritance diagram for Gestures.GestureMonitor:

Public Member Functions

void Awake ()
 
void Update ()
 
Dictionary< string, GestureGetGestureMap ()
 Get the Dictionary storing Gestures and names. More...
 
Normalizer GetViewNormalizer ()
 Get the data normalizer used by this monitor More...
 
void SetViewNormalizer (Normalizer norm)
 Sets the normalizer used for pre-processing the datapoints before the individual gestures' normaization takes place. More...
 
GTransformBuffer GetDataBuffer ()
 Get the data buffer used by this monitor More...
 
void AddGesture (string name, Gesture g)
 Add a new Gesture to be tracked More...
 
void SetTrackGesture (string gname, bool enabled)
 Set the tracking state for a single Gesture More...
 
void SetTrackGesture (List< string > names, bool enabled)
 Set the tracking state for a list of Gestures More...
 
void SetTrackAllGestures (bool enabled)
 Set the tracking state for all Gestures More...
 
void AddGestureCompleteCallback (UnityAction< GestureMetaData > eve)
 Add an event listener for when a user completes a valid Gesture More...
 
void RemoveGestureCompleteCallback (UnityAction< GestureMetaData > eve)
 Remove an event listener for when a user completes a valid Gesture More...
 
void RemoveAllGestureCompleteCallbacks ()
 Remove all event listeners for when a user completes a valid Gesture More...
 
void AddGestureFailedCallback (UnityAction< GestureMetaData > eve)
 Add an event listener for when a user fails to complete a valid Gesture More...
 
void RemoveGestureFailedCallback (UnityAction< GestureMetaData > eve)
 Remove an event listener for when a user fails to complete a valid Gesture More...
 
void RemoveAllGestureFailedCallbacks ()
 Remove all event listeners for when a user fails to complete a valid Gesture More...
 
void AddGestureStartCallback (UnityAction eve)
 Add an event listener for when a user starts drawing a Gesture More...
 
void RemoveGestureStartCallback (UnityAction eve)
 Remove an event listeners for when a user starts drawing a Gesture More...
 
void RemoveAllGestureStartCallbacks ()
 Remove all event listeners for when a user starts drawing a Gesture More...
 
void SetMaxBufferSize (int size)
 Set the max capacity of the transform buffer More...
 
void SetBufferWrap (bool circular)
 Set whether the buffer should act as a standard array or a circular array More...
 
void ClearBuffer ()
 Clear the buffer of all Transforms and erase all positions from the attached LineRenderer More...
 

Public Attributes

LineRenderer lineRenderer
 A LineRenderer used to visualize the gestures during and after gesture creation. More...
 
IController controller
 The IController that generates the GTransform objects for gesture recognition. More...
 
int bufferSize = 512
 The default buffer size for the GTransformBuffer class. More...
 

Detailed Description

Class responsible for tracking gestures. See TrackerSetup for example of how to set up instance.

Member Function Documentation

void Gestures.GestureMonitor.AddGesture ( string  name,
Gesture  g 
)
inline

Add a new Gesture to be tracked

Parameters
nameThe name to reference the Gesture by
gThe instance of a Gesture to track
void Gestures.GestureMonitor.AddGestureCompleteCallback ( UnityAction< GestureMetaData eve)
inline

Add an event listener for when a user completes a valid Gesture

Parameters
eve
void Gestures.GestureMonitor.AddGestureFailedCallback ( UnityAction< GestureMetaData eve)
inline

Add an event listener for when a user fails to complete a valid Gesture

Parameters
eve
void Gestures.GestureMonitor.AddGestureStartCallback ( UnityAction  eve)
inline

Add an event listener for when a user starts drawing a Gesture

void Gestures.GestureMonitor.Awake ( )
inline
void Gestures.GestureMonitor.ClearBuffer ( )
inline

Clear the buffer of all Transforms and erase all positions from the attached LineRenderer

GTransformBuffer Gestures.GestureMonitor.GetDataBuffer ( )
inline

Get the data buffer used by this monitor

Returns
Return the class's GTransformBuffer
Dictionary<string, Gesture> Gestures.GestureMonitor.GetGestureMap ( )
inline

Get the Dictionary storing Gestures and names.

Returns
Dictionary mapping Gesture names to gestures
Normalizer Gestures.GestureMonitor.GetViewNormalizer ( )
inline

Get the data normalizer used by this monitor

Returns
Return the class's ViewNormalizer
void Gestures.GestureMonitor.RemoveAllGestureCompleteCallbacks ( )
inline

Remove all event listeners for when a user completes a valid Gesture

void Gestures.GestureMonitor.RemoveAllGestureFailedCallbacks ( )
inline

Remove all event listeners for when a user fails to complete a valid Gesture

void Gestures.GestureMonitor.RemoveAllGestureStartCallbacks ( )
inline

Remove all event listeners for when a user starts drawing a Gesture

void Gestures.GestureMonitor.RemoveGestureCompleteCallback ( UnityAction< GestureMetaData eve)
inline

Remove an event listener for when a user completes a valid Gesture

Parameters
eve
void Gestures.GestureMonitor.RemoveGestureFailedCallback ( UnityAction< GestureMetaData eve)
inline

Remove an event listener for when a user fails to complete a valid Gesture

Parameters
eve
void Gestures.GestureMonitor.RemoveGestureStartCallback ( UnityAction  eve)
inline

Remove an event listeners for when a user starts drawing a Gesture

void Gestures.GestureMonitor.SetBufferWrap ( bool  circular)
inline

Set whether the buffer should act as a standard array or a circular array

Parameters
circularTrue if the buffer should wrap, False otherwise
void Gestures.GestureMonitor.SetMaxBufferSize ( int  size)
inline

Set the max capacity of the transform buffer

Parameters
sizeSet the number of GTransforms that the buffer can hold. Default is 512
void Gestures.GestureMonitor.SetTrackAllGestures ( bool  enabled)
inline

Set the tracking state for all Gestures

Parameters
enabledTrue if all Gestures should be enabled, False otherwise
void Gestures.GestureMonitor.SetTrackGesture ( string  gname,
bool  enabled 
)
inline

Set the tracking state for a single Gesture

Parameters
gnameThe name of the Gesture to set the tracking state of
enabledTrue if the Gesture should be enabled, False otherwise
void Gestures.GestureMonitor.SetTrackGesture ( List< string >  names,
bool  enabled 
)
inline

Set the tracking state for a list of Gestures

Parameters
namesThe names of all Gestures to set the tracking state of
enabledTrue if the Gestures should be enabled, False otherwise
void Gestures.GestureMonitor.SetViewNormalizer ( Normalizer  norm)
inline

Sets the normalizer used for pre-processing the datapoints before the individual gestures' normaization takes place.

Parameters
norm
Returns
void Gestures.GestureMonitor.Update ( )
inline

Member Data Documentation

int Gestures.GestureMonitor.bufferSize = 512

The default buffer size for the GTransformBuffer class.

IController Gestures.GestureMonitor.controller

The IController that generates the GTransform objects for gesture recognition.

LineRenderer Gestures.GestureMonitor.lineRenderer

A LineRenderer used to visualize the gestures during and after gesture creation.


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