Co-authored-by: a.rudenko <creadth@gmail.com> Co-authored-by: creadth <creadth@users.noreply.github.com> Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
71 lines
2.2 KiB
C#
71 lines
2.2 KiB
C#
#nullable enable
|
|
using Content.Server.GameObjects.Components.Body.Respiratory;
|
|
using Content.Shared.GameObjects.Components.Inventory;
|
|
using Content.Shared.Interfaces.GameObjects.Components;
|
|
using Npgsql.TypeHandlers;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Server.GameObjects.Components.Atmos
|
|
{
|
|
/// <summary>
|
|
/// Used in internals as breath tool.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public class BreathToolComponent : Component, IEquipped, IUnequipped
|
|
{
|
|
/// <summary>
|
|
/// Tool is functional only in allowed slots
|
|
/// </summary>
|
|
private EquipmentSlotDefines.SlotFlags _allowedSlots;
|
|
|
|
public override string Name => "BreathMask";
|
|
public bool IsFunctional { get; private set; }
|
|
public IEntity? ConnectedInternalsEntity { get; private set; }
|
|
|
|
public override void ExposeData(ObjectSerializer serializer)
|
|
{
|
|
base.ExposeData(serializer);
|
|
serializer.DataField(ref _allowedSlots, "allowedSlots", EquipmentSlotDefines.SlotFlags.MASK);
|
|
}
|
|
|
|
protected override void Shutdown()
|
|
{
|
|
base.Shutdown();
|
|
DisconnectInternals();
|
|
}
|
|
|
|
public void Equipped(EquippedEventArgs eventArgs)
|
|
{
|
|
if ((EquipmentSlotDefines.SlotMasks[eventArgs.Slot] & _allowedSlots) != _allowedSlots) return;
|
|
IsFunctional = true;
|
|
|
|
if (eventArgs.User.TryGetComponent(out InternalsComponent? internals))
|
|
{
|
|
ConnectedInternalsEntity = eventArgs.User;
|
|
internals.ConnectBreathTool(Owner);
|
|
}
|
|
}
|
|
|
|
public void Unequipped(UnequippedEventArgs eventArgs)
|
|
{
|
|
DisconnectInternals();
|
|
|
|
}
|
|
|
|
public void DisconnectInternals()
|
|
{
|
|
var old = ConnectedInternalsEntity;
|
|
ConnectedInternalsEntity = null;
|
|
|
|
if (old != null && old.TryGetComponent<InternalsComponent>(out var internalsComponent))
|
|
{
|
|
internalsComponent.DisconnectBreathTool();
|
|
}
|
|
|
|
IsFunctional = false;
|
|
}
|
|
}
|
|
}
|