Files
tbd-station-14/Content.Server/GameObjects/EntitySystems/RadioSystem.cs
2021-03-16 15:50:20 +01:00

33 lines
954 B
C#

using System.Collections.Generic;
using System.Linq;
using Content.Server.Interfaces;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.EntitySystems
{
[UsedImplicitly]
public class RadioSystem : EntitySystem
{
private readonly List<string> _messages = new();
public void SpreadMessage(IRadio source, IEntity speaker, string message, int channel)
{
if (_messages.Contains(message)) return;
_messages.Add(message);
foreach (var radio in ComponentManager.EntityQuery<IRadio>(true))
{
if (radio.Channels.Contains(channel))
{
//TODO: once voice identity gets added, pass into receiver via source.GetSpeakerVoice()
radio.Receive(message, channel, speaker);
}
}
_messages.Remove(message);
}
}
}