Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: mirrorcult <lunarautomaton6@gmail.com>
73 lines
2.7 KiB
C#
73 lines
2.7 KiB
C#
using Content.Server.Popups;
|
|
using Content.Server.Interaction.Components;
|
|
using Content.Shared.Interaction;
|
|
using Content.Shared.MobState.Components;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.Player;
|
|
using Robust.Shared.Timing;
|
|
using Robust.Shared.Random;
|
|
|
|
|
|
namespace Content.Server.Interaction;
|
|
|
|
public sealed class InteractionPopupSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly IGameTiming _gameTiming = default!;
|
|
[Dependency] private readonly PopupSystem _popupSystem = default!;
|
|
[Dependency] private readonly IRobustRandom _random = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
SubscribeLocalEvent<InteractionPopupComponent, InteractHandEvent>(OnInteractHand);
|
|
}
|
|
|
|
private void OnInteractHand(EntityUid uid, InteractionPopupComponent component, InteractHandEvent args)
|
|
{
|
|
if (args.Handled)
|
|
return;
|
|
|
|
var curTime = _gameTiming.CurTime;
|
|
|
|
if (curTime < component.LastInteractTime + component.InteractDelay)
|
|
return;
|
|
|
|
if (TryComp<MobStateComponent>(uid, out var state) // if it has a MobStateComponent,
|
|
&& !state.IsAlive()) // AND if that state is not Alive (e.g. dead/incapacitated/critical)
|
|
return;
|
|
|
|
string msg = ""; // Stores the text to be shown in the popup message
|
|
string sfx = ""; // Stores the filepath of the sound to be played
|
|
|
|
if (_random.Prob(component.SuccessChance))
|
|
{
|
|
if (component.InteractSuccessString != null)
|
|
msg = Loc.GetString(component.InteractSuccessString, ("target", uid)); // Success message (localized).
|
|
|
|
if (component.InteractSuccessSound != null)
|
|
sfx = component.InteractSuccessSound.GetSound();
|
|
}
|
|
else
|
|
{
|
|
if (component.InteractFailureString != null)
|
|
msg = Loc.GetString(component.InteractFailureString, ("target", uid)); // Failure message (localized).
|
|
|
|
if (component.InteractFailureSound != null)
|
|
sfx = component.InteractFailureSound.GetSound();
|
|
}
|
|
|
|
if (component.PopupPerceivedByOthers)
|
|
_popupSystem.PopupEntity(msg, uid, Filter.Pvs(uid)); //play for everyone in range
|
|
else
|
|
_popupSystem.PopupEntity(msg, uid, Filter.Entities(args.User)); //play only for the initiating entity.
|
|
|
|
if (component.SoundPerceivedByOthers)
|
|
SoundSystem.Play(Filter.Pvs(args.Target), sfx, args.Target); //play for everyone in range
|
|
else
|
|
SoundSystem.Play(Filter.Entities(args.User, args.Target), sfx, args.Target); //play only for the initiating entity and its target.
|
|
|
|
component.LastInteractTime = curTime;
|
|
args.Handled = true;
|
|
}
|
|
}
|