The base class for a hierarchy of systems. More...
Public Member Functions | |
SystemGroup (params SystemBase[] children) | |
Create a new system group. More... | |
SystemGroup (String name, params SystemBase[] children) | |
Create a new system group. More... | |
![]() | |
SystemBase () | |
Constructor. More... | |
SystemBase (params SystemBase[] children) | |
Create a new instance of a system with children. More... | |
SystemBase (string scheduleSample) | |
Create a new instance and setting the sample name. More... | |
virtual void | OnDisabled (Frame f) |
Is called when the system was disabled for example after Frame.SystemDisable(Type). More... | |
virtual void | OnEnabled (Frame f) |
Is called when the system was enabled for example after calling Frame.SystemEnable<T>() or during QuantumGame.InitSystems(Photon.Deterministic.DeterministicFrame). More... | |
virtual void | OnInit (Frame f) |
Is called when the system is initialized. More... | |
TaskHandle | OnSchedule (Frame f, TaskHandle taskHandle) |
Creates the task graph for the system. More... | |
Protected Member Functions | |
sealed override TaskHandle | Schedule (Frame f, TaskHandle taskHandle) |
Nothing to schedule, this is only a container for children. More... | |
Additional Inherited Members | |
![]() | |
IEnumerable< SystemBase > | ChildSystems [get] |
The enumerable child systems. More... | |
IEnumerable< SystemBase > | Hierarchy [get] |
Creates the complete sub graph of child systems. More... | |
SystemBase | ParentSystem [get] |
The parent system in the system hierarchy. More... | |
string | ProfilerName [get] |
Profiler name. More... | |
Int32 | RuntimeIndex [get] |
A unique index assigned to identify systems at runtime. More... | |
virtual Boolean | StartEnabled [get, set] |
Set to true when the simulation should start with this system enabled. More... | |
The base class for a hierarchy of systems.
|
inline |
Create a new system group.
children | The child systems. |
|
inline |
Create a new system group.
name | The name of the system. |
children | The child systems. |
|
protectedvirtual |
Nothing to schedule, this is only a container for children.
Implements Quantum.SystemBase.