using System; using System.Collections.Generic; using System.ComponentModel; using UnityEngine.Experimental.Perception.Randomization.Parameters; using UnityEngine.Experimental.Perception.Randomization.Scenarios; namespace UnityEngine.Experimental.Perception.Randomization.Randomizers { /// /// Derive Randomizer to implement systems that randomize GameObjects and/or simulation properties. /// /// /// Known issue: /// https://issuetracker.unity3d.com/issues/serializereference-non-serialized-initialized-fields-lose-their-values-when-entering-play-mode /// [Serializable] public abstract class Randomizer { bool m_PreviouslyEnabled; [HideInInspector, SerializeField] internal bool collapsed; /// /// Enabled Randomizers are updated, disabled Randomizers are not. /// [field: SerializeField] public bool enabled { get; set; } = true; /// /// Returns the scenario containing this Randomizer /// public ScenarioBase scenario => ScenarioBase.activeScenario; /// /// Retrieves the RandomizerTagManager of the scenario containing this Randomizer /// public RandomizerTagManager tagManager => scenario.tagManager; internal IEnumerable parameters { get { var fields = GetType().GetFields(); foreach (var field in fields) { if (!field.IsPublic || !field.FieldType.IsSubclassOf(typeof(Parameter))) continue; var parameter = (Parameter)field.GetValue(this); if (parameter == null) { parameter = (Parameter)Activator.CreateInstance(field.FieldType); field.SetValue(this, parameter); } yield return parameter; } } } /// /// OnCreate is called when the Randomizer is added or loaded to a scenario /// protected virtual void OnCreate() { } /// /// OnIterationStart is called at the start of a new scenario iteration /// protected virtual void OnIterationStart() { } /// /// OnIterationEnd is called the after a scenario iteration has completed /// protected virtual void OnIterationEnd() { } /// /// OnScenarioComplete is called the after the entire scenario has completed /// protected virtual void OnScenarioComplete() { } /// /// OnStartRunning is called on the first frame a Randomizer is enabled /// protected virtual void OnStartRunning() { } /// /// OnStartRunning is called on the first frame a disabled Randomizer is updated /// protected virtual void OnStopRunning() { } /// /// OnUpdate is executed every frame for enabled Randomizers /// protected virtual void OnUpdate() { } internal virtual void Create() { OnCreate(); } internal virtual void IterationStart() { OnIterationStart(); } internal virtual void IterationEnd() { OnIterationEnd(); } internal virtual void ScenarioComplete() { OnScenarioComplete(); } internal void Update() { if (enabled) { if (!m_PreviouslyEnabled) { m_PreviouslyEnabled = true; OnStartRunning(); } OnUpdate(); } else if (m_PreviouslyEnabled) { m_PreviouslyEnabled = false; OnStopRunning(); } } } }