File size: 11,353 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | // ENABLE_VR is not defined on Game Core but the assembly is available with limited features when the XR module is enabled.
// Docs generation is skipped because these are intended to be replaced with the com.unity.xr.openvr package.
#if UNITY_INPUT_SYSTEM_ENABLE_XR && (ENABLE_VR || UNITY_GAMECORE) && !DISABLE_BUILTIN_INPUT_SYSTEM_OPENVR && !UNITY_FORCE_INPUTSYSTEM_XR_OFF && !PACKAGE_DOCS_GENERATION
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Controls;
using UnityEngine.InputSystem.Layouts;
using UnityEngine.InputSystem.XR;
namespace Unity.XR.OpenVR
{
[InputControlLayout(displayName = "OpenVR Headset", hideInUI = true)]
public class OpenVRHMD : XRHMD
{
[InputControl(noisy = true)]
public Vector3Control deviceVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control deviceAngularVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control leftEyeVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control leftEyeAngularVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control rightEyeVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control rightEyeAngularVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control centerEyeVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control centerEyeAngularVelocity { get; private set; }
protected override void FinishSetup()
{
base.FinishSetup();
deviceVelocity = GetChildControl<Vector3Control>("deviceVelocity");
deviceAngularVelocity = GetChildControl<Vector3Control>("deviceAngularVelocity");
leftEyeVelocity = GetChildControl<Vector3Control>("leftEyeVelocity");
leftEyeAngularVelocity = GetChildControl<Vector3Control>("leftEyeAngularVelocity");
rightEyeVelocity = GetChildControl<Vector3Control>("rightEyeVelocity");
rightEyeAngularVelocity = GetChildControl<Vector3Control>("rightEyeAngularVelocity");
centerEyeVelocity = GetChildControl<Vector3Control>("centerEyeVelocity");
centerEyeAngularVelocity = GetChildControl<Vector3Control>("centerEyeAngularVelocity");
}
}
[InputControlLayout(displayName = "Windows MR Controller (OpenVR)", commonUsages = new[] { "LeftHand", "RightHand" }, hideInUI = true)]
public class OpenVRControllerWMR : XRController
{
[InputControl(noisy = true)]
public Vector3Control deviceVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control deviceAngularVelocity { get; private set; }
[InputControl(aliases = new[] { "primary2DAxisClick", "joystickOrPadPressed" })]
public ButtonControl touchpadClick { get; private set; }
[InputControl(aliases = new[] { "primary2DAxisTouch", "joystickOrPadTouched" })]
public ButtonControl touchpadTouch { get; private set; }
[InputControl]
public ButtonControl gripPressed { get; private set; }
[InputControl]
public ButtonControl triggerPressed { get; private set; }
[InputControl(aliases = new[] { "primary" })]
public ButtonControl menu { get; private set; }
[InputControl]
public AxisControl trigger { get; private set; }
[InputControl]
public AxisControl grip { get; private set; }
[InputControl(aliases = new[] { "secondary2DAxis" })]
public Vector2Control touchpad { get; private set; }
[InputControl(aliases = new[] { "primary2DAxis" })]
public Vector2Control joystick { get; private set; }
protected override void FinishSetup()
{
base.FinishSetup();
deviceVelocity = GetChildControl<Vector3Control>("deviceVelocity");
deviceAngularVelocity = GetChildControl<Vector3Control>("deviceAngularVelocity");
touchpadClick = GetChildControl<ButtonControl>("touchpadClick");
touchpadTouch = GetChildControl<ButtonControl>("touchpadTouch");
gripPressed = GetChildControl<ButtonControl>("gripPressed");
triggerPressed = GetChildControl<ButtonControl>("triggerPressed");
menu = GetChildControl<ButtonControl>("menu");
trigger = GetChildControl<AxisControl>("trigger");
grip = GetChildControl<AxisControl>("grip");
touchpad = GetChildControl<Vector2Control>("touchpad");
joystick = GetChildControl<Vector2Control>("joystick");
}
}
/// <summary>
/// An HTC Vive Wand controller.
/// </summary>
[InputControlLayout(displayName = "Vive Wand", commonUsages = new[] { "LeftHand", "RightHand" }, hideInUI = true)]
public class ViveWand : XRControllerWithRumble
{
[InputControl]
public AxisControl grip { get; private set; }
[InputControl]
public ButtonControl gripPressed { get; private set; }
[InputControl]
public ButtonControl primary { get; private set; }
[InputControl(aliases = new[] { "primary2DAxisClick", "joystickOrPadPressed" })]
public ButtonControl trackpadPressed { get; private set; }
[InputControl(aliases = new[] { "primary2DAxisTouch", "joystickOrPadTouched" })]
public ButtonControl trackpadTouched { get; private set; }
[InputControl(aliases = new[] { "Primary2DAxis" })]
public Vector2Control trackpad { get; private set; }
[InputControl]
public AxisControl trigger { get; private set; }
[InputControl]
public ButtonControl triggerPressed { get; private set; }
[InputControl(noisy = true)]
public Vector3Control deviceVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control deviceAngularVelocity { get; private set; }
protected override void FinishSetup()
{
base.FinishSetup();
grip = GetChildControl<AxisControl>("grip");
primary = GetChildControl<ButtonControl>("primary");
gripPressed = GetChildControl<ButtonControl>("gripPressed");
trackpadPressed = GetChildControl<ButtonControl>("trackpadPressed");
trackpadTouched = GetChildControl<ButtonControl>("trackpadTouched");
trackpad = GetChildControl<Vector2Control>("trackpad");
trigger = GetChildControl<AxisControl>("trigger");
triggerPressed = GetChildControl<ButtonControl>("triggerPressed");
deviceVelocity = GetChildControl<Vector3Control>("deviceVelocity");
deviceAngularVelocity = GetChildControl<Vector3Control>("deviceAngularVelocity");
}
}
/// <summary>
/// An HTC Vive lighthouse.
/// </summary>
[InputControlLayout(displayName = "Vive Lighthouse", hideInUI = true)]
public class ViveLighthouse : TrackedDevice
{
}
/// <summary>
/// An HTC Vive tracker.
/// </summary>
[InputControlLayout(displayName = "Vive Tracker")]
public class ViveTracker : TrackedDevice
{
[InputControl(noisy = true)]
public Vector3Control deviceVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control deviceAngularVelocity { get; private set; }
protected override void FinishSetup()
{
base.FinishSetup();
deviceVelocity = GetChildControl<Vector3Control>("deviceVelocity");
deviceAngularVelocity = GetChildControl<Vector3Control>("deviceAngularVelocity");
}
}
[InputControlLayout(displayName = "Handed Vive Tracker", commonUsages = new[] { "LeftHand", "RightHand" }, hideInUI = true)]
public class HandedViveTracker : ViveTracker
{
[InputControl]
public AxisControl grip { get; private set; }
[InputControl]
public ButtonControl gripPressed { get; private set; }
[InputControl]
public ButtonControl primary { get; private set; }
[InputControl(aliases = new[] { "JoystickOrPadPressed" })]
public ButtonControl trackpadPressed { get; private set; }
[InputControl]
public ButtonControl triggerPressed { get; private set; }
protected override void FinishSetup()
{
grip = GetChildControl<AxisControl>("grip");
primary = GetChildControl<ButtonControl>("primary");
gripPressed = GetChildControl<ButtonControl>("gripPressed");
trackpadPressed = GetChildControl<ButtonControl>("trackpadPressed");
triggerPressed = GetChildControl<ButtonControl>("triggerPressed");
base.FinishSetup();
}
}
/// <summary>
/// An Oculus Touch controller.
/// </summary>
[InputControlLayout(displayName = "Oculus Touch Controller (OpenVR)", commonUsages = new[] { "LeftHand", "RightHand" }, hideInUI = true)]
public class OpenVROculusTouchController : XRControllerWithRumble
{
[InputControl]
public Vector2Control thumbstick { get; private set; }
[InputControl]
public AxisControl trigger { get; private set; }
[InputControl]
public AxisControl grip { get; private set; }
// Primary & Secondary are switched in order to retain consistency with the Oculus SDK
[InputControl(aliases = new[] { "Alternate" })]
public ButtonControl primaryButton { get; private set; }
[InputControl(aliases = new[] { "Primary" })]
public ButtonControl secondaryButton { get; private set; }
[InputControl]
public ButtonControl gripPressed { get; private set; }
[InputControl]
public ButtonControl triggerPressed { get; private set; }
[InputControl(aliases = new[] { "primary2DAxisClicked" })]
public ButtonControl thumbstickClicked { get; private set; }
[InputControl(aliases = new[] { "primary2DAxisTouch" })]
public ButtonControl thumbstickTouched { get; private set; }
[InputControl(noisy = true)]
public Vector3Control deviceVelocity { get; private set; }
[InputControl(noisy = true)]
public Vector3Control deviceAngularVelocity { get; private set; }
protected override void FinishSetup()
{
base.FinishSetup();
thumbstick = GetChildControl<Vector2Control>("thumbstick");
trigger = GetChildControl<AxisControl>("trigger");
grip = GetChildControl<AxisControl>("grip");
primaryButton = GetChildControl<ButtonControl>("primaryButton");
secondaryButton = GetChildControl<ButtonControl>("secondaryButton");
gripPressed = GetChildControl<ButtonControl>("gripPressed");
thumbstickClicked = GetChildControl<ButtonControl>("thumbstickClicked");
thumbstickTouched = GetChildControl<ButtonControl>("thumbstickTouched");
triggerPressed = GetChildControl<ButtonControl>("triggerPressed");
deviceVelocity = GetChildControl<Vector3Control>("deviceVelocity");
deviceAngularVelocity = GetChildControl<Vector3Control>("deviceAngularVelocity");
}
}
}
#endif
|