// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.Utilities; using System.Collections.Generic; namespace Microsoft.MixedReality.Toolkit.Input { /// /// Defines the base interactions and data that an controller can provide. /// public abstract class BaseInputSourceDefinition : IMixedRealityInputSourceDefinition { /// /// Constructor. /// /// The handedness that this definition instance represents. public BaseInputSourceDefinition(Handedness handedness) { Handedness = handedness; } /// /// The (ex: Left, Right, None) of this controller. /// public Handedness Handedness { get; } /// /// The collection of interactions supported by a left-handed instance of this controller. /// /// Optional. Override DefaultInteractions if both handed controllers have identical interactions. protected virtual MixedRealityInputActionMapping[] DefaultLeftHandedMappings => DefaultMappings; /// /// The collection of interactions supported by a right-handed instance of this controller. /// /// Optional. Override DefaultInteractions if both handed controllers have identical interactions. protected virtual MixedRealityInputActionMapping[] DefaultRightHandedMappings => DefaultMappings; /// /// The collection of interactions supported by this controller. /// /// Optional. Override the specifically-handed properties if each controller has different interactions. protected virtual MixedRealityInputActionMapping[] DefaultMappings => null; /// public IReadOnlyList GetDefaultMappings(Handedness handedness) { switch (handedness) { case Handedness.Left: return DefaultLeftHandedMappings; case Handedness.Right: return DefaultRightHandedMappings; default: return DefaultMappings; } } } }