// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Collections.Generic; using System.Threading.Tasks; using UnityEngine.XR.ARFoundation; using UnityEngine.XR.ARSubsystems; namespace Microsoft.MixedReality.OpenXR.ARFoundation { /// /// Provides extension methods to use an ARAnchorManager to load an XRAnchorStore. /// public static class AnchorManagerExtensions { /// /// Use this ARAnchorManager to load an XRAnchorStore. /// /// /// A task which, when completed, will contain a valid XRAnchorStore, or will contain null if the anchor store could not be loaded. /// /// The to receive the loaded anchors from the store. /// /// The anchor subsystem might not be available if the XR session is not initialized at start up. In this case, the returned anchor store might be null. /// Make sure to reload the anchor store after the XR session is initialized. /// [System.Obsolete("Obsolete and will be removed in future releases. Use XRAnchorStore.LoadAnchorStoreAsync() function instead.", true)] public static Task LoadAnchorStoreAsync(this ARAnchorManager anchorManager) { return XRAnchorStore.LoadAnchorStoreAsync(anchorManager.subsystem); } } } namespace Microsoft.MixedReality.OpenXR.ARSubsystems { /// /// Provides extension methods to use an XRAnchorSubsystem to load an XRAnchorStore. /// public static class AnchorSubsystemExtensions { /// /// Use this XRAnchorSubsystem to load an XRAnchorStore. /// /// /// A task which, when completed, will contain a valid XRAnchorStore, or contain null if the anchor store could not be loaded. /// /// The to receive the loaded anchors from the store. /// /// The anchor subsystem might not be available if the XR session is not initialized at start up. In this case, the returned anchor store might be null. /// Make sure to reload the anchor store after the XR session is initialized. /// [System.Obsolete("Obsolete and will be removed in future releases. Use XRAnchorStore.LoadAnchorStoreAsync() function instead.", true)] public static Task LoadAnchorStoreAsync(this XRAnchorSubsystem anchorSubsystem) { return XRAnchorStore.LoadAnchorStoreAsync(anchorSubsystem); } } } namespace Microsoft.MixedReality.OpenXR { /// /// Handles persisting anchors from the scene to the anchor store, loading anchors from the anchor store to the scene, /// and managing anchors persisted in the anchor store. /// /// /// Persisting and unpersisting anchors from the anchor store does not affect their state in the Unity scene. /// These operations only affect whether anchors will be available to load from the anchor store in the future. /// public class XRAnchorStore { /// /// The names of all persisted anchors available in this anchor store. Each of these persisted anchors can be loaded with . /// public IReadOnlyList PersistedAnchorNames => m_openxrAnchorStore.PersistedAnchorNames; /// /// Begin loading an anchor from the anchor store into the Unity scene. /// On a future update of the ARAnchorManager or XRAnchorSubsystem, a new corresponding anchor will be created. /// /// If the persisted anchor has already been loaded, the TrackableId for the existing anchor in the scene will be returned. /// The TrackableId which the anchor will use once it is created. /// The name of the anchor to be loaded from the store. public TrackableId LoadAnchor(string name) => m_openxrAnchorStore.LoadAnchor(name); /// /// Persist an anchor in the anchor store, where it can be retrieved using . /// /// True if the anchor was successfully persisted, false if an error occurred. /// The of an anchor to be persisted in the store. /// A string to identify this anchor if it's successfully persisted in the store. public bool TryPersistAnchor(TrackableId trackableId, string name) => m_openxrAnchorStore.TryPersistAnchor(name, trackableId); /// /// Unpersist an anchor from the anchor store. /// /// After an anchor is unpersisted from the store, it will still be valid and locatable in the current session. /// The name of the anchor to be unpersist from the store. public void UnpersistAnchor(string name) => m_openxrAnchorStore.UnpersistAnchor(name); /// /// Clear all persisted anchors from the anchor store. /// /// After the anchors are cleared from the anchor store, they will still be valid and locatable in the current session. public void Clear() => m_openxrAnchorStore.Clear(); /// /// This method will reload the anchor store. Use this if the head tracking map or anchors changed from outside the application. /// /// All anchors must be removed from the scene prior to this call. /// True if the the reload succeeded, False if an error occurred. public Task TryReloadAnchorStoreAsync() => m_openxrAnchorStore.TryReloadAnchorStoreAsync(); /// /// Deprecated: Uses an existing to load an XRAnchorStore. /// /// /// A task which, when completed, will contain a valid XRAnchorStore, or contain null if the anchor store could not be loaded. /// /// /// The anchor subsystem might not be available if the XR session is not initialized at start up. In this case, the returned anchor store might be null. /// Make sure to reload the anchor store after the XR session is initialized. /// [Obsolete("This method is obsolete. Use the XRAnchorStore.LoadAnchorStoreAsync() function instead.", false)] public static async Task LoadAsync(XRAnchorSubsystem anchorSubsystem) => await LoadAnchorStoreAsync(anchorSubsystem); /// /// A task which, when completed, will contain a valid XRAnchorStore, or contain null if the anchor store could not be loaded. /// /// /// The anchor subsystem might not be available if the XR session is not initialized at start up. In this case, the returned anchor store might be null. /// Make sure to reload the anchor store after the XR session is initialized. /// public static async Task LoadAnchorStoreAsync(XRAnchorSubsystem anchorSubsystem) { OpenXRAnchorStore openxrAnchorStore = await OpenXRAnchorStoreFactory.LoadAnchorStoreAsync(anchorSubsystem); return openxrAnchorStore == null ? null : new XRAnchorStore(openxrAnchorStore); } internal XRAnchorStore(OpenXRAnchorStore openxrAnchorStore) { m_openxrAnchorStore = openxrAnchorStore; } private readonly OpenXRAnchorStore m_openxrAnchorStore; } }