non/mixer/src/Meter_Module.C

204 lines
5.3 KiB
C++
Raw Normal View History

2009-12-25 01:59:39 +01:00
/*******************************************************************************/
/* 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. */
/*******************************************************************************/
2010-01-25 03:12:10 +01:00
#include "const.h"
#include <math.h>
2009-12-25 01:59:39 +01:00
#include <FL/Fl.H>
#include <FL/Fl_Single_Window.H>
2020-10-28 01:42:35 +01:00
#include <FL/fl_draw.H>
2010-01-25 03:12:10 +01:00
#include "FL/Fl_Scalepack.H"
#include "FL/test_press.H"
2009-12-25 01:59:39 +01:00
2010-01-25 03:12:10 +01:00
#include "Meter_Module.H"
#include "DPM.H"
#include "JACK/Port.H"
#include "dsp.h"
2009-12-25 01:59:39 +01:00
Meter_Module::Meter_Module ( )
: Module ( 50, 100, name() )
2009-12-25 01:59:39 +01:00
{
2020-10-28 01:42:35 +01:00
box( FL_FLAT_BOX );
dpm_pack = new Fl_Scalepack( x() + 2, y() + 2, w() - 4, h() - 4 );
2009-12-25 01:59:39 +01:00
dpm_pack->type( FL_HORIZONTAL );
2020-10-28 01:42:35 +01:00
dpm_pack->spacing( 1 );
2009-12-26 07:03:34 +01:00
control_value = 0;
2020-10-28 01:42:35 +01:00
color( fl_darker( fl_darker( FL_BACKGROUND_COLOR )));
2009-12-25 01:59:39 +01:00
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 );
log_create();
2009-12-25 01:59:39 +01:00
}
Meter_Module::~Meter_Module ( )
{
2009-12-26 07:03:34 +01:00
if ( control_value )
delete[] control_value;
log_destroy();
2009-12-25 01:59:39 +01:00
}
2020-10-28 01:42:35 +01:00
void Meter_Module::resize ( int X, int Y, int W, int H )
{
Fl_Group::resize(X,Y,W,H);
dpm_pack->resize( x() + 2, y() + 2, w() - 4, h() - 4 );
}
void
Meter_Module::draw ( void )
{
/* draw_box(x(),y(),w(),h()); */
Fl_Group::draw();
fl_rect( x(), y(), w(), h(), fl_darker(FL_BACKGROUND_COLOR));
fl_rect( x()+1, y()+1, w()-2, h()-2, fl_darker(fl_darker(FL_BACKGROUND_COLOR)));
}
2009-12-25 01:59:39 +01:00
void
Meter_Module::update ( void )
2009-12-25 01:59:39 +01:00
{
for ( int i = dpm_pack->children(); i--; )
{
2009-12-26 07:03:34 +01:00
((DPM*)dpm_pack->child( i ))->value( control_value[i] );
control_value[i] = -70.0f;
}
2009-12-25 01:59:39 +01:00
}
bool
Meter_Module::configure_inputs ( int n )
{
THREAD_ASSERT( UI );
2009-12-25 01:59:39 +01:00
int on = audio_input.size();
if ( n > on )
{
for ( int i = on; i < n; ++i )
{
2013-08-24 05:41:17 +02:00
DPM *dpm = new DPM( 0, 0, w(), h() );
2009-12-25 01:59:39 +01:00
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[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 );
2009-12-25 01:59:39 +01:00
}
2009-12-26 07:03:34 +01:00
if ( control_value )
delete [] control_value;
control_value = new float[n];
for ( int i = n; i--; )
control_value[i] = -70.0f;
2009-12-26 07:03:34 +01:00
if ( control_output[0].connected() )
control_output[0].connected_port()->module()->handle_control_changed( control_output[0].connected_port() );
2009-12-25 01:59:39 +01:00
return true;
}
2010-01-25 03:12:10 +01:00
2009-12-25 01:59:39 +01:00
int
Meter_Module::handle ( int m )
{
switch ( m )
{
case FL_PUSH:
{
int r = 0;
if ( test_press( FL_BUTTON1 ) )
{
/* don't let Module::handle eat our click */
r = Fl_Group::handle( m );
}
return Module::handle( m ) || r;
}
}
return Module::handle( m );
}
2009-12-25 01:59:39 +01:00
2010-01-25 03:12:10 +01:00
/**********/
/* Engine */
/**********/
2009-12-25 01:59:39 +01:00
void
Meter_Module::process ( nframes_t nframes )
2009-12-25 01:59:39 +01:00
{
2009-12-26 07:03:34 +01:00
for ( unsigned int i = 0; i < audio_input.size(); ++i )
2009-12-25 01:59:39 +01:00
{
// float dB = 20 * log10( get_peak_sample( (float*)audio_input[i].buffer(), nframes ) / 2.0f );
2020-10-31 04:55:31 +01:00
const float dB = 20 * log10( buffer_get_peak( (sample_t*) audio_input[i].buffer(), nframes ) );
2009-12-25 01:59:39 +01:00
2013-09-08 22:51:05 +02:00
((float*)control_output[0].buffer())[i] = dB;
if (dB > control_value[i])
control_value[i] = dB;
2009-12-25 01:59:39 +01:00
}
}