mirror of
https://github.com/LMMS/lmms.git
synced 2026-02-25 02:38:32 -05:00
Fix casing of filenames and code in plugins/ (#6350)
No functional changes! No changes to savefiles/presets! Fixes casing of everything that is currently lowercase but should be uppercase. Fixes also some other plugin strings, especially: * opl2 -> OpulenZ (see289887f4fc) * calf -> veal (seeae291e0709) * ladspa_effect -> LadspaEffect (see9c9372f0c8) * remove flp_import (see2d1813fb64)
This commit is contained in:
158
plugins/DynamicsProcessor/DynamicsProcessorControls.cpp
Normal file
158
plugins/DynamicsProcessor/DynamicsProcessorControls.cpp
Normal file
@@ -0,0 +1,158 @@
|
||||
/*
|
||||
* DynamicsProcessorControls.cpp - controls for DynamicsProcessor-effect
|
||||
*
|
||||
* Copyright (c) 2014 Vesa Kivimäki <contact/dot/diizy/at/nbl/dot/fi>
|
||||
* Copyright (c) 2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
||||
*
|
||||
* 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 <QDomElement>
|
||||
|
||||
#include "DynamicsProcessorControls.h"
|
||||
#include "DynamicsProcessor.h"
|
||||
#include "base64.h"
|
||||
#include "Graph.h"
|
||||
#include "Engine.h"
|
||||
#include "Song.h"
|
||||
|
||||
|
||||
#define onedB 1.1220184543019633f
|
||||
|
||||
DynProcControls::DynProcControls( DynProcEffect * _eff ) :
|
||||
EffectControls( _eff ),
|
||||
m_effect( _eff ),
|
||||
m_inputModel( 1.0f, 0.0f, 5.0f, 0.01f, this, tr( "Input gain" ) ),
|
||||
m_outputModel( 1.0f, 0.0f, 5.0f, 0.01f, this, tr( "Output gain" ) ),
|
||||
m_attackModel( 10.0f, 1.0f, 500.0f, 1.0f, this, tr( "Attack time" ) ),
|
||||
m_releaseModel( 100.0f, 1.0f, 500.0f, 1.0f, this, tr( "Release time" ) ),
|
||||
m_wavegraphModel( 0.0f, 1.0f, 200, this ),
|
||||
m_stereomodeModel( 0, 0, 2, this, tr( "Stereo mode" ) )
|
||||
{
|
||||
connect( &m_wavegraphModel, SIGNAL( samplesChanged( int, int ) ),
|
||||
this, SLOT( samplesChanged( int, int ) ) );
|
||||
connect( Engine::audioEngine(), SIGNAL( sampleRateChanged() ), this, SLOT( sampleRateChanged() ) );
|
||||
|
||||
setDefaultShape();
|
||||
|
||||
}
|
||||
|
||||
|
||||
void DynProcControls::sampleRateChanged()
|
||||
{
|
||||
m_effect->m_needsUpdate = true;
|
||||
}
|
||||
|
||||
|
||||
void DynProcControls::samplesChanged( int _begin, int _end)
|
||||
{
|
||||
Engine::getSong()->setModified();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void DynProcControls::loadSettings( const QDomElement & _this )
|
||||
{
|
||||
//load knobs, stereomode
|
||||
m_inputModel.loadSettings( _this, "inputGain" );
|
||||
m_outputModel.loadSettings( _this, "outputGain" );
|
||||
m_attackModel.loadSettings( _this, "attack" );
|
||||
m_releaseModel.loadSettings( _this, "release" );
|
||||
m_stereomodeModel.loadSettings( _this, "stereoMode" );
|
||||
|
||||
//load waveshape
|
||||
int size = 0;
|
||||
char * dst = 0;
|
||||
base64::decode( _this.attribute( "waveShape"), &dst, &size );
|
||||
|
||||
m_wavegraphModel.setSamples( (float*) dst );
|
||||
delete[] dst;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void DynProcControls::saveSettings( QDomDocument & _doc,
|
||||
QDomElement & _this )
|
||||
{
|
||||
//save input, output knobs
|
||||
m_inputModel.saveSettings( _doc, _this, "inputGain" );
|
||||
m_outputModel.saveSettings( _doc, _this, "outputGain" );
|
||||
m_attackModel.saveSettings( _doc, _this, "attack" );
|
||||
m_releaseModel.saveSettings( _doc, _this, "release" );
|
||||
m_stereomodeModel.saveSettings( _doc, _this, "stereoMode" );
|
||||
|
||||
|
||||
//save waveshape
|
||||
QString sampleString;
|
||||
base64::encode( (const char *)m_wavegraphModel.samples(),
|
||||
m_wavegraphModel.length() * sizeof(float), sampleString );
|
||||
_this.setAttribute( "waveShape", sampleString );
|
||||
|
||||
}
|
||||
|
||||
|
||||
void DynProcControls::setDefaultShape()
|
||||
{
|
||||
float shp [200] = { };
|
||||
for ( int i = 0; i<200; i++)
|
||||
{
|
||||
shp[i] = ((float)i + 1.0f) / 200.0f;
|
||||
}
|
||||
|
||||
m_wavegraphModel.setLength( 200 );
|
||||
m_wavegraphModel.setSamples( (float*)&shp );
|
||||
}
|
||||
|
||||
void DynProcControls::resetClicked()
|
||||
{
|
||||
setDefaultShape();
|
||||
Engine::getSong()->setModified();
|
||||
}
|
||||
|
||||
void DynProcControls::smoothClicked()
|
||||
{
|
||||
m_wavegraphModel.smoothNonCyclic();
|
||||
Engine::getSong()->setModified();
|
||||
}
|
||||
|
||||
void DynProcControls::addOneClicked()
|
||||
{
|
||||
for( int i=0; i<200; i++ )
|
||||
{
|
||||
m_wavegraphModel.setSampleAt( i, qBound( 0.0f, m_wavegraphModel.samples()[i] * onedB, 1.0f ) );
|
||||
}
|
||||
Engine::getSong()->setModified();
|
||||
}
|
||||
|
||||
void DynProcControls::subOneClicked()
|
||||
{
|
||||
for( int i=0; i<200; i++ )
|
||||
{
|
||||
m_wavegraphModel.setSampleAt( i, qBound( 0.0f, m_wavegraphModel.samples()[i] / onedB, 1.0f ) );
|
||||
}
|
||||
Engine::getSong()->setModified();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user