Add informational/warning light support.

This commit is contained in:
Anna Rose 2025-02-11 12:50:09 -05:00
parent 97eb659378
commit 6a51e203e0

View File

@ -1,7 +1,7 @@
using Sandbox.ModAPI.Ingame;
using SpaceEngineers.Game.ModAPI.Ingame;
using System.Collections.Generic;
using VRage.Game.ModAPI.Ingame.Utilities;
using VRageMath;
namespace IngameScript
{
@ -18,6 +18,7 @@ namespace IngameScript
private List<IMyTextSurface> _displays;
private PrefixedConsole _console;
private Sequencer _sequencer;
private List<IMyLightingBlock> _lights;
private const float TriggerLevel = 0.75F;
@ -30,6 +31,7 @@ namespace IngameScript
Vents = new List<IMyAirVent>();
_doors = new List<IMyDoor>();
_displays = new List<IMyTextSurface>();
_lights = new List<IMyLightingBlock>();
}
public void AddBlock(IMyTerminalBlock block)
@ -51,6 +53,10 @@ namespace IngameScript
wrapped.LockClosed = true;
_sequencer.AddBlock(wrapped);
}
else if (block is IMyLightingBlock)
{
_lights.Add(block as IMyLightingBlock);
}
else
{
_console.Print("Tried to add incompatible block '{block.CustomName}'");
@ -78,10 +84,16 @@ namespace IngameScript
if (Triggered == true)
{
_console.Print($"Low pressure alarm triggered.");
foreach (IMyLightingBlock light in _lights)
{
light.Enabled = true;
light.Color = Color.Red;
}
// close the doors
IEnumerator<bool> job = _sequencer.RunSequence(true);
while (job.MoveNext()) {
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;
@ -92,6 +104,12 @@ namespace IngameScript
// unlock the doors, but we'll leave them closed.
foreach (IMyDoor door in _doors) { door.Enabled = true; }
foreach (IMyLightingBlock light in _lights)
{
light.Enabled = true;
light.Color = Color.White;
}
}
yield return true;