|
override void | deleteCptr () |
|
override bool | DerivedClassHasMethod (string methodName, System.Type[] methodTypes) |
|
override IntPtr | GetNonDirectorClassID () |
|
override bool | IsUserDerived () |
|
override void | deleteCptr () |
|
override bool | DerivedClassHasMethod (string methodName, System.Type[] methodTypes) |
|
override IntPtr | GetNonDirectorClassID () |
|
override bool | IsUserDerived () |
|
|
enum | Axis {
X = 0,
Y = 1,
Z = 2,
Negative_X = 3,
Negative_Y = 4,
Negative_Z = 5
} |
|
enum | Priority { Low = 0,
Default = 1,
High = 2
} |
|
static HPS.WalkOperator.Axis | GetPrimaryAxis (HPS.Vector v) |
|
static bool | operator!= (HPS.Operator a, HPS.Operator b) |
|
static bool | operator== (HPS.Operator a, HPS.Operator b) |
|
static IntPtr | ClassID< T > () |
|
HandleRef | sptr |
|
bool | cMemOwn |
|
HandleRef | cptr |
|
static Dictionary< IntPtr, Operator > | cachedObjects = new Dictionary<IntPtr, Operator>() |
|
static Dictionary< IntPtr, WeakReference > | cachedWeakRefs = new Dictionary<IntPtr, WeakReference>() |
|
static ReaderWriterLockSlim | mapLock = new ReaderWriterLockSlim(LockRecursionPolicy.SupportsRecursion) |
|
The SimpleWalkOperator class defines an operator which allows the user to move forward and backwards and rotate while staying snapped to a plane.
◆ GetEnableMiddleMouseButtonDolly()
bool HPS.SimpleWalkOperator.GetEnableMiddleMouseButtonDolly |
( |
| ) |
|
|
inline |
This function returns the state of Camera Dolly operations using the middle mouse button. The SimpleWalkOperator has Camera Dolly operations fixed to the middle mouse button by default. To disable this behavior, set this value to false.
- Returns
- true if middle mouse button Camera Dollying is enabled, false otherwise.
◆ GetName()
override string HPS.SimpleWalkOperator.GetName |
( |
| ) |
|
|
inlinevirtual |
◆ IsMouseTriggered()
override bool HPS.SimpleWalkOperator.IsMouseTriggered |
( |
HPS.MouseState |
in_state | ) |
|
|
inlinevirtual |
This function overrides the base class implementation to additionally inspect in_state for the middle mouse button state if middle mouse button Camera Dollying is enabled.
- Returns
- true if the MouseButtons and ModifierKeys are active.
Reimplemented from HPS.Operator.
◆ OnKeyDown()
This function is called whenever HPS receives a KeyboardState event that signals a button was pressed. This operator does not handle key down events.
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnKeyUp()
This function is called whenever HPS receives a KeyboardState event that signals a button was released. This operator does not handle key up events.
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnModelAttached()
override void HPS.SimpleWalkOperator.OnModelAttached |
( |
| ) |
|
|
inlinevirtual |
This function is called whenever a model is attached to the view that is attached to this operator. If no view is attached to this operator, this function will not be called.
Reimplemented from HPS.FlyOperator.
◆ OnMouseDown()
override bool HPS.SimpleWalkOperator.OnMouseDown |
( |
HPS.MouseState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a MouseEvent that signals a mouse button was pressed. This function starts the operator and computes the position of the starting point.
- Parameters
-
in_state | A MouseState object describing the current mouse state. |
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnMouseEnter()
override bool HPS.SimpleWalkOperator.OnMouseEnter |
( |
HPS.MouseState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a MouseEvent that signals the mouse entered the window.
- Parameters
-
in_state | A MouseState object describing the current mouse state. |
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.Operator.
◆ OnMouseLeave()
override bool HPS.SimpleWalkOperator.OnMouseLeave |
( |
HPS.MouseState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a MouseEvent that signals the mouse left the window.
- Parameters
-
in_state | A MouseState object describing the current mouse state. |
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.Operator.
◆ OnMouseMove()
override bool HPS.SimpleWalkOperator.OnMouseMove |
( |
HPS.MouseState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a MouseEvent that signals the mouse moved This function rotates the camera in place and moves forward/back if the left mouse button is down.
- Parameters
-
in_state | A MouseState object describing the current mouse state. |
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnMouseUp()
override bool HPS.SimpleWalkOperator.OnMouseUp |
( |
HPS.MouseState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a MouseEvent that signals a mouse button was released.
- Parameters
-
in_state | A MouseState object describing the current mouse state. |
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnMouseWheel()
override bool HPS.SimpleWalkOperator.OnMouseWheel |
( |
HPS.MouseState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a MouseEvent that signals the mouse wheel moved
- Parameters
-
in_state | A MouseState object describing the current mouse state. |
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnTimerTick()
This function is called whenever HPS receives a TimerTickEvent This function moves the camera
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnTouchDown()
override bool HPS.SimpleWalkOperator.OnTouchDown |
( |
HPS.TouchState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a TouchEvent that signals the device was touched.
- Parameters
-
in_state | A TouchState object describing the current touch state. |
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnTouchMove()
override bool HPS.SimpleWalkOperator.OnTouchMove |
( |
HPS.TouchState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a TouchEvent that signals a point of contact has moved.
- Parameters
-
in_state | A TouchState object describing the current touch state. |
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnTouchUp()
override bool HPS.SimpleWalkOperator.OnTouchUp |
( |
HPS.TouchState |
in_state | ) |
|
|
inlinevirtual |
This function is called whenever HPS receives a TouchEvent that signals a point of contact has been released.
- Returns
- true if the input event was handled, false otherwise.
Reimplemented from HPS.FlyOperator.
◆ OnViewAttached()
override void HPS.SimpleWalkOperator.OnViewAttached |
( |
HPS.View |
in_attached_view | ) |
|
|
inlinevirtual |
This function is called whenever a view is attached to this operator.
Reimplemented from HPS.FlyOperator.
◆ SetEnableMiddleMouseButtonDolly()
void HPS.SimpleWalkOperator.SetEnableMiddleMouseButtonDolly |
( |
bool |
in_enable | ) |
|
|
inline |
This function enables or disables Camera Dolly operations using the middle mouse button. The SimpleWalkOperator has Camera Dolly operations fixed to the middle mouse button by default. To disable this behavior, set this value to false.
◆ SetKeyboardControlKey()
void HPS.SimpleWalkOperator.SetKeyboardControlKey |
( |
bool |
in_state | ) |
|
|
inline |
This function sets the Control key state in this operator. Call this function from your application to inform the the operator of the Control key state. The Control key decreases the velocities of forward/backward and rotation movements.
- Parameters
-
in_state | The new state of the Control key. |
◆ SetKeyboardShiftKey()
void HPS.SimpleWalkOperator.SetKeyboardShiftKey |
( |
bool |
in_state | ) |
|
|
inline |
This function sets the Shift key state in this operator. Call this function from your application to inform the the operator of the Shift key state. The Shift key increases the mouse trigger button forward/backward velocity.
- Parameters
-
in_state | The new state of the Shift key. |
The documentation for this class was generated from the following file:
- internals/hps_sprk_ops/source/cs/HPS.SimpleWalkOperator.cs