File size: 20,768 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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | // ENABLE_VR is not defined on Game Core but the assembly is available with limited features when the XR module is enabled.
#if UNITY_INPUT_SYSTEM_ENABLE_XR && (ENABLE_VR || UNITY_GAMECORE) || PACKAGE_DOCS_GENERATION
using System;
using System.Collections.Generic;
using UnityEngine.InputSystem.Layouts;
using UnityEngine.InputSystem.Controls;
using UnityEngine.XR;
namespace UnityEngine.InputSystem.XR
{
/// <summary>
/// A set of static utilities for registering XR Input Devices externally.
/// </summary>
public static class XRUtilities
{
/// <summary>
/// A simple Regex pattern that allows InputDeviceMatchers to match to any version of the XRInput interface.
/// </summary>
public const string InterfaceMatchAnyVersion = "^(XRInput)";
/// <summary>
/// The initial, now deprecated interface for XRInput. This version handles button packing for Android differently from current.
/// </summary>
public const string InterfaceV1 = "XRInput";
/// <summary>
/// The current interface code sent with devices to identify as XRInput devices.
/// </summary>
public const string InterfaceCurrent = "XRInputV1";
}
// Sync to UnityXRInputFeatureType in IUnityXRInput.h
/// <summary>
/// The type of data a <see cref="XRFeatureDescriptor"/> exposes.
/// </summary>
public enum FeatureType
{
Custom = 0,
Binary,
DiscreteStates,
Axis1D,
Axis2D,
Axis3D,
Rotation,
Hand,
Bone,
Eyes
}
/// <summary>
/// Contextual strings that identify the contextual, cross-platform use that a feature represents. <see cref="UnityEngine.XR.CommonUsages"/> for a list of unity's built-in shared usages.
/// </summary>
#pragma warning disable 0649
[Serializable]
public struct UsageHint
{
public string content;
}
//Sync to XRInputFeatureDefinition in XRInputDeviceDefinition.h
/// <summary>
/// Describes an individual input on a device, such as a trackpad, or button, or trigger.
/// </summary>
[Serializable]
public struct XRFeatureDescriptor
{
/// <summary>
/// The name of the feature.
/// </summary>
public string name;
/// <summary>
/// The uses that this feature should represent, such as trigger, or grip, or touchpad.
/// </summary>
public List<UsageHint> usageHints;
/// <summary>
/// The type of data this feature exposes.
/// </summary>
public FeatureType featureType;
/// <summary>
/// The overall size of the feature. This is only filled in when the <see cref="featureType"/> is <see cref="FeatureType.Custom"/>.
/// </summary>
public uint customSize;
}
//Sync to XRInputDeviceDefinition in XRInputDeviceDefinition.h
/// <summary>
/// Describes an input device: what it can do and how it should be used. These are reported during device connection, and help identify devices and map input data to the right controls.
/// </summary>
[Serializable]
public class XRDeviceDescriptor
{
/// <summary>
/// The name of the device.
/// </summary>
public string deviceName;
/// <summary>
/// The manufacturer of the device.
/// </summary>
public string manufacturer;
/// <summary>
/// The serial number of the device. An empty string if no serial number is available.
/// </summary>
public string serialNumber;
/// <summary>
/// The capabilities of the device, used to help filter and identify devices that server a certain purpose (e.g. controller, or headset, or hardware tracker).
/// </summary>
public InputDeviceCharacteristics characteristics;
/// <summary>
/// The underlying deviceId, this can be used with <see cref="UnityEngine.XR.InputDevices"/> to create a device.
/// </summary>
public int deviceId;
/// <summary>
/// A list of all input features. <seealso cref="XRFeatureDescriptor"/>
/// </summary>
public List<XRFeatureDescriptor> inputFeatures;
/// <summary>
/// Converts this structure to a JSON string.
/// </summary>
/// <returns></returns>
public string ToJson()
{
return JsonUtility.ToJson(this);
}
/// <summary>
/// Converts a json string to a new <see cref="XRDeviceDescriptor"/>.
/// </summary>
/// <param name="json">The JSON string containing <see cref="XRDeviceDescriptor"/> data.</param>
/// <returns>A new <see cref="XRDeviceDescriptor"/></returns>
public static XRDeviceDescriptor FromJson(string json)
{
return JsonUtility.FromJson<XRDeviceDescriptor>(json);
}
}
/// <summary>
/// Represents a 3 dimensional, tracked bone within a hierarchy of other bones.
/// </summary>
public struct Bone
{
/// <summary>
/// The index with the device's controls array where the parent bone resides.
/// </summary>
public uint m_ParentBoneIndex;
/// <summary>
/// The tracked position of the bone.
/// </summary>
public Vector3 m_Position;
/// <summary>
/// The tracked rotation of the bone.
/// </summary>
public Quaternion m_Rotation;
/// <summary>
/// The index with the device's controls array where the parent bone resides.
/// </summary>
public uint parentBoneIndex
{
get => m_ParentBoneIndex;
set => m_ParentBoneIndex = value;
}
/// <summary>
/// The tracked position of the bone.
/// </summary>
public Vector3 position
{
get => m_Position;
set => m_Position = value;
}
/// <summary>
/// The tracked rotation of the bone.
/// </summary>
public Quaternion rotation
{
get => m_Rotation;
set => m_Rotation = value;
}
}
/// <summary>
/// Represents a pair of tracked eyes.
/// </summary>
public struct Eyes
{
/// <summary>
/// The tracked position of the left eye.
/// </summary>
public Vector3 m_LeftEyePosition;
/// <summary>
/// The tracked rotation of the left eye.
/// </summary>
public Quaternion m_LeftEyeRotation;
/// <summary>
/// The tracked position of the right eye.
/// </summary>
public Vector3 m_RightEyePosition;
/// <summary>
/// The tracked rotation of the right eye.
/// </summary>
public Quaternion m_RightEyeRotation;
/// <summary>
/// The point in 3D space that the pair of eyes is looking.
/// </summary>
public Vector3 m_FixationPoint;
/// <summary>
/// The amount [0-1] the left eye is open or closed. 1.0 is fully open.
/// </summary>
public float m_LeftEyeOpenAmount;
/// <summary>
/// The amount [0-1] the right eye is open or closed. 1.0 is fully open.
/// </summary>
public float m_RightEyeOpenAmount;
/// <summary>
/// The tracked position of the left eye.
/// </summary>
public Vector3 leftEyePosition
{
get => m_LeftEyePosition;
set => m_LeftEyePosition = value;
}
/// <summary>
/// The tracked rotation of the left eye.
/// </summary>
public Quaternion leftEyeRotation
{
get => m_LeftEyeRotation;
set => m_LeftEyeRotation = value;
}
/// <summary>
/// The tracked position of the right eye.
/// </summary>
public Vector3 rightEyePosition
{
get => m_RightEyePosition;
set => m_RightEyePosition = value;
}
/// <summary>
/// The tracked rotation of the right eye.
/// </summary>
public Quaternion rightEyeRotation
{
get => m_RightEyeRotation;
set => m_RightEyeRotation = value;
}
/// <summary>
/// The point in 3D space that the pair of eyes is looking.
/// </summary>
public Vector3 fixationPoint
{
get => m_FixationPoint;
set => m_FixationPoint = value;
}
/// <summary>
/// The amount [0-1] the left eye is open or closed. 1.0 is fully open.
/// </summary>
public float leftEyeOpenAmount
{
get => m_LeftEyeOpenAmount;
set => m_LeftEyeOpenAmount = value;
}
/// <summary>
/// The amount [0-1] the right eye is open or closed. 1.0 is fully open.
/// </summary>
public float rightEyeOpenAmount
{
get => m_RightEyeOpenAmount;
set => m_RightEyeOpenAmount = value;
}
}
public class BoneControl : InputControl<Bone>
{
[InputControl(offset = 0, displayName = "parentBoneIndex")]
public IntegerControl parentBoneIndex { get; private set; }
[InputControl(offset = 4, displayName = "Position")]
public Vector3Control position { get; private set; }
[InputControl(offset = 16, displayName = "Rotation")]
public QuaternionControl rotation { get; private set; }
protected override void FinishSetup()
{
parentBoneIndex = GetChildControl<IntegerControl>("parentBoneIndex");
position = GetChildControl<Vector3Control>("position");
rotation = GetChildControl<QuaternionControl>("rotation");
base.FinishSetup();
}
public override unsafe Bone ReadUnprocessedValueFromState(void* statePtr)
{
return new Bone()
{
parentBoneIndex = (uint)parentBoneIndex.ReadUnprocessedValueFromStateWithCaching(statePtr),
position = position.ReadUnprocessedValueFromStateWithCaching(statePtr),
rotation = rotation.ReadUnprocessedValueFromStateWithCaching(statePtr)
};
}
public override unsafe void WriteValueIntoState(Bone value, void* statePtr)
{
parentBoneIndex.WriteValueIntoState((int)value.parentBoneIndex, statePtr);
position.WriteValueIntoState(value.position, statePtr);
rotation.WriteValueIntoState(value.rotation, statePtr);
}
}
public class EyesControl : InputControl<Eyes>
{
[InputControl(offset = 0, displayName = "LeftEyePosition")]
public Vector3Control leftEyePosition { get; private set; }
[InputControl(offset = 12, displayName = "LeftEyeRotation")]
public QuaternionControl leftEyeRotation { get; private set; }
[InputControl(offset = 28, displayName = "RightEyePosition")]
public Vector3Control rightEyePosition { get; private set; }
[InputControl(offset = 40, displayName = "RightEyeRotation")]
public QuaternionControl rightEyeRotation { get; private set; }
[InputControl(offset = 56, displayName = "FixationPoint")]
public Vector3Control fixationPoint { get; private set; }
[InputControl(offset = 68, displayName = "LeftEyeOpenAmount")]
public AxisControl leftEyeOpenAmount { get; private set; }
[InputControl(offset = 72, displayName = "RightEyeOpenAmount")]
public AxisControl rightEyeOpenAmount { get; private set; }
protected override void FinishSetup()
{
leftEyePosition = GetChildControl<Vector3Control>("leftEyePosition");
leftEyeRotation = GetChildControl<QuaternionControl>("leftEyeRotation");
rightEyePosition = GetChildControl<Vector3Control>("rightEyePosition");
rightEyeRotation = GetChildControl<QuaternionControl>("rightEyeRotation");
fixationPoint = GetChildControl<Vector3Control>("fixationPoint");
leftEyeOpenAmount = GetChildControl<AxisControl>("leftEyeOpenAmount");
rightEyeOpenAmount = GetChildControl<AxisControl>("rightEyeOpenAmount");
base.FinishSetup();
}
public override unsafe Eyes ReadUnprocessedValueFromState(void* statePtr)
{
return new Eyes()
{
leftEyePosition = leftEyePosition.ReadUnprocessedValueFromStateWithCaching(statePtr),
leftEyeRotation = leftEyeRotation.ReadUnprocessedValueFromStateWithCaching(statePtr),
rightEyePosition = rightEyePosition.ReadUnprocessedValueFromStateWithCaching(statePtr),
rightEyeRotation = rightEyeRotation.ReadUnprocessedValueFromStateWithCaching(statePtr),
fixationPoint = fixationPoint.ReadUnprocessedValueFromStateWithCaching(statePtr),
leftEyeOpenAmount = leftEyeOpenAmount.ReadUnprocessedValueFromStateWithCaching(statePtr),
rightEyeOpenAmount = rightEyeOpenAmount.ReadUnprocessedValueFromStateWithCaching(statePtr)
};
}
public override unsafe void WriteValueIntoState(Eyes value, void* statePtr)
{
leftEyePosition.WriteValueIntoState(value.leftEyePosition, statePtr);
leftEyeRotation.WriteValueIntoState(value.leftEyeRotation, statePtr);
rightEyePosition.WriteValueIntoState(value.rightEyePosition, statePtr);
rightEyeRotation.WriteValueIntoState(value.rightEyeRotation, statePtr);
fixationPoint.WriteValueIntoState(value.fixationPoint, statePtr);
leftEyeOpenAmount.WriteValueIntoState(value.leftEyeOpenAmount, statePtr);
rightEyeOpenAmount.WriteValueIntoState(value.rightEyeOpenAmount, statePtr);
}
}
#pragma warning restore 0649
/// <summary>
/// A small helper class to aid in initializing and registering XR devices and layout builders.
/// </summary>
#if UNITY_DISABLE_DEFAULT_INPUT_PLUGIN_INITIALIZATION
public
#else
internal
#endif
static class XRSupport
{
/// <summary>
/// Registers all initial templates and the generalized layout builder with the InputSystem.
/// </summary>
public static void Initialize()
{
#if !UNITY_FORCE_INPUTSYSTEM_XR_OFF
InputSystem.RegisterLayout<PoseControl>("Pose");
InputSystem.RegisterLayout<BoneControl>("Bone");
InputSystem.RegisterLayout<EyesControl>("Eyes");
InputSystem.RegisterLayout<XRHMD>();
InputSystem.RegisterLayout<XRController>();
InputSystem.onFindLayoutForDevice += XRLayoutBuilder.OnFindLayoutForDevice;
// Built-in layouts replaced by the com.unity.xr.windowsmr package.
#if !DISABLE_BUILTIN_INPUT_SYSTEM_WINDOWSMR
InputSystem.RegisterLayout<UnityEngine.XR.WindowsMR.Input.WMRHMD>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct("(Windows Mixed Reality HMD)|(Microsoft HoloLens)|(^(WindowsMR Headset))")
);
InputSystem.RegisterLayout<UnityEngine.XR.WindowsMR.Input.WMRSpatialController>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct(@"(^(Spatial Controller))|(^(OpenVR Controller\(WindowsMR))")
);
InputSystem.RegisterLayout<UnityEngine.XR.WindowsMR.Input.HololensHand>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct(@"(^(Hand -))")
);
#endif
// Built-in layouts replaced by the com.unity.xr.oculus package.
#if !DISABLE_BUILTIN_INPUT_SYSTEM_OCULUS
InputSystem.RegisterLayout<Unity.XR.Oculus.Input.OculusHMD>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct("^(Oculus Rift)|^(Oculus Quest)|^(Oculus Go)"));
InputSystem.RegisterLayout<Unity.XR.Oculus.Input.OculusTouchController>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct(@"(^(Oculus Touch Controller))|(^(Oculus Quest Controller))"));
InputSystem.RegisterLayout<Unity.XR.Oculus.Input.OculusRemote>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct(@"Oculus Remote"));
InputSystem.RegisterLayout<Unity.XR.Oculus.Input.OculusTrackingReference>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct(@"((Tracking Reference)|(^(Oculus Rift [a-zA-Z0-9]* \(Camera)))"));
InputSystem.RegisterLayout<Unity.XR.Oculus.Input.OculusHMDExtended>(
name: "GearVR",
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct("Oculus HMD"));
InputSystem.RegisterLayout<Unity.XR.Oculus.Input.GearVRTrackedController>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct("^(Oculus Tracked Remote)"));
#endif
// Built-in layouts replaced by the com.unity.xr.googlevr package.
#if !DISABLE_BUILTIN_INPUT_SYSTEM_GOOGLEVR
InputSystem.RegisterLayout<Unity.XR.GoogleVr.DaydreamHMD>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct("Daydream HMD"));
InputSystem.RegisterLayout<Unity.XR.GoogleVr.DaydreamController>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct("^(Daydream Controller)"));
#endif
// Built-in layouts replaced by the com.unity.xr.openvr package.
#if !DISABLE_BUILTIN_INPUT_SYSTEM_OPENVR
InputSystem.RegisterLayout<Unity.XR.OpenVR.OpenVRHMD>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct("^(OpenVR Headset)|^(Vive Pro)")
);
InputSystem.RegisterLayout<Unity.XR.OpenVR.OpenVRControllerWMR>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct("^(OpenVR Controller\\(WindowsMR)")
);
InputSystem.RegisterLayout<Unity.XR.OpenVR.ViveWand>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithManufacturer("HTC")
.WithProduct(@"^(OpenVR Controller\(((Vive. Controller)|(VIVE. Controller)|(Vive Controller)))")
);
InputSystem.RegisterLayout<Unity.XR.OpenVR.OpenVROculusTouchController>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithProduct(@"^(OpenVR Controller\(Oculus)")
);
InputSystem.RegisterLayout<Unity.XR.OpenVR.ViveTracker>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithManufacturer("HTC")
.WithProduct(@"^(VIVE Tracker)")
);
InputSystem.RegisterLayout<Unity.XR.OpenVR.HandedViveTracker>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithManufacturer("HTC")
.WithProduct(@"^(OpenVR Controller\(VIVE Tracker)")
);
InputSystem.RegisterLayout<Unity.XR.OpenVR.ViveLighthouse>(
matches: new InputDeviceMatcher()
.WithInterface(XRUtilities.InterfaceMatchAnyVersion)
.WithManufacturer("HTC")
.WithProduct(@"^(HTC V2-XD/XE)")
);
#endif
#endif
}
}
}
#endif
|