initial commit
This commit is contained in:
parent
6715289efe
commit
788c3389af
37645 changed files with 2526849 additions and 80 deletions
|
|
@ -0,0 +1,394 @@
|
|||
#if UNITY_INPUT_SYSTEM || PACKAGE_DOCS_GENERATION
|
||||
using UnityEngine.Scripting;
|
||||
using UnityEngine.InputSystem;
|
||||
using UnityEngine.InputSystem.Controls;
|
||||
using UnityEngine.InputSystem.Layouts;
|
||||
|
||||
#if ENABLE_VR || PACKAGE_DOCS_GENERATION
|
||||
using UnityEngine.InputSystem.XR;
|
||||
#endif
|
||||
|
||||
namespace Unity.XR.Oculus.Input
|
||||
{
|
||||
#if ENABLE_VR || PACKAGE_DOCS_GENERATION
|
||||
/// <summary>
|
||||
/// An Oculus VR headset (such as the Oculus Rift series of devices).
|
||||
/// </summary>
|
||||
[Preserve]
|
||||
[InputControlLayout(displayName = "Oculus Headset")]
|
||||
public class OculusHMD : XRHMD
|
||||
{
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl userPresence { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "devicetrackingstate" })]
|
||||
public new IntegerControl trackingState { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "deviceistracked" })]
|
||||
public new ButtonControl isTracked { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new Vector3Control devicePosition { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new QuaternionControl deviceRotation { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control deviceAngularVelocity { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control deviceAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control deviceAngularAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new Vector3Control leftEyePosition { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new QuaternionControl leftEyeRotation { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control leftEyeAngularVelocity { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control leftEyeAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control leftEyeAngularAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new Vector3Control rightEyePosition { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new QuaternionControl rightEyeRotation { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control rightEyeAngularVelocity { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control rightEyeAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control rightEyeAngularAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new Vector3Control centerEyePosition { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new QuaternionControl centerEyeRotation { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control centerEyeAngularVelocity { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control centerEyeAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control centerEyeAngularAcceleration { get; private set; }
|
||||
|
||||
|
||||
protected override void FinishSetup()
|
||||
{
|
||||
base.FinishSetup();
|
||||
|
||||
userPresence = GetChildControl<ButtonControl>("userPresence");
|
||||
trackingState = GetChildControl<IntegerControl>("trackingState");
|
||||
isTracked = GetChildControl<ButtonControl>("isTracked");
|
||||
devicePosition = GetChildControl<Vector3Control>("devicePosition");
|
||||
deviceRotation = GetChildControl<QuaternionControl>("deviceRotation");
|
||||
deviceAngularVelocity = GetChildControl<Vector3Control>("deviceAngularVelocity");
|
||||
deviceAcceleration = GetChildControl<Vector3Control>("deviceAcceleration");
|
||||
deviceAngularAcceleration = GetChildControl<Vector3Control>("deviceAngularAcceleration");
|
||||
leftEyePosition = GetChildControl<Vector3Control>("leftEyePosition");
|
||||
leftEyeRotation = GetChildControl<QuaternionControl>("leftEyeRotation");
|
||||
leftEyeAngularVelocity = GetChildControl<Vector3Control>("leftEyeAngularVelocity");
|
||||
leftEyeAcceleration = GetChildControl<Vector3Control>("leftEyeAcceleration");
|
||||
leftEyeAngularAcceleration = GetChildControl<Vector3Control>("leftEyeAngularAcceleration");
|
||||
rightEyePosition = GetChildControl<Vector3Control>("rightEyePosition");
|
||||
rightEyeRotation = GetChildControl<QuaternionControl>("rightEyeRotation");
|
||||
rightEyeAngularVelocity = GetChildControl<Vector3Control>("rightEyeAngularVelocity");
|
||||
rightEyeAcceleration = GetChildControl<Vector3Control>("rightEyeAcceleration");
|
||||
rightEyeAngularAcceleration = GetChildControl<Vector3Control>("rightEyeAngularAcceleration");
|
||||
centerEyePosition = GetChildControl<Vector3Control>("centerEyePosition");
|
||||
centerEyeRotation = GetChildControl<QuaternionControl>("centerEyeRotation");
|
||||
centerEyeAngularVelocity = GetChildControl<Vector3Control>("centerEyeAngularVelocity");
|
||||
centerEyeAcceleration = GetChildControl<Vector3Control>("centerEyeAcceleration");
|
||||
centerEyeAngularAcceleration = GetChildControl<Vector3Control>("centerEyeAngularAcceleration");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// An Oculus Touch controller.
|
||||
/// </summary>
|
||||
[Preserve]
|
||||
[InputControlLayout(displayName = "Oculus Touch Controller", commonUsages = new[] { "LeftHand", "RightHand" })]
|
||||
public class OculusTouchController : XRControllerWithRumble
|
||||
{
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "Primary2DAxis", "Joystick" })]
|
||||
public Vector2Control thumbstick { get; private set; }
|
||||
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public AxisControl trigger { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public AxisControl grip { get; private set; }
|
||||
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "A", "X", "Alternate" })]
|
||||
public ButtonControl primaryButton { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "B", "Y", "Primary" })]
|
||||
public ButtonControl secondaryButton { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "GripButton" })]
|
||||
public ButtonControl gripPressed { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl start { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "JoystickOrPadPressed", "thumbstickClick" })]
|
||||
public ButtonControl thumbstickClicked { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "ATouched", "XTouched", "ATouch", "XTouch" })]
|
||||
public ButtonControl primaryTouched { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "BTouched", "YTouched", "BTouch", "YTouch" })]
|
||||
public ButtonControl secondaryTouched { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "indexTouch", "indexNearTouched" })]
|
||||
public AxisControl triggerTouched { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "indexButton", "indexTouched" })]
|
||||
public ButtonControl triggerPressed { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "JoystickOrPadTouched", "thumbstickTouch" })]
|
||||
public ButtonControl thumbstickTouched { get; private set; }
|
||||
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "controllerTrackingState" })]
|
||||
public new IntegerControl trackingState { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "ControllerIsTracked" })]
|
||||
public new ButtonControl isTracked { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "controllerPosition" })]
|
||||
public new Vector3Control devicePosition { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "controllerRotation" })]
|
||||
public new QuaternionControl deviceRotation { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "controllerVelocity" })]
|
||||
public Vector3Control deviceVelocity { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "controllerAngularVelocity" })]
|
||||
public Vector3Control deviceAngularVelocity { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "controllerAcceleration" })]
|
||||
public Vector3Control deviceAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "controllerAngularAcceleration" })]
|
||||
public Vector3Control deviceAngularAcceleration { get; private set; }
|
||||
|
||||
protected override void FinishSetup()
|
||||
{
|
||||
base.FinishSetup();
|
||||
|
||||
thumbstick = GetChildControl<Vector2Control>("thumbstick");
|
||||
trigger = GetChildControl<AxisControl>("trigger");
|
||||
triggerTouched = GetChildControl<AxisControl>("triggerTouched");
|
||||
grip = GetChildControl<AxisControl>("grip");
|
||||
|
||||
primaryButton = GetChildControl<ButtonControl>("primaryButton");
|
||||
secondaryButton = GetChildControl<ButtonControl>("secondaryButton");
|
||||
gripPressed = GetChildControl<ButtonControl>("gripPressed");
|
||||
start = GetChildControl<ButtonControl>("start");
|
||||
thumbstickClicked = GetChildControl<ButtonControl>("thumbstickClicked");
|
||||
primaryTouched = GetChildControl<ButtonControl>("primaryTouched");
|
||||
secondaryTouched = GetChildControl<ButtonControl>("secondaryTouched");
|
||||
thumbstickTouched = GetChildControl<ButtonControl>("thumbstickTouched");
|
||||
triggerPressed = GetChildControl<ButtonControl>("triggerPressed");
|
||||
|
||||
trackingState = GetChildControl<IntegerControl>("trackingState");
|
||||
isTracked = GetChildControl<ButtonControl>("isTracked");
|
||||
devicePosition = GetChildControl<Vector3Control>("devicePosition");
|
||||
deviceRotation = GetChildControl<QuaternionControl>("deviceRotation");
|
||||
deviceVelocity = GetChildControl<Vector3Control>("deviceVelocity");
|
||||
deviceAngularVelocity = GetChildControl<Vector3Control>("deviceAngularVelocity");
|
||||
deviceAcceleration = GetChildControl<Vector3Control>("deviceAcceleration");
|
||||
deviceAngularAcceleration = GetChildControl<Vector3Control>("deviceAngularAcceleration");
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[Preserve]
|
||||
[InputControlLayout(displayName = "Oculus Tracking Reference")]
|
||||
public class OculusTrackingReference : InputDevice
|
||||
{
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "trackingReferenceTrackingState" })]
|
||||
public IntegerControl trackingState { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl(aliases = new[] { "trackingReferenceIsTracked" })]
|
||||
public ButtonControl isTracked { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control devicePosition { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public QuaternionControl deviceRotation { get; private set; }
|
||||
|
||||
protected override void FinishSetup()
|
||||
{
|
||||
base.FinishSetup();
|
||||
|
||||
trackingState = GetChildControl<IntegerControl>("trackingState");
|
||||
isTracked = GetChildControl<ButtonControl>("isTracked");
|
||||
devicePosition = GetChildControl<Vector3Control>("devicePosition");
|
||||
deviceRotation = GetChildControl<QuaternionControl>("deviceRotation");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// An Oculus Remote controller.
|
||||
/// </summary>
|
||||
[Preserve]
|
||||
[InputControlLayout(displayName = "Oculus Remote")]
|
||||
public class OculusRemote : InputDevice
|
||||
{
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl back { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl start { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector2Control touchpad { get; private set; }
|
||||
|
||||
protected override void FinishSetup()
|
||||
{
|
||||
base.FinishSetup();
|
||||
|
||||
back = GetChildControl<ButtonControl>("back");
|
||||
start = GetChildControl<ButtonControl>("start");
|
||||
touchpad = GetChildControl<Vector2Control>("touchpad");
|
||||
}
|
||||
}
|
||||
|
||||
#if ENABLE_VR || PACKAGE_DOCS_GENERATION
|
||||
/// <summary>
|
||||
/// An Oculus Go controller.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Go is no longer supported in 2020.1+ and this will be removed in a future Oculus XR Plugin.
|
||||
/// </remarks>
|
||||
[Preserve]
|
||||
[InputControlLayout(hideInUI = true, displayName = "Oculus Go Controller", commonUsages = new[] { "LeftHand", "RightHand" })]
|
||||
public class OculusGoController : GearVRTrackedController
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A Standalone VR headset that includes on-headset controls.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This device was never supported by the Oculus XR Plugin and will be removed in a future Oculus XR Plugin.
|
||||
/// </remarks>
|
||||
[Preserve]
|
||||
[InputControlLayout(hideInUI = true, displayName = "Oculus Headset (w/ on-headset controls)")]
|
||||
public class OculusHMDExtended : OculusHMD
|
||||
{
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl back { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector2Control touchpad { get; private set; }
|
||||
|
||||
protected override void FinishSetup()
|
||||
{
|
||||
base.FinishSetup();
|
||||
|
||||
back = GetChildControl<ButtonControl>("back");
|
||||
touchpad = GetChildControl<Vector2Control>("touchpad");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A Gear VR controller.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This device was never supported by the Oculus XR Plugin and will be removed in a future Oculus XR Plugin.
|
||||
/// Use OculusGoController instead if targeting the Oculus Go.
|
||||
/// </remarks>
|
||||
[Preserve]
|
||||
[InputControlLayout(hideInUI = true, displayName = "GearVR Controller", commonUsages = new[] { "LeftHand", "RightHand" })]
|
||||
public class GearVRTrackedController : XRController
|
||||
{
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector2Control touchpad { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public AxisControl trigger { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl back { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl triggerPressed { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl touchpadClicked { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public ButtonControl touchpadTouched { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new IntegerControl trackingState { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new ButtonControl isTracked { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new Vector3Control devicePosition { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public new QuaternionControl deviceRotation { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control deviceAngularVelocity { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control deviceAcceleration { get; private set; }
|
||||
[Preserve]
|
||||
[InputControl]
|
||||
public Vector3Control deviceAngularAcceleration { get; private set; }
|
||||
|
||||
protected override void FinishSetup()
|
||||
{
|
||||
base.FinishSetup();
|
||||
|
||||
touchpad = GetChildControl<Vector2Control>("touchpad");
|
||||
trigger = GetChildControl<AxisControl>("trigger");
|
||||
back = GetChildControl<ButtonControl>("back");
|
||||
triggerPressed = GetChildControl<ButtonControl>("triggerPressed");
|
||||
touchpadClicked = GetChildControl<ButtonControl>("touchpadClicked");
|
||||
touchpadTouched = GetChildControl<ButtonControl>("touchpadTouched");
|
||||
|
||||
trackingState = GetChildControl<IntegerControl>("trackingState");
|
||||
isTracked = GetChildControl<ButtonControl>("isTracked");
|
||||
devicePosition = GetChildControl<Vector3Control>("devicePosition");
|
||||
deviceRotation = GetChildControl<QuaternionControl>("deviceRotation");
|
||||
deviceAngularVelocity = GetChildControl<Vector3Control>("deviceAngularVelocity");
|
||||
deviceAcceleration = GetChildControl<Vector3Control>("deviceAcceleration");
|
||||
deviceAngularAcceleration = GetChildControl<Vector3Control>("deviceAngularAcceleration");
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 3d1f4a47ef459d14d9aeadd495127314
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Loading…
Add table
Add a link
Reference in a new issue