12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190 |
- /*
- * 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 "ConfigManager.h"
- #include "BufferManager.h"
- #include "ConfigManager.h"
- #include "Engine.h"
- #include "gui_templates.h"
- #include "InstrumentPlayHandle.h"
- #include "InstrumentTrack.h"
- #include "LocaleHelper.h"
- #include "MainWindow.h"
- #include "Mixer.h"
- #include "GuiApplication.h"
- #include "PixmapButton.h"
- #include "SampleBuffer.h"
- #include "Song.h"
- #include "StringPairDrag.h"
- #include "TextFloat.h"
- #include "ToolTip.h"
- #include "FileDialog.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 ( _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", 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 ( m_plugin != NULL )
- {
- closePlugin();
- }
- m_pluginDLL = SampleBuffer::tryToMakeRelative( _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;
- }
- 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 MidiTime& 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 = SampleBuffer::tryToMakeAbsolute( 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 )
- {
- if( _dee->mimeData()->hasFormat( StringPairDrag::mimeType() ) )
- {
- QString txt = _dee->mimeData()->data(
- StringPairDrag::mimeType() );
- 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 Knob *[ 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 Knob( knobBright_26, this, s_dumpValues.at( 1 ) );
- vstKnobs[ i ]->setHintText( 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>(), tr( paramStr ) );
- }
- FloatModel * model = m_vi->knobFModel[i];
- connect( model, &FloatModel::dataChanged, this,
- [this, model]() { setParameter( model ); }, Qt::DirectConnection);
- vstKnobs[i] ->setModel( model );
- }
- 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 );
- }
- }
- }
- 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() );
- }
- }
- void manageVestigeInstrumentView::dragEnterEvent( QDragEnterEvent * _dee )
- {
- if( _dee->mimeData()->hasFormat( StringPairDrag::mimeType() ) )
- {
- QString txt = _dee->mimeData()->data(
- StringPairDrag::mimeType() );
- 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 ) );
- }
- }
|