55 lines
1.9 KiB
C#
55 lines
1.9 KiB
C#
using Enigmos.Modules.ControllingModules;
|
|
using Enigmos.Ports;
|
|
using Enigmos.Ports.DataPorts;
|
|
using Godot;
|
|
using Nocturnis.DataStructures.ConfigurableParameters;
|
|
using Nocturnis.Enigmos.Modules;
|
|
using TabulaSmaragdina;
|
|
using TabulaSmaragdina.Constants;
|
|
|
|
namespace Enigmos.Modules.ComputationalModules.Nullary;
|
|
|
|
public partial class ConstantModule : NullaryComputationalModule, IParameterizedModule
|
|
{
|
|
|
|
[Export] private double PresetConstantValue { get; set; }
|
|
|
|
private HashSet<DataOutPort> OutputGroup { get; set; } = new();
|
|
private DataOutPort? Output1 { get; set; }
|
|
private DataOutPort? Output2 { get; set; }
|
|
private DataOutPort? Output3 { get; set; }
|
|
private DataOutPort? Output4 { get; set; }
|
|
public override IEnumerable<BasePort> Ports => base.Ports.Union(new[] { Output1, Output2, Output3, Output4 })!;
|
|
private IDoubleParameter ConstValue { get; set; }
|
|
public override void Init()
|
|
{
|
|
base.Init();
|
|
Output1 = GetPort<DataOutPort>("Output1");
|
|
Output2 = GetPort<DataOutPort>("Output2");
|
|
Output3 = GetPort<DataOutPort>("Output3");
|
|
Output4 = GetPort<DataOutPort>("Output4");
|
|
|
|
OutputGroup = new HashSet<DataOutPort>(new[] { Output1, Output2, Output3, Output4 });
|
|
foreach (DataOutPort port in OutputGroup)
|
|
port.SetDataType(EnigmosConstant.DataPortTypes.Real);
|
|
ConstValue =
|
|
GlobalProvider.DataStructureProvider.NewDoubleParameter(
|
|
"Constant Value",
|
|
-1,
|
|
1,
|
|
UsingPreset ? PresetConstantValue : 0
|
|
);
|
|
ConfigurableParameters = new HashSet<IConfigurableParameter> { ConstValue };
|
|
PostInit();
|
|
}
|
|
|
|
protected override void Compute(IRootModule root)
|
|
{
|
|
foreach (DataOutPort port in OutputGroup)
|
|
port.ResultData.Real = ConstValue.ParameterValue;
|
|
|
|
}
|
|
|
|
public HashSet<IConfigurableParameter> ConfigurableParameters { get; set; } = new();
|
|
}
|