2021-08-27 17:46:02 +02:00
|
|
|
using Content.Server.MachineLinking.Components;
|
|
|
|
|
using Content.Server.MachineLinking.Events;
|
|
|
|
|
using Content.Shared.Interaction;
|
2021-10-10 03:43:50 -07:00
|
|
|
using JetBrains.Annotations;
|
2021-08-27 17:46:02 +02:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.MachineLinking.System
|
|
|
|
|
{
|
2021-10-10 03:43:50 -07:00
|
|
|
[UsedImplicitly]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class SignalButtonSystem : EntitySystem
|
2021-08-27 17:46:02 +02:00
|
|
|
{
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
|
|
|
|
base.Initialize();
|
|
|
|
|
|
|
|
|
|
SubscribeLocalEvent<SignalButtonComponent, InteractHandEvent>(OnInteractHand);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnInteractHand(EntityUid uid, SignalButtonComponent component, InteractHandEvent args)
|
|
|
|
|
{
|
|
|
|
|
RaiseLocalEvent(uid, new InvokePortEvent("pressed"), false);
|
|
|
|
|
args.Handled = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|