2011-06-18 20:29:00 +02:00
|
|
|
/*
|
|
|
|
* simple-tone-generator.c
|
|
|
|
*
|
2016-02-19 21:29:58 +01:00
|
|
|
* Copyright (C) 2011-2016 Kamal Mostafa <kamal@whence.com>
|
2011-06-18 20:29:00 +02:00
|
|
|
*
|
2011-06-23 02:10:50 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2011-06-18 20:29:00 +02:00
|
|
|
*
|
2011-06-23 02:10:50 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-06-18 20:29:00 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <strings.h>
|
2012-10-05 03:10:33 +02:00
|
|
|
#include <stdlib.h>
|
2011-06-18 20:29:00 +02:00
|
|
|
#include <assert.h>
|
2012-10-05 03:13:23 +02:00
|
|
|
#include <stdio.h>
|
2011-06-18 20:29:00 +02:00
|
|
|
|
|
|
|
#include "simpleaudio.h"
|
|
|
|
|
|
|
|
|
2012-08-14 06:09:24 +02:00
|
|
|
|
2012-08-25 09:32:11 +02:00
|
|
|
static float tone_mag = 1.0;
|
|
|
|
|
2012-08-14 06:09:24 +02:00
|
|
|
static unsigned int sin_table_len;
|
|
|
|
static short *sin_table_short;
|
|
|
|
static float *sin_table_float;
|
|
|
|
|
|
|
|
void
|
2012-08-25 09:32:11 +02:00
|
|
|
simpleaudio_tone_init( unsigned int new_sin_table_len, float mag )
|
2012-08-14 06:09:24 +02:00
|
|
|
{
|
|
|
|
sin_table_len = new_sin_table_len;
|
2012-08-25 09:32:11 +02:00
|
|
|
tone_mag = mag;
|
2012-08-14 06:09:24 +02:00
|
|
|
|
|
|
|
if ( sin_table_len != 0 ) {
|
|
|
|
sin_table_short = realloc(sin_table_short, sin_table_len * sizeof(short));
|
|
|
|
sin_table_float = realloc(sin_table_float, sin_table_len * sizeof(float));
|
|
|
|
if ( !sin_table_short || !sin_table_float ) {
|
|
|
|
perror("malloc");
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int i;
|
2015-08-23 19:16:15 +02:00
|
|
|
unsigned short mag_s = 32767.0f * tone_mag + 0.5f;
|
2012-08-26 21:34:38 +02:00
|
|
|
if ( tone_mag > 1.0f ) // clamp to 1.0 to avoid overflow
|
|
|
|
mag_s = 32767;
|
|
|
|
if ( mag_s < 1 ) // "short epsilon"
|
|
|
|
mag_s = 1;
|
2012-08-14 06:09:24 +02:00
|
|
|
for ( i=0; i<sin_table_len; i++ )
|
2015-08-23 19:16:15 +02:00
|
|
|
sin_table_short[i] = lroundf( mag_s * sinf((float)M_PI*2*i/sin_table_len) );
|
2012-08-14 06:09:24 +02:00
|
|
|
for ( i=0; i<sin_table_len; i++ )
|
2015-08-23 19:16:15 +02:00
|
|
|
sin_table_float[i] = tone_mag * sinf((float)M_PI*2*i/sin_table_len);
|
2012-08-14 06:09:24 +02:00
|
|
|
|
|
|
|
} else {
|
|
|
|
if ( sin_table_short ) {
|
|
|
|
free(sin_table_short);
|
|
|
|
sin_table_short = NULL;
|
|
|
|
}
|
|
|
|
if ( sin_table_float ) {
|
|
|
|
free(sin_table_float);
|
|
|
|
sin_table_float = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* in: turns (0.0 to 1.0) out: (-32767 to +32767)
|
|
|
|
*/
|
|
|
|
static inline short
|
|
|
|
sin_lu_short( float turns )
|
|
|
|
{
|
2012-08-16 01:57:39 +02:00
|
|
|
int t = (float)sin_table_len * turns + 0.5f;
|
|
|
|
t %= sin_table_len;
|
2012-08-14 06:09:24 +02:00
|
|
|
return sin_table_short[t];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* in: turns (0.0 to 1.0) out: -1.0 to +1.0
|
|
|
|
*/
|
|
|
|
static inline float
|
|
|
|
sin_lu_float( float turns )
|
|
|
|
{
|
2012-08-16 01:57:39 +02:00
|
|
|
int t = (float)sin_table_len * turns + 0.5f;
|
|
|
|
t %= sin_table_len;
|
2012-08-14 06:09:24 +02:00
|
|
|
return sin_table_float[t];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-18 20:29:00 +02:00
|
|
|
/* "current" phase state of the tone generator */
|
|
|
|
static float sa_tone_cphase = 0.0;
|
|
|
|
|
|
|
|
void
|
|
|
|
simpleaudio_tone_reset()
|
|
|
|
{
|
|
|
|
sa_tone_cphase = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
simpleaudio_tone(simpleaudio *sa_out, float tone_freq, size_t nsamples_dur)
|
|
|
|
{
|
2012-08-12 05:40:20 +02:00
|
|
|
unsigned int framesize = simpleaudio_get_framesize(sa_out);
|
|
|
|
|
2012-08-12 06:19:30 +02:00
|
|
|
void *buf = malloc(nsamples_dur * framesize);
|
2011-06-22 20:14:01 +02:00
|
|
|
assert(buf);
|
2011-06-18 20:29:00 +02:00
|
|
|
|
|
|
|
if ( tone_freq != 0 ) {
|
|
|
|
|
2012-08-11 19:07:12 +02:00
|
|
|
float wave_nsamples = simpleaudio_get_rate(sa_out) / tone_freq;
|
2011-06-18 20:29:00 +02:00
|
|
|
size_t i;
|
2012-08-12 06:19:30 +02:00
|
|
|
|
2015-08-23 19:16:15 +02:00
|
|
|
#define TURNS_TO_RADIANS(t) ( (float)M_PI*2 * (t) )
|
2012-08-14 06:09:24 +02:00
|
|
|
|
|
|
|
#define SINE_PHASE_TURNS ( (float)i/wave_nsamples + sa_tone_cphase )
|
|
|
|
#define SINE_PHASE_RADIANS TURNS_TO_RADIANS(SINE_PHASE_TURNS)
|
2012-08-12 06:19:30 +02:00
|
|
|
|
|
|
|
switch ( simpleaudio_get_format(sa_out) ) {
|
|
|
|
|
|
|
|
case SA_SAMPLE_FORMAT_FLOAT:
|
|
|
|
{
|
|
|
|
float *float_buf = buf;
|
2012-08-14 06:09:24 +02:00
|
|
|
if ( sin_table_float ) {
|
|
|
|
for ( i=0; i<nsamples_dur; i++ )
|
|
|
|
float_buf[i] = sin_lu_float(SINE_PHASE_TURNS);
|
|
|
|
} else {
|
|
|
|
for ( i=0; i<nsamples_dur; i++ )
|
2012-08-25 09:32:11 +02:00
|
|
|
float_buf[i] = tone_mag * sinf(SINE_PHASE_RADIANS);
|
2012-08-14 06:09:24 +02:00
|
|
|
}
|
2012-08-12 06:19:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SA_SAMPLE_FORMAT_S16:
|
|
|
|
{
|
2012-08-14 06:09:24 +02:00
|
|
|
short *short_buf = buf;
|
|
|
|
if ( sin_table_short ) {
|
|
|
|
for ( i=0; i<nsamples_dur; i++ )
|
|
|
|
short_buf[i] = sin_lu_short(SINE_PHASE_TURNS);
|
|
|
|
} else {
|
2015-08-23 19:16:15 +02:00
|
|
|
unsigned short mag_s = 32767.0f * tone_mag + 0.5f;
|
2012-08-26 21:34:38 +02:00
|
|
|
if ( tone_mag > 1.0f ) // clamp to 1.0 to avoid overflow
|
|
|
|
mag_s = 32767;
|
|
|
|
if ( mag_s < 1 ) // "short epsilon"
|
|
|
|
mag_s = 1;
|
2012-08-14 06:09:24 +02:00
|
|
|
for ( i=0; i<nsamples_dur; i++ )
|
2012-08-26 21:34:38 +02:00
|
|
|
short_buf[i] = lroundf( mag_s * sinf(SINE_PHASE_RADIANS) );
|
2012-08-14 06:09:24 +02:00
|
|
|
}
|
|
|
|
break;
|
2012-08-12 06:19:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
break;
|
|
|
|
}
|
2011-06-18 20:29:00 +02:00
|
|
|
|
|
|
|
sa_tone_cphase
|
|
|
|
= fmodf(sa_tone_cphase + (float)nsamples_dur/wave_nsamples, 1.0);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2012-08-12 05:40:20 +02:00
|
|
|
bzero(buf, nsamples_dur * framesize);
|
2011-06-18 20:29:00 +02:00
|
|
|
sa_tone_cphase = 0.0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
assert ( simpleaudio_write(sa_out, buf, nsamples_dur) > 0 );
|
2011-06-22 20:14:01 +02:00
|
|
|
|
|
|
|
free(buf);
|
2011-06-18 20:29:00 +02:00
|
|
|
}
|
|
|
|
|