From df36aaaa1cf7bce1c44566c24c5231c5a79de6e7 Mon Sep 17 00:00:00 2001 From: James Groom Date: Thu, 25 Apr 2024 04:09:39 +0000 Subject: [PATCH] Add docs to the config props which control host audio volume --- src/BizHawk.Client.Common/config/Config.cs | 49 +++++++++++++++++++++- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/config/Config.cs b/src/BizHawk.Client.Common/config/Config.cs index 37cb1fe179..2d70d9a82a 100644 --- a/src/BizHawk.Client.Common/config/Config.cs +++ b/src/BizHawk.Client.Common/config/Config.cs @@ -245,12 +245,57 @@ namespace BizHawk.Client.Common // Sound options public ESoundOutputMethod SoundOutputMethod { get; set; } = HostCapabilityDetector.HasDirectX ? ESoundOutputMethod.DirectSound : ESoundOutputMethod.OpenAL; + + /// iff , cores may skip processing audio + /// + /// + /// public bool SoundEnabled { get; set; } = true; + + /// whether to pass audio through to the host while emulating to normal throttle + /// separate from so that the config UI can "remember" the previous value + /// + /// + /// + /// public bool SoundEnabledNormal { get; set; } = true; + + /// whether to pass audio through to the host while rewinding or fast-forwarding + /// separate from so that the config UI can "remember" the previous value + /// + /// + /// + /// public bool SoundEnabledRWFF { get; set; } = true; + + /// whether to pass audio through to the host when doing a frame advance while paused + /// + /// sets sample amplitude multiplier to 0x iff , + /// otherwise the main has effect + /// + /// + /// + /// public bool MuteFrameAdvance { get; set; } = true; - public int SoundVolume { get; set; } = 100; // Range 0-100 - public int SoundVolumeRWFF { get; set; } = 50; // Range 0-100 + + /// + /// volume level; interpreted as a percentage (i.e. scaled down to 0.0..1.0) + /// and passed to the platform audio implementation, which should use it as a simple multiplier on each sample;
+ /// so 0 is scale each sample by 0x (mute),100 is scale each sample by 1x (preserve full volume), + /// 50 is scale each sample by 0.5x (≈ -3 dB), and 25 is scale each sample by 0.25x (≈ -6 dB) + ///
+ /// + /// + public int SoundVolume { get; set; } = 100; + + /// + /// when rewinding or fast-forwarding, the sample amplitude multiplier is multiplied by this value + /// (after conversion from percentage), or in other words, remains in effect + /// + /// + /// + public int SoundVolumeRWFF { get; set; } = 50; + public bool SoundThrottle { get; set; } public string SoundDevice { get; set; } = ""; public int SoundBufferSizeMs { get; set; } = 100;