mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-06-09 10:06:49 +02:00
125 lines
3.5 KiB
C#
125 lines
3.5 KiB
C#
using Content.Shared.Chat;
|
|
using Content.Shared.Corvax.CCCVars;
|
|
using Content.Shared.Corvax.TTS;
|
|
using Robust.Client.Audio;
|
|
using Robust.Client.ResourceManagement;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.Audio.Systems;
|
|
using Robust.Shared.Configuration;
|
|
using Robust.Shared.ContentPack;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Client.Corvax.TTS;
|
|
|
|
/// <summary>
|
|
/// Plays TTS audio in world
|
|
/// </summary>
|
|
// ReSharper disable once InconsistentNaming
|
|
public sealed partial class TTSSystem : EntitySystem
|
|
{
|
|
[Dependency] private IConfigurationManager _cfg = default!;
|
|
[Dependency] private IResourceManager _res = default!;
|
|
[Dependency] private AudioSystem _audio = default!;
|
|
|
|
private ISawmill _sawmill = default!;
|
|
private static MemoryContentRoot _contentRoot = new();
|
|
private static readonly ResPath Prefix = ResPath.Root / "TTS";
|
|
|
|
private static bool _contentRootAdded;
|
|
|
|
/// <summary>
|
|
/// Reducing the volume of the TTS when whispering. Will be converted to logarithm.
|
|
/// </summary>
|
|
private const float WhisperFade = 4f;
|
|
|
|
/// <summary>
|
|
/// The volume at which the TTS sound will not be heard.
|
|
/// </summary>
|
|
private const float MinimalVolume = -10f;
|
|
|
|
private float _volume = 0.0f;
|
|
private int _fileIdx = 0;
|
|
|
|
public override void Initialize()
|
|
{
|
|
if (!_contentRootAdded)
|
|
{
|
|
_contentRootAdded = true;
|
|
_res.AddRoot(Prefix, _contentRoot);
|
|
}
|
|
|
|
_sawmill = Logger.GetSawmill("tts");
|
|
_cfg.OnValueChanged(CCCVars.TTSVolume, OnTtsVolumeChanged, true);
|
|
SubscribeNetworkEvent<PlayTTSEvent>(OnPlayTTS);
|
|
}
|
|
|
|
public override void Shutdown()
|
|
{
|
|
base.Shutdown();
|
|
_cfg.UnsubValueChanged(CCCVars.TTSVolume, OnTtsVolumeChanged);
|
|
}
|
|
|
|
public void RequestPreviewTTS(string voiceId)
|
|
{
|
|
RaiseNetworkEvent(new RequestPreviewTTSEvent(voiceId));
|
|
}
|
|
|
|
private void OnTtsVolumeChanged(float volume)
|
|
{
|
|
_volume = volume;
|
|
}
|
|
|
|
private void OnPlayTTS(PlayTTSEvent ev)
|
|
{
|
|
_sawmill.Verbose($"Play TTS audio {ev.Data.Length} bytes from {ev.SourceUid} entity");
|
|
|
|
var filePath = new ResPath($"{_fileIdx++}.ogg");
|
|
_contentRoot.AddOrUpdateFile(filePath, ev.Data);
|
|
|
|
var audioResource = new AudioResource();
|
|
audioResource.Load(IoCManager.Instance!, Prefix / filePath);
|
|
|
|
var audioParams = AudioParams.Default
|
|
.WithVolume(AdjustVolume(ev.IsWhisper))
|
|
.WithMaxDistance(AdjustDistance(ev.IsWhisper));
|
|
|
|
var soundSpecifier = new ResolvedPathSpecifier(Prefix / filePath);
|
|
|
|
if (ev.SourceUid != null)
|
|
{
|
|
var sourceUid = GetEntity(ev.SourceUid.Value);
|
|
|
|
if (!Exists(sourceUid) || Deleted(sourceUid))
|
|
{
|
|
_contentRoot.RemoveFile(filePath);
|
|
return;
|
|
}
|
|
|
|
_audio.PlayEntity(audioResource.AudioStream, sourceUid, soundSpecifier, audioParams);
|
|
}
|
|
else
|
|
{
|
|
_audio.PlayGlobal(audioResource.AudioStream, soundSpecifier, audioParams);
|
|
}
|
|
|
|
_contentRoot.RemoveFile(filePath);
|
|
}
|
|
|
|
private float AdjustVolume(bool isWhisper)
|
|
{
|
|
var volume = MinimalVolume + SharedAudioSystem.GainToVolume(_volume);
|
|
|
|
if (isWhisper)
|
|
{
|
|
volume -= SharedAudioSystem.GainToVolume(WhisperFade);
|
|
}
|
|
|
|
return volume;
|
|
}
|
|
|
|
private float AdjustDistance(bool isWhisper)
|
|
{
|
|
return isWhisper ? SharedChatSystem.WhisperMuffledRange : SharedChatSystem.VoiceRange;
|
|
}
|
|
}
|