mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-09-15 14:52:26 +02:00
* IoC source gen compatibility Can be merged before or after https://github.com/space-wizards/RobustToolbox/pull/6549 doesn't really matter. * Missed a spot
42 lines
1.6 KiB
C#
42 lines
1.6 KiB
C#
using Content.Shared.Alert;
|
|
using Content.Shared.StatusEffectNew.Components;
|
|
|
|
namespace Content.Shared.StatusEffectNew;
|
|
|
|
/// <summary>
|
|
/// Handles displaying status effects that should show an alert, optionally with a duration.
|
|
/// </summary>
|
|
public sealed partial class StatusEffectAlertSystem : EntitySystem
|
|
{
|
|
[Dependency] private AlertsSystem _alerts = default!;
|
|
|
|
[Dependency] private EntityQuery<StatusEffectComponent> _effectQuery = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<StatusEffectAlertComponent, StatusEffectAppliedEvent>(OnStatusEffectApplied);
|
|
SubscribeLocalEvent<StatusEffectAlertComponent, StatusEffectRemovedEvent>(OnStatusEffectRemoved);
|
|
SubscribeLocalEvent<StatusEffectAlertComponent, StatusEffectEndTimeUpdatedEvent>(OnEndTimeUpdated);
|
|
}
|
|
|
|
private void OnStatusEffectApplied(Entity<StatusEffectAlertComponent> ent, ref StatusEffectAppliedEvent args)
|
|
{
|
|
if (!_effectQuery.TryComp(ent, out var effectComp))
|
|
return;
|
|
|
|
_alerts.UpdateAlert(args.Target, ent.Comp.Alert, cooldown: ent.Comp.ShowDuration ? effectComp.EndEffectTime : null);
|
|
}
|
|
|
|
private void OnStatusEffectRemoved(Entity<StatusEffectAlertComponent> ent, ref StatusEffectRemovedEvent args)
|
|
{
|
|
_alerts.ClearAlert(args.Target, ent.Comp.Alert);
|
|
}
|
|
|
|
private void OnEndTimeUpdated(Entity<StatusEffectAlertComponent> ent, ref StatusEffectEndTimeUpdatedEvent args)
|
|
{
|
|
_alerts.UpdateAlert(args.Target, ent.Comp.Alert, cooldown: ent.Comp.ShowDuration ? args.EndTime : null);
|
|
}
|
|
}
|