// SPDX-License-Identifier: AGPL-3.0-only
/**
* Digital Voice Modem - DVMConsole
* AGPLv3 Open Source. Use is subject to license terms.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* @package DVM / DVM Console
* @license AGPLv3 License (https://opensource.org/licenses/AGPL-3.0)
*
* Copyright (C) 2024-2025 Caleb, K4PHP
*
*/
using NAudio.Wave;
namespace DVMConsole
{
///
///
///
public class ToneGenerator
{
private readonly int _sampleRate = 8000;
private readonly int _bitsPerSample = 16;
private readonly int _channels = 1;
private WaveOutEvent _waveOut;
private BufferedWaveProvider _waveProvider;
///
/// Creates an instance of
///
public ToneGenerator()
{
_waveOut = new WaveOutEvent();
_waveProvider = new BufferedWaveProvider(new WaveFormat(_sampleRate, _bitsPerSample, _channels));
_waveOut.Init(_waveProvider);
}
///
/// Generate a sine wave tone at the specified frequency and duration.
///
/// Frequency in Hz
/// Duration in seconds
/// PCM data as a byte array
public byte[] GenerateTone(double frequency, double durationSeconds)
{
int sampleCount = (int)(_sampleRate * durationSeconds);
byte[] buffer = new byte[sampleCount * (_bitsPerSample / 8)];
for (int i = 0; i < sampleCount; i++)
{
double time = (double)i / _sampleRate;
short sampleValue = (short)(Math.Sin(2 * Math.PI * frequency * time) * short.MaxValue);
buffer[i * 2] = (byte)(sampleValue & 0xFF);
buffer[i * 2 + 1] = (byte)((sampleValue >> 8) & 0xFF);
}
return buffer;
}
///
/// Play the generated tone through the speakers.
///
/// Frequency in Hz
/// Duration in seconds
public void PlayTone(double frequency, double durationSeconds)
{
byte[] toneData = GenerateTone(frequency, durationSeconds);
_waveProvider.ClearBuffer();
_waveProvider.AddSamples(toneData, 0, toneData.Length);
_waveOut.Play();
}
///
/// Stop playback.
///
public void StopTone()
{
_waveOut.Stop();
}
///
/// Dispose of resources.
///
public void Dispose()
{
_waveOut.Dispose();
}
}
}