mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
103 lines
3.4 KiB
C#
103 lines
3.4 KiB
C#
using Content.Server.Access.Systems;
|
|
using Content.Server.Paper;
|
|
using Content.Server.Popups;
|
|
using Content.Shared.Paper;
|
|
using Content.Shared.Popups;
|
|
using Content.Shared.Tag;
|
|
using Content.Shared.Verbs;
|
|
using Robust.Server.Audio;
|
|
using Robust.Shared.Player;
|
|
|
|
namespace Content.Server.DeltaV.Paper;
|
|
|
|
public sealed class SignatureSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly AudioSystem _audio = default!;
|
|
[Dependency] private readonly IdCardSystem _idCard = default!;
|
|
[Dependency] private readonly PaperSystem _paper = default!;
|
|
[Dependency] private readonly PopupSystem _popup = default!;
|
|
[Dependency] private readonly TagSystem _tags = default!;
|
|
|
|
// The sprite used to visualize "signatures" on paper entities.
|
|
private const string SignatureStampState = "paper_stamp-signature";
|
|
|
|
public override void Initialize()
|
|
{
|
|
SubscribeLocalEvent<PaperComponent, GetVerbsEvent<AlternativeVerb>>(OnGetAltVerbs);
|
|
}
|
|
|
|
private void OnGetAltVerbs(Entity<PaperComponent> ent, ref GetVerbsEvent<AlternativeVerb> args)
|
|
{
|
|
if (!args.CanAccess || !args.CanInteract)
|
|
return;
|
|
|
|
if (args.Using is not {} pen || !_tags.HasTag(pen, "Write"))
|
|
return;
|
|
|
|
var user = args.User;
|
|
AlternativeVerb verb = new()
|
|
{
|
|
Act = () =>
|
|
{
|
|
TrySignPaper(ent, user, pen);
|
|
},
|
|
Text = Loc.GetString("paper-sign-verb"),
|
|
DoContactInteraction = true,
|
|
Priority = 10
|
|
};
|
|
args.Verbs.Add(verb);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tries add add a signature to the paper with signer's name.
|
|
/// </summary>
|
|
public bool TrySignPaper(Entity<PaperComponent> paper, EntityUid signer, EntityUid pen)
|
|
{
|
|
var comp = paper.Comp;
|
|
|
|
var ev = new SignAttemptEvent(paper, signer);
|
|
RaiseLocalEvent(pen, ref ev);
|
|
if (ev.Cancelled)
|
|
return false;
|
|
|
|
var signatureName = DetermineEntitySignature(signer);
|
|
|
|
var stampInfo = new StampDisplayInfo()
|
|
{
|
|
StampedName = signatureName,
|
|
StampedColor = Color.DarkSlateGray, //TODO Make this configurable depending on the pen.
|
|
};
|
|
|
|
if (!comp.StampedBy.Contains(stampInfo) && _paper.TryStamp((paper, comp), stampInfo, SignatureStampState))
|
|
{
|
|
// Show popups and play a paper writing sound
|
|
var signedOtherMessage = Loc.GetString("paper-signed-other", ("user", signer), ("target", paper.Owner));
|
|
_popup.PopupEntity(signedOtherMessage, signer, Filter.PvsExcept(signer, entityManager: EntityManager), true);
|
|
|
|
var signedSelfMessage = Loc.GetString("paper-signed-self", ("target", paper.Owner));
|
|
_popup.PopupEntity(signedSelfMessage, signer, signer);
|
|
|
|
_audio.PlayPvs(comp.Sound, signer);
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
// Show an error popup
|
|
_popup.PopupEntity(Loc.GetString("paper-signed-failure", ("target", paper.Owner)), signer, signer, PopupType.SmallCaution);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
private string DetermineEntitySignature(EntityUid uid)
|
|
{
|
|
// If the entity has an ID, use the name on it.
|
|
if (_idCard.TryFindIdCard(uid, out var id) && !string.IsNullOrWhiteSpace(id.Comp.FullName))
|
|
return id.Comp.FullName;
|
|
|
|
// Alternatively, return the entity name
|
|
return Name(uid);
|
|
}
|
|
}
|