// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Utilities;
using System;
using UnityEngine;
using UnityEngine.Serialization;
namespace Microsoft.MixedReality.Toolkit.Input
{
///
/// Profile that determines relevant overrides and properties for controller visualization
///
[CreateAssetMenu(menuName = "Mixed Reality/Toolkit/Profiles/Mixed Reality Controller Visualization Profile", fileName = "MixedRealityControllerVisualizationProfile", order = (int)CreateProfileMenuItemIndices.ControllerVisualization)]
[MixedRealityServiceProfile(typeof(IMixedRealityControllerVisualizer))]
public class MixedRealityControllerVisualizationProfile : BaseMixedRealityProfile
{
[SerializeField]
[Tooltip("Enable and configure the controller rendering of the Motion Controllers on Startup.")]
private bool renderMotionControllers = false;
///
/// Enable and configure the controller rendering of the Motion Controllers on Startup.
///
public bool RenderMotionControllers
{
get => renderMotionControllers;
private set => renderMotionControllers = value;
}
[SerializeField]
[Implements(typeof(IMixedRealityControllerVisualizer), TypeGrouping.ByNamespaceFlat)]
[Tooltip("The default controller visualization type. This value is used as a fallback if no controller definition exists with a custom visualization type.")]
private SystemType defaultControllerVisualizationType;
///
/// The default controller visualization type. This value is used as a fallback if no controller definition exists with a custom visualization type.
///
public SystemType DefaultControllerVisualizationType
{
get => defaultControllerVisualizationType;
private set => defaultControllerVisualizationType = value;
}
[SerializeField]
[Tooltip("Check to obtain controller models from the platform SDK. If left unchecked, the global models will be used. Note: this value is overridden by controller definitions.")]
[FormerlySerializedAs("useDefaultModels")]
private bool usePlatformModels = false;
///
/// Check to obtain controller models from the platform SDK. If left unchecked, the global models will be used. Note: this value is overridden by controller definitions.
///
public bool UsePlatformModels
{
get => usePlatformModels;
private set => usePlatformModels = value;
}
///
/// Check to obtain controller models from the platform SDK. If left unchecked, the global models will be used. Note: this value is overridden by controller definitions.
///
[Obsolete("Use UsePlatformModels instead.")]
public bool UseDefaultModels => usePlatformModels;
[SerializeField]
[Tooltip("The default controller model material when loading platform SDK controller models. This value is used as a fallback if no controller definition exists with a custom material type.")]
[FormerlySerializedAs("defaultControllerModelMaterial")]
private Material platformModelMaterial;
///
/// The default controller model material when loading platform SDK controller models. This value is used as a fallback if no controller definition exists with a custom material type.
///
public Material PlatformModelMaterial
{
get => platformModelMaterial;
private set => platformModelMaterial = value;
}
///
/// The default controller model material when loading platform SDK controller models. This value is used as a fallback if no controller definition exists with a custom material type.
///
[Obsolete("Use PlatformModelMaterial instead.")]
public Material DefaultControllerModelMaterial => platformModelMaterial;
[SerializeField]
[Tooltip("Override Left Controller Model.")]
private GameObject globalLeftControllerModel;
///
/// The Default controller model when there is no specific controller model for the Left hand or when no hand is specified (Handedness = none)
///
///
/// If the default model for the left hand controller can not be found, the controller will fall back and use this for visualization.
///
public GameObject GlobalLeftHandModel
{
get => globalLeftControllerModel;
private set => globalLeftControllerModel = value;
}
[SerializeField]
[Tooltip("Override Right Controller Model.\nNote: If the default model is not found, the fallback is the global right hand model.")]
private GameObject globalRightControllerModel;
///
/// The Default controller model when there is no specific controller model for the Right hand.
///
///
/// If the default model for the right hand controller can not be found, the controller will fall back and use this for visualization.
///
public GameObject GlobalRightHandModel
{
get => globalRightControllerModel;
private set => globalRightControllerModel = value;
}
[SerializeField]
[Tooltip("Override Left Hand Visualizer.")]
private GameObject globalLeftHandVisualizer;
///
/// The Default controller model when there is no specific controller model for the Left hand or when no hand is specified (Handedness = none)
///
///
/// If the default model for the left hand controller can not be found, the controller will fall back and use this for visualization.
///
public GameObject GlobalLeftHandVisualizer
{
get => globalLeftHandVisualizer;
private set => globalLeftHandVisualizer = value;
}
[SerializeField]
[Tooltip("Override Right Controller Model.\nNote: If the default model is not found, the fallback is the global right hand model.")]
private GameObject globalRightHandVisualizer;
///
/// The Default hand model when there is no specific hand model for the Right hand.
///
///
/// If the default model for the right hand can not be found, the hand will fall back and use this for visualization.
///
public GameObject GlobalRightHandVisualizer
{
get => globalRightHandVisualizer;
private set => globalRightHandVisualizer = value;
}
[SerializeField]
private MixedRealityControllerVisualizationSetting[] controllerVisualizationSettings = Array.Empty();
///
/// The current list of controller visualization settings.
///
public MixedRealityControllerVisualizationSetting[] ControllerVisualizationSettings => controllerVisualizationSettings;
private MixedRealityControllerVisualizationSetting? GetControllerVisualizationDefinition(Type controllerType, Handedness hand)
{
for (int i = 0; i < controllerVisualizationSettings.Length; i++)
{
if (SettingContainsParameters(controllerVisualizationSettings[i], controllerType, hand))
{
return controllerVisualizationSettings[i];
}
}
return null;
}
///
/// Gets the override model for a specific controller type and hand
///
/// The type of controller to query for
/// The specific hand assigned to the controller
public GameObject GetControllerModelOverride(Type controllerType, Handedness hand)
{
MixedRealityControllerVisualizationSetting? setting = GetControllerVisualizationDefinition(controllerType, hand);
return setting.HasValue ? setting.Value.OverrideControllerModel : null;
}
///
/// Gets the override type for a specific controller type and hand.
/// If the requested controller type is not defined, DefaultControllerVisualizationType is returned.
///
/// The type of controller to query for
/// The specific hand assigned to the controller
public SystemType GetControllerVisualizationTypeOverride(Type controllerType, Handedness hand)
{
MixedRealityControllerVisualizationSetting? setting = GetControllerVisualizationDefinition(controllerType, hand);
return setting.HasValue ? setting.Value.ControllerVisualizationType : DefaultControllerVisualizationType;
}
///
/// Gets the UsePlatformModels value defined for the specified controller definition.
/// If the requested controller type is not defined, the default UsePlatformModels is returned.
///
/// The type of controller to query for
/// The specific hand assigned to the controller
///
/// GetUseDefaultModelsOverride is obsolete and will be removed in a future Mixed Reality Toolkit release. Please use GetUsePlatformModelsOverride.
///
[Obsolete("GetUseDefaultModelsOverride is obsolete and will be removed in a future Mixed Reality Toolkit release. Please use GetUsePlatformModelsOverride.")]
public bool GetUseDefaultModelsOverride(Type controllerType, Handedness hand)
{
return GetUsePlatformModelsOverride(controllerType, hand);
}
///
/// Gets the UsePlatformModels value defined for the specified controller definition.
/// If the requested controller type is not defined, the default UsePlatformModels is returned.
///
/// The type of controller to query for
/// The specific hand assigned to the controller
public bool GetUsePlatformModelsOverride(Type controllerType, Handedness hand)
{
MixedRealityControllerVisualizationSetting? setting = GetControllerVisualizationDefinition(controllerType, hand);
return setting.HasValue ? setting.Value.UsePlatformModels : usePlatformModels;
}
///
/// Gets the DefaultModelMaterial value defined for the specified controller definition.
/// If the requested controller type is not defined, the global platformModelMaterial is returned.
///
/// The type of controller to query for
/// The specific hand assigned to the controller
///
/// GetDefaultControllerModelMaterialOverride is obsolete and will be removed in a future Mixed Reality Toolkit release. Please use GetPlatformModelMaterialOverride.
///
[Obsolete("GetDefaultControllerModelMaterialOverride is obsolete and will be removed in a future Mixed Reality Toolkit release. Please use GetPlatformModelMaterial.")]
public Material GetDefaultControllerModelMaterialOverride(Type controllerType, Handedness hand)
{
return GetPlatformModelMaterialOverride(controllerType, hand);
}
///
/// Gets the PlatformModelMaterial value defined for the specified controller definition.
/// If the requested controller type is not defined, the global platformModelMaterial is returned.
///
/// The type of controller to query for
/// The specific hand assigned to the controller
public Material GetPlatformModelMaterialOverride(Type controllerType, Handedness hand)
{
MixedRealityControllerVisualizationSetting? setting = GetControllerVisualizationDefinition(controllerType, hand);
return setting.HasValue ? setting.Value.PlatformModelMaterial : platformModelMaterial;
}
private bool SettingContainsParameters(MixedRealityControllerVisualizationSetting setting, Type controllerType, Handedness hand)
{
return setting.ControllerType != null &&
setting.ControllerType.Type == controllerType &&
setting.Handedness.IsMaskSet(hand) && setting.Handedness != Handedness.None;
}
}
}