39 lines
1.4 KiB
C#
39 lines
1.4 KiB
C#
using Content.Shared._DV.Curation;
|
|
using Robust.Shared.Network;
|
|
using Robust.Shared.Timing;
|
|
|
|
namespace Content.Client._DV.Curation.Systems;
|
|
|
|
public sealed class CwoinkSystem : SharedCwoinkSystem
|
|
{
|
|
[Dependency] private readonly IGameTiming _timing = default!;
|
|
|
|
public event EventHandler<CwoinkTextMessage>? OnCwoinkTextMessageReceived;
|
|
private (TimeSpan Timestamp, bool Typing) _lastTypingUpdateSent;
|
|
|
|
protected override void OnCwoinkTextMessage(CwoinkTextMessage message, EntitySessionEventArgs eventArgs)
|
|
{
|
|
OnCwoinkTextMessageReceived?.Invoke(this, message);
|
|
}
|
|
|
|
public void Send(NetUserId channelId, string text, bool playSound, bool adminOnly)
|
|
{
|
|
// Reuse the channel ID as the 'true sender'.
|
|
// Server will ignore this and if someone makes it not ignore this (which is bad, allows impersonation!!!), that will help.
|
|
RaiseNetworkEvent(new CwoinkTextMessage(channelId, channelId, text, playSound: playSound, adminOnly: adminOnly));
|
|
SendInputTextUpdated(channelId, false);
|
|
}
|
|
|
|
public void SendInputTextUpdated(NetUserId channel, bool typing)
|
|
{
|
|
if (_lastTypingUpdateSent.Typing == typing &&
|
|
_timing.RealTime - _lastTypingUpdateSent.Timestamp < TimeSpan.FromSeconds(1))
|
|
{
|
|
return;
|
|
}
|
|
|
|
_lastTypingUpdateSent = (_timing.RealTime, typing);
|
|
RaiseNetworkEvent(new CwoinkClientTypingUpdated(channel, typing));
|
|
}
|
|
}
|