mixedreality/com.microsoft.mixedreality..../Core/Providers/BaseGenericInputSource.cs

105 lines
3.2 KiB
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections;
namespace Microsoft.MixedReality.Toolkit.Input
{
/// <summary>
/// Base class for input sources that don't inherit from MonoBehaviour.
/// </summary>
/// <remarks>
/// <para>This base class does not support adding or removing pointers, because many will never
/// pass pointers in their constructors and will fall back to either the Gaze or Mouse Pointer.</para>
/// </remarks>
public class BaseGenericInputSource : IMixedRealityInputSource, IDisposable
{
/// <summary>
/// Constructor.
/// </summary>
public BaseGenericInputSource(string name, IMixedRealityPointer[] pointers = null, InputSourceType sourceType = InputSourceType.Other)
{
SourceId = CoreServices.InputSystem?.GenerateNewSourceId() ?? 0;
SourceName = name;
if (pointers != null)
{
Pointers = pointers;
}
else if (!CoreServices.InputSystem.IsNull() && !CoreServices.InputSystem.GazeProvider.IsNull() && CoreServices.InputSystem.GazeProvider.GazePointer is IMixedRealityPointer gazePointer)
{
Pointers = new[] { gazePointer };
}
else
{
Pointers = new IMixedRealityPointer[] { };
}
SourceType = sourceType;
}
/// <inheritdoc />
public uint SourceId { get; }
/// <inheritdoc />
public string SourceName { get; }
/// <inheritdoc />
public virtual IMixedRealityPointer[] Pointers { get; }
/// <inheritdoc />
public InputSourceType SourceType { get; set; }
#region IEquality Implementation
public static bool Equals(IMixedRealityInputSource left, IMixedRealityInputSource right)
{
return left.Equals(right);
}
/// <inheritdoc />
bool IEqualityComparer.Equals(object left, object right)
{
return left.Equals(right);
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) { return false; }
if (ReferenceEquals(this, obj)) { return true; }
if (obj.GetType() != GetType()) { return false; }
return Equals((IMixedRealityInputSource)obj);
}
private bool Equals(IMixedRealityInputSource other)
{
return other != null && SourceId == other.SourceId && string.Equals(SourceName, other.SourceName);
}
/// <inheritdoc />
int IEqualityComparer.GetHashCode(object obj)
{
return obj.GetHashCode();
}
public override int GetHashCode()
{
unchecked
{
int hashCode = 0;
hashCode = (hashCode * 397) ^ (int)SourceId;
hashCode = (hashCode * 397) ^ (SourceName != null ? SourceName.GetHashCode() : 0);
return hashCode;
}
}
/// <summary>
/// Dispose.
/// </summary>
public virtual void Dispose() { }
#endregion IEquality Implementation
}
}