Beispiel #1
0
 public bool AreInternalsWorking(InternalsComponent component)
 {
     return(TryComp(component.BreathToolEntity, out BreathToolComponent? breathTool) &&
            breathTool.IsFunctional &&
            TryComp(component.GasTankEntity, out GasTankComponent? gasTank) &&
            gasTank.Air != null);
 }
 private void OnInhaleLocation(EntityUid uid, InternalsComponent component, InhaleLocationEvent args)
 {
     if (component.AreInternalsWorking())
     {
         var gasTank = Comp <GasTankComponent>(component.GasTankEntity !.Value);
         args.Gas = gasTank.RemoveAirVolume(Atmospherics.BreathVolume);
     }
 }
Beispiel #3
0
    public void ConnectBreathTool(InternalsComponent component, EntityUid toolEntity)
    {
        if (TryComp(component.BreathToolEntity, out BreathToolComponent? tool))
        {
            _atmos.DisconnectInternals(tool);
        }

        component.BreathToolEntity = toolEntity;
        _alerts.ShowAlert(component.Owner, AlertType.Internals, GetSeverity(component));
    }
Beispiel #4
0
 private void OnInhaleLocation(EntityUid uid, InternalsComponent component, InhaleLocationEvent args)
 {
     if (AreInternalsWorking(component))
     {
         var gasTank = Comp <GasTankComponent>(component.GasTankEntity !.Value);
         args.Gas = _gasTank.RemoveAirVolume(gasTank, Atmospherics.BreathVolume);
         // TODO: Should listen to gas tank updates instead I guess?
         _alerts.ShowAlert(component.Owner, AlertType.Internals, GetSeverity(component));
     }
 }
Beispiel #5
0
    public GasTankComponent?FindBestGasTank(InternalsComponent component)
    {
        // Prioritise
        // 1. exo-slot tanks
        // 2. in-hand tanks
        // 3. pocket tanks
        InventoryComponent?       inventory        = null;
        ContainerManagerComponent?containerManager = null;

        if (_inventory.TryGetSlotEntity(component.Owner, "suitstorage", out var entity, inventory, containerManager) &&
            TryComp <GasTankComponent>(entity, out var gasTank) &&
            _gasTank.CanConnectToInternals(gasTank))
        {
            return(gasTank);
        }

        var tanks = new List <GasTankComponent>();

        foreach (var hand in _hands.EnumerateHands(component.Owner))
        {
            if (TryComp(hand.HeldEntity, out gasTank) && _gasTank.CanConnectToInternals(gasTank))
            {
                tanks.Add(gasTank);
            }
        }

        if (tanks.Count > 0)
        {
            tanks.Sort((x, y) => y.Air.TotalMoles.CompareTo(x.Air.TotalMoles));
            return(tanks[0]);
        }

        if (Resolve(component.Owner, ref inventory, false))
        {
            var enumerator = new InventorySystem.ContainerSlotEnumerator(component.Owner, inventory.TemplateId, _protoManager, _inventory, SlotFlags.POCKET);

            while (enumerator.MoveNext(out var container))
            {
                if (TryComp(container.ContainedEntity, out gasTank) && _gasTank.CanConnectToInternals(gasTank))
                {
                    tanks.Add(gasTank);
                }
            }

            if (tanks.Count > 0)
            {
                tanks.Sort((x, y) => y.Air.TotalMoles.CompareTo(x.Air.TotalMoles));
                return(tanks[0]);
            }
        }

        return(null);
    }
Beispiel #6
0
    public void DisconnectBreathTool(InternalsComponent component)
    {
        var old = component.BreathToolEntity;

        component.BreathToolEntity = null;

        if (TryComp(old, out BreathToolComponent? breathTool))
        {
            _atmos.DisconnectInternals(breathTool);
            DisconnectTank(component);
        }

        _alerts.ShowAlert(component.Owner, AlertType.Internals, GetSeverity(component));
    }
Beispiel #7
0
    private short GetSeverity(InternalsComponent component)
    {
        if (component.BreathToolEntity == null || !AreInternalsWorking(component))
        {
            return(2);
        }

        if (TryComp <GasTankComponent>(component.GasTankEntity, out var gasTank) && gasTank.Air.Volume < Atmospherics.BreathVolume)
        {
            return(0);
        }

        return(1);
    }
Beispiel #8
0
    public bool TryConnectTank(InternalsComponent component, EntityUid tankEntity)
    {
        if (component.BreathToolEntity == null)
        {
            return(false);
        }

        if (TryComp(component.GasTankEntity, out GasTankComponent? tank))
        {
            _gasTank.DisconnectFromInternals(tank, component.Owner);
        }

        component.GasTankEntity = tankEntity;
        _alerts.ShowAlert(component.Owner, AlertType.Internals, GetSeverity(component));
        return(true);
    }
Beispiel #9
0
 private void OnInternalsShutdown(EntityUid uid, InternalsComponent component, ComponentShutdown args)
 {
     _alerts.ClearAlert(uid, AlertType.Internals);
 }
Beispiel #10
0
 private void OnInternalsStartup(EntityUid uid, InternalsComponent component, ComponentStartup args)
 {
     _alerts.ShowAlert(component.Owner, AlertType.Internals, GetSeverity(component));
 }