Display recorded controller data (fix show all/existing automation).
[ardour.git] / libs / ardour / plugin_insert.cc
1 /*
2     Copyright (C) 2000 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 <string>
21
22 #include <sigc++/bind.h>
23
24 #include <pbd/failed_constructor.h>
25 #include <pbd/xml++.h>
26
27 #include <ardour/plugin_insert.h>
28 #include <ardour/plugin.h>
29 #include <ardour/port.h>
30 #include <ardour/route.h>
31 #include <ardour/ladspa_plugin.h>
32 #include <ardour/buffer_set.h>
33 #include <ardour/automation_list.h>
34
35 #ifdef HAVE_SLV2
36 #include <ardour/lv2_plugin.h>
37 #endif
38
39 #ifdef VST_SUPPORT
40 #include <ardour/vst_plugin.h>
41 #endif
42
43 #ifdef HAVE_AUDIOUNITS
44 #include <ardour/audio_unit.h>
45 #endif
46
47 #include <ardour/audioengine.h>
48 #include <ardour/session.h>
49 #include <ardour/types.h>
50
51 #include "i18n.h"
52
53 using namespace std;
54 using namespace ARDOUR;
55 using namespace PBD;
56
57 const string PluginInsert::port_automation_node_name = "PortAutomation";
58
59 PluginInsert::PluginInsert (Session& s, boost::shared_ptr<Plugin> plug, Placement placement)
60         : Processor (s, plug->name(), placement)
61 {
62         /* the first is the master */
63
64         _plugins.push_back (plug);
65
66         init ();
67
68         {
69                 Glib::Mutex::Lock em (_session.engine().process_lock());
70                 IO::PortCountChanged (max(input_streams(), output_streams()));
71         }
72
73         ProcessorCreated (this); /* EMIT SIGNAL */
74 }
75
76 PluginInsert::PluginInsert (Session& s, const XMLNode& node)
77         : Processor (s, "unnamed plugin insert", PreFader)
78 {
79         if (set_state (node)) {
80                 throw failed_constructor();
81         }
82
83         // set_automatable ();
84
85         {
86                 Glib::Mutex::Lock em (_session.engine().process_lock());
87                 IO::PortCountChanged (max(input_streams(), output_streams()));
88         }
89 }
90
91 PluginInsert::PluginInsert (const PluginInsert& other)
92         : Processor (other._session, other._name, other.placement())
93 {
94         uint32_t count = other._plugins.size();
95
96         /* make as many copies as requested */
97         for (uint32_t n = 0; n < count; ++n) {
98                 _plugins.push_back (plugin_factory (other.plugin (n)));
99         }
100
101         init ();
102
103         ProcessorCreated (this); /* EMIT SIGNAL */
104 }
105
106 bool
107 PluginInsert::set_count (uint32_t num)
108 {
109         bool require_state = !_plugins.empty();
110
111         /* this is a bad idea.... we shouldn't do this while active.
112            only a route holding their redirect_lock should be calling this 
113         */
114
115         if (num == 0) { 
116                 return false;
117         } else if (num > _plugins.size()) {
118                 uint32_t diff = num - _plugins.size();
119
120                 for (uint32_t n = 0; n < diff; ++n) {
121                         _plugins.push_back (plugin_factory (_plugins[0]));
122
123                         if (require_state) {
124                                 /* XXX do something */
125                         }
126                 }
127
128         } else if (num < _plugins.size()) {
129                 uint32_t diff = _plugins.size() - num;
130                 for (uint32_t n= 0; n < diff; ++n) {
131                         _plugins.pop_back();
132                 }
133         }
134
135         return true;
136 }
137
138 void
139 PluginInsert::init ()
140 {
141         set_automatable ();
142 }
143
144 PluginInsert::~PluginInsert ()
145 {
146         GoingAway (); /* EMIT SIGNAL */
147 }
148
149 void
150 PluginInsert::auto_state_changed (Parameter which)
151 {
152         if (which.type() != PluginAutomation)
153                 return;
154
155         boost::shared_ptr<AutomationControl> c
156                         = boost::dynamic_pointer_cast<AutomationControl>(data().control (which));
157
158         if (c && ((AutomationList*)c->list().get())->automation_state() != Off) {
159                 _plugins[0]->set_parameter (which.id(), c->list()->eval (_session.transport_frame()));
160         }
161 }
162
163 ChanCount
164 PluginInsert::output_streams() const
165 {
166         ChanCount out = _plugins.front()->get_info()->n_outputs;
167
168         if (out == ChanCount::INFINITE) {
169
170                 return _plugins.front()->output_streams ();
171
172         } else {
173
174                 out.set_audio (out.n_audio() * _plugins.size());
175                 out.set_midi (out.n_midi() * _plugins.size());
176
177                 return out;
178         }
179 }
180
181 ChanCount
182 PluginInsert::input_streams() const
183 {
184         ChanCount in = _plugins[0]->get_info()->n_inputs;
185         
186         if (in == ChanCount::INFINITE) {
187                 return _plugins[0]->input_streams ();
188         } else {
189                 in.set_audio (in.n_audio() * _plugins.size());
190                 in.set_midi (in.n_midi() * _plugins.size());
191
192                 return in;
193         }
194 }
195
196 ChanCount
197 PluginInsert::natural_output_streams() const
198 {
199         return _plugins[0]->get_info()->n_outputs;
200 }
201
202 ChanCount
203 PluginInsert::natural_input_streams() const
204 {
205         return _plugins[0]->get_info()->n_inputs;
206 }
207
208 bool
209 PluginInsert::is_generator() const
210 {
211         /* XXX more finesse is possible here. VST plugins have a
212            a specific "instrument" flag, for example.
213          */
214
215         return _plugins[0]->get_info()->n_inputs.n_audio() == 0;
216 }
217
218 void
219 PluginInsert::set_automatable ()
220 {
221         set<Parameter> a = _plugins.front()->automatable ();
222
223         Plugin::ParameterDescriptor desc;
224
225         for (set<Parameter>::iterator i = a.begin(); i != a.end(); ++i) {
226                 if (i->type() == PluginAutomation) {
227                         can_automate (*i);
228                         _plugins.front()->get_parameter_descriptor(i->id(), desc);
229                         Parameter param(*i);
230                         param.set_range(desc.lower, desc.upper, _plugins.front()->default_value(i->id()));
231                         boost::shared_ptr<AutomationList> list(new AutomationList(param));
232                         add_control(boost::shared_ptr<AutomationControl>(new PluginControl(*this, list)));
233                 }
234         }
235 }
236
237 void
238 PluginInsert::parameter_changed (Parameter which, float val)
239 {
240         if (which.type() != PluginAutomation)
241                 return;
242
243         vector<boost::shared_ptr<Plugin> >::iterator i = _plugins.begin();
244
245         /* don't set the first plugin, just all the slaves */
246
247         if (i != _plugins.end()) {
248                 ++i;
249                 for (; i != _plugins.end(); ++i) {
250                         (*i)->set_parameter (which, val);
251                 }
252         }
253 }
254
255 void
256 PluginInsert::set_block_size (nframes_t nframes)
257 {
258         for (vector<boost::shared_ptr<Plugin> >::iterator i = _plugins.begin(); i != _plugins.end(); ++i) {
259                 (*i)->set_block_size (nframes);
260         }
261 }
262
263 void
264 PluginInsert::activate ()
265 {
266         for (vector<boost::shared_ptr<Plugin> >::iterator i = _plugins.begin(); i != _plugins.end(); ++i) {
267                 (*i)->activate ();
268         }
269 }
270
271 void
272 PluginInsert::deactivate ()
273 {
274         for (vector<boost::shared_ptr<Plugin> >::iterator i = _plugins.begin(); i != _plugins.end(); ++i) {
275                 (*i)->deactivate ();
276         }
277 }
278
279 void
280 PluginInsert::connect_and_run (BufferSet& bufs, nframes_t nframes, nframes_t offset, bool with_auto, nframes_t now)
281 {
282         uint32_t in_index = 0;
283         uint32_t out_index = 0;
284
285         /* Note that we've already required that plugins
286            be able to handle in-place processing.
287         */
288
289         if (with_auto) {
290
291                 uint32_t n = 0;
292                 
293                 for (Controls::iterator li = data().controls().begin(); li != data().controls().end(); ++li, ++n) {
294                         
295                         boost::shared_ptr<AutomationControl> c
296                                 = boost::dynamic_pointer_cast<AutomationControl>(li->second);
297
298                         if (c->parameter().type() == PluginAutomation && c->automation_playback()) {
299                                 bool valid;
300
301                                 const float val = c->list()->rt_safe_eval (now, valid);                         
302
303                                 if (valid) {
304                                         c->set_value(val);
305                                 }
306
307                         } 
308                 }
309         }
310
311         for (vector<boost::shared_ptr<Plugin> >::iterator i = _plugins.begin(); i != _plugins.end(); ++i) {
312                 (*i)->connect_and_run (bufs, in_index, out_index, nframes, offset);
313         }
314
315         /* leave remaining channel buffers alone */
316 }
317
318 void
319 PluginInsert::silence (nframes_t nframes, nframes_t offset)
320 {
321         uint32_t in_index = 0;
322         uint32_t out_index = 0;
323
324         if (active()) {
325                 for (vector<boost::shared_ptr<Plugin> >::iterator i = _plugins.begin(); i != _plugins.end(); ++i) {
326                         (*i)->connect_and_run (_session.get_silent_buffers ((*i)->get_info()->n_inputs), in_index, out_index, nframes, offset);
327                 }
328         }
329 }
330         
331 void
332 PluginInsert::run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset)
333 {
334         if (active()) {
335
336                 if (_session.transport_rolling()) {
337                         automation_run (bufs, nframes, offset);
338                 } else {
339                         connect_and_run (bufs, nframes, offset, false);
340                 }
341         } else {
342
343                 /* FIXME: type, audio only */
344
345                 uint32_t in = _plugins[0]->get_info()->n_inputs.n_audio();
346                 uint32_t out = _plugins[0]->get_info()->n_outputs.n_audio();
347
348                 if (out > in) {
349
350                         /* not active, but something has make up for any channel count increase */
351                         
352                         for (uint32_t n = out - in; n < out; ++n) {
353                                 memcpy (bufs.get_audio(n).data(nframes, offset), bufs.get_audio(in - 1).data(nframes, offset), sizeof (Sample) * nframes);
354                         }
355                 }
356
357                 bufs.count().set_audio(out);
358         }
359 }
360
361 void
362 PluginInsert::set_parameter (Parameter param, float val)
363 {
364         if (param.type() != PluginAutomation)
365                 return;
366
367         /* the others will be set from the event triggered by this */
368
369         _plugins[0]->set_parameter (param.id(), val);
370         
371         boost::shared_ptr<Evoral::Control> c = data().control (param);
372         if (c)
373                 c->set_value(val);
374
375         _session.set_dirty();
376 }
377
378 float
379 PluginInsert::get_parameter (Parameter param)
380 {
381         if (param.type() != PluginAutomation)
382                 return 0.0;
383         else
384                 return
385                 _plugins[0]->get_parameter (param.id());
386 }
387
388 void
389 PluginInsert::automation_run (BufferSet& bufs, nframes_t nframes, nframes_t offset)
390 {
391         ControlEvent next_event (0, 0.0f);
392         nframes_t now = _session.transport_frame ();
393         nframes_t end = now + nframes;
394
395         Glib::Mutex::Lock lm (data().control_lock(), Glib::TRY_LOCK);
396
397         if (!lm.locked()) {
398                 connect_and_run (bufs, nframes, offset, false);
399                 return;
400         }
401         
402         if (!data().find_next_event (now, end, next_event)) {
403                 
404                 /* no events have a time within the relevant range */
405                 
406                 connect_and_run (bufs, nframes, offset, true, now);
407                 return;
408         }
409         
410         while (nframes) {
411
412                 nframes_t cnt = min (((nframes_t) ceil (next_event.when) - now), nframes);
413   
414                 connect_and_run (bufs, cnt, offset, true, now);
415                 
416                 nframes -= cnt;
417                 offset += cnt;
418                 now += cnt;
419
420                 if (!data().find_next_event (now, end, next_event)) {
421                         break;
422                 }
423         }
424   
425         /* cleanup anything that is left to do */
426   
427         if (nframes) {
428                 connect_and_run (bufs, nframes, offset, true, now);
429         }
430 }       
431
432 float
433 PluginInsert::default_parameter_value (const Evoral::Parameter& param)
434 {
435         if (param.type() != PluginAutomation)
436                 return 1.0;
437
438         if (_plugins.empty()) {
439                 fatal << _("programming error: ") << X_("PluginInsert::default_parameter_value() called with no plugin")
440                       << endmsg;
441                 /*NOTREACHED*/
442         }
443
444         return _plugins[0]->default_value (param.id());
445 }
446
447 boost::shared_ptr<Plugin>
448 PluginInsert::plugin_factory (boost::shared_ptr<Plugin> other)
449 {
450         boost::shared_ptr<LadspaPlugin> lp;
451 #ifdef HAVE_SLV2
452         boost::shared_ptr<LV2Plugin> lv2p;
453 #endif
454 #ifdef VST_SUPPORT
455         boost::shared_ptr<VSTPlugin> vp;
456 #endif
457 #ifdef HAVE_AUDIOUNITS
458         boost::shared_ptr<AUPlugin> ap;
459 #endif
460
461         if ((lp = boost::dynamic_pointer_cast<LadspaPlugin> (other)) != 0) {
462                 return boost::shared_ptr<Plugin> (new LadspaPlugin (*lp));
463 #ifdef HAVE_SLV2
464         } else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin> (other)) != 0) {
465                 return boost::shared_ptr<Plugin> (new LV2Plugin (*lv2p));
466 #endif
467 #ifdef VST_SUPPORT
468         } else if ((vp = boost::dynamic_pointer_cast<VSTPlugin> (other)) != 0) {
469                 return boost::shared_ptr<Plugin> (new VSTPlugin (*vp));
470 #endif
471 #ifdef HAVE_AUDIOUNITS
472         } else if ((ap = boost::dynamic_pointer_cast<AUPlugin> (other)) != 0) {
473                 return boost::shared_ptr<Plugin> (new AUPlugin (*ap));
474 #endif
475         }
476
477         fatal << string_compose (_("programming error: %1"),
478                           X_("unknown plugin type in PluginInsert::plugin_factory"))
479               << endmsg;
480         /*NOTREACHED*/
481         return boost::shared_ptr<Plugin> ((Plugin*) 0);
482 }
483
484 bool
485 PluginInsert::configure_io (ChanCount in, ChanCount out)
486 {
487         if (set_count (count_for_configuration (in, out)) < 0) {
488                 return false;
489         }
490
491         /* if we're running replicated plugins, each plugin has
492            the same i/o configuration and we may need to announce how many
493            output streams there are.
494
495            if we running a single plugin, we need to configure it.
496         */
497
498         if (_plugins.front()->configure_io (in, out) < 0) {
499                 return false;
500         }
501
502         return Processor::configure_io (in, out);
503 }
504
505 bool
506 PluginInsert::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
507 {
508         if (_plugins.front()->reconfigurable_io()) {
509                 /* plugin has flexible I/O, so delegate to it */
510                 return _plugins.front()->can_support_io_configuration (in, out);
511         }
512
513         ChanCount outputs = _plugins[0]->get_info()->n_outputs;
514         ChanCount inputs = _plugins[0]->get_info()->n_inputs;
515
516         if ((inputs.n_total() == 0)
517                         || (inputs.n_total() == 1 && outputs == inputs)
518                         || (inputs.n_total() == 1 && outputs == inputs
519                                 && ((inputs.n_audio() == 0 && in.n_audio() == 0)
520                                         || (inputs.n_midi() == 0 && in.n_midi() == 0)))
521                         || (inputs == in)) {
522                 out = outputs;
523                 return true;
524         }
525
526         bool can_replicate = true;
527
528         /* if number of inputs is a factor of the requested input
529            configuration for every type, we can replicate.
530         */
531         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
532                 if (inputs.get(*t) >= in.get(*t) || (inputs.get(*t) % in.get(*t) != 0)) {
533                         can_replicate = false;
534                         break;
535                 }
536         }
537
538         if (!can_replicate || (in.n_total() % inputs.n_total() != 0)) {
539                 return false;
540         }
541
542         if (inputs.n_total() == 0) {
543                 /* instrument plugin, always legal, but throws away any existing streams */
544                 out = outputs;
545         } else if (inputs.n_total() == 1 && outputs == inputs
546                         && ((inputs.n_audio() == 0 && in.n_audio() == 0)
547                             || (inputs.n_midi() == 0 && in.n_midi() == 0))) {
548                 /* mono, single-typed plugin, replicate as needed to match in */
549                 out = in;
550         } else if (inputs == in) {
551                 /* exact match */
552                 out = outputs;
553         } else {
554                 /* replicate - note that we've already verified that
555                    the replication count is constant across all data types.
556                 */
557                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
558                         out.set (*t, outputs.get(*t) * (in.get(*t) / inputs.get(*t)));
559                 }
560         }
561                 
562         return true;
563 }
564
565 /* Number of plugin instances required to support a given channel configuration.
566  * (private helper)
567  */
568 int32_t
569 PluginInsert::count_for_configuration (ChanCount in, ChanCount out) const
570 {
571         if (_plugins.front()->reconfigurable_io()) {
572                 /* plugin has flexible I/O, so the answer is always 1 */
573                 /* this could change if we ever decide to replicate AU's */
574                 return 1;
575         }
576
577         // FIXME: take 'out' into consideration
578         
579         ChanCount outputs = _plugins[0]->get_info()->n_outputs;
580         ChanCount inputs = _plugins[0]->get_info()->n_inputs;
581
582         if (inputs.n_total() == 0) {
583                 /* instrument plugin, always legal, but throws away any existing streams */
584                 return 1;
585         }
586
587         if (inputs.n_total() == 1 && outputs == inputs
588                         && ((inputs.n_audio() == 0 && in.n_audio() == 0)
589                                 || (inputs.n_midi() == 0 && in.n_midi() == 0))) {
590                 /* mono plugin, replicate as needed to match in */
591                 return in.n_total();
592         }
593
594         if (inputs == in) {
595                 /* exact match */
596                 return 1;
597         }
598
599         // assumes in is valid, so we must be replicating
600         if (inputs.n_total() < in.n_total()
601                         && (in.n_total() % inputs.n_total() == 0)) {
602
603                 return in.n_total() / inputs.n_total();
604         }
605
606         /* err... */
607         return 0;
608 }
609
610 XMLNode&
611 PluginInsert::get_state(void)
612 {
613         return state (true);
614 }
615
616 XMLNode&
617 PluginInsert::state (bool full)
618 {
619         XMLNode& node = Processor::state (full);
620
621         node.add_property ("type", _plugins[0]->state_node_name());
622         node.add_property("unique-id", _plugins[0]->unique_id());
623         node.add_property("count", string_compose("%1", _plugins.size()));
624         node.add_child_nocopy (_plugins[0]->get_state());
625
626         /* add port automation state */
627         XMLNode *autonode = new XMLNode(port_automation_node_name);
628         set<Parameter> automatable = _plugins[0]->automatable();
629         
630         for (set<Parameter>::iterator x = automatable.begin(); x != automatable.end(); ++x) {
631                 
632                 /*XMLNode* child = new XMLNode("port");
633                 snprintf(buf, sizeof(buf), "%" PRIu32, *x);
634                 child->add_property("number", string(buf));
635                 
636                 child->add_child_nocopy (automation_list (*x).state (full));
637                 autonode->add_child_nocopy (*child);
638                 */
639                 autonode->add_child_nocopy (((AutomationList*)data().control(*x)->list().get())->state (full));
640         }
641
642         node.add_child_nocopy (*autonode);
643         
644         return node;
645 }
646
647 int
648 PluginInsert::set_state(const XMLNode& node)
649 {
650         XMLNodeList nlist = node.children();
651         XMLNodeIterator niter;
652         XMLPropertyList plist;
653         const XMLProperty *prop;
654         ARDOUR::PluginType type;
655
656         if ((prop = node.property ("type")) == 0) {
657                 error << _("XML node describing insert is missing the `type' field") << endmsg;
658                 return -1;
659         }
660
661         if (prop->value() == X_("ladspa") || prop->value() == X_("Ladspa")) { /* handle old school sessions */
662                 type = ARDOUR::LADSPA;
663         } else if (prop->value() == X_("lv2")) {
664                 type = ARDOUR::LV2;
665         } else if (prop->value() == X_("vst")) {
666                 type = ARDOUR::VST;
667         } else {
668                 error << string_compose (_("unknown plugin type %1 in plugin insert state"),
669                                   prop->value())
670                       << endmsg;
671                 return -1;
672         }
673         
674         prop = node.property ("unique-id");
675         if (prop == 0) {
676                 error << _("Plugin has no unique ID field") << endmsg;
677                 return -1;
678         }
679
680         boost::shared_ptr<Plugin> plugin;
681         
682         plugin = find_plugin (_session, prop->value(), type);   
683
684         if (plugin == 0) {
685                 error << string_compose(_("Found a reference to a plugin (\"%1\") that is unknown.\n"
686                                    "Perhaps it was removed or moved since it was last used."), prop->value()) 
687                       << endmsg;
688                 return -1;
689         }
690
691         uint32_t count = 1;
692
693         if ((prop = node.property ("count")) != 0) {
694                 sscanf (prop->value().c_str(), "%u", &count);
695         }
696
697         if (_plugins.size() != count) {
698                 
699                 _plugins.push_back (plugin);
700                 
701                 for (uint32_t n=1; n < count; ++n) {
702                         _plugins.push_back (plugin_factory (plugin));
703                 }
704         }
705         
706         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
707                 if ((*niter)->name() == plugin->state_node_name()) {
708                         for (vector<boost::shared_ptr<Plugin> >::iterator i = _plugins.begin(); i != _plugins.end(); ++i) {
709                                 (*i)->set_state (**niter);
710                         }
711                         break;
712                 }
713         } 
714
715         const XMLNode* insert_node = &node;
716
717         // legacy sessions: search for child IOProcessor node
718         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
719                 if ((*niter)->name() == "IOProcessor") {
720                         insert_node = *niter;
721                         break;
722                 }
723         }
724         
725         Processor::set_state (*insert_node);
726
727         /* look for port automation node */
728         
729         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
730
731                 if ((*niter)->name() != port_automation_node_name) {
732                         continue;
733                 }
734
735                 XMLNodeList cnodes;
736                 XMLProperty *cprop;
737                 XMLNodeConstIterator iter;
738                 XMLNode *child;
739                 const char *port;
740                 uint32_t port_id;
741                 
742                 cnodes = (*niter)->children ("port");
743                 
744                 for(iter = cnodes.begin(); iter != cnodes.end(); ++iter){
745                         
746                         child = *iter;
747                         
748                         if ((cprop = child->property("number")) != 0) {
749                                 port = cprop->value().c_str();
750                         } else {
751                                 warning << _("PluginInsert: Auto: no ladspa port number") << endmsg;
752                                 continue;
753                         }
754                         
755                         sscanf (port, "%" PRIu32, &port_id);
756                         
757                         if (port_id >= _plugins[0]->parameter_count()) {
758                                 warning << _("PluginInsert: Auto: port id out of range") << endmsg;
759                                 continue;
760                         }
761
762                         boost::shared_ptr<AutomationControl> c = boost::dynamic_pointer_cast<AutomationControl>(
763                                         data().control(Parameter(PluginAutomation, port_id), true));
764
765                         if (!child->children().empty()) {
766                                 c->alist()->set_state (*child->children().front());
767                         } else {
768                                 if ((cprop = child->property("auto")) != 0) {
769                                         
770                                         /* old school */
771
772                                         int x;
773                                         sscanf (cprop->value().c_str(), "0x%x", &x);
774                                         c->alist()->set_automation_state (AutoState (x));
775
776                                 } else {
777                                         
778                                         /* missing */
779                                         
780                                         c->alist()->set_automation_state (Off);
781                                 }
782                         }
783
784                 }
785
786                 /* done */
787
788                 break;
789         } 
790
791         if (niter == nlist.end()) {
792                 warning << string_compose(_("XML node describing a port automation is missing the `%1' information"), port_automation_node_name) << endmsg;
793         }
794         
795         // The name of the PluginInsert comes from the plugin, nothing else
796         _name = plugin->get_info()->name;
797         
798         return 0;
799 }
800
801 string
802 PluginInsert::describe_parameter (Parameter param)
803 {
804         if (param.type() != PluginAutomation)
805                 return Automatable::describe_parameter(param);
806
807         return _plugins[0]->describe_parameter (param);
808 }
809
810 ARDOUR::nframes_t 
811 PluginInsert::signal_latency() const
812 {
813         if (_user_latency) {
814                 return _user_latency;
815         }
816
817         return _plugins[0]->signal_latency ();
818 }
819
820 ARDOUR::PluginType
821 PluginInsert::type ()
822 {
823         boost::shared_ptr<LadspaPlugin> lp;
824 #ifdef VST_SUPPORT
825         boost::shared_ptr<VSTPlugin> vp;
826 #endif
827 #ifdef HAVE_AUDIOUNITS
828         boost::shared_ptr<AUPlugin> ap;
829 #endif
830         
831         PluginPtr other = plugin ();
832
833         if ((lp = boost::dynamic_pointer_cast<LadspaPlugin> (other)) != 0) {
834                 return ARDOUR::LADSPA;
835 #ifdef VST_SUPPORT
836         } else if ((vp = boost::dynamic_pointer_cast<VSTPlugin> (other)) != 0) {
837                 return ARDOUR::VST;
838 #endif
839 #ifdef HAVE_AUDIOUNITS
840         } else if ((ap = boost::dynamic_pointer_cast<AUPlugin> (other)) != 0) {
841                 return ARDOUR::AudioUnit;
842 #endif
843         } else {
844                 /* NOT REACHED */
845                 return (ARDOUR::PluginType) 0;
846         }
847 }
848
849 PluginInsert::PluginControl::PluginControl (PluginInsert& p, boost::shared_ptr<AutomationList> list)
850         : AutomationControl (p.session(), list->parameter(), list, p.describe_parameter(list->parameter()))
851         , _plugin (p)
852         , _list (list)
853 {
854         Plugin::ParameterDescriptor desc;
855         p.plugin(0)->get_parameter_descriptor (list->parameter().id(), desc);
856         _logarithmic = desc.logarithmic;
857         _toggled = desc.toggled;
858 }
859          
860 void
861 PluginInsert::PluginControl::set_value (float val)
862 {
863         /* FIXME: probably should be taking out some lock here.. */
864         
865         if (_toggled) {
866                 if (val > 0.5) {
867                         val = 1.0;
868                 } else {
869                         val = 0.0;
870                 }
871         } else {
872                         
873                 /*const float range = _list->get_max_y() - _list->get_min_y();
874                 const float lower = _list->get_min_y();
875
876                 if (!_logarithmic) {
877                         val = lower + (range * val);
878                 } else {
879                         float log_lower = 0.0f;
880                         if (lower > 0.0f) {
881                                 log_lower = log(lower);
882                         }
883
884                         val = exp(log_lower + log(range) * val);
885                 }*/
886
887         }
888
889         for (vector<boost::shared_ptr<Plugin> >::iterator i = _plugin._plugins.begin();
890                         i != _plugin._plugins.end(); ++i) {
891                 (*i)->set_parameter (_list->parameter().id(), val);
892         }
893
894         AutomationControl::set_value(val);
895 }
896
897 float
898 PluginInsert::PluginControl::get_value (void) const
899 {
900         /* FIXME: probably should be taking out some lock here.. */
901         
902         float val = _plugin.get_parameter (_list->parameter());
903
904         return val;
905
906         /*if (_toggled) {
907                 
908                 return val;
909                 
910         } else {
911                 
912                 if (_logarithmic) {
913                         val = log(val);
914                 }
915                 
916                 return ((val - lower) / range);
917         }*/
918 }
919