6
2025-11-12 10:55:00 +03:00

93 lines
2.9 KiB
C#

using Robust.Shared.Containers;
using Robust.Shared.GameStates;
using Robust.Shared.Serialization;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Shared.Medical.Cryogenics;
[RegisterComponent, NetworkedComponent]
public sealed partial class CryoPodComponent : Component
{
/// <summary>
/// Specifies the name of the atmospherics port to draw gas from.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("port")]
public string PortName { get; set; } = "port";
/// <summary>
/// Specifies the name of the slot that holds beaker with medicine.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("solutionContainerName")]
public string SolutionContainerName { get; set; } = "beakerSlot";
/// <summary>
/// How often (seconds) are chemicals transferred from the beaker to the body?
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("beakerTransferTime")]
public float BeakerTransferTime = 1f;
[ViewVariables(VVAccess.ReadWrite)]
[DataField("nextInjectionTime", customTypeSerializer:typeof(TimeOffsetSerializer))]
public TimeSpan? NextInjectionTime;
/// <summary>
/// How many units of each reagent to transfer per tick from the beaker to the mob?
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("beakerTransferAmount")]
public float BeakerTransferAmount = .25f; // Frontier: 1<0.25 (applied per reagent)
// Frontier: more efficient cryogenics (#1443)
/// <summary>
/// How potent (multiplier) the reagents are when transferred from the beaker to the mob.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("PotencyAmount")]
public float PotencyMultiplier = 2f;
// End Frontier
/// <summary>
/// Delay applied when inserting a mob in the pod.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("entryDelay")]
public float EntryDelay = 2f;
/// <summary>
/// Delay applied when trying to pry open a locked pod.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("pryDelay")]
public float PryDelay = 5f;
/// <summary>
/// Container for mobs inserted in the pod.
/// </summary>
[ViewVariables]
public ContainerSlot BodyContainer = default!;
/// <summary>
/// If true, the eject verb will not work on the pod and the user must use a crowbar to pry the pod open.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("locked")]
public bool Locked { get; set; }
/// <summary>
/// Causes the pod to be locked without being fixable by messing with wires.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("permaLocked")]
public bool PermaLocked { get; set; }
[Serializable, NetSerializable]
public enum CryoPodVisuals : byte
{
ContainsEntity,
IsOn
}
}