// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#if UNITY_EDITOR || UNITY_STANDALONE || WINDOWS_UWP
using System;
using UnityEngine.Windows.Speech;
using static UnityEngine.Windows.Speech.PhraseRecognizer;
namespace Microsoft.MixedReality.OpenXR
{
///
/// A keyword recognizer listening to the "select" keyword localized in the system display language of HoloLens 2.
///
///
/// This class is only required by HoloLens 2 as the OS filters out the "select" keyword and thus
/// the Unity does not fire events when the word is heard.
/// The API surface is made mostly identical to the Unity for ease of use.
/// Like the Unity , this class is only available under the UNITY_EDITOR || UNITY_STANDALONE || WINDOWS_UWP flags.
/// We recommend checking for those flags in the code using #if before referencing this class, especially when developing a cross-platform application.
///
public sealed class SelectKeywordRecognizer : IDisposable
{
///
/// Create a new SelectKeywordRecognizer.
///
///
/// Use to check whether the recognizer is supported by the current platform / Unity version first before calling the constructor.
/// The constructor does the same check and will throw an exception if not supported.
///
public SelectKeywordRecognizer()
{
m_provider = new SelectKeywordRecognizerProvider();
}
///
/// Check whether the recognizer is supported by the current platform / Unity version
///
public static bool IsSupported => SelectKeywordRecognizerProvider.IsSupported;
///
/// Return whether the recognizer is running
///
public bool IsRunning => m_provider.IsRunning;
///
/// Event to be fired when the "select" keyword is recognized
///
public event PhraseRecognizedDelegate OnPhraseRecognized
{
add
{
m_provider.OnPhraseRecognized += value;
}
remove
{
m_provider.OnPhraseRecognized -= value;
}
}
///
/// Start the SelectKeywordRecognizer to listen for the select keyword
///
public void Start() => m_provider.Start();
///
/// Stop the SelectKeywordRecognizer from listening for the select keyword
///
public void Stop() => m_provider.Stop();
///
/// Dispose the resources used by SelectKeywordRecognizer
///
public void Dispose() => m_provider.Dispose();
private SelectKeywordRecognizerProvider m_provider;
}
}
#endif // UNITY_EDITOR || UNITY_STANDALONE || WINDOWS_UWP