44 lines
2.4 KiB
C#
44 lines
2.4 KiB
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using Microsoft.MixedReality.Toolkit.Utilities;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Input
|
|
{
|
|
/// <summary>
|
|
/// Defines the interactions and data that a Windows Mixed Reality motion controller can provide.
|
|
/// </summary>
|
|
public class WindowsMixedRealityControllerDefinition : BaseInputSourceDefinition
|
|
{
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="handedness">The handedness that this definition represents.</param>
|
|
public WindowsMixedRealityControllerDefinition(Handedness handedness) : base(handedness)
|
|
{
|
|
if ((handedness != Handedness.Left) &&
|
|
(handedness != Handedness.Right))
|
|
{
|
|
throw new System.ArgumentException($"Unsupported Handedness ({handedness}). The ViveWandControllerDefinition supports Left and Right.");
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override MixedRealityInputActionMapping[] DefaultMappings => new[]
|
|
{
|
|
new MixedRealityInputActionMapping("Spatial Pointer", AxisType.SixDof, DeviceInputType.SpatialPointer),
|
|
new MixedRealityInputActionMapping("Spatial Grip", AxisType.SixDof, DeviceInputType.SpatialGrip),
|
|
new MixedRealityInputActionMapping("Grip Press", AxisType.SingleAxis, DeviceInputType.GripPress),
|
|
new MixedRealityInputActionMapping("Trigger Position", AxisType.SingleAxis, DeviceInputType.Trigger),
|
|
new MixedRealityInputActionMapping("Trigger Touch", AxisType.Digital, DeviceInputType.TriggerTouch),
|
|
new MixedRealityInputActionMapping("Trigger Press (Select)", AxisType.Digital, DeviceInputType.Select),
|
|
new MixedRealityInputActionMapping("Touchpad Position", AxisType.DualAxis, DeviceInputType.Touchpad),
|
|
new MixedRealityInputActionMapping("Touchpad Touch", AxisType.Digital, DeviceInputType.TouchpadTouch),
|
|
new MixedRealityInputActionMapping("Touchpad Press", AxisType.Digital, DeviceInputType.TouchpadPress),
|
|
new MixedRealityInputActionMapping("Menu Press", AxisType.Digital, DeviceInputType.Menu),
|
|
new MixedRealityInputActionMapping("Thumbstick Position", AxisType.DualAxis, DeviceInputType.ThumbStick),
|
|
new MixedRealityInputActionMapping("Thumbstick Press", AxisType.Digital, DeviceInputType.ThumbStickPress),
|
|
};
|
|
}
|
|
}
|