mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-25 14:58:07 -05:00
corrected the typeo's, Used sampleFrame instead of float* making the code cleaner. Set up a socket to change the samplerate where required. Stopped using malloc ( yeah that was bad practice on my part ). Now using lmms_Math.h and the predefined versions of F_PI and F_2PI, I didn't know data from the knobs etc. was not updated over the course of a buffer, so have moved outside the processing loop, made appropriate functions inline, used sinf. Multiplication has replaced division where possible, zeroing of the buffer has been removed, as redundant.
127 lines
3.2 KiB
C++
127 lines
3.2 KiB
C++
/*
|
|
* delayeffect.cpp - definition of the DelayEffect class. The Delay Plugin
|
|
*
|
|
* Copyright (c) 2014 David French <dave/dot/french3/at/googlemail/dot/com>
|
|
*
|
|
* This file is part of LMMS - http://lmms.io
|
|
*
|
|
* 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 COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#include "delayeffect.h"
|
|
#include "engine.h"
|
|
#include "embed.cpp"
|
|
|
|
|
|
extern "C"
|
|
{
|
|
|
|
Plugin::Descriptor PLUGIN_EXPORT delay_plugin_descriptor =
|
|
{
|
|
STRINGIFY( PLUGIN_NAME ),
|
|
"Delay",
|
|
QT_TRANSLATE_NOOP( "pluginBrowser", "A native delay plugin" ),
|
|
"Dave French <contact/dot/dave/dot/french3/at/googlemail/dot/com>",
|
|
0x0100,
|
|
Plugin::Effect,
|
|
new PluginPixmapLoader( "logo" ),
|
|
NULL,
|
|
NULL
|
|
} ;
|
|
|
|
|
|
|
|
|
|
DelayEffect::DelayEffect( Model* parent, const Plugin::Descriptor::SubPluginFeatures::Key* key ) :
|
|
Effect( &delay_plugin_descriptor, parent, key ),
|
|
m_delayControls( this )
|
|
{
|
|
m_delay = 0;
|
|
m_delay = new StereoDelay( 192000 * 20 );
|
|
m_lfo = new Lfo( engine::mixer()->processingSampleRate() );
|
|
connect( engine::mixer(), SIGNAL( sampleRateChanged() ), this, SLOT( sampleRateChanged() ) );
|
|
}
|
|
|
|
|
|
|
|
|
|
DelayEffect::~DelayEffect()
|
|
{
|
|
if( m_delay )
|
|
{
|
|
delete m_delay;
|
|
}
|
|
if( m_lfo )
|
|
{
|
|
delete m_lfo;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DelayEffect::processAudioBuffer(sampleFrame* buf, const fpp_t frames)
|
|
{
|
|
if( !isEnabled() || !isRunning () )
|
|
{
|
|
return( false );
|
|
}
|
|
double outSum = 0.0;
|
|
const float d = dryLevel();
|
|
const float w = wetLevel();
|
|
m_lfo->setAmplitude( m_delayControls.m_lfoAmountModel.value() );
|
|
m_lfo->setFrequency( 1.0 / m_delayControls.m_lfoTimeModel.value() );
|
|
m_delay->setFeedback( m_delayControls.m_feedbackModel.value() );
|
|
sample_t dryS[2];
|
|
for( fpp_t f = 0; f < frames; ++f )
|
|
{
|
|
dryS[0] = buf[f][0];
|
|
dryS[1] = buf[f][1];
|
|
m_delay->setLength( m_delayControls.m_delayTimeModel.value(f) * engine::mixer()->processingSampleRate() * m_lfo->tick() );
|
|
m_delay->tick( buf[f] );
|
|
|
|
buf[f][0] = ( d * dryS[0] ) + ( w * buf[f][0] );
|
|
buf[f][1] = ( d * dryS[1] ) + ( w * buf[f][1] );
|
|
outSum += buf[f][0]*buf[f][0] + buf[f][1]*buf[f][1];
|
|
}
|
|
checkGate( outSum / frames );
|
|
return isRunning();
|
|
}
|
|
|
|
|
|
|
|
|
|
void DelayEffect::sampleRateChanged()
|
|
{
|
|
m_lfo->setSamplerate(engine::mixer()->processingSampleRate());
|
|
}
|
|
|
|
|
|
|
|
|
|
extern "C"
|
|
{
|
|
|
|
//needed for getting plugin out of shared lib
|
|
Plugin * PLUGIN_EXPORT lmms_plugin_main( Model* parent, void* data )
|
|
{
|
|
return new DelayEffect( parent , static_cast<const Plugin::Descriptor::SubPluginFeatures::Key *>( data ) );
|
|
}
|
|
|
|
}}
|
|
|