mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-24 22:38:07 -05:00
Summary: * `NULL` -> `nullptr` * `gui` -> Function `getGUI()` * `pluginFactory` -> Function `getPluginFactory()` * `assert` (redefinition) -> using `NDEBUG` instead, which standard `assert` respects. * `powf` (C stdlib symbol clash) -> removed and all expansions replaced with calls to `std::pow`. * `exp10` (nonstandard function symbol clash) -> removed and all expansions replaced with calls to `std::pow`. * `PATH_DEV_DSP` -> File-scope QString of identical name and value. * `VST_SNC_SHM_KEY_FILE` -> constexpr char* with identical name and value. * `MM_ALLOC` and `MM_FREE` -> Functions with identical name and implementation. * `INVAL`, `OUTVAL`, etc. for automation nodes -> Functions with identical names and implementations. * BandLimitedWave.h: All integer constant macros replaced with constexpr ints of same name and value. * `FAST_RAND_MAX` -> constexpr int of same name and value. * `QSTR_TO_STDSTR` -> Function with identical name and equivalent implementation. * `CCONST` -> constexpr function template with identical name and implementation. * `F_OPEN_UTF8` -> Function with identical name and equivalent implementation. * `LADSPA_PATH_SEPARATOR` -> constexpr char with identical name and value. * `UI_CTRL_KEY` -> constexpr char* with identical name and value. * `ALIGN_SIZE` -> Renamed to `LMMS_ALIGN_SIZE` and converted from a macro to a constexpr size_t. * `JACK_MIDI_BUFFER_MAX` -> constexpr size_t with identical name and value. * versioninfo.h: `PLATFORM`, `MACHINE` and `COMPILER_VERSION` -> prefixed with `LMMS_BUILDCONF_` and converted from macros to constexpr char* literals. * Header guard _OSCILLOSCOPE -> renamed to OSCILLOSCOPE_H * Header guard _TIME_DISPLAY_WIDGET -> renamed to TIME_DISPLAY_WIDGET_H * C-style typecasts in DrumSynth.cpp have been replaced with `static_cast`. * constexpr numerical constants are initialized with assignment notation instead of curly brace intializers. * In portsmf, `Alg_seq::operator[]` will throw an exception instead of returning null if the operator index is out of range. Additionally, in many places, global constants that were declared as `const T foo = bar;` were changed from const to constexpr, leaving them const and making them potentially evaluable at compile time. Some macros that only appeared in single source files and were unused in those files have been removed entirely.
380 lines
10 KiB
C++
380 lines
10 KiB
C++
/*
|
|
* kicker.cpp - drum synthesizer
|
|
*
|
|
* Copyright (c) 2006-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
* Copyright (c) 2014 grejppi <grejppi/at/gmail.com>
|
|
*
|
|
* This file is part of LMMS - https://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 <QDomDocument>
|
|
#include <QPainter>
|
|
|
|
#include "kicker.h"
|
|
#include "AudioEngine.h"
|
|
#include "Engine.h"
|
|
#include "InstrumentTrack.h"
|
|
#include "Knob.h"
|
|
#include "NotePlayHandle.h"
|
|
#include "KickerOsc.h"
|
|
|
|
#include "embed.h"
|
|
#include "plugin_export.h"
|
|
|
|
extern "C"
|
|
{
|
|
|
|
Plugin::Descriptor PLUGIN_EXPORT kicker_plugin_descriptor =
|
|
{
|
|
STRINGIFY( PLUGIN_NAME ),
|
|
"Kicker",
|
|
QT_TRANSLATE_NOOP( "PluginBrowser",
|
|
"Versatile drum synthesizer" ),
|
|
"Tobias Doerffel <tobydox/at/users.sf.net>",
|
|
0x0100,
|
|
Plugin::Instrument,
|
|
new PluginPixmapLoader( "logo" ),
|
|
nullptr,
|
|
nullptr,
|
|
} ;
|
|
|
|
}
|
|
|
|
|
|
kickerInstrument::kickerInstrument( InstrumentTrack * _instrument_track ) :
|
|
Instrument( _instrument_track, &kicker_plugin_descriptor ),
|
|
m_startFreqModel( 150.0f, 5.0f, 1000.0f, 1.0f, this, tr( "Start frequency" ) ),
|
|
m_endFreqModel( 40.0f, 5.0f, 1000.0f, 1.0f, this, tr( "End frequency" ) ),
|
|
m_decayModel( 440.0f, 5.0f, 5000.0f, 1.0f, 5000.0f, this, tr( "Length" ) ),
|
|
m_distModel( 0.8f, 0.0f, 100.0f, 0.1f, this, tr( "Start distortion" ) ),
|
|
m_distEndModel( 0.8f, 0.0f, 100.0f, 0.1f, this, tr( "End distortion" ) ),
|
|
m_gainModel( 1.0f, 0.1f, 5.0f, 0.05f, this, tr( "Gain" ) ),
|
|
m_envModel( 0.163f, 0.01f, 1.0f, 0.001f, this, tr( "Envelope slope" ) ),
|
|
m_noiseModel( 0.0f, 0.0f, 1.0f, 0.01f, this, tr( "Noise" ) ),
|
|
m_clickModel( 0.4f, 0.0f, 1.0f, 0.05f, this, tr( "Click" ) ),
|
|
m_slopeModel( 0.06f, 0.001f, 1.0f, 0.001f, this, tr( "Frequency slope" ) ),
|
|
m_startNoteModel( true, this, tr( "Start from note" ) ),
|
|
m_endNoteModel( false, this, tr( "End to note" ) ),
|
|
m_versionModel( KICKER_PRESET_VERSION, 0, KICKER_PRESET_VERSION, this, "" )
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
kickerInstrument::~kickerInstrument()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
void kickerInstrument::saveSettings( QDomDocument & _doc,
|
|
QDomElement & _this )
|
|
{
|
|
m_startFreqModel.saveSettings( _doc, _this, "startfreq" );
|
|
m_endFreqModel.saveSettings( _doc, _this, "endfreq" );
|
|
m_decayModel.saveSettings( _doc, _this, "decay" );
|
|
m_distModel.saveSettings( _doc, _this, "dist" );
|
|
m_distEndModel.saveSettings( _doc, _this, "distend" );
|
|
m_gainModel.saveSettings( _doc, _this, "gain" );
|
|
m_envModel.saveSettings( _doc, _this, "env" );
|
|
m_noiseModel.saveSettings( _doc, _this, "noise" );
|
|
m_clickModel.saveSettings( _doc, _this, "click" );
|
|
m_slopeModel.saveSettings( _doc, _this, "slope" );
|
|
m_startNoteModel.saveSettings( _doc, _this, "startnote" );
|
|
m_endNoteModel.saveSettings( _doc, _this, "endnote" );
|
|
m_versionModel.saveSettings( _doc, _this, "version" );
|
|
}
|
|
|
|
|
|
|
|
|
|
void kickerInstrument::loadSettings( const QDomElement & _this )
|
|
{
|
|
m_versionModel.loadSettings( _this, "version" );
|
|
|
|
m_startFreqModel.loadSettings( _this, "startfreq" );
|
|
m_endFreqModel.loadSettings( _this, "endfreq" );
|
|
m_decayModel.loadSettings( _this, "decay" );
|
|
m_distModel.loadSettings( _this, "dist" );
|
|
if( _this.hasAttribute( "distend" ) )
|
|
{
|
|
m_distEndModel.loadSettings( _this, "distend" );
|
|
}
|
|
else
|
|
{
|
|
m_distEndModel.setValue( m_distModel.value() );
|
|
}
|
|
m_gainModel.loadSettings( _this, "gain" );
|
|
m_envModel.loadSettings( _this, "env" );
|
|
m_noiseModel.loadSettings( _this, "noise" );
|
|
m_clickModel.loadSettings( _this, "click" );
|
|
m_slopeModel.loadSettings( _this, "slope" );
|
|
m_startNoteModel.loadSettings( _this, "startnote" );
|
|
if( m_versionModel.value() < 1 )
|
|
{
|
|
m_startNoteModel.setValue( false );
|
|
}
|
|
m_endNoteModel.loadSettings( _this, "endnote" );
|
|
|
|
// Try to maintain backwards compatibility
|
|
if( !_this.hasAttribute( "version" ) )
|
|
{
|
|
m_startNoteModel.setValue( false );
|
|
m_decayModel.setValue( m_decayModel.value() * 1.33f );
|
|
m_envModel.setValue( 1.0f );
|
|
m_slopeModel.setValue( 1.0f );
|
|
m_clickModel.setValue( 0.0f );
|
|
}
|
|
m_versionModel.setValue( KICKER_PRESET_VERSION );
|
|
}
|
|
|
|
|
|
|
|
|
|
QString kickerInstrument::nodeName() const
|
|
{
|
|
return kicker_plugin_descriptor.name;
|
|
}
|
|
|
|
|
|
|
|
typedef DspEffectLibrary::Distortion DistFX;
|
|
typedef KickerOsc<DspEffectLibrary::MonoToStereoAdaptor<DistFX> > SweepOsc;
|
|
|
|
|
|
void kickerInstrument::playNote( NotePlayHandle * _n,
|
|
sampleFrame * _working_buffer )
|
|
{
|
|
const fpp_t frames = _n->framesLeftForCurrentPeriod();
|
|
const f_cnt_t offset = _n->noteOffset();
|
|
const float decfr = m_decayModel.value() * Engine::audioEngine()->processingSampleRate() / 1000.0f;
|
|
const f_cnt_t tfp = _n->totalFramesPlayed();
|
|
|
|
if ( tfp == 0 )
|
|
{
|
|
_n->m_pluginData = new SweepOsc(
|
|
DistFX( m_distModel.value(),
|
|
m_gainModel.value() ),
|
|
m_startNoteModel.value() ? _n->frequency() : m_startFreqModel.value(),
|
|
m_endNoteModel.value() ? _n->frequency() : m_endFreqModel.value(),
|
|
m_noiseModel.value() * m_noiseModel.value(),
|
|
m_clickModel.value() * 0.25f,
|
|
m_slopeModel.value(),
|
|
m_envModel.value(),
|
|
m_distModel.value(),
|
|
m_distEndModel.value(),
|
|
decfr );
|
|
}
|
|
else if( tfp > decfr && !_n->isReleased() )
|
|
{
|
|
_n->noteOff();
|
|
}
|
|
|
|
SweepOsc * so = static_cast<SweepOsc *>( _n->m_pluginData );
|
|
so->update( _working_buffer + offset, frames, Engine::audioEngine()->processingSampleRate() );
|
|
|
|
if( _n->isReleased() )
|
|
{
|
|
const float done = _n->releaseFramesDone();
|
|
const float desired = desiredReleaseFrames();
|
|
for( fpp_t f = 0; f < frames; ++f )
|
|
{
|
|
const float fac = ( done+f < desired ) ? ( 1.0f - ( ( done+f ) / desired ) ) : 0;
|
|
_working_buffer[f+offset][0] *= fac;
|
|
_working_buffer[f+offset][1] *= fac;
|
|
}
|
|
}
|
|
|
|
instrumentTrack()->processAudioBuffer( _working_buffer, frames + offset, _n );
|
|
}
|
|
|
|
|
|
|
|
|
|
void kickerInstrument::deleteNotePluginData( NotePlayHandle * _n )
|
|
{
|
|
delete static_cast<SweepOsc *>( _n->m_pluginData );
|
|
}
|
|
|
|
|
|
|
|
|
|
PluginView * kickerInstrument::instantiateView( QWidget * _parent )
|
|
{
|
|
return new kickerInstrumentView( this, _parent );
|
|
}
|
|
|
|
|
|
|
|
|
|
class kickerKnob : public Knob
|
|
{
|
|
public:
|
|
kickerKnob( QWidget * _parent ) :
|
|
Knob( knobStyled, _parent )
|
|
{
|
|
setFixedSize( 29, 29 );
|
|
setObjectName( "smallKnob" );
|
|
}
|
|
};
|
|
|
|
|
|
class kickerEnvKnob : public TempoSyncKnob
|
|
{
|
|
public:
|
|
kickerEnvKnob( QWidget * _parent ) :
|
|
TempoSyncKnob( knobStyled, _parent )
|
|
{
|
|
setFixedSize( 29, 29 );
|
|
setObjectName( "smallKnob" );
|
|
}
|
|
};
|
|
|
|
|
|
class kickerLargeKnob : public Knob
|
|
{
|
|
public:
|
|
kickerLargeKnob( QWidget * _parent ) :
|
|
Knob( knobStyled, _parent )
|
|
{
|
|
setFixedSize( 34, 34 );
|
|
setObjectName( "largeKnob" );
|
|
}
|
|
};
|
|
|
|
|
|
|
|
|
|
kickerInstrumentView::kickerInstrumentView( Instrument * _instrument,
|
|
QWidget * _parent ) :
|
|
InstrumentViewFixedSize( _instrument, _parent )
|
|
{
|
|
const int ROW1 = 14;
|
|
const int ROW2 = ROW1 + 56;
|
|
const int ROW3 = ROW2 + 56;
|
|
const int LED_ROW = 63;
|
|
const int COL1 = 14;
|
|
const int COL2 = COL1 + 56;
|
|
const int COL3 = COL2 + 56;
|
|
const int COL4 = COL3 + 41;
|
|
const int COL5 = COL4 + 41;
|
|
const int END_COL = COL1 + 48;
|
|
|
|
m_startFreqKnob = new kickerLargeKnob( this );
|
|
m_startFreqKnob->setHintText( tr( "Start frequency:" ), "Hz" );
|
|
m_startFreqKnob->move( COL1, ROW1 );
|
|
|
|
m_endFreqKnob = new kickerLargeKnob( this );
|
|
m_endFreqKnob->setHintText( tr( "End frequency:" ), "Hz" );
|
|
m_endFreqKnob->move( END_COL, ROW1 );
|
|
|
|
m_slopeKnob = new kickerKnob( this );
|
|
m_slopeKnob->setHintText( tr( "Frequency slope:" ), "" );
|
|
m_slopeKnob->move( COL3, ROW1 );
|
|
|
|
m_gainKnob = new kickerKnob( this );
|
|
m_gainKnob->setHintText( tr( "Gain:" ), "" );
|
|
m_gainKnob->move( COL1, ROW3 );
|
|
|
|
m_decayKnob = new kickerEnvKnob( this );
|
|
m_decayKnob->setHintText( tr( "Envelope length:" ), "ms" );
|
|
m_decayKnob->move( COL2, ROW3 );
|
|
|
|
m_envKnob = new kickerKnob( this );
|
|
m_envKnob->setHintText( tr( "Envelope slope:" ), "" );
|
|
m_envKnob->move( COL3, ROW3 );
|
|
|
|
m_clickKnob = new kickerKnob( this );
|
|
m_clickKnob->setHintText( tr( "Click:" ), "" );
|
|
m_clickKnob->move( COL5, ROW1 );
|
|
|
|
m_noiseKnob = new kickerKnob( this );
|
|
m_noiseKnob->setHintText( tr( "Noise:" ), "" );
|
|
m_noiseKnob->move( COL5, ROW3 );
|
|
|
|
m_distKnob = new kickerKnob( this );
|
|
m_distKnob->setHintText( tr( "Start distortion:" ), "" );
|
|
m_distKnob->move( COL4, ROW2 );
|
|
|
|
m_distEndKnob = new kickerKnob( this );
|
|
m_distEndKnob->setHintText( tr( "End distortion:" ), "" );
|
|
m_distEndKnob->move( COL5, ROW2 );
|
|
|
|
m_startNoteToggle = new LedCheckBox( "", this, "", LedCheckBox::Green );
|
|
m_startNoteToggle->move( COL1 + 8, LED_ROW );
|
|
|
|
m_endNoteToggle = new LedCheckBox( "", this, "", LedCheckBox::Green );
|
|
m_endNoteToggle->move( END_COL + 8, LED_ROW );
|
|
|
|
setAutoFillBackground( true );
|
|
QPalette pal;
|
|
pal.setBrush( backgroundRole(), PLUGIN_NAME::getIconPixmap( "artwork" ) );
|
|
setPalette( pal );
|
|
}
|
|
|
|
|
|
|
|
|
|
kickerInstrumentView::~kickerInstrumentView()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
void kickerInstrumentView::modelChanged()
|
|
{
|
|
kickerInstrument * k = castModel<kickerInstrument>();
|
|
m_startFreqKnob->setModel( &k->m_startFreqModel );
|
|
m_endFreqKnob->setModel( &k->m_endFreqModel );
|
|
m_decayKnob->setModel( &k->m_decayModel );
|
|
m_distKnob->setModel( &k->m_distModel );
|
|
m_distEndKnob->setModel( &k->m_distEndModel );
|
|
m_gainKnob->setModel( &k->m_gainModel );
|
|
m_envKnob->setModel( &k->m_envModel );
|
|
m_noiseKnob->setModel( &k->m_noiseModel );
|
|
m_clickKnob->setModel( &k->m_clickModel );
|
|
m_slopeKnob->setModel( &k->m_slopeModel );
|
|
m_startNoteToggle->setModel( &k->m_startNoteModel );
|
|
m_endNoteToggle->setModel( &k->m_endNoteModel );
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern "C"
|
|
{
|
|
|
|
// necessary for getting instance out of shared lib
|
|
PLUGIN_EXPORT Plugin * lmms_plugin_main( Model * m, void * )
|
|
{
|
|
return new kickerInstrument( static_cast<InstrumentTrack *>( m ) );
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|