// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Runtime.InteropServices;
using UnityEngine.XR;
namespace Microsoft.MixedReality.OpenXR
{
///
/// The type of mesh to request from the XRMeshSubsystem.
///
public enum MeshType
{
///
/// A mesh intended for visualization.
///
Visual = 1,
///
/// A mesh intended for collision detection.
///
Collider = 2,
}
///
/// The level of detail of visual mesh to request from the XRMeshSubsystem.
///
/// Has no effect on the collider mesh.
public enum VisualMeshLevelOfDetail
{
///
/// Coarse mesh level of detail with roughly 100 triangles per cubic meter.
///
Coarse = 1,
///
/// Medium mesh level of detail with roughly 400 triangles per cubic meter.
///
Medium = 2,
///
/// Fine mesh level of detail with roughly 2000 triangles per cubic meter.
///
Fine = 3,
///
/// Unlimited mesh level of detail with no guarantee as to the number of triangles per cubic meter.
///
Unlimited = 4,
}
///
/// The compute consistency to request from the XRMeshSubsystem.
///
public enum MeshComputeConsistency
{
///
/// A watertight, globally consistent snapshot, not limited to observable objects in
/// the scanned regions.
///
ConsistentSnapshotComplete = 1,
///
/// A non-watertight snapshot, limited to observable objects in the scanned regions.
/// The returned mesh may not be globally optimized for completeness, and therefore
/// may be returned faster in some scenarios.
///
ConsistentSnapshotIncompleteFast = 2,
///
/// A mesh optimized for lower-latency occlusion uses. The returned mesh may not be
/// globally consistent and might be adjusted piecewise independently.
///
OcclusionOptimized = 3,
}
///
/// Settings describing the quality and type of mesh to be provided.
///
[StructLayout(LayoutKind.Sequential, Pack = 8)]
public struct MeshComputeSettings
{
private MeshType meshType;
private VisualMeshLevelOfDetail visualMeshLevelOfDetail;
private MeshComputeConsistency meshComputeConsistency;
///
/// Deprecated. The XRMeshSubsystem only supplies visual meshes. Use a or the method to get collider meshes as needed.
///
/// Defaults to .
[Obsolete("Obsolete; only visual meshes are supplied through the mesh subsystem. Use a MeshCollider or the method XRMeshSubsystem.GenerateMeshAsync to get collider meshes as needed.")]
public MeshType MeshType
{
get => meshType != 0 ? meshType : MeshType.Visual;
set => meshType = MeshType.Visual;
}
///
/// Get or set the level of detail of visual mesh to request from the XRMeshSubsystem.
///
/// Defaults to .
public VisualMeshLevelOfDetail VisualMeshLevelOfDetail
{
get => visualMeshLevelOfDetail != 0 ? visualMeshLevelOfDetail : VisualMeshLevelOfDetail.Coarse;
set => visualMeshLevelOfDetail = value;
}
///
/// Get or set the compute consistency to request from the XRMeshSubsystem.
///
/// Defaults to .
public MeshComputeConsistency MeshComputeConsistency
{
get => meshComputeConsistency != 0 ? meshComputeConsistency : MeshComputeConsistency.OcclusionOptimized;
set => meshComputeConsistency = value;
}
}
namespace ARSubsystems
{
///
/// Additional functionality for the mesh subsystem.
///
public static class MeshSubsystemExtensions
{
///
/// Change the settings for future meshes given by the XRMeshSubsystem.
///
/// The to receive the settings
/// The mesh compute settings to be set.
/// Returns true if the setting is successfully changed to the given value. Returns false otherwise.
[System.Obsolete("Obsolete and will be removed in future releases. Use MeshSettings.TrySetMeshComputeSettings() function instead.", true)]
public static bool TrySetMeshComputeSettings(this XRMeshSubsystem subsystem, MeshComputeSettings settings)
{
return InternalMeshSettings.TrySetMeshComputeSettings(settings);
}
}
}
///
/// Static entry point for updating the mesh compute settings.
///
public static class MeshSettings
{
///
/// Change the settings for future meshes given by the XRMeshSubsystem.
///
/// The mesh compute settings to be set.
/// Returns true if the setting is successfully changed to the given value. Returns false otherwise.
public static bool TrySetMeshComputeSettings(MeshComputeSettings settings)
{
return InternalMeshSettings.TrySetMeshComputeSettings(settings);
}
}
}