// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.MixedReality.Toolkit.Physics;
using Microsoft.MixedReality.Toolkit.Utilities;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Boundary
{
///
/// Configuration profile settings for setting up boundary visualizations.
///
[CreateAssetMenu(menuName = "Mixed Reality/Toolkit/Profiles/Mixed Reality Boundary Visualization Profile", fileName = "MixedRealityBoundaryVisualizationProfile", order = (int)CreateProfileMenuItemIndices.BoundaryVisualization)]
[MixedRealityServiceProfile(typeof(IMixedRealityBoundarySystem))]
[HelpURL("https://docs.microsoft.com/windows/mixed-reality/mrtk-unity/features/boundary/boundary-system-getting-started")]
public class MixedRealityBoundaryVisualizationProfile : BaseMixedRealityProfile
{
[SerializeField]
[Tooltip("The approximate height of the play space, in meters.")]
private float boundaryHeight = 3.0f;
///
/// The developer defined height of the boundary, in meters.
///
///
/// The BoundaryHeight property is used to create a three dimensional volume for the play space.
///
public float BoundaryHeight => boundaryHeight;
#region Floor settings
[SerializeField]
[Tooltip("Should the floor be displayed in the scene?")]
private bool showFloor = true;
///
/// Should the boundary system display the floor?
///
public bool ShowFloor => showFloor;
// todo: consider allowing optional custom prefab
[SerializeField]
[Tooltip("The material to use when displaying the floor.")]
private Material floorMaterial = null;
///
/// The material to use for the floor GameObject when created by the boundary system.
///
public Material FloorMaterial => floorMaterial;
[PhysicsLayer]
[SerializeField]
[Tooltip("The physics layer to assign to the generated floor.")]
private int floorPhysicsLayer = 0;
///
/// The physics layer to assign to the generated floor.
///
public int FloorPhysicsLayer => floorPhysicsLayer;
[SerializeField]
[Tooltip("The dimensions of the floor, in meters.")]
private Vector2 floorScale = new Vector2(10f, 10f);
///
/// The size at which to display the rectangular floor plane GameObject.
///
public Vector2 FloorScale => floorScale;
#endregion Floor settings
#region Play area settings
[SerializeField]
[Tooltip("Should the play area be displayed in the scene?")]
private bool showPlayArea = true;
///
/// Should the boundary system display the play area?
///
public bool ShowPlayArea => showPlayArea;
[SerializeField]
[Tooltip("The material to use when displaying the play area.")]
private Material playAreaMaterial = null;
///
/// The material to use for the rectangular play area GameObject.
///
public Material PlayAreaMaterial => playAreaMaterial;
[PhysicsLayer]
[SerializeField]
[Tooltip("The physics layer to assign to the generated play area.")]
private int playAreaPhysicsLayer = 2;
///
/// The physics layer to assign to the generated play area.
///
public int PlayAreaPhysicsLayer => playAreaPhysicsLayer;
#endregion Play area settings
#region Tracked area settings
[SerializeField]
[Tooltip("Should the tracked area be displayed in the scene?")]
private bool showTrackedArea = true;
///
/// Should the boundary system display the tracked area?
///
public bool ShowTrackedArea => showTrackedArea;
[SerializeField]
[Tooltip("The material to use when displaying the tracked area.")]
private Material trackedAreaMaterial = null;
///
/// The material to use for the boundary geometry GameObject.
///
public Material TrackedAreaMaterial => trackedAreaMaterial;
[PhysicsLayer]
[SerializeField]
[Tooltip("The physics layer to assign to the generated tracked area.")]
private int trackedAreaPhysicsLayer = 2;
///
/// The physics layer to assign to the generated tracked area.
///
public int TrackedAreaPhysicsLayer => trackedAreaPhysicsLayer;
#endregion Tracked area settings
#region Boundary wall settings
[SerializeField]
[Tooltip("Should the boundary walls be displayed in the scene?")]
private bool showBoundaryWalls = false;
///
/// Should the boundary system display the boundary geometry walls?
///
public bool ShowBoundaryWalls => showBoundaryWalls;
[SerializeField]
[Tooltip("The material to use when displaying the boundary walls.")]
private Material boundaryWallMaterial = null;
///
/// The material to use for displaying the boundary geometry walls.
///
public Material BoundaryWallMaterial => boundaryWallMaterial;
[PhysicsLayer]
[SerializeField]
[Tooltip("The physics layer to assign to the generated boundary walls.")]
private int boundaryWallsPhysicsLayer = 2;
///
/// The physics layer to assign to the generated boundary walls.
///
public int BoundaryWallsPhysicsLayer => boundaryWallsPhysicsLayer;
#endregion Boundary wall settings
#region Boundary ceiling settings
[SerializeField]
[Tooltip("Should the boundary ceiling be displayed in the scene?")]
private bool showBoundaryCeiling = false;
///
/// Should the boundary system display the boundary ceiling?
///
public bool ShowBoundaryCeiling => showBoundaryCeiling;
[SerializeField]
[Tooltip("The material to use when displaying the boundary ceiling.")]
private Material boundaryCeilingMaterial = null;
///
/// The material to use for displaying the boundary ceiling.
///
public Material BoundaryCeilingMaterial => boundaryCeilingMaterial;
[PhysicsLayer]
[SerializeField]
[Tooltip("The physics layer to assign to the generated boundary ceiling.")]
private int ceilingPhysicsLayer = 2;
///
/// The physics layer to assign to the generated boundary ceiling.
///
public int CeilingPhysicsLayer => ceilingPhysicsLayer;
#endregion Boundary ceiling settings
}
}