using System; using UnityEngine.Assertions; namespace UnityEngine.Rendering { /// /// Debug UI Class /// public partial class DebugUI { /// /// Flags for Debug UI widgets. /// [Flags] public enum Flags { /// /// None. /// None = 0, /// /// This widget is Editor only. /// EditorOnly = 1 << 1, /// /// This widget is Runtime only. /// RuntimeOnly = 1 << 2, /// /// This widget will force the Debug Editor Window refresh. /// EditorForceUpdate = 1 << 3 } /// /// Base class for all debug UI widgets. /// public abstract class Widget { // Set to null until it's added to a panel, be careful /// /// Panels containing the widget. /// protected Panel m_Panel; /// /// Panels containing the widget. /// public virtual Panel panel { get { return m_Panel; } internal set { m_Panel = value; } } /// /// Parent container. /// protected IContainer m_Parent; /// /// Parent container. /// public virtual IContainer parent { get { return m_Parent; } internal set { m_Parent = value; } } /// /// Flags for the widget. /// public Flags flags { get; set; } /// /// Display name. /// public string displayName { get; set; } /// /// Path of the widget. /// public string queryPath { get; private set; } /// /// True if the widget is Editor only. /// public bool isEditorOnly { get { return (flags & Flags.EditorOnly) != 0; } } /// /// True if the widget is Runtime only. /// public bool isRuntimeOnly { get { return (flags & Flags.RuntimeOnly) != 0; } } /// /// True if the widget is inactive in the editor (ie: widget is runtime only and the application is not 'Playing') /// public bool isInactiveInEditor { get { return (isRuntimeOnly && !Application.isPlaying); } } internal virtual void GenerateQueryPath() { queryPath = displayName.Trim(); if (m_Parent != null) queryPath = m_Parent.queryPath + " -> " + queryPath; } /// /// Returns the hash code of the widget. /// /// The hash code of the widget. public override int GetHashCode() { return queryPath.GetHashCode(); } } /// /// Interface for widgets that can contain other widgets. /// public interface IContainer { /// /// List of children of the container. /// ObservableList children { get; } /// /// Display name of the container. /// string displayName { get; set; } /// /// Path of the container. /// string queryPath { get; } } /// /// Any widget that implements this will be considered for serialization (only if the setter is set and thus is not read-only) /// public interface IValueField { /// /// Return the value of the field. /// /// Value of the field. object GetValue(); /// /// Set the value of the field. /// /// Input value. void SetValue(object value); /// /// Function used to validate the value when setting it. /// /// /// object ValidateValue(object value); } // Miscellaneous /// /// Button widget. /// public class Button : Widget { /// /// Action performed by the button. /// public Action action { get; set; } } /// /// Read only Value widget. /// public class Value : Widget { /// /// Getter for the Value. /// public Func getter { get; set; } /// /// Refresh rate for the read-only value (runtime only) /// public float refreshRate = 0.1f; /// /// Returns the value of the widget. /// /// The value of the widget. public object GetValue() { Assert.IsNotNull(getter); return getter(); } } } }