// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.MixedReality.OpenXR { /// /// Retrieve the current OpenXR instance, session handles and states. /// public class OpenXRContext { /// /// Get the current OpenXR context. /// public static OpenXRContext Current { get; } = new OpenXRContext(); /// /// The XrInstance handle, or 0 when instance is not initialized. /// public ulong Instance => OpenXRFeaturePluginManager.ActiveFeature != null ? OpenXRFeaturePluginManager.ActiveFeature.Instance : 0; /// /// The XrSystemId, or 0 when system is not available. /// public ulong SystemId => OpenXRFeaturePluginManager.ActiveFeature != null ? OpenXRFeaturePluginManager.ActiveFeature.SystemId : 0; /// /// The XrSession handle, or 0 when session is not created. /// public ulong Session => OpenXRFeaturePluginManager.ActiveFeature != null ? OpenXRFeaturePluginManager.ActiveFeature.Session : 0; /// /// Whether the current XrSession is running, i.e. when the frame loop is in progress. /// public bool IsSessionRunning => OpenXRFeaturePluginManager.ActiveFeature != null && OpenXRFeaturePluginManager.ActiveFeature.IsSessionRunning; /// /// An XrSpace handle to the reference space of the current Unity scene origin, or 0 when not available. /// It's typically a LOCAL, a STAGE or an UNBOUNDED reference space handle when available. /// public ulong SceneOriginSpace => OpenXRFeaturePluginManager.ActiveFeature != null ? OpenXRFeaturePluginManager.ActiveFeature.SceneOriginSpace : 0; /// /// Get the function pointer to PFN_xrGetInstanceProcAddr that includes Unity OpenXR plugin and features overrides. /// Returns 0 when XR is not loaded in Unity or xrInstance handle above is 0. /// public IntPtr PFN_xrGetInstanceProcAddr => OpenXRFeaturePlugin.PFN_xrGetInstanceProcAddr; private OpenXRContext() { } // Should use static singleton `Current` property instead. } }