Sshh.
[ardour.git] / gtk2_ardour / lv2_plugin_ui.cc
1 /*
2     Copyright (C) 2008-2012 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include "ardour/lv2_plugin.h"
21 #include "ardour/plugin_manager.h"
22 #include "ardour/processor.h"
23
24 #include "ardour_ui.h"
25 #include "gui_thread.h"
26 #include "lv2_plugin_ui.h"
27
28 #include "lv2_ui.h"
29
30 #include <lilv/lilv.h>
31 #include <suil/suil.h>
32
33 using namespace ARDOUR;
34 using namespace Gtk;
35 using namespace PBD;
36
37 #define NS_UI "http://lv2plug.in/ns/extensions/ui#"
38
39 static SuilHost* ui_host = NULL;
40
41 void
42 LV2PluginUI::write_from_ui(void*       controller,
43                            uint32_t    port_index,
44                            uint32_t    buffer_size,
45                            uint32_t    format,
46                            const void* buffer)
47 {
48         LV2PluginUI* me = (LV2PluginUI*)controller;
49         if (format == 0) {
50                 if (port_index >= me->_controllables.size()) {
51                         return;
52                 }
53
54                 boost::shared_ptr<AutomationControl> ac = me->_controllables[port_index];
55                 if (ac) {
56                         ac->set_value(*(float*)buffer);
57                 }
58         } else if (format == me->_lv2->atom_eventTransfer()) {
59                 me->_lv2->write_from_ui(port_index, format, buffer_size, (uint8_t*)buffer);
60         }
61 }
62
63 void
64 LV2PluginUI::write_to_ui(void*       controller,
65                          uint32_t    port_index,
66                          uint32_t    buffer_size,
67                          uint32_t    format,
68                          const void* buffer)
69 {
70         LV2PluginUI* me = (LV2PluginUI*)controller;
71         suil_instance_port_event((SuilInstance*)me->_inst,
72                                  port_index, buffer_size, format, buffer);
73 }
74
75 void
76 LV2PluginUI::update_timeout()
77 {
78         _lv2->emit_to_ui(this, &LV2PluginUI::write_to_ui);
79 }
80
81 void
82 LV2PluginUI::on_external_ui_closed(void* controller)
83 {
84         LV2PluginUI* me = (LV2PluginUI*)controller;
85         me->_screen_update_connection.disconnect();
86         me->_external_ui_ptr = NULL;
87 }
88
89 void
90 LV2PluginUI::parameter_changed(uint32_t port_index, float val)
91 {
92         PlugUIBase::parameter_changed(port_index, val);
93
94         if (val != _values[port_index]) {
95                 parameter_update(port_index, val);
96         }
97 }
98
99 void
100 LV2PluginUI::parameter_update(uint32_t port_index, float val)
101 {
102         if (!_inst) {
103                 return;
104         }
105
106         suil_instance_port_event((SuilInstance*)_inst, port_index, 4, 0, &val);
107         _values[port_index] = val;
108 }
109
110 bool
111 LV2PluginUI::start_updating(GdkEventAny*)
112 {
113         if (!_output_ports.empty()) {
114                 _screen_update_connection.disconnect();
115                 _screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect
116                         (sigc::mem_fun(*this, &LV2PluginUI::output_update));
117         }
118         return false;
119 }
120
121 bool
122 LV2PluginUI::stop_updating(GdkEventAny*)
123 {
124         //cout << "stop_updating" << endl;
125
126         if (!_output_ports.empty()) {
127                 _screen_update_connection.disconnect();
128         }
129         return false;
130 }
131
132 void
133 LV2PluginUI::output_update()
134 {
135         //cout << "output_update" << endl;
136         if (_external_ui_ptr) {
137                 LV2_EXTERNAL_UI_RUN(_external_ui_ptr);
138         }
139
140         /* FIXME only works with control output ports (which is all we support now anyway) */
141         uint32_t nports = _output_ports.size();
142         for (uint32_t i = 0; i < nports; ++i) {
143                 uint32_t index = _output_ports[i];
144                 parameter_changed(index, _lv2->get_parameter(index));
145         }
146
147 }
148
149 LV2PluginUI::LV2PluginUI(boost::shared_ptr<PluginInsert> pi,
150                          boost::shared_ptr<LV2Plugin>    lv2p)
151         : PlugUIBase(pi)
152         , _lv2(lv2p)
153         , _gui_widget(NULL)
154         , _values(NULL)
155         , _external_ui_ptr(NULL)
156         , _inst(NULL)
157 {
158 }
159
160 void
161 LV2PluginUI::lv2ui_instantiate(const std::string& title)
162 {
163         LV2_Feature** features;
164         LV2_Feature** features_src;
165         LV2_Feature** features_dst;
166         size_t        features_count;
167         bool          is_external_ui;
168
169         is_external_ui = _lv2->is_external_ui();
170
171         if (is_external_ui) {
172                 _external_ui_host.ui_closed       = LV2PluginUI::on_external_ui_closed;
173                 _external_ui_host.plugin_human_id = strdup(title.c_str());
174
175                 _external_ui_feature.URI  = LV2_EXTERNAL_UI_URI;
176                 _external_ui_feature.data = &_external_ui_host;
177
178                 features_src = features = (LV2_Feature**)_lv2->features();
179                 features_count = 2;
180                 while (*features++) {
181                         features_count++;
182                 }
183                 features_dst = features = (LV2_Feature**)malloc(
184                         sizeof(LV2_Feature*) * features_count);
185                 features_dst[--features_count] = NULL;
186                 features_dst[--features_count] = &_external_ui_feature;
187                 while (features_count--) {
188                         *features++ = *features_src++;
189                 }
190         } else {
191                 features_dst = (LV2_Feature**)_lv2->features();
192         }
193
194         if (!ui_host) {
195                 ui_host = suil_host_new(LV2PluginUI::write_from_ui, NULL, NULL, NULL);
196         }
197         const char* container_type = (is_external_ui)
198                 ? NS_UI "external"
199                 : NS_UI "GtkUI";
200
201         LilvUI* ui = (LilvUI*)_lv2->c_ui();
202         _inst = suil_instance_new(
203                 ui_host,
204                 this,
205                 container_type,
206                 _lv2->uri(),
207                 lilv_node_as_uri(lilv_ui_get_uri(ui)),
208                 lilv_node_as_uri((const LilvNode*)_lv2->c_ui_type()),
209                 lilv_uri_to_path(lilv_node_as_uri(lilv_ui_get_bundle_uri(ui))),
210                 lilv_uri_to_path(lilv_node_as_uri(lilv_ui_get_binary_uri(ui))),
211                 features_dst);
212
213         if (is_external_ui) {
214                 free(features_dst);
215         }
216
217 #define GET_WIDGET(inst) suil_instance_get_widget((SuilInstance*)inst);
218
219         const uint32_t num_ports = _lv2->num_ports();
220         for (uint32_t i = 0; i < num_ports; ++i) {
221                 if (_lv2->parameter_is_output(i)
222                     && _lv2->parameter_is_control(i)
223                     && is_update_wanted(i)) {
224                         _output_ports.push_back(i);
225                 }
226         }
227
228         _external_ui_ptr = NULL;
229         if (_inst) {
230                 if (!is_external_ui) {
231                         Gtk::HBox* box = manage (new Gtk::HBox);
232                         box->set_spacing (6);
233                         box->set_border_width (6);
234                         box->pack_end (focus_button, false, false);
235                         box->pack_end (bypass_button, false, false, 10);
236                         box->pack_end (delete_button, false, false);
237                         box->pack_end (save_button, false, false);
238                         box->pack_end (add_button, false, false);
239                         box->pack_end (_preset_combo, false, false);
240                         box->show_all();
241                         pack_start(*box, false, false);
242
243                         GtkWidget* c_widget = (GtkWidget*)GET_WIDGET(_inst);
244                         _gui_widget = Glib::wrap(c_widget);
245                         _gui_widget->show_all();
246                         pack_start(*_gui_widget, true, true);
247                 } else {
248                         _external_ui_ptr = (struct lv2_external_ui*)GET_WIDGET(_inst);
249                 }
250         }
251
252         _values = new float[num_ports];
253         _controllables.resize(num_ports);
254         for (uint32_t i = 0; i < num_ports; ++i) {
255                 bool     ok;
256                 uint32_t port = _lv2->nth_parameter(i, ok);
257                 if (ok) {
258                         _values[port]        = _lv2->get_parameter(port);
259                         _controllables[port] = boost::dynamic_pointer_cast<ARDOUR::AutomationControl> (
260                                 insert->control(Evoral::Parameter(PluginAutomation, 0, port)));
261
262                         if (_lv2->parameter_is_control(port) && _lv2->parameter_is_input(port)) {
263                                 parameter_update(port, _values[port]);
264                         }
265                 }
266         }
267
268         if (_lv2->has_message_output()) {
269                 _lv2->enable_ui_emmission();
270                 ARDOUR_UI::instance()->RapidScreenUpdate.connect(
271                         sigc::mem_fun(*this, &LV2PluginUI::update_timeout));
272         }
273 }
274
275 void
276 LV2PluginUI::lv2ui_free()
277 {
278         stop_updating (0);
279
280         if (_gui_widget) {
281                 remove (*_gui_widget);
282         }
283
284         suil_instance_free((SuilInstance*)_inst);
285
286         _inst = NULL;
287         _gui_widget = NULL;
288 }
289
290 LV2PluginUI::~LV2PluginUI ()
291 {
292         if (_values) {
293                 delete[] _values;
294         }
295
296         /* Close and delete GUI. */
297         lv2ui_free();
298
299         _screen_update_connection.disconnect();
300
301         if (_lv2->is_external_ui()) {
302                 /* External UI is no longer valid.
303                    on_window_hide() will not try to use it if is NULL.
304                 */
305                 _external_ui_ptr = NULL;
306         }
307 }
308
309 int
310 LV2PluginUI::get_preferred_height()
311 {
312         Gtk::Requisition r = size_request();
313         return r.height;
314 }
315
316 int
317 LV2PluginUI::get_preferred_width()
318 {
319         Gtk::Requisition r = size_request();
320         return r.width;
321 }
322
323 int
324 LV2PluginUI::package(Gtk::Window& win)
325 {
326         if (_external_ui_ptr) {
327                 _win_ptr = &win;
328         } else {
329                 /* forward configure events to plugin window */
330                 win.signal_configure_event().connect(
331                         sigc::mem_fun(*this, &LV2PluginUI::configure_handler));
332                 win.signal_map_event().connect(
333                         sigc::mem_fun(*this, &LV2PluginUI::start_updating));
334                 win.signal_unmap_event().connect(
335                         sigc::mem_fun(*this, &LV2PluginUI::stop_updating));
336         }
337         return 0;
338 }
339
340 bool
341 LV2PluginUI::configure_handler(GdkEventConfigure*)
342 {
343         std::cout << "CONFIGURE" << std::endl;
344         return false;
345 }
346
347 bool
348 LV2PluginUI::is_update_wanted(uint32_t /*index*/)
349 {
350         /* FIXME: use port notification properties
351            and/or new UI extension subscription methods
352         */
353         return true;
354 }
355
356 bool
357 LV2PluginUI::on_window_show(const std::string& title)
358 {
359         //cout << "on_window_show - " << title << endl; flush(cout);
360
361         if (_lv2->is_external_ui()) {
362                 if (_external_ui_ptr) {
363                         LV2_EXTERNAL_UI_SHOW(_external_ui_ptr);
364                         return false;
365                 }
366                 lv2ui_instantiate(title);
367                 if (!_external_ui_ptr) {
368                         return false;
369                 }
370
371                 LV2_EXTERNAL_UI_SHOW(_external_ui_ptr);
372                 _screen_update_connection.disconnect();
373                 _screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect
374                         (sigc::mem_fun(*this, &LV2PluginUI::output_update));
375                 return false;
376         } else {
377                 lv2ui_instantiate("gtk2gui");
378         }
379
380         return true;
381 }
382
383 void
384 LV2PluginUI::on_window_hide()
385 {
386         //cout << "on_window_hide" << endl; flush(cout);
387
388         if (_external_ui_ptr) {
389                 LV2_EXTERNAL_UI_HIDE(_external_ui_ptr);
390                 //slv2_ui_instance_get_descriptor(_inst)->cleanup(_inst);
391                 //_external_ui_ptr = NULL;
392                 //_screen_update_connection.disconnect();
393         } else {
394                 lv2ui_free();
395         }
396 }