More cleanup and refactoring. Adjust update frequency of scripts where possible.

This commit is contained in:
Anna Rose 2025-02-11 12:44:01 -05:00
parent af97dbf6e8
commit 97eb659378
5 changed files with 30 additions and 29 deletions

View File

@ -13,7 +13,7 @@ namespace IngameScript
public string Name { get; private set; }
public List<IMyAirVent> Vents { get; private set; }
private MyIni _ini;
private IConsoleProgram _program;
private List<IMyDoor> _doors;
private List<IMyTextSurface> _displays;
private PrefixedConsole _console;
@ -24,7 +24,7 @@ namespace IngameScript
public AirZone(string zoneName, IConsoleProgram program)
{
Name = zoneName;
_ini = program.Ini;
_program = program;
_console = new PrefixedConsole(program.Console, zoneName);
_sequencer = new Sequencer(zoneName, _console);
Vents = new List<IMyAirVent>();
@ -41,7 +41,10 @@ namespace IngameScript
else if (block is IMyDoor)
{
_doors.Add(block as IMyDoor);
SequenceableDoor wrapped = SequenceableFactory.MakeSequenceable(block as IMyDoor, _ini, "airMonitor") as SequenceableDoor;
SequenceableDoor wrapped = SequenceableFactory.MakeSequenceable(
block as IMyDoor,
_program.Ini,
"airMonitor") as SequenceableDoor;
wrapped.Step = 0;
wrapped.DeployOpen = false;
wrapped.LockOpen = false;
@ -71,31 +74,22 @@ namespace IngameScript
if (vent.GetOxygenLevel() < TriggerLevel) Triggered = true;
}
// TODO: add informational lights per-zone
if (Triggered == true)
{
_console.Print($"Low pressure alarm triggered.");
// close the doors
IEnumerator<bool> job = _sequencer.RunSequence(true);
while (job.MoveNext()) yield return true;
while (Triggered)
{
// if any of the doors become re-enabled, reset and unlock all of them;
// think of it as a player manually overriding the safety protocols.
// Note that this means resets propagate across zones that share doors,
// which will likely be all of them. Which is a *little* bit of a
// bug, but it's better than never re-triggering
foreach (IMyDoor door in _doors)
{
if (door.Enabled)
{
Reset();
break;
}
}
while (job.MoveNext()) {
// It would be nice if the API had UpdateFrequency.Once10, e.g. "re-run in 10 ticks and then clear the flag"
// We'll just monitor every tick instead.
_program.Runtime.UpdateFrequency |= UpdateFrequency.Once;
yield return true;
}
while (Triggered) yield return true;
// unlock the doors, but we'll leave them closed.
foreach (IMyDoor door in _doors) { door.Enabled = true; }
}

View File

@ -2,6 +2,7 @@
using SpaceEngineers.Game.ModAPI.Ingame;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using VRage.Game.ModAPI.Ingame.Utilities;
@ -92,7 +93,7 @@ namespace IngameScript
Console.Print(kvp.Key);
_jobs.Add(zone.Monitor());
}
Runtime.UpdateFrequency |= UpdateFrequency.Update100;
Runtime.UpdateFrequency = UpdateFrequency.Update100;
}
public void Main(string argument, UpdateType updateSource)
@ -104,13 +105,17 @@ namespace IngameScript
_cli.TryParse(argument);
if (_cli.Switch("reset"))
{
for (int i = 0; i < _cli.ArgumentCount; i++)
List<string> zonesToReset;
if (_cli.ArgumentCount == 0) zonesToReset = _zones.Keys.ToList();
else zonesToReset = new List<string>();
for (int i = 0; i < _cli.ArgumentCount; i++) zonesToReset.Add(_cli.Argument(i));
foreach (string zone in zonesToReset)
{
string zone = _cli.Argument(i);
Console.Print($"Resetting {zone}.");
if (_zones.ContainsKey(zone))
{
_zones[zone].Reset();
Console.Print($"Resetting {zone}.");
if (_zones.ContainsKey(zone)) _zones[zone].Reset();
}
}
}
@ -121,6 +126,7 @@ namespace IngameScript
if (job.MoveNext()) continue;
Console.Print("WARNING: Monitoring job exited. Zone no longer being monitored.");
}
}
// write diagnostics to any configured display screens

View File

@ -65,7 +65,7 @@ namespace IngameScript
if (updateSource == UpdateType.Trigger || updateSource == UpdateType.Terminal)
{
_cli.TryParse(argument);
if (_cli.ArgumentCount == 0) { Console.Print("You must provide an airlock ID."); }
if (_cli.ArgumentCount == 0) Console.Print("Airlock ID not provided.");
else
{
string airlockName = _cli.Argument(0);
@ -74,7 +74,7 @@ namespace IngameScript
else
{
_jobs.Add(_airlocks[airlockName].CycleAirlock());
Runtime.UpdateFrequency |= UpdateFrequency.Update1;
Runtime.UpdateFrequency |= UpdateFrequency.Update10;
}
}
}

View File

@ -91,7 +91,7 @@ namespace IngameScript
{
_jobs.Add(door.RunSequence(deploy));
}
Runtime.UpdateFrequency |= UpdateFrequency.Update1;
Runtime.UpdateFrequency |= UpdateFrequency.Update10;
}
}

View File

@ -17,6 +17,7 @@ namespace IngameScript
{
MyIni Ini { get; }
Program.IConsole Console { get; }
IMyGridProgramRuntimeInfo Runtime { get; }
}
partial class Program