mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-13 03:27:06 -04:00
* cleaned up code and improved coding style * removed old SINGLE_SOURCE_COMPILE macro relicts * use QString::toUtf8() instead of QString::toAscii() wherever possible
332 lines
6.6 KiB
C++
332 lines
6.6 KiB
C++
/*
|
|
* zynaddsubfx.cpp - ZynAddSubFX-embedding plugin
|
|
*
|
|
* Copyright (c) 2008-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
|
|
*
|
|
* 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 "lmmsconfig.h"
|
|
|
|
#include <Qt/QtXml>
|
|
#include <QtCore/QTemporaryFile>
|
|
#include <QtGui/QDropEvent>
|
|
#include <QtGui/QPushButton>
|
|
|
|
#include "ResourceFileMapper.h"
|
|
|
|
#include "zynaddsubfx.h"
|
|
#include "engine.h"
|
|
#include "mmp.h"
|
|
#include "instrument_play_handle.h"
|
|
#include "instrument_track.h"
|
|
#include "gui_templates.h"
|
|
#include "string_pair_drag.h"
|
|
#include "remote_zynaddsubfx.h"
|
|
|
|
#include "embed.cpp"
|
|
#include "moc_zynaddsubfx.cxx"
|
|
|
|
|
|
static const char * __supportedExts[] =
|
|
{ "xiz", NULL };
|
|
|
|
extern "C"
|
|
{
|
|
|
|
plugin::descriptor PLUGIN_EXPORT zynaddsubfx_plugin_descriptor =
|
|
{
|
|
STRINGIFY( PLUGIN_NAME ),
|
|
"ZynAddSubFX",
|
|
QT_TRANSLATE_NOOP( "pluginBrowser",
|
|
"Embedded ZynAddSubFX" ),
|
|
"Tobias Doerffel <tobydox/at/users.sf.net>",
|
|
0x0100,
|
|
plugin::Instrument,
|
|
new pluginPixmapLoader( "logo" ),
|
|
__supportedExts,
|
|
NULL,
|
|
} ;
|
|
|
|
}
|
|
|
|
|
|
|
|
zynAddSubFx::zynAddSubFx( instrumentTrack * _instrumentTrack ) :
|
|
instrument( _instrumentTrack, &zynaddsubfx_plugin_descriptor ),
|
|
m_plugin( NULL )
|
|
{
|
|
initRemotePlugin();
|
|
|
|
// now we need a play-handle which cares for calling play()
|
|
instrumentPlayHandle * iph = new instrumentPlayHandle( this );
|
|
engine::getMixer()->addPlayHandle( iph );
|
|
|
|
connect( engine::getMixer(), SIGNAL( sampleRateChanged() ),
|
|
this, SLOT( updateSampleRate() ) );
|
|
}
|
|
|
|
|
|
|
|
|
|
zynAddSubFx::~zynAddSubFx()
|
|
{
|
|
engine::getMixer()->removePlayHandles( getInstrumentTrack() );
|
|
|
|
m_pluginMutex.lock();
|
|
delete m_plugin;
|
|
m_pluginMutex.unlock();
|
|
}
|
|
|
|
|
|
|
|
|
|
void zynAddSubFx::saveSettings( QDomDocument & _doc,
|
|
QDomElement & _this )
|
|
{
|
|
QTemporaryFile tf;
|
|
if( tf.open() )
|
|
{
|
|
m_plugin->lock();
|
|
m_plugin->sendMessage(
|
|
remotePlugin::message( IdSaveSettingsToFile ).
|
|
addString(
|
|
QSTR_TO_STDSTR(
|
|
QDir::toNativeSeparators( tf.fileName() ) ) ) );
|
|
m_plugin->waitForMessage( IdSaveSettingsToFile );
|
|
m_plugin->unlock();
|
|
QByteArray a = tf.readAll();
|
|
// remove first blank line
|
|
a.remove( 0,
|
|
#ifdef LMMS_BUILD_WIN32
|
|
2
|
|
#else
|
|
1
|
|
#endif
|
|
);
|
|
QDomDocument doc( "mydoc" );
|
|
doc.setContent( a );
|
|
_this.appendChild( doc.documentElement() );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void zynAddSubFx::loadSettings( const QDomElement & _this )
|
|
{
|
|
if( !_this.hasChildNodes() )
|
|
{
|
|
return;
|
|
}
|
|
|
|
QDomDocument doc;
|
|
doc.appendChild( doc.importNode( _this.firstChild(), true ) );
|
|
QTemporaryFile tf;
|
|
tf.setAutoRemove( false );
|
|
if( tf.open() )
|
|
{
|
|
QByteArray a = doc.toString( 0 ).toUtf8();
|
|
a.prepend( "<?xml version=\"1.0\"?>\n" );
|
|
tf.write( a );
|
|
m_plugin->lock();
|
|
m_plugin->sendMessage(
|
|
remotePlugin::message( IdLoadSettingsFromFile ).
|
|
addString(
|
|
QSTR_TO_STDSTR(
|
|
QDir::toNativeSeparators( tf.fileName() ) ) ) );
|
|
m_plugin->waitForMessage( IdLoadSettingsFromFile );
|
|
m_plugin->unlock();
|
|
|
|
emit settingsChanged();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void zynAddSubFx::loadResource( const ResourceItem * _item )
|
|
{
|
|
ResourceFileMapper mapper( _item );
|
|
m_plugin->lock();
|
|
m_plugin->sendMessage(
|
|
remotePlugin::message( IdLoadPresetFromFile ).
|
|
addString( QSTR_TO_STDSTR( mapper.fileName() ) ) );
|
|
m_plugin->waitForMessage( IdLoadPresetFromFile );
|
|
m_plugin->unlock();
|
|
|
|
emit settingsChanged();
|
|
}
|
|
|
|
|
|
|
|
|
|
QString zynAddSubFx::nodeName( void ) const
|
|
{
|
|
return zynaddsubfx_plugin_descriptor.name;
|
|
}
|
|
|
|
|
|
|
|
|
|
void zynAddSubFx::play( sampleFrame * _buf )
|
|
{
|
|
m_pluginMutex.lock();
|
|
m_plugin->process( NULL, _buf );
|
|
m_pluginMutex.unlock();
|
|
getInstrumentTrack()->processAudioBuffer( _buf,
|
|
engine::getMixer()->framesPerPeriod(), NULL );
|
|
}
|
|
|
|
|
|
|
|
|
|
bool zynAddSubFx::handleMidiEvent( const midiEvent & _me,
|
|
const midiTime & _time )
|
|
{
|
|
m_pluginMutex.lock();
|
|
m_plugin->processMidiEvent( _me, 0 );
|
|
m_pluginMutex.unlock();
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
void zynAddSubFx::updateSampleRate( void )
|
|
{
|
|
m_pluginMutex.lock();
|
|
|
|
multimediaProject m( multimediaProject::InstrumentTrackSettings );
|
|
saveSettings( m, m.content() );
|
|
|
|
initRemotePlugin();
|
|
|
|
loadSettings( m.content() );
|
|
|
|
m_pluginMutex.unlock();
|
|
}
|
|
|
|
|
|
|
|
|
|
void zynAddSubFx::initRemotePlugin( void )
|
|
{
|
|
delete m_plugin;
|
|
m_plugin = new remotePlugin( "remote_zynaddsubfx", false );
|
|
m_plugin->lock();
|
|
m_plugin->waitForInitDone( false );
|
|
|
|
m_plugin->sendMessage(
|
|
remotePlugin::message( IdZasfPresetDirectory ).
|
|
addString(
|
|
QSTR_TO_STDSTR(
|
|
QString( configManager::inst()->factoryPresetsDir() +
|
|
QDir::separator() + "ZynAddSubFX" ) ) ) );
|
|
m_plugin->unlock();
|
|
}
|
|
|
|
|
|
|
|
|
|
pluginView * zynAddSubFx::instantiateView( QWidget * _parent )
|
|
{
|
|
return new ZynAddSubFxView( this, _parent );
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ZynAddSubFxView::ZynAddSubFxView( instrument * _instrument, QWidget * _parent ) :
|
|
InstrumentView( _instrument, _parent )
|
|
{
|
|
setAutoFillBackground( true );
|
|
QPalette pal;
|
|
pal.setBrush( backgroundRole(), PLUGIN_NAME::getIconPixmap(
|
|
"artwork" ) );
|
|
setPalette( pal );
|
|
|
|
m_toggleUIButton = new QPushButton( tr( "Show GUI" ), this );
|
|
m_toggleUIButton->setCheckable( true );
|
|
m_toggleUIButton->setChecked( false );
|
|
m_toggleUIButton->setGeometry( 45, 80, 160, 24 );
|
|
m_toggleUIButton->setIcon( embed::getIconPixmap( "zoom" ) );
|
|
m_toggleUIButton->setFont( pointSize<8>( m_toggleUIButton->font() ) );
|
|
connect( m_toggleUIButton, SIGNAL( toggled( bool ) ), this,
|
|
SLOT( toggleUI() ) );
|
|
m_toggleUIButton->setWhatsThis(
|
|
tr( "Click here to show or hide the graphical user interface "
|
|
"(GUI) of ZynAddSubFX." ) );
|
|
}
|
|
|
|
|
|
|
|
|
|
ZynAddSubFxView::~ZynAddSubFxView()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
void ZynAddSubFxView::modelChanged( void )
|
|
{
|
|
toggleUI();
|
|
}
|
|
|
|
|
|
|
|
|
|
void ZynAddSubFxView::toggleUI( void )
|
|
{
|
|
if( m_toggleUIButton->isChecked() )
|
|
{
|
|
castModel<zynAddSubFx>()->m_plugin->showUI();
|
|
}
|
|
else
|
|
{
|
|
castModel<zynAddSubFx>()->m_plugin->hideUI();
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern "C"
|
|
{
|
|
|
|
// neccessary for getting instance out of shared lib
|
|
plugin * PLUGIN_EXPORT lmms_plugin_main( model *, void * _data )
|
|
{
|
|
|
|
return new zynAddSubFx( static_cast<instrumentTrack *>( _data ) );
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|