add missing #include
[ardour.git] / libs / ardour / vst_plugin.cc
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <glib.h>
21 #include "pbd/gstdio_compat.h"
22
23 #include <glibmm/fileutils.h>
24 #include <glibmm/miscutils.h>
25 #include <glibmm/convert.h>
26
27 #include "pbd/floating.h"
28 #include "pbd/locale_guard.h"
29
30 #include "ardour/vst_plugin.h"
31 #include "ardour/vestige/aeffectx.h"
32 #include "ardour/session.h"
33 #include "ardour/vst_types.h"
34 #include "ardour/filesystem_paths.h"
35 #include "ardour/audio_buffer.h"
36
37 #include "pbd/i18n.h"
38
39 using namespace std;
40 using namespace PBD;
41 using namespace ARDOUR;
42
43 VSTPlugin::VSTPlugin (AudioEngine& engine, Session& session, VSTHandle* handle)
44         : Plugin (engine, session)
45         , _handle (handle)
46         , _state (0)
47         , _plugin (0)
48         , _pi (0)
49         , _num (0)
50         , _transport_frame (0)
51         , _transport_speed (0.f)
52 {
53         memset (&_timeInfo, 0, sizeof(_timeInfo));
54 }
55
56 VSTPlugin::VSTPlugin (const VSTPlugin& other)
57         : Plugin (other)
58         , _handle (other._handle)
59         , _state (other._state)
60         , _plugin (other._plugin)
61         , _pi (other._pi)
62         , _num (other._num)
63         , _midi_out_buf (other._midi_out_buf)
64         , _transport_frame (0)
65         , _transport_speed (0.f)
66         , _parameter_defaults (other._parameter_defaults)
67 {
68         memset (&_timeInfo, 0, sizeof(_timeInfo));
69 }
70
71 VSTPlugin::~VSTPlugin ()
72 {
73
74 }
75
76 void
77 VSTPlugin::set_plugin (AEffect* e)
78 {
79         _plugin = e;
80         _plugin->user = this;
81
82         /* set rate and blocksize */
83
84         _plugin->dispatcher (_plugin, effSetSampleRate, 0, 0, NULL, (float) _session.frame_rate());
85         _plugin->dispatcher (_plugin, effSetBlockSize, 0, _session.get_block_size(), NULL, 0.0f);
86 }
87
88 void
89 VSTPlugin::deactivate ()
90 {
91         _plugin->dispatcher (_plugin, effMainsChanged, 0, 0, NULL, 0.0f);
92 }
93
94 void
95 VSTPlugin::activate ()
96 {
97         _plugin->dispatcher (_plugin, effMainsChanged, 0, 1, NULL, 0.0f);
98 }
99
100 int
101 VSTPlugin::set_block_size (pframes_t nframes)
102 {
103         deactivate ();
104         _plugin->dispatcher (_plugin, effSetBlockSize, 0, nframes, NULL, 0.0f);
105         activate ();
106         return 0;
107 }
108
109 float
110 VSTPlugin::default_value (uint32_t which)
111 {
112         return _parameter_defaults[which];
113 }
114
115 float
116 VSTPlugin::get_parameter (uint32_t which) const
117 {
118         return _plugin->getParameter (_plugin, which);
119 }
120
121 void
122 VSTPlugin::set_parameter (uint32_t which, float newval)
123 {
124         float oldval = get_parameter (which);
125
126         if (PBD::floateq (oldval, newval, 1)) {
127                 return;
128         }
129
130         _plugin->setParameter (_plugin, which, newval);
131
132         float curval = get_parameter (which);
133
134         if (!PBD::floateq (curval, oldval, 1)) {
135                 /* value has changed, follow rest of the notification path */
136                 Plugin::set_parameter (which, newval);
137         }
138 }
139
140 uint32_t
141 VSTPlugin::nth_parameter (uint32_t n, bool& ok) const
142 {
143         ok = true;
144         return n;
145 }
146
147 /** Get VST chunk as base64-encoded data.
148  *  @param single true for single program, false for all programs.
149  *  @return 0-terminated base64-encoded data; must be passed to g_free () by caller.
150  */
151 gchar *
152 VSTPlugin::get_chunk (bool single) const
153 {
154         guchar* data;
155         int32_t data_size = _plugin->dispatcher (_plugin, 23 /* effGetChunk */, single ? 1 : 0, 0, &data, 0);
156         if (data_size == 0) {
157                 return 0;
158         }
159
160         return g_base64_encode (data, data_size);
161 }
162
163 /** Set VST chunk from base64-encoded data.
164  *  @param 0-terminated base64-encoded data.
165  *  @param single true for single program, false for all programs.
166  *  @return 0 on success, non-0 on failure
167  */
168 int
169 VSTPlugin::set_chunk (gchar const * data, bool single)
170 {
171         gsize size = 0;
172         int r = 0;
173         guchar* raw_data = g_base64_decode (data, &size);
174         {
175                 Glib::Threads::Mutex::Lock lm (_lock);
176                 r = _plugin->dispatcher (_plugin, 24 /* effSetChunk */, single ? 1 : 0, size, raw_data, 0);
177         }
178         g_free (raw_data);
179         return r;
180 }
181
182 void
183 VSTPlugin::add_state (XMLNode* root) const
184 {
185         LocaleGuard lg;
186
187         if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
188
189                 gchar* data = get_chunk (false);
190                 if (data == 0) {
191                         return;
192                 }
193
194                 /* store information */
195
196                 XMLNode* chunk_node = new XMLNode (X_("chunk"));
197
198                 chunk_node->add_content (data);
199                 g_free (data);
200
201                 root->add_child_nocopy (*chunk_node);
202
203         } else {
204
205                 XMLNode* parameters = new XMLNode ("parameters");
206
207                 for (int32_t n = 0; n < _plugin->numParams; ++n) {
208                         char index[64];
209                         char val[32];
210                         snprintf (index, sizeof (index), "param-%d", n);
211                         snprintf (val, sizeof (val), "%.12g", _plugin->getParameter (_plugin, n));
212                         parameters->add_property (index, val);
213                 }
214
215                 root->add_child_nocopy (*parameters);
216         }
217 }
218
219 int
220 VSTPlugin::set_state (const XMLNode& node, int version)
221 {
222         LocaleGuard lg;
223         int ret = -1;
224
225         if (node.name() != state_node_name()) {
226                 error << _("Bad node sent to VSTPlugin::set_state") << endmsg;
227                 return 0;
228         }
229
230 #ifndef NO_PLUGIN_STATE
231         XMLNode* child;
232
233         if ((child = find_named_node (node, X_("chunk"))) != 0) {
234
235                 XMLPropertyList::const_iterator i;
236                 XMLNodeList::const_iterator n;
237
238                 for (n = child->children ().begin (); n != child->children ().end (); ++n) {
239                         if ((*n)->is_content ()) {
240                                 /* XXX: this may be dubious for the same reasons that we delay
241                                          execution of load_preset.
242                                          */
243                                 ret = set_chunk ((*n)->content().c_str(), false);
244                         }
245                 }
246
247         } else if ((child = find_named_node (node, X_("parameters"))) != 0) {
248
249                 XMLPropertyList::const_iterator i;
250
251                 for (i = child->properties().begin(); i != child->properties().end(); ++i) {
252                         int32_t param;
253                         float val;
254
255                         sscanf ((*i)->name().c_str(), "param-%d", &param);
256                         sscanf ((*i)->value().c_str(), "%f", &val);
257
258                         _plugin->setParameter (_plugin, param, val);
259                 }
260
261                 ret = 0;
262
263         }
264 #endif
265
266         Plugin::set_state (node, version);
267         return ret;
268 }
269
270
271 int
272 VSTPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& desc) const
273 {
274         VstParameterProperties prop;
275
276         memset (&prop, 0, sizeof (VstParameterProperties));
277         desc.min_unbound = false;
278         desc.max_unbound = false;
279         prop.flags = 0;
280
281         if (_plugin->dispatcher (_plugin, effGetParameterProperties, which, 0, &prop, 0)) {
282
283                 /* i have yet to find or hear of a VST plugin that uses this */
284                 /* RG: faust2vsti does use this :) */
285
286                 if (prop.flags & kVstParameterUsesIntegerMinMax) {
287                         desc.lower = prop.minInteger;
288                         desc.upper = prop.maxInteger;
289                 } else {
290                         desc.lower = 0;
291                         desc.upper = 1.0;
292                 }
293
294                 if (prop.flags & kVstParameterUsesIntStep) {
295
296                         desc.step = prop.stepInteger;
297                         desc.smallstep = prop.stepInteger;
298                         desc.largestep = prop.stepInteger;
299
300                 } else if (prop.flags & kVstParameterUsesFloatStep) {
301
302                         desc.step = prop.stepFloat;
303                         desc.smallstep = prop.smallStepFloat;
304                         desc.largestep = prop.largeStepFloat;
305
306                 } else {
307
308                         float range = desc.upper - desc.lower;
309
310                         desc.step = range / 100.0f;
311                         desc.smallstep = desc.step / 2.0f;
312                         desc.largestep = desc.step * 10.0f;
313                 }
314
315                 if (strlen(prop.label) == 0) {
316                         _plugin->dispatcher (_plugin, effGetParamName, which, 0, prop.label, 0);
317                 }
318
319                 desc.toggled = prop.flags & kVstParameterIsSwitch;
320                 desc.logarithmic = false;
321                 desc.sr_dependent = false;
322                 desc.label = Glib::locale_to_utf8 (prop.label);
323
324         } else {
325
326                 /* old style */
327
328                 char label[64];
329                 /* some VST plugins expect this buffer to be zero-filled */
330                 memset (label, 0, sizeof (label));
331
332                 _plugin->dispatcher (_plugin, effGetParamName, which, 0, label, 0);
333
334                 desc.label = Glib::locale_to_utf8 (label);
335                 desc.integer_step = false;
336                 desc.lower = 0.0f;
337                 desc.upper = 1.0f;
338                 desc.step = 0.01f;
339                 desc.smallstep = 0.005f;
340                 desc.largestep = 0.1f;
341                 desc.toggled = false;
342                 desc.logarithmic = false;
343                 desc.sr_dependent = false;
344         }
345
346         desc.normal = get_parameter (which);
347         _parameter_defaults[which] = desc.normal;
348
349         return 0;
350 }
351
352 bool
353 VSTPlugin::load_preset (PresetRecord r)
354 {
355         bool s;
356
357         if (r.user) {
358                 s = load_user_preset (r);
359         } else {
360                 s = load_plugin_preset (r);
361         }
362
363         if (s) {
364                 Plugin::load_preset (r);
365         }
366
367         return s;
368 }
369
370 bool
371 VSTPlugin::load_plugin_preset (PresetRecord r)
372 {
373         /* This is a plugin-provided preset.
374            We can't dispatch directly here; too many plugins expects only one GUI thread.
375         */
376
377         /* Extract the index of this preset from the URI */
378         int id;
379         int index;
380 #ifndef NDEBUG
381         int const p = sscanf (r.uri.c_str(), "VST:%d:%d", &id, &index);
382         assert (p == 2);
383 #else
384         sscanf (r.uri.c_str(), "VST:%d:%d", &id, &index);
385 #endif
386         _state->want_program = index;
387         return true;
388 }
389
390 bool
391 VSTPlugin::load_user_preset (PresetRecord r)
392 {
393         /* This is a user preset; we load it, and this code also knows about the
394            non-direct-dispatch thing.
395         */
396
397         boost::shared_ptr<XMLTree> t (presets_tree ());
398         if (t == 0) {
399                 return false;
400         }
401
402         XMLNode* root = t->root ();
403
404         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
405                 XMLProperty const * label = (*i)->property (X_("label"));
406
407                 assert (label);
408
409                 if (label->value() != r.label) {
410                         continue;
411                 }
412
413                 if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
414
415                         /* Load a user preset chunk from our XML file and send it via a circuitous route to the plugin */
416
417                         if (_state->wanted_chunk) {
418                                 g_free (_state->wanted_chunk);
419                         }
420
421                         for (XMLNodeList::const_iterator j = (*i)->children().begin(); j != (*i)->children().end(); ++j) {
422                                 if ((*j)->is_content ()) {
423                                         /* we can't dispatch directly here; too many plugins expect only one GUI thread */
424                                         gsize size = 0;
425                                         guchar* raw_data = g_base64_decode ((*j)->content().c_str(), &size);
426                                         _state->wanted_chunk = raw_data;
427                                         _state->wanted_chunk_size = size;
428                                         _state->want_chunk = 1;
429                                         return true;
430                                 }
431                         }
432
433                         return false;
434
435                 } else {
436
437                         for (XMLNodeList::const_iterator j = (*i)->children().begin(); j != (*i)->children().end(); ++j) {
438                                 if ((*j)->name() == X_("Parameter")) {
439                                                 XMLProperty const * index = (*j)->property (X_("index"));
440                                                 XMLProperty const * value = (*j)->property (X_("value"));
441
442                                                 assert (index);
443                                                 assert (value);
444
445                                                 set_parameter (atoi (index->value().c_str()), atof (value->value().c_str ()));
446                                 }
447                         }
448                         return true;
449                 }
450         }
451         return false;
452 }
453
454 string
455 VSTPlugin::do_save_preset (string name)
456 {
457         boost::shared_ptr<XMLTree> t (presets_tree ());
458         if (t == 0) {
459                 return "";
460         }
461
462         XMLNode* p = 0;
463         /* XXX: use of _presets.size() + 1 for the unique ID here is dubious at best */
464         string const uri = string_compose (X_("VST:%1:%2"), unique_id (), _presets.size() + 1);
465
466         if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
467
468                 p = new XMLNode (X_("ChunkPreset"));
469                 p->add_property (X_("uri"), uri);
470                 p->add_property (X_("label"), name);
471                 gchar* data = get_chunk (true);
472                 p->add_content (string (data));
473                 g_free (data);
474
475         } else {
476
477                 p = new XMLNode (X_("Preset"));
478                 p->add_property (X_("uri"), uri);
479                 p->add_property (X_("label"), name);
480
481                 for (uint32_t i = 0; i < parameter_count(); ++i) {
482                         if (parameter_is_input (i)) {
483                                 XMLNode* c = new XMLNode (X_("Parameter"));
484                                 c->add_property (X_("index"), string_compose ("%1", i));
485                                 c->add_property (X_("value"), string_compose ("%1", get_parameter (i)));
486                                 p->add_child_nocopy (*c);
487                         }
488                 }
489         }
490
491         t->root()->add_child_nocopy (*p);
492
493         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
494         f = Glib::build_filename (f, presets_file ());
495
496         t->write (f);
497         return uri;
498 }
499
500 void
501 VSTPlugin::do_remove_preset (string name)
502 {
503         boost::shared_ptr<XMLTree> t (presets_tree ());
504         if (t == 0) {
505                 return;
506         }
507
508         t->root()->remove_nodes_and_delete (X_("label"), name);
509
510         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
511         f = Glib::build_filename (f, presets_file ());
512
513         t->write (f);
514 }
515
516 string
517 VSTPlugin::describe_parameter (Evoral::Parameter param)
518 {
519         char name[64];
520         memset (name, 0, sizeof (name));
521
522         /* some VST plugins expect this buffer to be zero-filled */
523
524         _plugin->dispatcher (_plugin, effGetParamName, param.id(), 0, name, 0);
525
526         if (name[0] == '\0') {
527                 strcpy (name, _("Unknown"));
528         }
529
530         return name;
531 }
532
533 framecnt_t
534 VSTPlugin::signal_latency () const
535 {
536         if (_user_latency) {
537                 return _user_latency;
538         }
539
540 #if ( defined(__x86_64__) || defined(_M_X64) )
541         return *((int32_t *) (((char *) &_plugin->flags) + 24)); /* initialDelay */
542 #else
543         return *((int32_t *) (((char *) &_plugin->flags) + 12)); /* initialDelay */
544 #endif
545 }
546
547 set<Evoral::Parameter>
548 VSTPlugin::automatable () const
549 {
550         set<Evoral::Parameter> ret;
551
552         for (uint32_t i = 0; i < parameter_count(); ++i) {
553                 ret.insert (ret.end(), Evoral::Parameter(PluginAutomation, 0, i));
554         }
555
556         return ret;
557 }
558
559 int
560 VSTPlugin::connect_and_run (BufferSet& bufs,
561                 framepos_t start, framepos_t end, double speed,
562                 ChanMapping in_map, ChanMapping out_map,
563                 pframes_t nframes, framecnt_t offset)
564 {
565         Plugin::connect_and_run(bufs, start, end, speed, in_map, out_map, nframes, offset);
566
567         Glib::Threads::Mutex::Lock lm (_state_lock, Glib::Threads::TRY_LOCK);
568         if (!lm.locked()) {
569                 /* by convention 'effSetChunk' should not be called while processing
570                  * http://www.reaper.fm/sdk/vst/vst_ext.php
571                  *
572                  * All VSTs don't use in-place, PluginInsert::connect_and_run()
573                  * does clear output buffers, so we can just return.
574                  */
575                 return 0;
576         }
577
578         _transport_frame = start;
579         _transport_speed = speed;
580
581         ChanCount bufs_count;
582         bufs_count.set(DataType::AUDIO, 1);
583         bufs_count.set(DataType::MIDI, 1);
584         _midi_out_buf = 0;
585
586         BufferSet& silent_bufs  = _session.get_silent_buffers(bufs_count);
587         BufferSet& scratch_bufs = _session.get_scratch_buffers(bufs_count);
588
589         /* VC++ doesn't support the C99 extension that allows
590
591            typeName foo[variableDefiningSize];
592
593            Use alloca instead of dynamic array (rather than std::vector which
594            allocs on the heap) because this is realtime code.
595         */
596
597         float** ins = (float**)alloca(_plugin->numInputs*sizeof(float*));
598         float** outs = (float**)alloca(_plugin->numOutputs*sizeof(float*));
599
600         int32_t i;
601
602         uint32_t in_index = 0;
603         for (i = 0; i < (int32_t) _plugin->numInputs; ++i) {
604                 uint32_t  index;
605                 bool      valid = false;
606                 index = in_map.get(DataType::AUDIO, in_index++, &valid);
607                 ins[i] = (valid)
608                                         ? bufs.get_audio(index).data(offset)
609                                         : silent_bufs.get_audio(0).data(offset);
610         }
611
612         uint32_t out_index = 0;
613         for (i = 0; i < (int32_t) _plugin->numOutputs; ++i) {
614                 uint32_t  index;
615                 bool      valid = false;
616                 index = out_map.get(DataType::AUDIO, out_index++, &valid);
617                 outs[i] = (valid)
618                         ? bufs.get_audio(index).data(offset)
619                         : scratch_bufs.get_audio(0).data(offset);
620         }
621
622         if (bufs.count().n_midi() > 0) {
623                 VstEvents* v = 0;
624                 bool valid = false;
625                 const uint32_t buf_index_in = in_map.get(DataType::MIDI, 0, &valid);
626                 if (valid) {
627                         v = bufs.get_vst_midi (buf_index_in);
628                 }
629                 valid = false;
630                 const uint32_t buf_index_out = out_map.get(DataType::MIDI, 0, &valid);
631                 if (valid) {
632                         _midi_out_buf = &bufs.get_midi(buf_index_out);
633                         _midi_out_buf->silence(0, 0);
634                 } else {
635                         _midi_out_buf = 0;
636                 }
637                 if (v) {
638                         _plugin->dispatcher (_plugin, effProcessEvents, 0, 0, v, 0);
639                 }
640         }
641
642         /* we already know it can support processReplacing */
643         _plugin->processReplacing (_plugin, &ins[0], &outs[0], nframes);
644         _midi_out_buf = 0;
645
646         return 0;
647 }
648
649 string
650 VSTPlugin::unique_id () const
651 {
652         char buf[32];
653
654         snprintf (buf, sizeof (buf), "%d", _plugin->uniqueID);
655
656         return string (buf);
657 }
658
659
660 const char *
661 VSTPlugin::name () const
662 {
663         if (!_info->name.empty ()) {
664                 return _info->name.c_str();
665         }
666         return _handle->name;
667 }
668
669 const char *
670 VSTPlugin::maker () const
671 {
672         return _info->creator.c_str();
673 }
674
675 const char *
676 VSTPlugin::label () const
677 {
678         return _handle->name;
679 }
680
681 uint32_t
682 VSTPlugin::parameter_count () const
683 {
684         return _plugin->numParams;
685 }
686
687 bool
688 VSTPlugin::has_editor () const
689 {
690         return _plugin->flags & effFlagsHasEditor;
691 }
692
693 void
694 VSTPlugin::print_parameter (uint32_t param, char *buf, uint32_t /*len*/) const
695 {
696         char *first_nonws;
697
698         _plugin->dispatcher (_plugin, 7 /* effGetParamDisplay */, param, 0, buf, 0);
699
700         if (buf[0] == '\0') {
701                 return;
702         }
703
704         first_nonws = buf;
705         while (*first_nonws && isspace (*first_nonws)) {
706                 first_nonws++;
707         }
708
709         if (*first_nonws == '\0') {
710                 return;
711         }
712
713         memmove (buf, first_nonws, strlen (buf) - (first_nonws - buf) + 1);
714 }
715
716 void
717 VSTPlugin::find_presets ()
718 {
719         /* Built-in presets */
720
721         int const vst_version = _plugin->dispatcher (_plugin, effGetVstVersion, 0, 0, NULL, 0);
722         for (int i = 0; i < _plugin->numPrograms; ++i) {
723                 PresetRecord r (string_compose (X_("VST:%1:%2"), unique_id (), i), "", false);
724
725                 if (vst_version >= 2) {
726                         char buf[256];
727                         if (_plugin->dispatcher (_plugin, 29, i, 0, buf, 0) == 1) {
728                                 r.label = buf;
729                         } else {
730                                 r.label = string_compose (_("Preset %1"), i);
731                         }
732                 } else {
733                         r.label = string_compose (_("Preset %1"), i);
734                 }
735
736                 _presets.insert (make_pair (r.uri, r));
737         }
738
739         /* User presets from our XML file */
740
741         boost::shared_ptr<XMLTree> t (presets_tree ());
742
743         if (t) {
744                 XMLNode* root = t->root ();
745                 for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
746
747                         XMLProperty const * uri = (*i)->property (X_("uri"));
748                         XMLProperty const * label = (*i)->property (X_("label"));
749
750                         assert (uri);
751                         assert (label);
752
753                         PresetRecord r (uri->value(), label->value(), true);
754                         _presets.insert (make_pair (r.uri, r));
755                 }
756         }
757
758 }
759
760 /** @return XMLTree with our user presets; could be a new one if no existing
761  *  one was found, or 0 if one was present but badly-formatted.
762  */
763 XMLTree *
764 VSTPlugin::presets_tree () const
765 {
766         XMLTree* t = new XMLTree;
767
768         std::string p = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
769
770         if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
771                 if (g_mkdir_with_parents (p.c_str(), 0755) != 0) {
772                         error << _("Unable to make VST presets directory") << endmsg;
773                 };
774         }
775
776         p = Glib::build_filename (p, presets_file ());
777
778         if (!Glib::file_test (p, Glib::FILE_TEST_EXISTS)) {
779                 t->set_root (new XMLNode (X_("VSTPresets")));
780                 return t;
781         }
782
783         t->set_filename (p);
784         if (!t->read ()) {
785                 delete t;
786                 return 0;
787         }
788
789         return t;
790 }
791
792 /** @return Index of the first user preset in our lists */
793 int
794 VSTPlugin::first_user_preset_index () const
795 {
796         return _plugin->numPrograms;
797 }
798
799 string
800 VSTPlugin::presets_file () const
801 {
802         return string_compose ("vst-%1", unique_id ());
803 }
804