mixedreality/com.microsoft.mixedreality..../Core/Definitions/Devices/MixedRealityHandTrackingPro...

159 lines
7.0 KiB
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Utilities;
using System;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Input
{
[CreateAssetMenu(menuName = "Mixed Reality/Toolkit/Profiles/Mixed Reality Hand Tracking Profile", fileName = "MixedRealityHandTrackingProfile", order = (int)CreateProfileMenuItemIndices.HandTracking)]
[HelpURL("https://docs.microsoft.com/windows/mixed-reality/mrtk-unity/features/input/hand-tracking")]
public class MixedRealityHandTrackingProfile : BaseMixedRealityProfile
{
[SerializeField]
[Tooltip("The joint prefab to use.")]
private GameObject jointPrefab = null;
[SerializeField]
[Tooltip("The joint prefab to use for palm.")]
private GameObject palmPrefab = null;
[SerializeField]
[Tooltip("The joint prefab to use for the index tip (point of interaction.")]
private GameObject fingertipPrefab = null;
/// <summary>
/// The joint prefab to use.
/// </summary>
public GameObject JointPrefab => jointPrefab;
/// <summary>
/// The joint prefab to use for palm
/// </summary>
public GameObject PalmJointPrefab => palmPrefab;
/// <summary>
/// The joint prefab to use for finger tip
/// </summary>
public GameObject FingerTipPrefab => fingertipPrefab;
[SerializeField]
[Tooltip("The hand mesh material to use for system generated hand meshes")]
private Material systemHandMeshMaterial;
/// <summary>
/// The hand mesh material to use for system generated hand meshes
/// </summary>
public Material SystemHandMeshMaterial => systemHandMeshMaterial;
[SerializeField]
[Tooltip("The hand mesh material to use for rigged hand meshes")]
private Material riggedHandMeshMaterial;
/// <summary>
/// The hand mesh material to use for rigged hand meshes
/// </summary>
public Material RiggedHandMeshMaterial => riggedHandMeshMaterial;
[SerializeField]
[Tooltip("If this is not null and hand system supports hand meshes, use this mesh to render hand mesh.")]
private GameObject handMeshPrefab = null;
/// <summary>
/// The hand mesh prefab to use to render the hand
/// </summary>
[Obsolete("The GameObject which generates the system handmesh is now created at runtime. This prefab is not used")]
public GameObject HandMeshPrefab => handMeshPrefab;
/// <summary>
/// The hand mesh visualization enable/disable state of the current application mode.
/// </summary>
/// <remarks>
/// <para>If this property is called while in-editor, this will only affect the in-editor settings
/// (i.e. the SupportedApplicationModes.Editor flag of HandMeshVisualizationModes).</para>
/// <para>If this property is called while in-player, this will only affect the in-player settings
/// (i.e. the SupportedApplicationModes.Player flag of HandMeshVisualizationModes).</para>
/// </remarks>
public bool EnableHandMeshVisualization
{
get => IsSupportedApplicationMode(handMeshVisualizationModes);
set => handMeshVisualizationModes = UpdateSupportedApplicationMode(value, handMeshVisualizationModes);
}
/// <summary>
/// The hand joint visualization enable/disable state of the current application mode.
/// </summary>
/// <remarks>
/// <para>If this property is called while in-editor, this will only affect the in-editor settings
/// (i.e. the SupportedApplicationModes.Editor flag of HandJointVisualizationModes).</para>
/// <para>If this property is called while in-player, this will only affect the in-player settings
/// (i.e. the SupportedApplicationModes.Player flag of HandJointVisualizationModes).</para>
/// </remarks>
public bool EnableHandJointVisualization
{
get => IsSupportedApplicationMode(handJointVisualizationModes);
set => handJointVisualizationModes = UpdateSupportedApplicationMode(value, handJointVisualizationModes);
}
[EnumFlags]
[SerializeField]
[Tooltip("The application modes in which hand mesh visualizations will display. " +
"Will only show if the system provides hand mesh data. Note: this could reduce performance")]
private SupportedApplicationModes handMeshVisualizationModes = 0;
public SupportedApplicationModes HandMeshVisualizationModes
{
get => handMeshVisualizationModes;
set => handMeshVisualizationModes = value;
}
[EnumFlags]
[SerializeField]
[Tooltip("The application modes in which hand joint visualizations will display. " +
"Will only show if the system provides joint data. Note: this could reduce performance")]
private SupportedApplicationModes handJointVisualizationModes = 0;
public SupportedApplicationModes HandJointVisualizationModes
{
get => handJointVisualizationModes;
set => handJointVisualizationModes = value;
}
/// <summary>
/// Returns true if the modes specified by the specified SupportedApplicationModes matches
/// the current mode that the code is running in.
/// </summary>
/// <remarks>
/// <para>For example, if the code is currently running in editor mode (for testing in-editor
/// simulation), this would return true if modes contained the SupportedApplicationModes.Editor
/// bit.</para>
/// </remarks>
private static bool IsSupportedApplicationMode(SupportedApplicationModes modes)
{
#if UNITY_EDITOR
return (modes & SupportedApplicationModes.Editor) != 0;
#else // !UNITY_EDITOR
return (modes & SupportedApplicationModes.Player) != 0;
#endif
}
/// <summary>
/// Updates the given SupportedApplicationModes by setting the bit associated with the
/// currently active application mode.
/// </summary>
/// <remarks>
/// <para>For example, if the code is currently running in editor mode (for testing in-editor
/// simulation), and modes is currently SupportedApplicationModes.Player | SupportedApplicationModes.Editor
/// and enabled is 'false', this would return SupportedApplicationModes.Player.</para>
/// </remarks>
private static SupportedApplicationModes UpdateSupportedApplicationMode(bool enabled, SupportedApplicationModes modes)
{
#if UNITY_EDITOR
var bitValue = enabled ? SupportedApplicationModes.Editor : 0;
return (modes & ~SupportedApplicationModes.Editor) | bitValue;
#else // !UNITY_EDITOR
var bitValue = enabled ? SupportedApplicationModes.Player : 0;
return (modes & ~SupportedApplicationModes.Player) | bitValue;
#endif
}
}
}