202 lines
5.0 KiB
C
202 lines
5.0 KiB
C
|
||
/*******************************************************************************/
|
||
/* Copyright (C) 2009 Jonathan Moore Liles */
|
||
/* */
|
||
/* 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 2 of the License, or (at your */
|
||
/* option) any later version. */
|
||
/* */
|
||
/* 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; see the file COPYING. If not,write to the Free Software */
|
||
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||
/*******************************************************************************/
|
||
|
||
#include "Meter_Module.H"
|
||
#include "DPM.H"
|
||
#include <FL/Fl.H>
|
||
#include <FL/Fl_Single_Window.H>
|
||
#include <FL/Fl_Scalepack.H>
|
||
#include "JACK/Port.H"
|
||
#include <math.h>
|
||
|
||
|
||
|
||
const float METER_UPDATE_FREQ = 0.1f;
|
||
|
||
|
||
|
||
Meter_Module::Meter_Module ( int W, int H, const char *L )
|
||
: Module ( W, 100, L )
|
||
{
|
||
box( FL_THIN_UP_FRAME );
|
||
dpm_pack = new Fl_Scalepack( x(), y(), w(), h() );
|
||
dpm_pack->type( FL_HORIZONTAL );
|
||
|
||
color( FL_BLACK );
|
||
|
||
end();
|
||
|
||
Port p( this, Port::OUTPUT, Port::CONTROL, "dB level" );
|
||
p.hints.type = Port::Hints::LOGARITHMIC;
|
||
p.hints.ranged = true;
|
||
p.hints.maximum = 6.0f;
|
||
p.hints.minimum = -70.0f;
|
||
p.hints.dimensions = 1;
|
||
p.connect_to( new float[1] );
|
||
p.control_value_no_callback( -70.0f );
|
||
|
||
add_port( p );
|
||
|
||
Fl::add_timeout( METER_UPDATE_FREQ, update_cb, this );
|
||
|
||
}
|
||
|
||
Meter_Module::~Meter_Module ( )
|
||
{
|
||
}
|
||
|
||
void
|
||
Meter_Module::update_cb ( void *v )
|
||
{
|
||
((Meter_Module*)v)->update_cb();
|
||
}
|
||
|
||
void
|
||
Meter_Module::update_cb ( void )
|
||
{
|
||
Fl::repeat_timeout( METER_UPDATE_FREQ, update_cb, this );
|
||
|
||
for ( int i = dpm_pack->children(); i--; )
|
||
dpm_pack->child( i )->redraw();
|
||
}
|
||
|
||
bool
|
||
Meter_Module::configure_inputs ( int n )
|
||
{
|
||
int tx, ty, tw, th;
|
||
bbox( tx,ty,tw,th );
|
||
|
||
int on = audio_input.size();
|
||
|
||
if ( n > on )
|
||
{
|
||
for ( int i = on; i < n; ++i )
|
||
{
|
||
DPM *dpm = new DPM( tx, ty, tw, th );
|
||
dpm->type( FL_VERTICAL );
|
||
align( (Fl_Align)(FL_ALIGN_CENTER | FL_ALIGN_INSIDE ) );
|
||
|
||
dpm_pack->add( dpm );
|
||
|
||
add_port( Port( this, Port::INPUT, Port::AUDIO ) );
|
||
add_port( Port( this, Port::OUTPUT, Port::AUDIO ) );
|
||
|
||
}
|
||
}
|
||
else
|
||
{
|
||
for ( int i = on; i > n; --i )
|
||
{
|
||
DPM *dpm = (DPM*)dpm_pack->child( dpm_pack->children() - 1 );
|
||
dpm_pack->remove( dpm );
|
||
delete dpm;
|
||
|
||
audio_input.back().disconnect();
|
||
audio_input.pop_back();
|
||
audio_output.back().disconnect();
|
||
audio_output.pop_back();
|
||
control_output.back().disconnect();
|
||
control_output.pop_back();
|
||
}
|
||
}
|
||
|
||
control_output[0].hints.dimensions = n;
|
||
delete[] (float*)control_output[0].buffer();
|
||
{
|
||
float *f = new float[n];
|
||
|
||
for ( int i = n; i--; )
|
||
f[i] = -70.0f;
|
||
|
||
control_output[0].connect_to( f);
|
||
}
|
||
|
||
return true;
|
||
}
|
||
|
||
int
|
||
Meter_Module::handle ( int m )
|
||
{
|
||
switch ( m )
|
||
{
|
||
case FL_PUSH:
|
||
{
|
||
/* Fl_Single_Window *win = new Fl_Single_Window( 0, 0, 400, 400 ); */
|
||
|
||
/* win->add( dpm ); */
|
||
/* win->resizable( dpm ); */
|
||
|
||
/* win->end(); */
|
||
|
||
/* win->show(); */
|
||
/* break; */
|
||
}
|
||
}
|
||
|
||
return Module::handle( m );
|
||
}
|
||
|
||
|
||
|
||
static float
|
||
get_peak_sample ( const sample_t* buf, nframes_t nframes )
|
||
{
|
||
float p = 0.0f;
|
||
|
||
const sample_t *f = buf;
|
||
|
||
for ( int j = nframes; j--; ++f )
|
||
{
|
||
float s = *f;
|
||
|
||
/* rectify */
|
||
if ( s < 0.0f )
|
||
s = 0 - s;
|
||
|
||
if ( s > p )
|
||
p = s;
|
||
}
|
||
|
||
return p;
|
||
}
|
||
|
||
void
|
||
Meter_Module::process ( void )
|
||
{
|
||
for ( int i = 0; i < audio_input.size(); ++i )
|
||
{
|
||
DPM *dpm = (DPM*)dpm_pack->child( i );
|
||
if ( audio_input[i].connected() )
|
||
{
|
||
dpm->activate();
|
||
|
||
float dB = 20 * log10( get_peak_sample( (float*)audio_input[i].buffer(), nframes() ) / 2.0f );
|
||
|
||
dpm->value( dB );
|
||
|
||
/* if ( control_output[i].connected() ) */
|
||
/* { */
|
||
((float*)control_output[0].buffer())[i] = dB;
|
||
/* } */
|
||
}
|
||
else
|
||
dpm->deactivate();
|
||
}
|
||
}
|