Files
tbd-station-14/Content.Server/Atmos/Piping/Binary/Components/GasDualPortVentPumpComponent.cs
Vera Aguilera Puerto 45643c633d Adds dual-port vent pump. (#4270)
* Adds dual-port vent pump.

* stop being lazy and do the flag check manually

* disable vent pump behavior
2021-07-15 23:24:45 +10:00

53 lines
1.6 KiB
C#

using System;
using Content.Server.Atmos.Piping.Unary.Components;
using Content.Shared.Atmos;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.Atmos.Piping.Binary.Components
{
[RegisterComponent]
public class GasDualPortVentPumpComponent : Component
{
public override string Name => "GasDualPortVentPump";
[ViewVariables(VVAccess.ReadWrite)]
public bool Enabled { get; set; } = true;
[ViewVariables(VVAccess.ReadWrite)]
public bool Welded { get; set; } = false;
[ViewVariables(VVAccess.ReadWrite)]
[DataField("inlet")]
public string InletName { get; set; } = "inlet";
[ViewVariables(VVAccess.ReadWrite)]
[DataField("outlet")]
public string OutletName { get; set; } = "outlet";
[ViewVariables(VVAccess.ReadWrite)]
public VentPumpDirection PumpDirection { get; set; } = VentPumpDirection.Releasing;
[ViewVariables(VVAccess.ReadWrite)]
public DualPortVentPressureBound PressureChecks { get; set; } = DualPortVentPressureBound.ExternalBound;
[ViewVariables(VVAccess.ReadWrite)]
public float ExternalPressureBound { get; set; } = Atmospherics.OneAtmosphere;
[ViewVariables(VVAccess.ReadWrite)]
public float InputPressureMin { get; set; } = 0f;
[ViewVariables(VVAccess.ReadWrite)]
public float OutputPressureMax { get; set; } = 0f;
}
[Flags]
public enum DualPortVentPressureBound : sbyte
{
NoBound = 0,
ExternalBound = 1,
InputMinimum = 2,
}
}