Cleanup to snap handling; fixes #2688
[ardour.git] / gtk2_ardour / generic_pluginui.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 <climits>
21 #include <cerrno>
22 #include <cmath>
23 #include <string>
24
25 #include "pbd/stl_delete.h"
26 #include "pbd/xml++.h"
27 #include "pbd/failed_constructor.h"
28
29 #include <gtkmm2ext/click_box.h>
30 #include <gtkmm2ext/fastmeter.h>
31 #include <gtkmm2ext/barcontroller.h>
32 #include <gtkmm2ext/utils.h>
33 #include <gtkmm2ext/doi.h>
34 #include <gtkmm2ext/slider_controller.h>
35
36 #include "midi++/manager.h"
37
38 #include "ardour/plugin.h"
39 #include "ardour/plugin_insert.h"
40 #include "ardour/ladspa_plugin.h"
41 #ifdef HAVE_SLV2
42 #include "ardour/lv2_plugin.h"
43 #endif
44
45 #include <lrdf.h>
46
47 #include "ardour_ui.h"
48 #include "prompter.h"
49 #include "plugin_ui.h"
50 #include "utils.h"
51 #include "gui_thread.h"
52 #include "automation_controller.h"
53
54 #include "i18n.h"
55
56 using namespace std;
57 using namespace ARDOUR;
58 using namespace PBD;
59 using namespace Gtkmm2ext;
60 using namespace Gtk;
61 using namespace sigc;
62
63 GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrollable)
64         : PlugUIBase (pi),
65           button_table (initial_button_rows, initial_button_cols),
66           output_table (initial_output_rows, initial_output_cols),
67           hAdjustment(0.0, 0.0, 0.0),
68           vAdjustment(0.0, 0.0, 0.0),
69           scroller_view(hAdjustment, vAdjustment),
70           automation_menu (0),
71           is_scrollable(scrollable)
72 {
73         set_name ("PluginEditor");
74         set_border_width (10);
75         //set_homogeneous (false);
76
77         pack_start(main_contents);
78         settings_box.set_homogeneous (false);
79
80         HBox* constraint_hbox = manage (new HBox);
81         HBox* smaller_hbox = manage (new HBox);
82         Label* combo_label = manage (new Label (_("<span size=\"large\">Presets</span>")));
83         combo_label->set_use_markup (true);
84
85         latency_button.add (latency_label);
86         latency_button.signal_clicked().connect (mem_fun (*this, &PlugUIBase::latency_button_clicked));
87         set_latency_label ();
88         
89         smaller_hbox->pack_start (latency_button, false, false, 10);
90         smaller_hbox->pack_start (preset_combo, false, false);
91         smaller_hbox->pack_start (save_button, false, false);
92         smaller_hbox->pack_start (bypass_button, false, true);
93
94         constraint_hbox->set_spacing (5);
95         constraint_hbox->set_homogeneous (false);
96         
97         VBox* v1_box = manage (new VBox);
98         VBox* v2_box = manage (new VBox);
99         pack_end(plugin_analysis_expander);
100
101         v1_box->pack_start (*smaller_hbox, false, true);
102         v2_box->pack_start (focus_button, false, true);
103
104         main_contents.pack_start (settings_box, false, false);
105
106         constraint_hbox->pack_end (*v2_box, false, false);
107         constraint_hbox->pack_end (*v1_box, false, false);
108
109         main_contents.pack_start (*constraint_hbox, false, false);
110         
111         if ( is_scrollable ) {
112                 scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
113                 scroller.set_name ("PluginEditor");
114                 scroller_view.set_name("PluginEditor");
115                 scroller_view.add (hpacker);
116                 scroller.add (scroller_view);
117                 
118                 main_contents.pack_start (scroller, true, true);
119
120         }
121         else {
122                 main_contents.pack_start (hpacker, false, false);
123         }
124
125         pi->ActiveChanged.connect (bind(mem_fun(*this, &GenericPluginUI::processor_active_changed),
126                                         boost::weak_ptr<Processor>(pi)));
127         
128         bypass_button.set_active (!pi->active());
129
130         build ();
131 }
132
133 GenericPluginUI::~GenericPluginUI ()
134 {
135         if (output_controls.size() > 0) {
136                 screen_update_connection.disconnect();
137         }
138 }
139
140 void
141 GenericPluginUI::build ()
142
143 {
144         guint32 i = 0;
145         guint32 x = 0;
146         Frame* frame;
147         Frame* bt_frame;
148         VBox* box;
149         int output_row, output_col;
150         int button_row, button_col;
151         int output_rows, output_cols;
152         int button_rows, button_cols;
153
154         prefheight = 30;
155         hpacker.set_spacing (10);
156
157         output_rows = initial_output_rows;
158         output_cols = initial_output_cols;
159         button_rows = initial_button_rows;
160         button_cols = initial_button_cols;
161         output_row = 0;
162         button_row = 0;
163         output_col = 0;
164         button_col = 0;
165
166         button_table.set_homogeneous (false);
167         button_table.set_row_spacings (2);
168         button_table.set_col_spacings (2);
169         output_table.set_homogeneous (true);
170         output_table.set_row_spacings (2);
171         output_table.set_col_spacings (2);
172         button_table.set_border_width (5);
173         output_table.set_border_width (5);
174
175         hpacker.set_border_width (10);
176
177         bt_frame = manage (new Frame);
178         bt_frame->set_name ("BaseFrame");
179         bt_frame->add (button_table);
180         hpacker.pack_start(*bt_frame, true, true);
181
182         box = manage (new VBox);
183         box->set_border_width (5);
184         box->set_spacing (1);
185
186         frame = manage (new Frame);
187         frame->set_name ("BaseFrame");
188         frame->set_label (_("Controls"));
189         frame->add (*box);
190         hpacker.pack_start(*frame, true, true);
191
192         /* find all ports. build control elements for all appropriate control ports */
193
194         for (i = 0; i < plugin->parameter_count(); ++i) {
195
196                 if (plugin->parameter_is_control (i)) {
197                         
198                         /* Don't show latency control ports */
199
200                         if (plugin->describe_parameter (Evoral::Parameter(PluginAutomation, 0, i)) == X_("latency")) {
201                                 continue;
202                         }
203
204                         ControlUI* cui;
205         
206                         /* if we are scrollable, just use one long column */
207
208                         if (!is_scrollable) {
209                                 if (x++ > 20){
210                                         frame = manage (new Frame);
211                                         frame->set_name ("BaseFrame");
212                                         box = manage (new VBox);
213                                         
214                                         box->set_border_width (5);
215                                         box->set_spacing (1);
216
217                                         frame->add (*box);
218                                         hpacker.pack_start(*frame,true,true);
219
220                                         x = 1;
221                                 }
222                         }
223
224                         boost::shared_ptr<ARDOUR::AutomationControl> c
225                                 = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(
226                                         insert->data().control(Evoral::Parameter(PluginAutomation, 0, i)));
227
228                         if ((cui = build_control_ui (i, c)) == 0) {
229                                 error << string_compose(_("Plugin Editor: could not build control element for port %1"), i) << endmsg;
230                                 continue;
231                         }
232                                 
233                         if (cui->controller || cui->clickbox || cui->combo) {
234
235                                 box->pack_start (*cui, false, false);
236
237                         } else if (cui->button) {
238
239                                 if (button_row == button_rows) {
240                                         button_row = 0;
241                                         if (++button_col == button_cols) {
242                                                 button_cols += 2;
243                                                 button_table.resize (button_rows, button_cols);
244                                         }
245                                 }
246
247                                 button_table.attach (*cui, button_col, button_col + 1, button_row, button_row+1, 
248                                                      FILL|EXPAND, FILL);
249                                 button_row++;
250
251                         } else if (cui->display) {
252
253                                 output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1, 
254                                                      FILL|EXPAND, FILL);
255                                 
256                                 // TODO: The meters should be divided into multiple rows 
257                                 
258                                 if (++output_col == output_cols) {
259                                         output_cols ++;
260                                         output_table.resize (output_rows, output_cols);
261                                 }
262                                 
263                                 /* old code, which divides meters into
264                                  * columns first, rows later. New code divides into one row
265                                  
266                                 if (output_row == output_rows) {
267                                         output_row = 0;
268                                         if (++output_col == output_cols) {
269                                                 output_cols += 2;
270                                                 output_table.resize (output_rows, output_cols);
271                                         }
272                                 }
273                                 
274                                 output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1, 
275                                                      FILL|EXPAND, FILL);
276  
277                                 output_row++;
278                                 */
279                         }
280                                 
281                         /* HACK: ideally the preferred height would be queried from
282                            the complete hpacker, but I can't seem to get that
283                            information in time, so this is an estimation 
284                         */
285
286                         prefheight += 30;
287
288                 } 
289         }
290
291         if (box->children().empty()) {
292                 hpacker.remove (*frame);
293         }
294
295         if (button_table.children().empty()) {
296                 hpacker.remove (*bt_frame);
297         }
298
299         if (!output_table.children().empty()) {
300                 frame = manage (new Frame);
301                 frame->set_name ("BaseFrame");
302                 frame->add (output_table);
303                 hpacker.pack_end (*frame, true, true);
304         }
305
306         output_update ();
307
308         output_table.show_all ();
309         button_table.show_all ();
310 }
311
312 GenericPluginUI::ControlUI::ControlUI ()
313         : automate_button (X_("")) // force creation of a label 
314 {
315         automate_button.set_name ("PluginAutomateButton");
316         ARDOUR_UI::instance()->tooltips().set_tip (automate_button, _("Automation control"));
317
318         /* XXX translators: use a string here that will be at least as long
319            as the longest automation label (see ::automation_state_changed()
320            below). be sure to include a descender.
321         */
322
323         set_size_request_to_display_given_text (*automate_button.get_child(), _("Mgnual"), 5, 5);
324
325         ignore_change = 0;
326         display = 0;
327         button = 0;
328         clickbox = 0;
329         meterinfo = 0;
330 }
331
332 GenericPluginUI::ControlUI::~ControlUI() 
333 {
334         if (meterinfo) {
335                 delete meterinfo->meter;
336                 delete meterinfo;
337         }
338 }
339
340 void
341 GenericPluginUI::automation_state_changed (ControlUI* cui)
342 {
343         /* update button label */
344
345         // don't lock to avoid deadlock because we're triggered by
346         // AutomationControl::Changed() while the automation lock is taken
347         switch (insert->get_parameter_automation_state (cui->parameter(), false)
348                         & (Off|Play|Touch|Write)) {
349         case Off:
350                 cui->automate_button.set_label (_("Manual"));
351                 break;
352         case Play:
353                 cui->automate_button.set_label (_("Play"));
354                 break;
355         case Write:
356                 cui->automate_button.set_label (_("Write"));
357                 break;
358         case Touch:
359                 cui->automate_button.set_label (_("Touch"));
360                 break;
361         default:
362                 cui->automate_button.set_label (_("???"));
363                 break;
364         }
365 }
366
367
368 static void integer_printer (char buf[32], Adjustment &adj, void *arg)
369 {
370         snprintf (buf, 32, "%.0f", adj.get_value());
371 }
372
373 void
374 GenericPluginUI::print_parameter (char *buf, uint32_t len, uint32_t param)
375 {
376         plugin->print_parameter (param, buf, len);
377 }
378
379 GenericPluginUI::ControlUI*
380 GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr<AutomationControl> mcontrol)
381 {
382         ControlUI* control_ui = NULL;
383         if (!mcontrol)
384                 return control_ui;
385
386         Plugin::ParameterDescriptor desc;
387
388         plugin->get_parameter_descriptor (port_index, desc);
389
390         control_ui = manage (new ControlUI ());
391         control_ui->combo = 0;
392         control_ui->combo_map = 0;
393         control_ui->control = mcontrol;
394         control_ui->update_pending = false;
395         control_ui->label.set_text (desc.label);
396         control_ui->label.set_alignment (0.0, 0.5);
397         control_ui->label.set_name ("PluginParameterLabel");
398
399         control_ui->set_spacing (5);
400
401         Gtk::Requisition req (control_ui->automate_button.size_request());
402
403         if (plugin->parameter_is_input (port_index)) {
404
405                 boost::shared_ptr<LadspaPlugin> lp;
406 #ifdef HAVE_SLV2
407                 boost::shared_ptr<LV2Plugin> lv2p;
408 #endif
409                 if ((lp = boost::dynamic_pointer_cast<LadspaPlugin>(plugin)) != 0) {
410                         
411                         // FIXME: not all plugins have a numeric unique ID
412                         uint32_t id = atol (lp->unique_id().c_str());
413                         lrdf_defaults* defaults = lrdf_get_scale_values(id, port_index);
414                         
415                         if (defaults && defaults->count > 0)    {
416                                 
417                                 control_ui->combo = new Gtk::ComboBoxText;
418                                 //control_ui->combo->set_value_in_list(true, false);
419                                 set_popdown_strings (*control_ui->combo, setup_scale_values(port_index, control_ui));
420                                 control_ui->combo->signal_changed().connect (bind (mem_fun(*this, &GenericPluginUI::control_combo_changed), control_ui));
421                                 mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::parameter_changed), control_ui));
422                                 control_ui->pack_start(control_ui->label, true, true);
423                                 control_ui->pack_start(*control_ui->combo, false, true);
424                                 
425                                 update_control_display(control_ui);
426                                 
427                                 lrdf_free_setting_values(defaults);
428                                 return control_ui;
429                         }
430
431 #ifdef HAVE_SLV2
432                 } else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin>(plugin)) != 0) {
433
434                         SLV2Port port = lv2p->slv2_port(port_index);
435                         SLV2ScalePoints points = slv2_port_get_scale_points(lv2p->slv2_plugin(), port);
436
437                         if (points) {
438                                 control_ui->combo = new Gtk::ComboBoxText;
439                                 //control_ui->combo->set_value_in_list(true, false);
440                                 set_popdown_strings (*control_ui->combo, setup_scale_values(port_index, control_ui));
441                                 control_ui->combo->signal_changed().connect (bind (mem_fun(*this, &GenericPluginUI::control_combo_changed), control_ui));
442                                 mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::parameter_changed), control_ui));
443                                 control_ui->pack_start(control_ui->label, true, true);
444                                 control_ui->pack_start(*control_ui->combo, false, true);
445                                 
446                                 update_control_display(control_ui);
447                                 
448                                 slv2_scale_points_free(points);
449                                 return control_ui;
450                         }
451 #endif
452                 }
453                         
454                 if (desc.toggled) {
455
456                         /* Build a button */
457                 
458                         control_ui->button = manage (new ToggleButton ());
459                         control_ui->button->set_name ("PluginEditorButton");
460                         control_ui->button->set_size_request (20, 20);
461
462                         control_ui->pack_start (control_ui->label, true, true);
463                         control_ui->pack_start (*control_ui->button, false, true);
464                         // control_ui->pack_start (control_ui->automate_button, false, false);
465
466                         control_ui->button->signal_clicked().connect (bind (mem_fun(*this, &GenericPluginUI::control_port_toggled), control_ui));
467                         mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::toggle_parameter_changed), control_ui));
468                         
469                         if (plugin->get_parameter (port_index) > 0.5){
470                                 control_ui->button->set_active(true);
471                         }
472                         
473                         return control_ui;
474                 }
475
476                 /* create the controller */
477
478                 control_ui->controller = AutomationController::create(insert, mcontrol->parameter(), mcontrol);
479                 /* XXX this code is not right yet, because it doesn't handle
480                    the absence of bounds in any sensible fashion.
481                 */
482
483 //#if 0
484                 control_ui->controller->adjustment()->set_lower (desc.lower);
485                 control_ui->controller->adjustment()->set_upper (desc.upper);
486
487                 control_ui->logarithmic = false; // just disable it for now
488                 /*
489                 control_ui->logarithmic = desc.logarithmic;
490                 if (control_ui->logarithmic) {
491                         if (control_ui->controller->adjustment()->get_lower() == 0.0) {
492                                 control_ui->controller->adjustment()->set_lower (control_ui->controller->adjustment()->get_upper()/10000);
493                         }
494                         control_ui->controller->adjustment()->set_upper (log(control_ui->controller->adjustment()->get_upper()));
495                         control_ui->controller->adjustment()->set_lower (log(control_ui->controller->adjustment()->get_lower()));
496                 }*/
497                 
498         
499                 control_ui->controller->adjustment()->set_step_increment (desc.step);
500                 control_ui->controller->adjustment()->set_page_increment (desc.largestep);
501 //#endif
502
503                 if (desc.integer_step) {
504                         control_ui->clickbox = new ClickBox (control_ui->controller->adjustment(), "PluginUIClickBox");
505                         Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->clickbox, "g9999999", 2, 2);
506                         control_ui->clickbox->set_print_func (integer_printer, 0);
507                 } else {
508                         //sigc::slot<void,char*,uint32_t> pslot = sigc::bind (mem_fun(*this, &GenericPluginUI::print_parameter), (uint32_t) port_index);
509
510                         control_ui->controller->set_size_request (200, req.height);
511                         control_ui->controller->set_name (X_("PluginSlider"));
512                         control_ui->controller->set_style (BarController::LeftToRight);
513                         control_ui->controller->set_use_parent (true);
514
515                         control_ui->controller->StartGesture.connect (bind (mem_fun(*this, &GenericPluginUI::start_touch), control_ui));
516                         control_ui->controller->StopGesture.connect (bind (mem_fun(*this, &GenericPluginUI::stop_touch), control_ui));
517                         
518                 }
519
520                 if (control_ui->logarithmic) {
521                         control_ui->controller->adjustment()->set_value(log(plugin->get_parameter(port_index)));
522                 } else{
523                         control_ui->controller->adjustment()->set_value(plugin->get_parameter(port_index));
524                 }
525
526                 /* XXX memory leak: SliderController not destroyed by ControlUI
527                    destructor, and manage() reports object hierarchy
528                    ambiguity.
529                 */
530
531                 control_ui->pack_start (control_ui->label, true, true);
532                 if (desc.integer_step) {
533                         control_ui->pack_start (*control_ui->clickbox, false, false);
534                 } else {
535                         control_ui->pack_start (*control_ui->controller, false, false);
536                 }
537
538                 control_ui->pack_start (control_ui->automate_button, false, false);
539                 control_ui->automate_button.signal_clicked().connect (bind (mem_fun(*this, &GenericPluginUI::astate_clicked), control_ui, (uint32_t) port_index));
540
541                 automation_state_changed (control_ui);
542
543                 mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::parameter_changed), control_ui));
544                 mcontrol->alist()->automation_state_changed.connect 
545                         (bind (mem_fun(*this, &GenericPluginUI::automation_state_changed), control_ui));
546
547         } else if (plugin->parameter_is_output (port_index)) {
548
549                 control_ui->display = manage (new EventBox);
550                 control_ui->display->set_name ("ParameterValueDisplay");
551
552                 control_ui->display_label = manage (new Label);
553
554                 control_ui->display_label->set_name ("ParameterValueDisplay");
555
556                 control_ui->display->add (*control_ui->display_label);
557                 Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->display, "-99,99", 2, 2);
558
559                 control_ui->display->show_all ();
560
561                 /* set up a meter */
562                 /* TODO: only make a meter if the port is Hinted for it */
563
564                 MeterInfo * info = new MeterInfo(port_index);
565                 control_ui->meterinfo = info;
566                 
567                 info->meter = new FastMeter (5, 5, FastMeter::Vertical);
568
569                 info->min_unbound = desc.min_unbound;
570                 info->max_unbound = desc.max_unbound;
571
572                 info->min = desc.lower;
573                 info->max = desc.upper;
574
575                 control_ui->vbox = manage (new VBox);
576                 control_ui->hbox = manage (new HBox);
577                 
578                 control_ui->label.set_angle(90);
579                 control_ui->hbox->pack_start (control_ui->label, false, false);
580                 control_ui->hbox->pack_start (*info->meter, false, false);
581
582                 control_ui->vbox->pack_start (*control_ui->hbox, false, false);
583                 
584                 control_ui->vbox->pack_start (*control_ui->display, false, false);
585
586                 control_ui->pack_start (*control_ui->vbox);
587
588                 control_ui->meterinfo->meter->show_all();
589                 control_ui->meterinfo->packed = true;
590                 
591                 output_controls.push_back (control_ui);
592         }
593         
594         mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::parameter_changed), control_ui));
595         
596         return control_ui;
597 }
598
599 void
600 GenericPluginUI::start_touch (GenericPluginUI::ControlUI* cui)
601 {
602         cui->control->start_touch ();
603 }
604
605 void
606 GenericPluginUI::stop_touch (GenericPluginUI::ControlUI* cui)
607 {
608         cui->control->stop_touch ();
609 }
610
611 void
612 GenericPluginUI::astate_clicked (ControlUI* cui, uint32_t port)
613 {
614         using namespace Menu_Helpers;
615
616         if (automation_menu == 0) {
617                 automation_menu = manage (new Menu);
618                 automation_menu->set_name ("ArdourContextMenu");
619         } 
620
621         MenuList& items (automation_menu->items());
622
623         items.clear ();
624         items.push_back (MenuElem (_("Manual"), 
625                                    bind (mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Off, cui)));
626         items.push_back (MenuElem (_("Play"),
627                                    bind (mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Play, cui)));
628         items.push_back (MenuElem (_("Write"),
629                                    bind (mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Write, cui)));
630         items.push_back (MenuElem (_("Touch"),
631                                    bind (mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Touch, cui)));
632
633         automation_menu->popup (1, gtk_get_current_event_time());
634 }
635
636 void
637 GenericPluginUI::set_automation_state (AutoState state, ControlUI* cui)
638 {
639         insert->set_parameter_automation_state (cui->parameter(), state);
640 }
641
642 void
643 GenericPluginUI::toggle_parameter_changed (ControlUI* cui)
644 {
645         float val = cui->control->get_value();
646         
647         if (!cui->ignore_change) {
648                 if (val > 0.5) {
649                         cui->button->set_active (true);
650                 } else {
651                         cui->button->set_active (false);
652                 }
653         }
654 }
655
656 void
657 GenericPluginUI::parameter_changed (ControlUI* cui)
658 {
659         if (!cui->update_pending) {
660                 cui->update_pending = true;
661                 Gtkmm2ext::UI::instance()->call_slot (bind (mem_fun(*this, &GenericPluginUI::update_control_display), cui));
662         }
663 }
664
665 void
666 GenericPluginUI::update_control_display (ControlUI* cui)        
667 {
668         /* XXX how do we handle logarithmic stuff here ? */
669         
670         cui->update_pending = false;
671
672         float val = cui->control->get_value();
673
674         cui->ignore_change++;
675
676         if (cui->combo) {
677                 std::map<string,float>::iterator it;
678                 for (it = cui->combo_map->begin(); it != cui->combo_map->end(); ++it) {
679                         if (it->second == val) {
680                                 cui->combo->set_active_text(it->first);
681                                 break;
682                         }
683                 }
684         } else if (cui->button) {
685
686                 if (val > 0.5) {
687                         cui->button->set_active (true);
688                 } else {
689                         cui->button->set_active (false);
690                 }
691         }
692
693         if( cui->controller ) {
694             cui->controller->display_effective_value();
695         }
696
697
698         /*} else {
699                 if (cui->logarithmic) {
700                         val = log(val);
701                 }
702                 if (val != cui->adjustment->get_value()) {
703                         cui->adjustment->set_value (val);
704                 }
705         }*/
706         cui->ignore_change--;
707 }
708
709 void
710 GenericPluginUI::control_port_toggled (ControlUI* cui)
711 {
712         cui->ignore_change++;
713         insert->automation_control (cui->parameter())->set_value (cui->button->get_active());
714         cui->ignore_change--;
715 }
716
717 void
718 GenericPluginUI::control_combo_changed (ControlUI* cui)
719 {
720         if (!cui->ignore_change) {
721                 string value = cui->combo->get_active_text();
722                 std::map<string,float> mapping = *cui->combo_map;
723                 insert->automation_control(cui->parameter())->set_value(mapping[value]);
724         }
725 }
726
727 void
728 GenericPluginUI::processor_active_changed (boost::weak_ptr<Processor> weak_processor)
729 {
730         ENSURE_GUI_THREAD(bind (mem_fun(*this, &GenericPluginUI::processor_active_changed), weak_processor));
731         
732         boost::shared_ptr<Processor> processor = weak_processor.lock();
733
734         bypass_button.set_active (!processor || !processor->active());
735 }
736
737 bool
738 GenericPluginUI::start_updating (GdkEventAny* ignored)
739 {
740         if (output_controls.size() > 0 ) {
741                 screen_update_connection.disconnect();
742                 screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect 
743                         (mem_fun(*this, &GenericPluginUI::output_update));
744         }
745         return false;
746 }
747
748 bool
749 GenericPluginUI::stop_updating (GdkEventAny* ignored)
750 {
751         if (output_controls.size() > 0 ) {
752                 screen_update_connection.disconnect();
753         }
754         return false;
755 }
756
757 void
758 GenericPluginUI::output_update ()
759 {
760         for (vector<ControlUI*>::iterator i = output_controls.begin(); i != output_controls.end(); ++i) {
761                 float val = plugin->get_parameter ((*i)->parameter().id());
762                 char buf[32];
763                 snprintf (buf, sizeof(buf), "%.2f", val);
764                 (*i)->display_label->set_text (buf);
765
766                 /* autoscaling for the meter */
767                 if ((*i)->meterinfo && (*i)->meterinfo->packed) {
768                         
769                         if (val < (*i)->meterinfo->min) {
770                                 if ((*i)->meterinfo->min_unbound)
771                                         (*i)->meterinfo->min = val;
772                                 else
773                                         val = (*i)->meterinfo->min;
774                         }
775
776                         if (val > (*i)->meterinfo->max) {
777                                 if ((*i)->meterinfo->max_unbound)
778                                         (*i)->meterinfo->max = val;
779                                 else
780                                         val = (*i)->meterinfo->max;
781                         }
782                         
783                         if ((*i)->meterinfo->max > (*i)->meterinfo->min ) {
784                                 float lval = (val - (*i)->meterinfo->min) / ((*i)->meterinfo->max - (*i)->meterinfo->min) ;
785                                 (*i)->meterinfo->meter->set (lval );
786                         }
787                 }
788         }
789 }
790
791 vector<string> 
792 GenericPluginUI::setup_scale_values(guint32 port_index, ControlUI* cui)
793 {
794         vector<string> enums;
795         boost::shared_ptr<LadspaPlugin> lp;
796 #ifdef HAVE_SLV2
797         boost::shared_ptr<LV2Plugin> lv2p;
798 #endif
799
800         if ((lp = boost::dynamic_pointer_cast<LadspaPlugin>(plugin)) != 0) {
801                 // all LADPSA plugins have a numeric unique ID
802                 uint32_t id = atol (lp->unique_id().c_str());
803
804                 cui->combo_map = new std::map<string, float>;
805                 lrdf_defaults* defaults = lrdf_get_scale_values(id, port_index);
806                 if (defaults)   {
807                         for (uint32_t i = 0; i < defaults->count; ++i) {
808                                 enums.push_back(defaults->items[i].label);
809                                 pair<string, float> newpair;
810                                 newpair.first = defaults->items[i].label;
811                                 newpair.second = defaults->items[i].value;
812                                 cui->combo_map->insert(newpair);
813                         }
814
815                         lrdf_free_setting_values(defaults);
816                 }
817
818 #ifdef HAVE_SLV2
819         } else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin>(plugin)) != 0) {
820
821                 SLV2Port port = lv2p->slv2_port(port_index);
822                 SLV2ScalePoints points = slv2_port_get_scale_points(lv2p->slv2_plugin(), port);
823                 cui->combo_map = new std::map<string, float>;
824         
825                 for (unsigned i=0; i < slv2_scale_points_size(points); ++i) {
826                         SLV2ScalePoint p = slv2_scale_points_get_at(points, i);
827                         SLV2Value label = slv2_scale_point_get_label(p);
828                         SLV2Value value = slv2_scale_point_get_value(p);
829                         if (label && (slv2_value_is_float(value) || slv2_value_is_int(value))) {
830                                 enums.push_back(slv2_value_as_string(label));
831                                 pair<string, float> newpair;
832                                 newpair.first = slv2_value_as_string(label);
833                                 newpair.second = slv2_value_as_float(value);
834                                 cui->combo_map->insert(newpair);
835                         }
836                 }
837
838                 slv2_scale_points_free(points);
839 #endif
840         }
841         
842
843         return enums;
844 }
845
846
847