* Content update for UI refactor * Big update * Sharing * Remaining content updates * First big update * Prototype updates * AUGH * Fix UI comp ref * Cleanup - Fix predicted message, fix item slots, fix interaction range check. * Fix regressions * Make this predictive idk why it wasn't. * Fix slime merge * Merge conflict * Fix merge
53 lines
2.1 KiB
C#
53 lines
2.1 KiB
C#
using Content.Server.DeviceLinking.Components;
|
|
using Content.Shared.Atmos.Monitor;
|
|
using Content.Shared.Atmos.Monitor.Components;
|
|
using Content.Shared.Atmos.Piping.Unary.Components;
|
|
using Content.Shared.DeviceLinking;
|
|
using Robust.Shared.Network;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Server.Atmos.Monitor.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class AirAlarmComponent : Component
|
|
{
|
|
[ViewVariables] public AirAlarmMode CurrentMode { get; set; } = AirAlarmMode.Filtering;
|
|
[ViewVariables] public bool AutoMode { get; set; } = true;
|
|
|
|
// Remember to null this afterwards.
|
|
[ViewVariables] public IAirAlarmModeUpdate? CurrentModeUpdater { get; set; }
|
|
|
|
[ViewVariables] public AirAlarmTab CurrentTab { get; set; }
|
|
|
|
public readonly HashSet<string> KnownDevices = new();
|
|
public readonly Dictionary<string, GasVentPumpData> VentData = new();
|
|
public readonly Dictionary<string, GasVentScrubberData> ScrubberData = new();
|
|
public readonly Dictionary<string, AtmosSensorData> SensorData = new();
|
|
|
|
public bool CanSync = true;
|
|
|
|
/// <summary>
|
|
/// Previous alarm state for use with output ports.
|
|
/// </summary>
|
|
[DataField("state")]
|
|
public AtmosAlarmType State = AtmosAlarmType.Normal;
|
|
|
|
/// <summary>
|
|
/// The port that gets set to high while the alarm is in the danger state, and low when not.
|
|
/// </summary>
|
|
[DataField("dangerPort", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
|
public string DangerPort = "AirDanger";
|
|
|
|
/// <summary>
|
|
/// The port that gets set to high while the alarm is in the warning state, and low when not.
|
|
/// </summary>
|
|
[DataField("warningPort", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
|
public string WarningPort = "AirWarning";
|
|
|
|
/// <summary>
|
|
/// The port that gets set to high while the alarm is in the normal state, and low when not.
|
|
/// </summary>
|
|
[DataField("normalPort", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
|
public string NormalPort = "AirNormal";
|
|
}
|