* Port forensics from nyanotrasen * port updates * printing * Update Resources/Locale/en-US/forensics/forensics.ftl Co-authored-by: Veritius <veritiusgaming@gmail.com> * Update Content.Server/Forensics/Components/ForensicPadComponent.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * Update Content.Server/Forensics/Systems/ForensicPadSystem.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * Update Content.Server/Forensics/Systems/ForensicScannerSystem.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * partially address reviews * comments * redo the events * handle it * rewrite loc * master fixes Co-authored-by: ike709 <ike709@github.com> Co-authored-by: Veritius <veritiusgaming@gmail.com> Co-authored-by: Kara <lunarautomaton6@gmail.com>
50 lines
2.0 KiB
C#
50 lines
2.0 KiB
C#
using Content.Shared.Inventory;
|
|
using Content.Shared.Item;
|
|
using Robust.Shared.Random;
|
|
|
|
namespace Content.Server.Forensics
|
|
{
|
|
public sealed class ForensicsSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly IRobustRandom _random = default!;
|
|
[Dependency] private readonly InventorySystem _inventory = default!;
|
|
public override void Initialize()
|
|
{
|
|
SubscribeLocalEvent<FingerprintComponent, UserInteractedWithItemEvent>(OnInteract);
|
|
SubscribeLocalEvent<FingerprintComponent, ComponentInit>(OnInit);
|
|
}
|
|
|
|
private void OnInteract(EntityUid uid, FingerprintComponent component, UserInteractedWithItemEvent args)
|
|
{
|
|
ApplyEvidence(args.User, args.Item);
|
|
}
|
|
|
|
private void OnInit(EntityUid uid, FingerprintComponent component, ComponentInit args)
|
|
{
|
|
component.Fingerprint = GenerateFingerprint();
|
|
}
|
|
|
|
private string GenerateFingerprint()
|
|
{
|
|
byte[] fingerprint = new byte[16];
|
|
_random.NextBytes(fingerprint);
|
|
return Convert.ToHexString(fingerprint);
|
|
}
|
|
|
|
private void ApplyEvidence(EntityUid user, EntityUid target)
|
|
{
|
|
var component = EnsureComp<ForensicsComponent>(target);
|
|
if (_inventory.TryGetSlotEntity(user, "gloves", out var gloves))
|
|
{
|
|
if (TryComp<FiberComponent>(gloves, out var fiber) && !string.IsNullOrEmpty(fiber.FiberMaterial))
|
|
component.Fibers.Add(string.IsNullOrEmpty(fiber.FiberColor) ? Loc.GetString("forensic-fibers", ("material", fiber.FiberMaterial)) : Loc.GetString("forensic-fibers-colored", ("color", fiber.FiberColor), ("material", fiber.FiberMaterial)));
|
|
|
|
if (HasComp<FingerprintMaskComponent>(gloves))
|
|
return;
|
|
}
|
|
if (TryComp<FingerprintComponent>(user, out var fingerprint))
|
|
component.Fingerprints.Add(fingerprint.Fingerprint ?? "");
|
|
}
|
|
}
|
|
}
|