1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243 |
- /*
- * vestige.cpp - instrument-plugin for hosting VST-instruments
- *
- * Copyright (c) 2005-2014 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 <QtCore/QtGlobal>
- #include "VstPlugin.h"
- #include "vestige.h"
- #include <memory>
- #include <QDropEvent>
- #include <QMessageBox>
- #include <QPainter>
- #include <QPushButton>
- #include <QMdiArea>
- #include <QMenu>
- #include <QDomElement>
- #include <string>
- #include "BufferManager.h"
- #include "ConfigManager.h"
- #include "Engine.h"
- #include "FileDialog.h"
- #include "GuiApplication.h"
- #include "gui_templates.h"
- #include "InstrumentPlayHandle.h"
- #include "InstrumentTrack.h"
- #include "LocaleHelper.h"
- #include "MainWindow.h"
- #include "Mixer.h"
- #include "PathUtil.h"
- #include "PixmapButton.h"
- #include "SampleBuffer.h"
- #include "Song.h"
- #include "StringPairDrag.h"
- #include "TextFloat.h"
- #include "ToolTip.h"
- #include "Clipboard.h"
- #include "embed.h"
- extern "C"
- {
- Plugin::Descriptor Q_DECL_EXPORT vestige_plugin_descriptor =
- {
- STRINGIFY( PLUGIN_NAME ),
- "VeSTige",
- QT_TRANSLATE_NOOP( "PluginBrowser",
- "VST-host for using VST(i)-plugins within LMMS" ),
- "Tobias Doerffel <tobydox/at/users.sf.net>",
- 0x0100,
- Plugin::Instrument,
- new PluginPixmapLoader( "logo" ),
- "dll",
- NULL
- } ;
- }
- class vstSubWin : public SubWindow
- {
- public:
- vstSubWin( QWidget * _parent ) :
- SubWindow( _parent )
- {
- setAttribute( Qt::WA_DeleteOnClose, false );
- setWindowFlags( Qt::WindowCloseButtonHint );
- }
- virtual ~vstSubWin()
- {
- }
- virtual void closeEvent( QCloseEvent * e )
- {
- // ignore close-events - for some reason otherwise the VST GUI
- // remains hidden when re-opening
- hide();
- e->ignore();
- }
- };
- class VstInstrumentPlugin : public VstPlugin
- {
- public:
- using VstPlugin::VstPlugin;
- void createUI( QWidget *parent ) override
- {
- Q_UNUSED(parent);
- if ( !hasEditor() ) {
- return;
- }
- if ( embedMethod() != "none" ) {
- m_pluginSubWindow.reset(new vstSubWin( gui->mainWindow()->workspace() ));
- VstPlugin::createUI( m_pluginSubWindow.get() );
- m_pluginSubWindow->setWidget(pluginWidget());
- } else {
- VstPlugin::createUI( nullptr );
- }
- }
- /// Overwrite editor() to return the sub window instead of the embed widget
- /// itself. This makes toggleUI() and related functions toggle the
- /// sub window's visibility.
- QWidget* editor() override
- {
- return m_pluginSubWindow.get();
- }
- private:
- unique_ptr<QMdiSubWindow> m_pluginSubWindow;
- };
- QPixmap * VestigeInstrumentView::s_artwork = NULL;
- QPixmap * manageVestigeInstrumentView::s_artwork = NULL;
- vestigeInstrument::vestigeInstrument( InstrumentTrack * _instrument_track ) :
- Instrument( _instrument_track, &vestige_plugin_descriptor ),
- m_plugin( NULL ),
- m_pluginMutex(),
- m_subWindow( NULL ),
- m_scrollArea( NULL ),
- knobFModel( NULL ),
- p_subWindow( NULL )
- {
- // now we need a play-handle which cares for calling play()
- InstrumentPlayHandle * iph = new InstrumentPlayHandle( this, _instrument_track );
- Engine::mixer()->addPlayHandle( iph );
- connect( ConfigManager::inst(), SIGNAL( valueChanged(QString,QString,QString) ),
- this, SLOT( handleConfigChange(QString, QString, QString) ),
- Qt::QueuedConnection );
- }
- vestigeInstrument::~vestigeInstrument()
- {
- if (p_subWindow != NULL) {
- delete p_subWindow;
- p_subWindow = NULL;
- }
- if (knobFModel != NULL) {
- delete []knobFModel;
- knobFModel = NULL;
- }
- Engine::mixer()->removePlayHandlesOfTypes( instrumentTrack(),
- PlayHandle::TypeNotePlayHandle
- | PlayHandle::TypeInstrumentPlayHandle );
- closePlugin();
- }
- void vestigeInstrument::loadSettings( const QDomElement & _this )
- {
- QString plugin = _this.attribute( "plugin" );
- if( plugin.isEmpty() )
- {
- return;
- }
- loadFile( plugin );
- m_pluginMutex.lock();
- if( m_plugin != NULL )
- {
- m_plugin->loadSettings( _this );
- if (instrumentTrack() != NULL && instrumentTrack()->isPreviewMode())
- {
- m_plugin->hideUI();
- }
- else if (_this.attribute( "guivisible" ).toInt())
- {
- m_plugin->showUI();
- } else
- {
- m_plugin->hideUI();
- }
- const QMap<QString, QString> & dump = m_plugin->parameterDump();
- paramCount = dump.size();
- char paramStr[35];
- knobFModel = new FloatModel *[ paramCount ];
- QStringList s_dumpValues;
- for( int i = 0; i < paramCount; i++ )
- {
- sprintf( paramStr, "param%d", i );
- s_dumpValues = dump[ paramStr ].split( ":" );
- knobFModel[i] = new FloatModel( 0.0f, 0.0f, 1.0f, 0.01f, this, QString::number(i) );
- knobFModel[i]->loadSettings( _this, paramStr );
- if( !( knobFModel[ i ]->isAutomated() || knobFModel[ i ]->controllerConnection() ) )
- {
- knobFModel[ i ]->setValue(LocaleHelper::toFloat(s_dumpValues.at(2)));
- knobFModel[ i ]->setInitValue(LocaleHelper::toFloat(s_dumpValues.at(2)));
- }
- connect( knobFModel[i], &FloatModel::dataChanged, this,
- [this, i]() { setParameter( knobFModel[i] ); }, Qt::DirectConnection);
- }
- }
- m_pluginMutex.unlock();
- }
- void vestigeInstrument::setParameter( Model * action )
- {
- int knobUNID = action->displayName().toInt();
- if ( m_plugin != NULL ) {
- m_plugin->setParam( knobUNID, knobFModel[knobUNID]->value() );
- }
- }
- void vestigeInstrument::handleConfigChange(QString cls, QString attr, QString value)
- {
- Q_UNUSED(cls); Q_UNUSED(attr); Q_UNUSED(value);
- // Disabled for consistency with VST effects that don't implement this. (#3786)
- // if ( cls == "ui" && attr == "vstembedmethod" )
- // {
- // reloadPlugin();
- // }
- }
- void vestigeInstrument::reloadPlugin()
- {
- closePlugin();
- loadFile( m_pluginDLL );
- }
- void vestigeInstrument::saveSettings( QDomDocument & _doc, QDomElement & _this )
- {
- _this.setAttribute( "plugin", PathUtil::toShortestRelative(m_pluginDLL) );
- m_pluginMutex.lock();
- if( m_plugin != NULL )
- {
- m_plugin->saveSettings( _doc, _this );
- if (knobFModel != NULL) {
- const QMap<QString, QString> & dump = m_plugin->parameterDump();
- paramCount = dump.size();
- char paramStr[35];
- for( int i = 0; i < paramCount; i++ )
- {
- if (knobFModel[i]->isAutomated() || knobFModel[i]->controllerConnection()) {
- sprintf( paramStr, "param%d", i);
- knobFModel[i]->saveSettings( _doc, _this, paramStr );
- }
- /* QDomElement me = _doc.createElement( paramStr );
- me.setAttribute( "id", knobFModel[i]->id() );
- me.setAttribute( "value", knobFModel[i]->value() );
- _this.appendChild( me );
- ControllerConnection * m_controllerConnection = knobFModel[i]->controllerConnection();
- if (m_controllerConnection) {
- QDomElement controller_element;
- QDomNode node = _this.namedItem( "connection" );
- if( node.isElement() )
- {
- controller_element = node.toElement();
- }
- else
- {
- controller_element = _doc.createElement( "connection" );
- _this.appendChild( controller_element );
- }
- QDomElement element = _doc.createElement( paramStr );
- m_controllerConnection->saveSettings( _doc, element );
- controller_element.appendChild( element );
- }*/
- }
- }
- }
- m_pluginMutex.unlock();
- }
- QString vestigeInstrument::nodeName( void ) const
- {
- return( vestige_plugin_descriptor.name );
- }
- void vestigeInstrument::loadFile( const QString & _file )
- {
- m_pluginMutex.lock();
- const bool set_ch_name = ( m_plugin != NULL &&
- instrumentTrack()->name() == m_plugin->name() ) ||
- instrumentTrack()->name() == InstrumentTrack::tr( "Default preset" ) ||
- instrumentTrack()->name() == displayName();
- m_pluginMutex.unlock();
- // if the same is loaded don't load again (for preview)
- if (instrumentTrack() != NULL && instrumentTrack()->isPreviewMode() &&
- m_pluginDLL == PathUtil::toShortestRelative( _file ))
- return;
- if ( m_plugin != NULL )
- {
- closePlugin();
- }
- m_pluginDLL = PathUtil::toShortestRelative( _file );
- TextFloat * tf = NULL;
- if( gui )
- {
- tf = TextFloat::displayMessage(
- tr( "Loading plugin" ),
- tr( "Please wait while loading the VST plugin..." ),
- PLUGIN_NAME::getIconPixmap( "logo", 24, 24 ), 0 );
- }
- m_pluginMutex.lock();
- m_plugin = new VstInstrumentPlugin( m_pluginDLL );
- if( m_plugin->failed() )
- {
- m_pluginMutex.unlock();
- closePlugin();
- delete tf;
- collectErrorForUI( VstPlugin::tr( "The VST plugin %1 could not be loaded." ).arg( m_pluginDLL ) );
- m_pluginDLL = "";
- return;
- }
- if ( !(instrumentTrack() != NULL && instrumentTrack()->isPreviewMode()))
- {
- m_plugin->createUI(nullptr);
- m_plugin->showUI();
- }
- if( set_ch_name )
- {
- instrumentTrack()->setName( m_plugin->name() );
- }
- m_pluginMutex.unlock();
- emit dataChanged();
- delete tf;
- }
- void vestigeInstrument::play( sampleFrame * _buf )
- {
- if (!m_pluginMutex.tryLock(Engine::getSong()->isExporting() ? -1 : 0)) {return;}
- const fpp_t frames = Engine::mixer()->framesPerPeriod();
- if( m_plugin == NULL )
- {
- m_pluginMutex.unlock();
- return;
- }
- m_plugin->process( NULL, _buf );
- instrumentTrack()->processAudioBuffer( _buf, frames, NULL );
- m_pluginMutex.unlock();
- }
- bool vestigeInstrument::handleMidiEvent( const MidiEvent& event, const TimePos& time, f_cnt_t offset )
- {
- m_pluginMutex.lock();
- if( m_plugin != NULL )
- {
- m_plugin->processMidiEvent( event, offset );
- }
- m_pluginMutex.unlock();
- return true;
- }
- void vestigeInstrument::closePlugin( void )
- {
- // disconnect all signals
- if( knobFModel != NULL )
- {
- for( int i = 0; i < paramCount; i++ )
- {
- delete knobFModel[ i ];
- }
- }
- if( knobFModel != NULL )
- {
- delete [] knobFModel;
- knobFModel = NULL;
- }
- if( m_scrollArea != NULL )
- {
- // delete m_scrollArea;
- m_scrollArea = NULL;
- }
- if( m_subWindow != NULL )
- {
- m_subWindow->setAttribute( Qt::WA_DeleteOnClose );
- m_subWindow->close();
- if( m_subWindow != NULL )
- {
- delete m_subWindow;
- }
- m_subWindow = NULL;
- }
- if( p_subWindow != NULL )
- {
- p_subWindow = NULL;
- }
- m_pluginMutex.lock();
- delete m_plugin;
- m_plugin = NULL;
- m_pluginMutex.unlock();
- }
- PluginView * vestigeInstrument::instantiateView( QWidget * _parent )
- {
- return new VestigeInstrumentView( this, _parent );
- }
- VestigeInstrumentView::VestigeInstrumentView( Instrument * _instrument,
- QWidget * _parent ) :
- InstrumentViewFixedSize( _instrument, _parent ),
- lastPosInMenu (0)
- {
- if( s_artwork == NULL )
- {
- s_artwork = new QPixmap( PLUGIN_NAME::getIconPixmap(
- "artwork" ) );
- }
- m_openPluginButton = new PixmapButton( this, "" );
- m_openPluginButton->setCheckable( false );
- m_openPluginButton->setCursor( Qt::PointingHandCursor );
- m_openPluginButton->move( 216, 81 );
- m_openPluginButton->setActiveGraphic( PLUGIN_NAME::getIconPixmap(
- "select_file_active" ) );
- m_openPluginButton->setInactiveGraphic( PLUGIN_NAME::getIconPixmap(
- "select_file" ) );
- connect( m_openPluginButton, SIGNAL( clicked() ), this,
- SLOT( openPlugin() ) );
- ToolTip::add( m_openPluginButton, tr( "Open VST plugin" ) );
- m_managePluginButton = new PixmapButton( this, "" );
- m_managePluginButton->setCheckable( false );
- m_managePluginButton->setCursor( Qt::PointingHandCursor );
- m_managePluginButton->move( 216, 101 );
- m_managePluginButton->setActiveGraphic( PLUGIN_NAME::getIconPixmap(
- "controls_active" ) );
- m_managePluginButton->setInactiveGraphic( PLUGIN_NAME::getIconPixmap(
- "controls" ) );
- connect( m_managePluginButton, SIGNAL( clicked() ), this,
- SLOT( managePlugin() ) );
- ToolTip::add( m_managePluginButton, tr( "Control VST plugin from LMMS host" ) );
- m_openPresetButton = new PixmapButton( this, "" );
- m_openPresetButton->setCheckable( false );
- m_openPresetButton->setCursor( Qt::PointingHandCursor );
- m_openPresetButton->move( 200, 224 );
- m_openPresetButton->setActiveGraphic( embed::getIconPixmap(
- "project_open", 20, 20 ) );
- m_openPresetButton->setInactiveGraphic( embed::getIconPixmap(
- "project_open", 20, 20 ) );
- connect( m_openPresetButton, SIGNAL( clicked() ), this,
- SLOT( openPreset() ) );
- ToolTip::add( m_openPresetButton, tr( "Open VST plugin preset" ) );
- m_rolLPresetButton = new PixmapButton( this, "" );
- m_rolLPresetButton->setCheckable( false );
- m_rolLPresetButton->setCursor( Qt::PointingHandCursor );
- m_rolLPresetButton->move( 190, 201 );
- m_rolLPresetButton->setActiveGraphic( embed::getIconPixmap(
- "stepper-left-press" ) );
- m_rolLPresetButton->setInactiveGraphic( embed::getIconPixmap(
- "stepper-left" ) );
- connect( m_rolLPresetButton, SIGNAL( clicked() ), this,
- SLOT( previousProgram() ) );
- ToolTip::add( m_rolLPresetButton, tr( "Previous (-)" ) );
- m_rolLPresetButton->setShortcut( Qt::Key_Minus );
- m_savePresetButton = new PixmapButton( this, "" );
- m_savePresetButton->setCheckable( false );
- m_savePresetButton->setCursor( Qt::PointingHandCursor );
- m_savePresetButton->move( 224, 224 );
- m_savePresetButton->setActiveGraphic( embed::getIconPixmap(
- "project_save", 20, 20 ) );
- m_savePresetButton->setInactiveGraphic( embed::getIconPixmap(
- "project_save", 20, 20 ) );
- connect( m_savePresetButton, SIGNAL( clicked() ), this,
- SLOT( savePreset() ) );
- ToolTip::add( m_savePresetButton, tr( "Save preset" ) );
- m_rolRPresetButton = new PixmapButton( this, "" );
- m_rolRPresetButton->setCheckable( false );
- m_rolRPresetButton->setCursor( Qt::PointingHandCursor );
- m_rolRPresetButton->move( 209, 201 );
- m_rolRPresetButton->setActiveGraphic( embed::getIconPixmap(
- "stepper-right-press" ) );
- m_rolRPresetButton->setInactiveGraphic( embed::getIconPixmap(
- "stepper-right" ) );
- connect( m_rolRPresetButton, SIGNAL( clicked() ), this,
- SLOT( nextProgram() ) );
- ToolTip::add( m_rolRPresetButton, tr( "Next (+)" ) );
- m_rolRPresetButton->setShortcut( Qt::Key_Plus );
- m_selPresetButton = new QPushButton( tr( "" ), this );
- m_selPresetButton->setGeometry( 228, 201, 16, 16 );
- QMenu *menu = new QMenu;
- connect( menu, SIGNAL( aboutToShow() ), this, SLOT( updateMenu() ) );
- m_selPresetButton->setIcon( embed::getIconPixmap( "stepper-down" ) );
- m_selPresetButton->setMenu(menu);
- m_toggleGUIButton = new QPushButton( tr( "Show/hide GUI" ), this );
- m_toggleGUIButton->setGeometry( 20, 130, 200, 24 );
- m_toggleGUIButton->setIcon( embed::getIconPixmap( "zoom" ) );
- m_toggleGUIButton->setFont( pointSize<8>( m_toggleGUIButton->font() ) );
- connect( m_toggleGUIButton, SIGNAL( clicked() ), this,
- SLOT( toggleGUI() ) );
- QPushButton * note_off_all_btn = new QPushButton( tr( "Turn off all "
- "notes" ), this );
- note_off_all_btn->setGeometry( 20, 160, 200, 24 );
- note_off_all_btn->setIcon( embed::getIconPixmap( "stop" ) );
- note_off_all_btn->setFont( pointSize<8>( note_off_all_btn->font() ) );
- connect( note_off_all_btn, SIGNAL( clicked() ), this,
- SLOT( noteOffAll() ) );
- setAcceptDrops( true );
- _instrument2 = _instrument;
- _parent2 = _parent;
- }
- void VestigeInstrumentView::managePlugin( void )
- {
- if ( m_vi->m_plugin != NULL && m_vi->m_subWindow == NULL ) {
- m_vi->p_subWindow = new manageVestigeInstrumentView( _instrument2, _parent2, m_vi);
- } else if (m_vi->m_subWindow != NULL) {
- if (m_vi->m_subWindow->widget()->isVisible() == false ) {
- m_vi->m_scrollArea->show();
- m_vi->m_subWindow->show();
- } else {
- m_vi->m_scrollArea->hide();
- m_vi->m_subWindow->hide();
- }
- }
- }
- void VestigeInstrumentView::updateMenu( void )
- {
- // get all presets -
- if ( m_vi->m_plugin != NULL )
- {
- m_vi->m_plugin->loadProgramNames();
- QWidget::update();
- QString str = m_vi->m_plugin->allProgramNames();
- QStringList list1 = str.split("|");
- QMenu * to_menu = m_selPresetButton->menu();
- to_menu->clear();
- QVector<QAction*> presetActions(list1.size());
- for (int i = 0; i < list1.size(); i++) {
- presetActions[i] = new QAction(this);
- connect(presetActions[i], SIGNAL(triggered()), this, SLOT(selPreset()));
- presetActions[i]->setText(QString("%1. %2").arg(QString::number(i+1), list1.at(i)));
- presetActions[i]->setData(i);
- if (i == lastPosInMenu) {
- presetActions[i]->setIcon(embed::getIconPixmap( "sample_file", 16, 16 ));
- } else presetActions[i]->setIcon(embed::getIconPixmap( "edit_copy", 16, 16 ));
- to_menu->addAction( presetActions[i] );
- }
- }
- }
- VestigeInstrumentView::~VestigeInstrumentView()
- {
- }
- void VestigeInstrumentView::modelChanged()
- {
- m_vi = castModel<vestigeInstrument>();
- }
- void VestigeInstrumentView::openPlugin()
- {
- FileDialog ofd( NULL, tr( "Open VST plugin" ) );
- // set filters
- QStringList types;
- types << tr( "DLL-files (*.dll)" )
- << tr( "EXE-files (*.exe)" )
- ;
- ofd.setNameFilters( types );
- if( m_vi->m_pluginDLL != "" )
- {
- QString f = PathUtil::toAbsolute( m_vi->m_pluginDLL );
- ofd.setDirectory( QFileInfo( f ).absolutePath() );
- ofd.selectFile( QFileInfo( f ).fileName() );
- }
- else
- {
- ofd.setDirectory( ConfigManager::inst()->vstDir() );
- }
- if ( ofd.exec () == QDialog::Accepted )
- {
- if( ofd.selectedFiles().isEmpty() )
- {
- return;
- }
- Engine::mixer()->requestChangeInModel();
- if (m_vi->p_subWindow != NULL) {
- delete m_vi->p_subWindow;
- m_vi->p_subWindow = NULL;
- }
- m_vi->loadFile( ofd.selectedFiles()[0] );
- Engine::mixer()->doneChangeInModel();
- if( m_vi->m_plugin && m_vi->m_plugin->pluginWidget() )
- {
- m_vi->m_plugin->pluginWidget()->setWindowIcon(
- PLUGIN_NAME::getIconPixmap( "logo" ) );
- }
- }
- }
- void VestigeInstrumentView::openPreset()
- {
- if ( m_vi->m_plugin != NULL ) {
- m_vi->m_plugin->openPreset( );
- bool converted;
- QString str = m_vi->m_plugin->currentProgramName().section("/", 0, 0);
- if (str != "")
- lastPosInMenu = str.toInt(&converted, 10) - 1;
- QWidget::update();
- }
- }
- void VestigeInstrumentView::savePreset()
- {
- if ( m_vi->m_plugin != NULL )
- {
- m_vi->m_plugin->savePreset( );
- /* bool converted;
- QString str = m_vi->m_plugin->presetString().section("/", 0, 0);
- if (str != "")
- lastPosInMenu = str.toInt(&converted, 10) - 1;
- QWidget::update();*/
- }
- }
- void VestigeInstrumentView::nextProgram()
- {
- if ( m_vi->m_plugin != NULL ) {
- m_vi->m_plugin->rotateProgram( 1 );
- bool converted;
- QString str = m_vi->m_plugin->currentProgramName().section("/", 0, 0);
- if (str != "")
- lastPosInMenu = str.toInt(&converted, 10) - 1;
- QWidget::update();
- }
- }
- void VestigeInstrumentView::previousProgram()
- {
- if ( m_vi->m_plugin != NULL ) {
- m_vi->m_plugin->rotateProgram( -1 );
- bool converted;
- QString str = m_vi->m_plugin->currentProgramName().section("/", 0, 0);
- if (str != "")
- lastPosInMenu = str.toInt(&converted, 10) - 1;
- QWidget::update();
- }
- }
- void VestigeInstrumentView::selPreset( void )
- {
- QAction *action = qobject_cast<QAction *>(sender());
- if (action)
- if ( m_vi->m_plugin != NULL ) {
- lastPosInMenu = action->data().toInt();
- m_vi->m_plugin->setProgram( action->data().toInt() );
- QWidget::update();
- }
- }
- void VestigeInstrumentView::toggleGUI( void )
- {
- if( m_vi == NULL || m_vi->m_plugin == NULL )
- {
- return;
- }
- m_vi->m_plugin->toggleUI();
- }
- void VestigeInstrumentView::noteOffAll( void )
- {
- m_vi->m_pluginMutex.lock();
- if( m_vi->m_plugin != NULL )
- {
- for( int key = 0; key <= MidiMaxKey; ++key )
- {
- m_vi->m_plugin->processMidiEvent( MidiEvent( MidiNoteOff, 0, key, 0 ), 0 );
- }
- }
- m_vi->m_pluginMutex.unlock();
- }
- void VestigeInstrumentView::dragEnterEvent( QDragEnterEvent * _dee )
- {
- // For mimeType() and MimeType enum class
- using namespace Clipboard;
- if( _dee->mimeData()->hasFormat( mimeType( MimeType::StringPair ) ) )
- {
- QString txt = _dee->mimeData()->data(
- mimeType( MimeType::StringPair ) );
- if( txt.section( ':', 0, 0 ) == "vstplugin" )
- {
- _dee->acceptProposedAction();
- }
- else
- {
- _dee->ignore();
- }
- }
- else
- {
- _dee->ignore();
- }
- }
- void VestigeInstrumentView::dropEvent( QDropEvent * _de )
- {
- QString type = StringPairDrag::decodeKey( _de );
- QString value = StringPairDrag::decodeValue( _de );
- if( type == "vstplugin" )
- {
- m_vi->loadFile( value );
- _de->accept();
- return;
- }
- _de->ignore();
- }
- void VestigeInstrumentView::paintEvent( QPaintEvent * )
- {
- QPainter p( this );
- p.drawPixmap( 0, 0, *s_artwork );
- QString plugin_name = ( m_vi->m_plugin != NULL ) ?
- m_vi->m_plugin->name()/* + QString::number(
- m_plugin->version() )*/
- :
- tr( "No VST plugin loaded" );
- QFont f = p.font();
- f.setBold( true );
- p.setFont( pointSize<10>( f ) );
- p.setPen( QColor( 255, 255, 255 ) );
- p.drawText( 10, 100, plugin_name );
- p.setPen( QColor( 50, 50, 50 ) );
- p.drawText( 10, 211, tr( "Preset" ) );
- // m_pluginMutex.lock();
- if( m_vi->m_plugin != NULL )
- {
- p.setPen( QColor( 0, 0, 0 ) );
- f.setBold( false );
- p.setFont( pointSize<8>( f ) );
- p.drawText( 10, 114, tr( "by " ) +
- m_vi->m_plugin->vendorString() );
- p.setPen( QColor( 255, 255, 255 ) );
- p.drawText( 10, 225, m_vi->m_plugin->currentProgramName() );
- }
- if( m_vi->m_subWindow != NULL )
- {
- m_vi->m_subWindow->setWindowTitle( m_vi->instrumentTrack()->name()
- + tr( " - VST plugin control" ) );
- }
- // m_pluginMutex.unlock();
- }
- manageVestigeInstrumentView::manageVestigeInstrumentView( Instrument * _instrument,
- QWidget * _parent, vestigeInstrument * m_vi2 ) :
- InstrumentViewFixedSize( _instrument, _parent )
- {
- m_vi = m_vi2;
- m_vi->m_scrollArea = new QScrollArea( this );
- widget = new QWidget(this);
- l = new QGridLayout( this );
- m_vi->m_subWindow = gui->mainWindow()->addWindowedWidget(NULL, Qt::SubWindow |
- Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowSystemMenuHint);
- m_vi->m_subWindow->setSizePolicy( QSizePolicy::Fixed, QSizePolicy::MinimumExpanding );
- m_vi->m_subWindow->setFixedWidth( 960 );
- m_vi->m_subWindow->setMinimumHeight( 300 );
- m_vi->m_subWindow->setWidget(m_vi->m_scrollArea);
- m_vi->m_subWindow->setWindowTitle( m_vi->instrumentTrack()->name()
- + tr( " - VST plugin control" ) );
- m_vi->m_subWindow->setWindowIcon( PLUGIN_NAME::getIconPixmap( "logo" ) );
- m_vi->m_subWindow->setAttribute( Qt::WA_DeleteOnClose, false );
- l->setContentsMargins( 20, 10, 10, 10 );
- l->setVerticalSpacing( 10 );
- l->setHorizontalSpacing( 23 );
- m_syncButton = new QPushButton( tr( "VST Sync" ), this );
- connect( m_syncButton, SIGNAL( clicked() ), this,
- SLOT( syncPlugin() ) );
- l->addWidget( m_syncButton, 0, 0, 1, 2, Qt::AlignLeft );
- m_displayAutomatedOnly = new QPushButton( tr( "Automated" ), this );
- connect( m_displayAutomatedOnly, SIGNAL( clicked() ), this,
- SLOT( displayAutomatedOnly() ) );
- l->addWidget( m_displayAutomatedOnly, 0, 1, 1, 2, Qt::AlignLeft );
- m_closeButton = new QPushButton( tr( " Close " ), widget );
- connect( m_closeButton, SIGNAL( clicked() ), this,
- SLOT( closeWindow() ) );
- l->addWidget( m_closeButton, 0, 2, 1, 7, Qt::AlignLeft );
- for( int i = 0; i < 10; i++ )
- {
- l->addItem( new QSpacerItem( 68, 45, QSizePolicy::Fixed, QSizePolicy::Fixed ), 0, i );
- }
- const QMap<QString, QString> & dump = m_vi->m_plugin->parameterDump();
- m_vi->paramCount = dump.size();
- vstKnobs = new CustomTextKnob *[ m_vi->paramCount ];
- bool hasKnobModel = true;
- if (m_vi->knobFModel == NULL) {
- m_vi->knobFModel = new FloatModel *[ m_vi->paramCount ];
- hasKnobModel = false;
- }
- char paramStr[35];
- QStringList s_dumpValues;
- for( int i = 0; i < m_vi->paramCount; i++ )
- {
- sprintf( paramStr, "param%d", i);
- s_dumpValues = dump[ paramStr ].split( ":" );
- vstKnobs[ i ] = new CustomTextKnob( knobBright_26, this, s_dumpValues.at( 1 ) );
- vstKnobs[ i ]->setDescription( s_dumpValues.at( 1 ) + ":" );
- vstKnobs[ i ]->setLabel( s_dumpValues.at( 1 ).left( 15 ) );
- if( !hasKnobModel )
- {
- sprintf( paramStr, "%d", i);
- m_vi->knobFModel[ i ] = new FloatModel( LocaleHelper::toFloat(s_dumpValues.at(2)),
- 0.0f, 1.0f, 0.01f, castModel<vestigeInstrument>(), paramStr );
- }
- FloatModel * model = m_vi->knobFModel[i];
- connect( model, &FloatModel::dataChanged, this,
- [this, model]() { setParameter( model ); }, Qt::DirectConnection);
- vstKnobs[i] ->setModel( model );
- }
- syncParameterText();
- int i = 0;
- for( int lrow = 1; lrow < ( int( m_vi->paramCount / 10 ) + 1 ) + 1; lrow++ )
- {
- for( int lcolumn = 0; lcolumn < 10; lcolumn++ )
- {
- if( i < m_vi->paramCount )
- {
- l->addWidget( vstKnobs[i], lrow, lcolumn, Qt::AlignCenter );
- }
- i++;
- }
- }
- l->setRowStretch( ( int( m_vi->paramCount / 10) + 1), 1 );
- l->setColumnStretch( 10, 1 );
- widget->setLayout(l);
- widget->setAutoFillBackground(true);
- m_vi->m_scrollArea->setVerticalScrollBarPolicy( Qt::ScrollBarAlwaysOn );
- m_vi->m_scrollArea->setPalette( QApplication::palette( m_vi->m_scrollArea ) );
- m_vi->m_scrollArea->setMinimumHeight( 64 );
- m_vi->m_scrollArea->setWidget( widget );
- m_vi->m_subWindow->show();
- }
- void manageVestigeInstrumentView::closeWindow()
- {
- m_vi->m_subWindow->hide();
- }
- void manageVestigeInstrumentView::syncPlugin( void )
- {
- char paramStr[35];
- QStringList s_dumpValues;
- const QMap<QString, QString> & dump = m_vi->m_plugin->parameterDump();
- float f_value;
- for( int i = 0; i < m_vi->paramCount; i++ )
- {
- // only not automated knobs are synced from VST
- // those auto-setted values are not jurnaled, tracked for undo / redo
- if( !( m_vi->knobFModel[ i ]->isAutomated() || m_vi->knobFModel[ i ]->controllerConnection() ) )
- {
- sprintf( paramStr, "param%d", i );
- s_dumpValues = dump[ paramStr ].split( ":" );
- f_value = LocaleHelper::toFloat(s_dumpValues.at(2));
- m_vi->knobFModel[ i ]->setAutomatedValue( f_value );
- m_vi->knobFModel[ i ]->setInitValue( f_value );
- }
- }
- syncParameterText();
- }
- void manageVestigeInstrumentView::displayAutomatedOnly( void )
- {
- bool isAuto = QString::compare( m_displayAutomatedOnly->text(), tr( "Automated" ) ) == 0;
- for( int i = 0; i< m_vi->paramCount; i++ )
- {
- if( !( m_vi->knobFModel[ i ]->isAutomated() || m_vi->knobFModel[ i ]->controllerConnection() ) )
- {
- if( vstKnobs[ i ]->isVisible() == true && isAuto )
- {
- vstKnobs[ i ]->hide();
- m_displayAutomatedOnly->setText( "All" );
- } else {
- vstKnobs[ i ]->show();
- m_displayAutomatedOnly->setText( "Automated" );
- }
- }
- }
- }
- manageVestigeInstrumentView::~manageVestigeInstrumentView()
- {
- if( m_vi->knobFModel != NULL )
- {
- for( int i = 0; i < m_vi->paramCount; i++ )
- {
- delete m_vi->knobFModel[ i ];
- delete vstKnobs[ i ];
- }
- }
- if (vstKnobs != NULL) {
- delete []vstKnobs;
- vstKnobs = NULL;
- }
- if( m_vi->knobFModel != NULL )
- {
- delete [] m_vi->knobFModel;
- m_vi->knobFModel = NULL;
- }
- if (m_vi->m_scrollArea != NULL) {
- delete m_vi->m_scrollArea;
- m_vi->m_scrollArea = NULL;
- }
- if ( m_vi->m_subWindow != NULL ) {
- m_vi->m_subWindow->setAttribute(Qt::WA_DeleteOnClose);
- m_vi->m_subWindow->close();
- if ( m_vi->m_subWindow != NULL )
- delete m_vi->m_subWindow;
- m_vi->m_subWindow = NULL;
- }
- m_vi->p_subWindow = NULL;
- }
- void manageVestigeInstrumentView::setParameter( Model * action )
- {
- int knobUNID = action->displayName().toInt();
- if ( m_vi->m_plugin != NULL ) {
- m_vi->m_plugin->setParam( knobUNID, m_vi->knobFModel[knobUNID]->value() );
- syncParameterText();
- }
- }
- void manageVestigeInstrumentView::syncParameterText()
- {
- m_vi->m_plugin->loadParameterLabels();
- m_vi->m_plugin->loadParameterDisplays();
- QString paramLabelStr = m_vi->m_plugin->allParameterLabels();
- QString paramDisplayStr = m_vi->m_plugin->allParameterDisplays();
- QStringList paramLabelList;
- QStringList paramDisplayList;
- for( int i = 0; i < paramLabelStr.size(); )
- {
- const int length = paramLabelStr[i].digitValue();
- paramLabelList.append(paramLabelStr.mid(i + 1, length));
- i += length + 1;
- }
- for( int i = 0; i < paramDisplayStr.size(); )
- {
- const int length = paramDisplayStr[i].digitValue();
- paramDisplayList.append(paramDisplayStr.mid(i + 1, length));
- i += length + 1;
- }
- for( int i = 0; i < paramLabelList.size(); ++i )
- {
- vstKnobs[i]->setValueText(paramDisplayList[i] + ' ' + paramLabelList[i]);
- }
- }
- void manageVestigeInstrumentView::dragEnterEvent( QDragEnterEvent * _dee )
- {
- // For mimeType() and MimeType enum class
- using namespace Clipboard;
- if( _dee->mimeData()->hasFormat( mimeType( MimeType::StringPair ) ) )
- {
- QString txt = _dee->mimeData()->data(
- mimeType( MimeType::StringPair ) );
- if( txt.section( ':', 0, 0 ) == "vstplugin" )
- {
- _dee->acceptProposedAction();
- }
- else
- {
- _dee->ignore();
- }
- }
- else
- {
- _dee->ignore();
- }
- }
- void manageVestigeInstrumentView::dropEvent( QDropEvent * _de )
- {
- QString type = StringPairDrag::decodeKey( _de );
- QString value = StringPairDrag::decodeValue( _de );
- if( type == "vstplugin" )
- {
- m_vi->loadFile( value );
- _de->accept();
- return;
- }
- _de->ignore();
- }
- void manageVestigeInstrumentView::paintEvent( QPaintEvent * )
- {
- m_vi->m_subWindow->setWindowTitle( m_vi->instrumentTrack()->name()
- + tr( " - VST plugin control" ) );
- }
- extern "C"
- {
- // necessary for getting instance out of shared lib
- Q_DECL_EXPORT Plugin * lmms_plugin_main( Model *m, void * )
- {
- return new vestigeInstrument( static_cast<InstrumentTrack *>( m ) );
- }
- }
|