// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #if UNITY_EDITOR using Microsoft.MixedReality.Toolkit.Utilities; using Microsoft.MixedReality.Toolkit.Utilities.Editor; using System; using System.Collections.Generic; using System.IO; using UnityEditor; using UnityEngine; #endif namespace Microsoft.MixedReality.Toolkit.Input { /// /// Helper utility to manage all the required Axis configuration for platforms, where required /// public static class ControllerMappingLibrary { #region Constants /// /// Axis for movement along the up (gravity) vector. /// public const string UP_DOWN = "UpDown"; /// /// Mouse: Position Horizontal Movement /// HTC Vive Controller: Left Controller Trackpad (2) Horizontal Movement /// Oculus Touch Controller: Axis2D.PrimaryThumbstick Horizontal Movement /// Valve Knuckles Controller: Left Controller Trackpad Horizontal Movement /// Windows Mixed Reality Motion Controller: Left Thumbstick Horizontal Movement /// Xbox Controller: Left Thumbstick Horizontal Movement /// public const string AXIS_1 = "AXIS_1"; /// /// Mouse: Position Vertical Movement /// HTC Vive Controller: Left Controller Trackpad (2) Vertical Movement /// Oculus Touch Controller: Axis2D.PrimaryThumbstick Vertical Movement /// Valve Knuckles Controller: Left Controller Trackpad Vertical Movement /// Windows Mixed Reality Motion Controller: Left Thumbstick Vertical Movement /// Xbox Controller: Left Thumbstick Vertical Movement /// public const string AXIS_2 = "AXIS_2"; /// /// Mouse: Scroll /// Xbox Controller: Shared Trigger /// public const string AXIS_3 = "AXIS_3"; /// /// HTC Vive Controller: Right Controller Trackpad (2) Horizontal Movement /// Oculus Touch Controller: Axis2D.SecondaryThumbstick Horizontal Movement /// Valve Knuckles Controller: Right Controller Trackpad Horizontal Movement /// Windows Mixed Reality Motion Controller: Right Thumbstick Horizontal Movement /// Xbox Controller: Right Thumbstick Vertical Movement /// public const string AXIS_4 = "AXIS_4"; /// /// HTC Vive Controller: Right Controller Trackpad (2) Vertical Movement /// Oculus Touch Controller: Axis2D.SecondaryThumbstick Vertical Movement /// Valve Knuckles Controller: Right Controller Trackpad Vertical Movement /// Windows Mixed Reality Motion Controller: Right Thumbstick Vertical Movement /// Xbox Controller: Right Thumbstick Vertical Movement /// public const string AXIS_5 = "AXIS_5"; /// /// None /// public const string AXIS_6 = "AXIS_6"; /// /// Xbox Controller: D-Pad Horizontal /// public const string AXIS_7 = "AXIS_7"; /// /// Xbox Controller: D-Pad Vertical /// public const string AXIS_8 = "AXIS_8"; /// /// HTC Vive Controller: Left Controller Trigger (7) Squeeze /// Oculus Touch Controller: Axis1D.PrimaryIndexTrigger Squeeze /// Valve Knuckles Controller: Left Controller Trigger Squeeze /// Windows Mixed Reality Motion Controller: Left Trigger Squeeze /// public const string AXIS_9 = "AXIS_9"; /// /// HTC Vive Controller: Right Controller Trigger (7) Squeeze /// Oculus Touch Controller: Axis1D.SecondaryIndexTrigger Movement Squeeze /// Valve Knuckles Controller: Right Controller Trigger Squeeze /// Windows Mixed Reality Motion Controller: Right Trigger Squeeze /// public const string AXIS_10 = "AXIS_10"; /// /// HTC Vive Controller: Left Controller Grip Button (8) Squeeze /// Oculus Touch Controller: Axis1D.PrimaryHandTrigger Squeeze /// Valve Knuckles Controller: Left Controller Grip Average Squeeze /// Windows Mixed Reality Motion Controller: Left Grip Squeeze /// public const string AXIS_11 = "AXIS_11"; /// /// HTC Vive Controller: Right Controller Grip Button (8) Squeeze /// Oculus Touch Controller: Axis1D.SecondaryHandTrigger Squeeze /// Valve Knuckles Controller: Right Controller Grip Average Squeeze /// Windows Mixed Reality Motion Controller: Right Grip Squeeze /// public const string AXIS_12 = "AXIS_12"; /// /// Oculus Touch Controller: Axis1D.PrimaryIndexTrigger Near Touch /// public const string AXIS_13 = "AXIS_13"; /// /// Oculus Touch Controller: Axis1D.SecondaryIndexTrigger Near Touch /// public const string AXIS_14 = "AXIS_14"; /// /// Oculus Touch Controller: Touch.PrimaryThumbRest Near Touch /// public const string AXIS_15 = "AXIS_15"; /// /// Oculus Touch Controller: Button.SecondaryThumbstick Near Touch /// public const string AXIS_16 = "AXIS_16"; /// /// Windows Mixed Reality Motion Controller: Left Touchpad Horizontal Movement /// public const string AXIS_17 = "AXIS_17"; /// /// Windows Mixed Reality Motion Controller: Left Touchpad Vertical Movement /// public const string AXIS_18 = "AXIS_18"; /// /// Windows Mixed Reality Motion Controller: Right Touchpad Horizontal Movement /// public const string AXIS_19 = "AXIS_19"; /// /// Windows Mixed Reality Motion Controller: Right Touchpad Vertical Movement /// Valve Knuckles Controller: Left Controller Index Finger Cap Sensor /// public const string AXIS_20 = "AXIS_20"; /// /// Valve Knuckles Controller: Right Controller Index Finger Cap Sensor /// public const string AXIS_21 = "AXIS_21"; /// /// Valve Knuckles Controller: Left Controller Middle Finger Cap Sensor /// public const string AXIS_22 = "AXIS_22"; /// /// Valve Knuckles Controller: Right Controller Middle Finger Cap Sensor /// public const string AXIS_23 = "AXIS_23"; /// /// Valve Knuckles Controller: Left Controller Ring Finger Cap Sensor /// public const string AXIS_24 = "AXIS_24"; /// /// Valve Knuckles Controller: Right Controller Ring Finger Cap Sensor /// public const string AXIS_25 = "AXIS_25"; /// /// Valve Knuckles Controller: Left Controller Pinky Finger Cap Sensor /// public const string AXIS_26 = "AXIS_26"; /// /// Valve Knuckles Controller: Right Controller Pinky Finger Cap Sensor /// public const string AXIS_27 = "AXIS_27"; public const string AXIS_28 = "AXIS_28"; #endregion Constants #if UNITY_EDITOR #region InputAxisConfig // Default value for the dead zone. This should match the default used by Unity for the pre-created Horizontal and Vertical axes. public const float defaultDeadZone = 0.19f; /// /// Get the InputManagerAxis data needed to configure the Input Mappings for a controller /// public static InputManagerAxis[] UnityInputManagerAxes => new[] { new InputManagerAxis { Name = AXIS_1, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 1 }, new InputManagerAxis { Name = AXIS_2, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 2 }, new InputManagerAxis { Name = AXIS_3, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 3 }, new InputManagerAxis { Name = AXIS_4, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 4 }, new InputManagerAxis { Name = AXIS_5, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 5 }, new InputManagerAxis { Name = AXIS_6, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 6 }, new InputManagerAxis { Name = AXIS_7, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 7 }, new InputManagerAxis { Name = AXIS_8, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 8 }, new InputManagerAxis { Name = AXIS_9, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 9 }, new InputManagerAxis { Name = AXIS_10, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 10 }, new InputManagerAxis { Name = AXIS_11, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 11 }, new InputManagerAxis { Name = AXIS_12, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 12 }, new InputManagerAxis { Name = AXIS_13, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 13 }, new InputManagerAxis { Name = AXIS_14, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 14 }, new InputManagerAxis { Name = AXIS_15, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 15 }, new InputManagerAxis { Name = AXIS_16, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 16 }, new InputManagerAxis { Name = AXIS_17, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 17 }, new InputManagerAxis { Name = AXIS_18, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 18 }, new InputManagerAxis { Name = AXIS_19, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 19 }, new InputManagerAxis { Name = AXIS_20, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 20 }, new InputManagerAxis { Name = AXIS_21, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 21 }, new InputManagerAxis { Name = AXIS_22, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 22 }, new InputManagerAxis { Name = AXIS_23, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 23 }, new InputManagerAxis { Name = AXIS_24, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 24 }, new InputManagerAxis { Name = AXIS_25, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 25 }, new InputManagerAxis { Name = AXIS_26, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 26 }, new InputManagerAxis { Name = AXIS_27, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 27 }, new InputManagerAxis { Name = AXIS_28, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 28 }, new InputManagerAxis { Name = UP_DOWN, Gravity = 3, Dead = 0.001f, Sensitivity = 3, Snap = true, Invert = false, Type = InputManagerAxisType.KeyOrMouseButton, PositiveButton = "e", NegativeButton = "q" }, new InputManagerAxis { Name = UP_DOWN, Dead = defaultDeadZone, Sensitivity = 1, Invert = false, Type = InputManagerAxisType.JoystickAxis, Axis = 3 }, }; #endregion InputAxisConfig private static Dictionary, Texture2D> cachedTextures = new Dictionary, Texture2D>(); public static Texture2D GetControllerTexture(Type controllerType, Handedness handedness) { return GetControllerTextureCached(controllerType, handedness, ""); } public static Texture2D GetControllerTextureScaled(Type controllerType, Handedness handedness) { return GetControllerTextureCached(controllerType, handedness, "_scaled"); } private static Texture2D GetControllerTextureCached(Type controllerType, Handedness handedness, string suffix) { var key = new Tuple(controllerType, handedness, suffix); if (cachedTextures.TryGetValue(key, out Texture2D texture)) { return texture; } texture = GetControllerTextureInternal(controllerType, handedness, suffix); cachedTextures.Add(key, texture); return texture; } private static Texture2D GetControllerTextureInternal(Type controllerType, Handedness handedness, string suffix) { if (controllerType != null) { var attr = MixedRealityControllerAttribute.Find(controllerType); if (attr != null) { if (attr.TexturePath.Length > 0) { Texture2D texture = GetControllerTextureInternal(attr.TexturePath, handedness, suffix); if (texture != null) { return texture; } } } } return GetControllerTextureInternal("Textures/Generic_controller", Handedness.None, suffix); } private static Texture2D GetControllerTextureInternal(string relativeTexturePath, Handedness handedness, string suffix) { string handednessSuffix = string.Empty; if (handedness == Handedness.Left) { handednessSuffix = "_left"; } else if (handedness == Handedness.Right) { handednessSuffix = "_right"; } string themeSuffix = EditorGUIUtility.isProSkin ? "_white" : "_black"; string textureName = $"{Path.GetFileName(relativeTexturePath)}{handednessSuffix}{themeSuffix}{suffix}"; string[] textureGuids = AssetDatabase.FindAssets(textureName); string texturePath = string.Empty; foreach (string guid in textureGuids) { string tempPath = AssetDatabase.GUIDToAssetPath(guid); // Ensure the path we're looking at contains the exact file name we're looking for if (tempPath.Contains(textureName + ".png")) { texturePath = tempPath; break; } } return (Texture2D)AssetDatabase.LoadAssetAtPath(texturePath, typeof(Texture2D)); } #endif // UNITY_EDITOR } }