OSC: fix compiler warning and catch possible errors
[ardour.git] / libs / surfaces / osc / osc.h
1 /*
2  * Copyright (C) 2006-2009 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  *
18  */
19
20 #ifndef ardour_osc_h
21 #define ardour_osc_h
22
23 #include <string>
24 #include <vector>
25 #include <bitset>
26
27 #include <sys/time.h>
28 #include <pthread.h>
29
30 #include <boost/shared_ptr.hpp>
31
32 #include <lo/lo.h>
33
34 #include <glibmm/main.h>
35
36 #define ABSTRACT_UI_EXPORTS
37 #include "pbd/abstract_ui.h"
38
39 #include "ardour/types.h"
40 #include "ardour/send.h"
41 #include "ardour/plugin.h"
42 #include "control_protocol/control_protocol.h"
43
44 #include "pbd/i18n.h"
45
46 class OSCControllable;
47 class OSCRouteObserver;
48 class OSCGlobalObserver;
49 class OSCSelectObserver;
50 class OSCCueObserver;
51
52 namespace ARDOUR {
53 class Session;
54 class Route;
55 }
56
57 /* this is mostly a placeholder because I suspect that at some
58    point we will want to add more members to accomodate
59    certain types of requests to the OSC UI
60 */
61
62 namespace ArdourSurface {
63
64 struct OSCUIRequest : public BaseUI::BaseRequestObject {
65   public:
66         OSCUIRequest () {}
67         ~OSCUIRequest() {}
68 };
69
70 class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
71 {
72   public:
73         OSC (ARDOUR::Session&, uint32_t port);
74         virtual ~OSC();
75
76         static OSC* instance() { return _instance; }
77
78         XMLNode& get_state ();
79         int set_state (const XMLNode&, int version);
80
81         void stripable_selection_changed () {}
82
83         bool has_editor () const { return true; }
84         void* get_gui () const;
85         void  tear_down_gui ();
86
87         int set_active (bool yn);
88         bool get_active () const;
89
90         // generic osc send
91
92         int float_message (std::string, float value, lo_address addr);
93         int int_message (std::string, int value, lo_address addr);
94         int text_message (std::string path, std::string val, lo_address addr);
95         int float_message_with_id (std::string, uint32_t ssid, float value, bool in_line, lo_address addr);
96         int int_message_with_id (std::string, uint32_t ssid, int value, bool in_line, lo_address addr);
97         int text_message_with_id (std::string path, uint32_t ssid, std::string val, bool in_line, lo_address addr);
98
99         int send_group_list (lo_address addr);
100
101         int start ();
102         int stop ();
103
104         static void* request_factory (uint32_t);
105
106         enum OSCDebugMode {
107                 Off,
108                 Unhandled,
109                 All
110         };
111
112         typedef std::vector<boost::shared_ptr<ARDOUR::Stripable> > Sorted;
113         Sorted get_sorted_stripables(std::bitset<32> types, bool cue, uint32_t custom, Sorted my_list);
114         typedef std::map<boost::shared_ptr<ARDOUR::AutomationControl>, uint32_t> FakeTouchMap;
115         FakeTouchMap _touch_timeout;
116
117 // keep a surface's global setup by remote server url
118         struct OSCSurface {
119         public:
120                 //global
121                 std::string remote_url;         // the url these setting belong to
122                 bool no_clear;                          // don't send osc clear messages on strip change
123                 uint32_t jogmode;                       // current jogmode
124                 OSCGlobalObserver* global_obs;  // pointer to this surface's global observer
125                 uint32_t nstrips;                       // how many strips are there for strip_types
126                 std::bitset<32> feedback;       // What is fed back? strips/meters/timecode/bar_beat/global
127                 int gainmode;                           // what kind of faders do we have Gain db or position 0 to 1?
128                 PBD::Controllable::GroupControlDisposition usegroup;    // current group disposition
129                 Sorted custom_strips;           // a sorted list of user selected strips
130                 uint32_t custom_mode;                   // use custom strip list
131                 Sorted strips;                          // list of stripables for this surface
132                 // strips
133                 uint32_t bank;                          // current bank
134                 uint32_t bank_size;                     // size of banks for this surface
135                 std::vector<OSCRouteObserver*> observers;       // route observers for this surface
136                 std::bitset<32> strip_types;// what strip types are a part of this bank
137                 //select
138                 OSCSelectObserver* sel_obs;     // So we can sync select feedback with selected channel
139                 uint32_t expand;                        // Used by /select/select
140                 bool expand_enable;                     // use expand instead of select
141                 boost::shared_ptr<ARDOUR::Stripable> select; // stripable this surface uses (maybe expand strip)                
142                 int plug_page;                          // current plugin page
143                 uint32_t plug_page_size;        // plugin page size (number of controls)
144                 int plugin_id;                  // id of current plugin
145                 std::vector<int> plug_params; // vector to store ports that are controls
146                 std::vector<int> plugins;       // stores allowable plugins with index (work around MB strip PIs)
147                 int send_page;                          // current send page
148                 uint32_t send_page_size;        // send page size in channels
149                 uint32_t nsends;                        // number of sends select has
150                 PBD::ScopedConnection proc_connection; // for processor signal monitoring
151                 // cue
152                 bool cue;                                       // is this a cue surface
153                 uint32_t aux;                           // aux index for this cue surface
154                 Sorted sends;                           // list of sends for cue aux
155                 OSCCueObserver* cue_obs;        // pointer to this surface's cue observer
156                 uint32_t linkset;                       // ID of a set of surfaces used as one
157                 uint32_t linkid;                        // ID of this surface within a linkset
158         };
159                 /*
160                  * feedback bits:
161                  * [0] - Strips - buttons
162                  * [1] - Strips - variables (pots/faders)
163                  * [2] - Strips - Send SSID as path extension
164                  * [3] - Send heart beat to surface
165                  * [4] - Send feedback for master/global buttons/variables
166                  * [5] - Send Bar and Beat
167                  * [6] - Send Time code
168                  * [7] - Send metering as dB or positional depending on gainmode
169                  * [8] - Send metering as 16 bits (led strip)
170                  * [9] - Send signal present (signal greater than -20dB)
171                  * [10] - Send Playhead position as samples
172                  * [11] - Send Playhead position as minutes seconds
173                  * [12] - Send Playhead position like primary/secondary GUI clocks
174                  * [13] - Send well known feedback (for /select/command
175                  * [14] - use OSC 1.0 only (#reply -> /reply)
176                  */
177
178
179 // storage for  each surface's settings
180         mutable Glib::Threads::Mutex surfaces_lock;
181         typedef std::vector<OSCSurface> Surface;
182         Surface _surface;
183
184 // linked surfaces
185         struct LinkSet {
186         public:
187                 std::vector<std::string> urls;  //urls of linked surfaces
188                 uint32_t banksize;                              // linkset banksize
189                 uint32_t bank;                                  // linkset current bank
190                 bool autobank;                                  // banksize is derived from total
191                 uint32_t not_ready;                             // number of 1st device, 0 = ready
192                 Sorted custom_strips;                   // a sorted list of user selected strips
193                 uint32_t custom_mode;                   // use custom strip list
194                 std::bitset<32> strip_types;    // strip_types for this linkset
195                 Sorted strips;                                  // list of valid strips in order for this set
196         };
197
198         std::map<uint32_t, LinkSet> link_sets;
199          // list of linksets
200
201         struct PortAdd {
202         public:
203                 std::string host;
204                 std::string port;
205         };
206
207         std::vector<PortAdd> _ports;
208
209 // GUI calls
210         std::string get_server_url ();
211         void set_debug_mode (OSCDebugMode m) { _debugmode = m; }
212         OSCDebugMode get_debug_mode () { return _debugmode; }
213         int get_portmode() { return address_only; }
214         void set_portmode (int pm) { address_only = pm; }
215         int get_banksize () { return default_banksize; }
216         void set_banksize (int bs) {default_banksize = bs; }
217         int get_gainmode() { return default_gainmode; }
218         void set_gainmode (int gm) { default_gainmode = gm; }
219         int get_defaultstrip() { return default_strip; }
220         void set_defaultstrip (int st) { default_strip = st; }
221         int get_defaultfeedback() { return default_feedback; }
222         void set_defaultfeedback (int fb) { default_feedback = fb; }
223         int get_send_size() { return default_send_size; }
224         void set_send_size (int ss) { default_send_size = ss; }
225         int get_plugin_size() { return default_plugin_size; }
226         void set_plugin_size (int ps) { default_plugin_size = ps; }
227         void clear_devices ();
228         void gui_changed ();
229         void get_surfaces ();
230         std::string get_remote_port () { return remote_port; }
231         void set_remote_port (std::string pt) { remote_port = pt; }
232
233   protected:
234         void thread_init ();
235         void do_request (OSCUIRequest*);
236
237         GSource* local_server;
238         GSource* remote_server;
239
240         bool osc_input_handler (Glib::IOCondition, lo_server);
241
242   private:
243         uint32_t _port;
244         volatile bool _ok;
245         volatile bool _shutdown;
246         lo_server _osc_server;
247         lo_server _osc_unix_server;
248         std::string _osc_unix_socket_path;
249         std::string _osc_url_file;
250         OSCDebugMode _debugmode;
251         bool address_only;
252         std::string remote_port;
253         uint32_t default_banksize;
254         uint32_t default_strip;
255         uint32_t default_feedback;
256         uint32_t default_gainmode;
257         uint32_t default_send_size;
258         uint32_t default_plugin_size;
259         bool tick;
260         bool bank_dirty;
261         bool observer_busy;
262         float scrub_speed;              // Current scrub speed
263         double scrub_place;             // place of play head at latest jog/scrub wheel tick
264         int64_t scrub_time;             // when did the wheel move last?
265         bool global_init;
266         boost::shared_ptr<ARDOUR::Stripable> _select;   // which stripable out of /surface/stripables is gui selected
267
268         void register_callbacks ();
269
270         void route_added (ARDOUR::RouteList&);
271
272         // Handlers for "Application Hook" signals
273         void session_loaded (ARDOUR::Session&);
274         void session_exported (std::string, std::string);
275
276         // end "Application Hook" handles
277
278         std::string get_unix_server_url ();
279         lo_address get_address (lo_message msg);
280         std::string get_port (std::string host);
281         OSCSurface * get_surface (lo_address addr, bool quiet = false);
282         int check_surface (lo_message msg);
283         uint32_t get_sid (boost::shared_ptr<ARDOUR::Stripable> strip, lo_address addr);
284         boost::shared_ptr<ARDOUR::Stripable> get_strip (uint32_t ssid, lo_address addr);
285         void global_feedback (OSCSurface* sur);
286         void strip_feedback (OSCSurface* sur, bool new_bank_size);
287         void surface_destroy (OSCSurface* sur);
288         uint32_t bank_limits_check (uint32_t bank, uint32_t size, uint32_t total);
289         void bank_leds (OSCSurface* sur);
290
291         void send_current_value (const char* path, lo_arg** argv, int argc, lo_message msg);
292         void current_value_query (const char* path, size_t len, lo_arg **argv, int argc, lo_message msg);
293
294         int current_value (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data);
295
296         int catchall (const char *path, const char *types, lo_arg **argv, int argc, void *data);
297         static int _catchall (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data);
298
299         int set_automation (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg);
300         int touch_detect (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg);
301         int fake_touch (boost::shared_ptr<ARDOUR::AutomationControl> ctrl);
302
303         int route_get_sends (lo_message msg);
304         int route_get_receives(lo_message msg);
305         void routes_list (lo_message msg);
306         int group_list (lo_message msg);
307         void surface_list (lo_message msg);
308         void transport_sample (lo_message msg);
309         void transport_speed (lo_message msg);
310         void record_enabled (lo_message msg);
311
312         // cue
313         Sorted cue_get_sorted_stripables(boost::shared_ptr<ARDOUR::Stripable> aux, uint32_t id, lo_message msg);
314         int cue_parse (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg);
315         int cue_set (uint32_t aux, lo_message msg);
316         int _cue_set (uint32_t aux, lo_address addr);
317         int cue_next (lo_message msg);
318         int cue_previous (lo_message msg);
319         int cue_send_fader (uint32_t id, float position, lo_message msg);
320         int cue_send_enable (uint32_t id, float state, lo_message msg);
321         int cue_aux_fader (float position, lo_message msg);
322         int cue_aux_mute (float state, lo_message msg);
323         void cue_set_aux (uint32_t aux, lo_message msg);
324         boost::shared_ptr<ARDOUR::Send> cue_get_send (uint32_t id, lo_address addr);
325         // end cue
326
327         // link
328         LinkSet * get_linkset (uint32_t set, lo_address addr);
329         int parse_link (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg);
330         int link_check (uint32_t linkset);
331         int set_link (uint32_t set, uint32_t id, lo_address addr);
332         void surface_link_state (LinkSet * set);
333         void link_strip_types (uint32_t linkset, uint32_t striptypes);
334
335 #define OSC_DEBUG \
336         if (_debugmode == All) { \
337                 debugmsg (dgettext(PACKAGE, "OSC"), path, types, argv, argc); \
338         }
339
340 #define PATH_CALLBACK_MSG(name) \
341         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
342                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
343         } \
344         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
345                 OSC_DEBUG; \
346                 if (argc > 0 && !strcmp (types, "f") && argv[0]->f != 1.0) { return 0; } \
347                 name (data); \
348                 return 0; \
349         }
350
351         PATH_CALLBACK_MSG(route_get_sends);
352         PATH_CALLBACK_MSG(route_get_receives);
353         PATH_CALLBACK_MSG(routes_list);
354         PATH_CALLBACK_MSG(group_list);
355         PATH_CALLBACK_MSG(surface_list);
356         PATH_CALLBACK_MSG(transport_sample);
357         PATH_CALLBACK_MSG(transport_speed);
358         PATH_CALLBACK_MSG(record_enabled);
359         PATH_CALLBACK_MSG(refresh_surface);
360         PATH_CALLBACK_MSG(bank_up);
361         PATH_CALLBACK_MSG(bank_down);
362         PATH_CALLBACK_MSG(master_select);
363         PATH_CALLBACK_MSG(custom_clear);
364
365 #define PATH_CALLBACK(name) \
366         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
367                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
368         } \
369         int cb_ ## name (const char *path, const char *types, lo_arg ** argv, int argc, void *data) { \
370                 OSC_DEBUG; \
371                 check_surface (data); \
372                 if (argc > 0 && !strcmp (types, "f") && argv[0]->f != 1.0) { return 0; } \
373                 name (); \
374                 return 0; \
375         }
376
377         PATH_CALLBACK(add_marker);
378         PATH_CALLBACK(loop_toggle);
379         PATH_CALLBACK(goto_start);
380         PATH_CALLBACK(goto_end);
381         PATH_CALLBACK(rewind);
382         PATH_CALLBACK(ffwd);
383         PATH_CALLBACK(transport_stop);
384         PATH_CALLBACK(transport_play);
385         PATH_CALLBACK(save_state);
386         PATH_CALLBACK(prev_marker);
387         PATH_CALLBACK(next_marker);
388         PATH_CALLBACK(undo);
389         PATH_CALLBACK(redo);
390         PATH_CALLBACK(toggle_punch_in);
391         PATH_CALLBACK(toggle_punch_out);
392         PATH_CALLBACK(rec_enable_toggle);
393         PATH_CALLBACK(toggle_all_rec_enables);
394         PATH_CALLBACK(all_tracks_rec_in);
395         PATH_CALLBACK(all_tracks_rec_out);
396         PATH_CALLBACK(cancel_all_solos);
397         PATH_CALLBACK(remove_marker_at_playhead);
398         PATH_CALLBACK(mark_in);
399         PATH_CALLBACK(mark_out);
400         PATH_CALLBACK(toggle_click);
401         PATH_CALLBACK(midi_panic);
402         PATH_CALLBACK(toggle_roll);
403         PATH_CALLBACK(stop_forget);
404         PATH_CALLBACK(set_punch_range);
405         PATH_CALLBACK(set_loop_range);
406         PATH_CALLBACK(set_session_range);
407         PATH_CALLBACK(toggle_monitor_mute);
408         PATH_CALLBACK(toggle_monitor_dim);
409         PATH_CALLBACK(toggle_monitor_mono);
410         PATH_CALLBACK(quick_snapshot_stay);
411         PATH_CALLBACK(quick_snapshot_switch);
412         PATH_CALLBACK(fit_1_track);
413         PATH_CALLBACK(fit_2_tracks);
414         PATH_CALLBACK(fit_4_tracks);
415         PATH_CALLBACK(fit_8_tracks);
416         PATH_CALLBACK(fit_16_tracks);
417         PATH_CALLBACK(fit_32_tracks);
418         PATH_CALLBACK(fit_all_tracks);
419         PATH_CALLBACK(zoom_100_ms);
420         PATH_CALLBACK(zoom_1_sec);
421         PATH_CALLBACK(zoom_10_sec);
422         PATH_CALLBACK(zoom_1_min);
423         PATH_CALLBACK(zoom_5_min);
424         PATH_CALLBACK(zoom_10_min);
425         PATH_CALLBACK(zoom_to_session);
426         PATH_CALLBACK(temporal_zoom_in);
427         PATH_CALLBACK(temporal_zoom_out);
428         PATH_CALLBACK(scroll_up_1_track);
429         PATH_CALLBACK(scroll_dn_1_track);
430         PATH_CALLBACK(scroll_up_1_page);
431         PATH_CALLBACK(scroll_dn_1_page);
432
433 #define PATH_CALLBACK1(name,type,optional) \
434         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
435                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
436         } \
437         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
438                 OSC_DEBUG; \
439                 check_surface (data); \
440                 if (argc > 0) { \
441                         name (optional argv[0]->type); \
442                 } \
443                 return 0; \
444         }
445
446         PATH_CALLBACK1(set_transport_speed,f,);
447         PATH_CALLBACK1(access_action,s,&);
448
449         PATH_CALLBACK1(jump_by_bars,f,);
450         PATH_CALLBACK1(jump_by_seconds,f,);
451         PATH_CALLBACK1(master_set_gain,f,);
452         PATH_CALLBACK1(master_set_fader,f,);
453         PATH_CALLBACK1(master_delta_gain,f,);
454         PATH_CALLBACK1(master_set_trim,f,);
455         PATH_CALLBACK1(master_set_mute,i,);
456         PATH_CALLBACK1(monitor_set_gain,f,);
457         PATH_CALLBACK1(monitor_set_fader,f,);
458         PATH_CALLBACK1(monitor_delta_gain,f,);
459         PATH_CALLBACK1(monitor_set_mute,i,);
460         PATH_CALLBACK1(monitor_set_dim,i,);
461         PATH_CALLBACK1(monitor_set_mono,i,);
462         PATH_CALLBACK1(click_level,f,);
463
464 #define PATH_CALLBACK1_MSG(name,arg1type) \
465         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
466                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
467         } \
468         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
469                 OSC_DEBUG; \
470                 if (argc > 0) { \
471                         name (argv[0]->arg1type, data); \
472                 } \
473                 return 0; \
474         }
475
476 #define PATH_CALLBACK1_MSG_s(name,arg1type) \
477         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
478                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
479         } \
480         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
481                 OSC_DEBUG; \
482                 if (argc > 0) { \
483                         name (&argv[0]->arg1type, data); \
484                 } \
485                 return 0; \
486         }
487
488         // pan position needs message info to send feedback
489         PATH_CALLBACK1_MSG(master_set_pan_stereo_position,f);
490
491         PATH_CALLBACK1_MSG(scrub,f);
492         PATH_CALLBACK1_MSG(jog,f);
493         PATH_CALLBACK1_MSG(jog_mode,f);
494         PATH_CALLBACK1_MSG(bank_delta,f);
495         PATH_CALLBACK1_MSG(use_group,f);
496         PATH_CALLBACK1_MSG_s(name_session,s);
497         PATH_CALLBACK1_MSG_s(sel_group,s);
498         PATH_CALLBACK1_MSG_s(sel_rename,s);
499         PATH_CALLBACK1_MSG_s(sel_comment,s);
500         PATH_CALLBACK1_MSG(sel_recenable,i);
501         PATH_CALLBACK1_MSG(sel_recsafe,i);
502         PATH_CALLBACK1_MSG(sel_mute,i);
503         PATH_CALLBACK1_MSG(sel_master_send_enable,i);
504         PATH_CALLBACK1_MSG(sel_solo,i);
505         PATH_CALLBACK1_MSG(sel_solo_iso,i);
506         PATH_CALLBACK1_MSG(sel_solo_safe,i);
507         PATH_CALLBACK1_MSG(sel_monitor_input,i);
508         PATH_CALLBACK1_MSG(sel_monitor_disk,i);
509         PATH_CALLBACK1_MSG(sel_phase,i);
510         PATH_CALLBACK1_MSG(sel_gain,f);
511         PATH_CALLBACK1_MSG(sel_fader,f);
512         PATH_CALLBACK1_MSG(sel_dB_delta,f);
513         PATH_CALLBACK1_MSG(sel_trim,f);
514         PATH_CALLBACK1_MSG(sel_hide,i);
515         PATH_CALLBACK1_MSG(sel_pan_position,f);
516         PATH_CALLBACK1_MSG(sel_pan_width,f);
517         PATH_CALLBACK1_MSG(sel_pan_elevation,f);
518         PATH_CALLBACK1_MSG(sel_pan_frontback,f);
519         PATH_CALLBACK1_MSG(sel_pan_lfe,f);
520         PATH_CALLBACK1_MSG(sel_send_page,f);
521         PATH_CALLBACK1_MSG(sel_plug_page,f);
522         PATH_CALLBACK1_MSG(sel_plugin,f);
523         PATH_CALLBACK1_MSG(sel_plugin_activate,f);
524         PATH_CALLBACK1_MSG(sel_comp_enable,f);
525         PATH_CALLBACK1_MSG(sel_comp_threshold,f);
526         PATH_CALLBACK1_MSG(sel_comp_speed,f);
527         PATH_CALLBACK1_MSG(sel_comp_mode,f);
528         PATH_CALLBACK1_MSG(sel_comp_makeup,f);
529         PATH_CALLBACK1_MSG(sel_eq_enable,f);
530         PATH_CALLBACK1_MSG(sel_eq_hpf_freq,f);
531         PATH_CALLBACK1_MSG(sel_eq_hpf_enable,f);
532         PATH_CALLBACK1_MSG(sel_eq_hpf_slope,f);
533         PATH_CALLBACK1_MSG(sel_eq_lpf_freq,f);
534         PATH_CALLBACK1_MSG(sel_eq_lpf_enable,f);
535         PATH_CALLBACK1_MSG(sel_eq_lpf_slope,f);
536         PATH_CALLBACK1_MSG(sel_expand,i);
537         PATH_CALLBACK1_MSG(custom_mode,f);
538
539 #define PATH_CALLBACK2(name,arg1type,arg2type) \
540         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
541                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
542         } \
543         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
544                 OSC_DEBUG; \
545                 check_surface (data); \
546                 if (argc > 1) { \
547                         name (argv[0]->arg1type, argv[1]->arg2type); \
548                 } \
549                 return 0; \
550         }
551
552 #define PATH_CALLBACK2_MSG(name,arg1type,arg2type) \
553         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
554                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
555         } \
556         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
557                 OSC_DEBUG; \
558                 if (argc > 1) { \
559                         name (argv[0]->arg1type, argv[1]->arg2type, data); \
560                 } \
561                 return 0; \
562         }
563
564 #define PATH_CALLBACK2_MSG_s(name,arg1type,arg2type) \
565         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
566                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
567         } \
568         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
569                 OSC_DEBUG; \
570                 if (argc > 1) { \
571                         name (argv[0]->arg1type, &argv[1]->arg2type, data); \
572                 } \
573                 return 0; \
574         }
575
576 #define PATH_CALLBACK3(name,arg1type,arg2type,arg3type) \
577         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
578                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
579         } \
580         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
581                 OSC_DEBUG; \
582                 if (argc > 1) { \
583                         name (argv[0]->arg1type, argv[1]->arg2type,argv[2]->arg3type, data); \
584                 } \
585                 return 0; \
586         }
587
588 #define PATH_CALLBACK4(name,arg1type,arg2type,arg3type,arg4type) \
589         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
590                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
591         } \
592         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
593                 OSC_DEBUG; \
594                 if (argc > 1) { \
595                         name (argv[0]->arg1type, argv[1]->arg2type,argv[2]->arg3type,argv[3]->arg4type, data); \
596                 } \
597                 return 0; \
598         }
599
600         PATH_CALLBACK2_MSG(sel_sendgain,i,f);
601         PATH_CALLBACK2_MSG(sel_sendfader,i,f);
602         PATH_CALLBACK2_MSG(sel_sendenable,i,f);
603         PATH_CALLBACK2_MSG(sel_eq_gain,i,f);
604         PATH_CALLBACK2_MSG(sel_eq_freq,i,f);
605         PATH_CALLBACK2_MSG(sel_eq_q,i,f);
606         PATH_CALLBACK2_MSG(sel_eq_shape,i,f);
607
608         PATH_CALLBACK2(locate,i,i);
609         PATH_CALLBACK2(loop_location,i,i);
610         PATH_CALLBACK2_MSG_s(route_rename,i,s);
611         PATH_CALLBACK2_MSG_s(strip_group,i,s);
612         PATH_CALLBACK2_MSG(route_mute,i,i);
613         PATH_CALLBACK2_MSG(route_solo,i,i);
614         PATH_CALLBACK2_MSG(route_solo_iso,i,i);
615         PATH_CALLBACK2_MSG(route_solo_safe,i,i);
616         PATH_CALLBACK2_MSG(route_recenable,i,i);
617         PATH_CALLBACK2_MSG(route_recsafe,i,i);
618         PATH_CALLBACK2_MSG(route_monitor_input,i,i);
619         PATH_CALLBACK2_MSG(route_monitor_disk,i,i);
620         PATH_CALLBACK2_MSG(strip_phase,i,i);
621         PATH_CALLBACK2_MSG(strip_expand,i,i);
622         PATH_CALLBACK2_MSG(strip_hide,i,i);
623         PATH_CALLBACK2_MSG(strip_gui_select,i,i);
624         PATH_CALLBACK2_MSG(route_set_gain_dB,i,f);
625         PATH_CALLBACK2_MSG(route_set_gain_fader,i,f);
626         PATH_CALLBACK2_MSG(route_set_trim_dB,i,f);
627         PATH_CALLBACK2_MSG(route_set_pan_stereo_position,i,f);
628         PATH_CALLBACK2_MSG(route_set_pan_stereo_width,i,f);
629         PATH_CALLBACK3(route_set_send_gain_dB,i,i,f);
630         PATH_CALLBACK3(route_set_send_fader,i,i,f);
631         PATH_CALLBACK3(route_set_send_enable,i,i,f);
632         PATH_CALLBACK4(route_plugin_parameter,i,i,i,f);
633         PATH_CALLBACK3(route_plugin_parameter_print,i,i,i);
634         PATH_CALLBACK2_MSG(route_plugin_activate,i,i);
635         PATH_CALLBACK2_MSG(route_plugin_deactivate,i,i);
636         PATH_CALLBACK1_MSG(route_plugin_list,i);
637         PATH_CALLBACK2_MSG(route_plugin_descriptor,i,i);
638         PATH_CALLBACK2_MSG(route_plugin_reset,i,i);
639
640         int route_rename (int rid, char *s, lo_message msg);
641         int strip_group (int ssid, char *g, lo_message msg);
642         int strip_select_group (boost::shared_ptr<ARDOUR::Stripable> s, char *g);
643         int route_mute (int rid, int yn, lo_message msg);
644         int route_solo (int rid, int yn, lo_message msg);
645         int route_solo_iso (int rid, int yn, lo_message msg);
646         int route_solo_safe (int rid, int yn, lo_message msg);
647         int route_recenable (int rid, int yn, lo_message msg);
648         int route_recsafe (int ssid, int yn, lo_message msg);
649         int route_monitor_input (int rid, int yn, lo_message msg);
650         int route_monitor_disk (int rid, int yn, lo_message msg);
651         int strip_phase (int rid, int yn, lo_message msg);
652         int strip_expand (int rid, int yn, lo_message msg);
653         int strip_hide (int ssid, int yn, lo_message msg);
654         int _strip_select (boost::shared_ptr<ARDOUR::Stripable> s, lo_address addr);
655         int strip_gui_select (int rid, int yn, lo_message msg);
656         int route_set_gain_dB (int rid, float dB, lo_message msg);
657         int route_set_gain_fader (int rid, float pos, lo_message msg);
658         int strip_db_delta (int ssid, float delta, lo_message msg);
659         int route_set_trim_abs (int rid, float level, lo_message msg);
660         int route_set_trim_dB (int rid, float dB, lo_message msg);
661         int route_set_pan_stereo_position (int rid, float left_right_fraction, lo_message msg);
662         int route_set_pan_stereo_width (int rid, float percent, lo_message msg);
663         int route_set_send_gain_dB (int rid, int sid, float val, lo_message msg);
664         int route_set_send_fader (int rid, int sid, float val, lo_message msg);
665         int route_set_send_enable (int rid, int sid, float val, lo_message msg);
666         int route_plugin_parameter (int rid, int piid,int par, float val, lo_message msg);
667         int route_plugin_parameter_print (int rid, int piid,int par, lo_message msg);
668         int route_plugin_activate (int rid, int piid, lo_message msg);
669         int route_plugin_deactivate (int rid, int piid, lo_message msg);
670         int route_plugin_list(int ssid, lo_message msg);
671         int route_plugin_descriptor(int ssid, int piid, lo_message msg);
672         int route_plugin_reset(int ssid, int piid, lo_message msg);
673
674         //banking functions
675         int set_bank (uint32_t bank_start, lo_message msg);
676         int _set_bank (uint32_t bank_start, lo_address addr);
677         int bank_up (lo_message msg);
678         int bank_delta (float delta, lo_message msg);
679         int use_group (float value, lo_message msg);
680         int bank_down (lo_message msg);
681         // surface set up
682         int surface_parse (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg);
683         int set_surface (uint32_t b_size, uint32_t strips, uint32_t fb, uint32_t gmode, uint32_t se_size, uint32_t pi_size, lo_message msg);
684         int set_surface_bank_size (uint32_t bs, lo_message msg);
685         int set_surface_strip_types (uint32_t st, lo_message msg);
686         int set_surface_feedback (uint32_t fb, lo_message msg);
687         int set_surface_gainmode (uint32_t gm, lo_message msg);
688         int set_surface_port (uint32_t po, lo_message msg);
689         int refresh_surface (lo_message msg);
690         int custom_clear (lo_message msg);
691         int custom_mode (float state, lo_message msg);
692         int name_session (char *n, lo_message msg);
693         // select
694         int sel_send_pagesize (uint32_t size, lo_message msg);
695         int sel_send_page (int page, lo_message msg);
696         int sel_plug_pagesize (uint32_t size, lo_message msg);
697         int sel_plug_page (int page, lo_message msg);
698         int sel_plugin (int delta, lo_message msg);
699         int _sel_plugin (int id, lo_address addr);
700         int sel_plugin_activate (float state, lo_message msg);
701         int select_plugin_parameter (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg);
702         void processor_changed (std::string remote_url);
703
704         int scrub (float delta, lo_message msg);
705         int jog (float delta, lo_message msg);
706         int jog_mode (float mode, lo_message msg);
707         int set_marker (const char* types, lo_arg **argv, int argc, lo_message msg);
708         int click_level (float position);
709         int master_set_gain (float dB);
710         int master_set_fader (float position);
711         int master_delta_gain (float delta);
712         int master_set_trim (float dB);
713         int master_set_pan_stereo_position (float position, lo_message msg);
714         int master_set_mute (uint32_t state);
715         int master_select (lo_message msg);
716         int monitor_set_gain (float dB);
717         int monitor_set_fader (float position);
718         int monitor_delta_gain (float delta);
719         int monitor_set_mute (uint32_t state);
720         int monitor_set_dim (uint32_t state);
721         int monitor_set_mono (uint32_t state);
722         int sel_group (char *g, lo_message msg);
723         int sel_rename (char *n, lo_message msg);
724         int sel_comment (char *c, lo_message msg);
725         int sel_recenable (uint32_t state, lo_message msg);
726         int sel_recsafe (uint32_t state, lo_message msg);
727         int sel_mute (uint32_t state, lo_message msg);
728         int sel_solo (uint32_t state, lo_message msg);
729         int sel_solo_iso (uint32_t state, lo_message msg);
730         int sel_solo_safe (uint32_t state, lo_message msg);
731         int sel_monitor_input (uint32_t state, lo_message msg);
732         int sel_monitor_disk (uint32_t state, lo_message msg);
733         int sel_phase (uint32_t state, lo_message msg);
734         int sel_gain (float state, lo_message msg);
735         int sel_fader (float state, lo_message msg);
736         int sel_dB_delta (float delta, lo_message msg);
737         int sel_trim (float val, lo_message msg);
738         int sel_hide (uint32_t state, lo_message msg);
739         int sel_pan_position (float val, lo_message msg);
740         int sel_pan_width (float val, lo_message msg);
741         int sel_sendgain (int id, float dB, lo_message msg);
742         int sel_sendfader (int id, float pos, lo_message msg);
743         int sel_sendenable (int id, float pos, lo_message msg);
744         int sel_master_send_enable (int state, lo_message msg);
745         int sel_expand (uint32_t state, lo_message msg);
746         int sel_pan_elevation (float val, lo_message msg);
747         int sel_pan_frontback (float val, lo_message msg);
748         int sel_pan_lfe (float val, lo_message msg);
749         int sel_comp_enable (float val, lo_message msg);
750         int sel_comp_threshold (float val, lo_message msg);
751         int sel_comp_speed (float val, lo_message msg);
752         int sel_comp_mode (float val, lo_message msg);
753         int sel_comp_makeup (float val, lo_message msg);
754         int sel_eq_enable (float val, lo_message msg);
755         int sel_eq_hpf_freq (float val, lo_message msg);
756         int sel_eq_hpf_enable (float val, lo_message msg);
757         int sel_eq_hpf_slope (float val, lo_message msg);
758         int sel_eq_lpf_freq (float val, lo_message msg);
759         int sel_eq_lpf_enable (float val, lo_message msg);
760         int sel_eq_lpf_slope (float val, lo_message msg);
761         int sel_eq_gain (int id, float val, lo_message msg);
762         int sel_eq_freq (int id, float val, lo_message msg);
763         int sel_eq_q (int id, float val, lo_message msg);
764         int sel_eq_shape (int id, float val, lo_message msg);
765
766         void listen_to_route (boost::shared_ptr<ARDOUR::Stripable>, lo_address);
767
768         void route_name_changed (const PBD::PropertyChange&, boost::weak_ptr<ARDOUR::Route> r, lo_address addr);
769         void recalcbanks ();
770         void _recalcbanks ();
771         void notify_routes_added (ARDOUR::RouteList &);
772         void notify_vca_added (ARDOUR::VCAList &);
773
774         int cancel_all_solos ();
775         bool periodic (void);
776         sigc::connection periodic_connection;
777         PBD::ScopedConnectionList session_connections;
778
779         void debugmsg (const char *prefix, const char *path, const char* types, lo_arg **argv, int argc);
780
781         static OSC* _instance;
782
783         mutable void *gui;
784         void build_gui ();
785 };
786
787 } // namespace
788
789 #endif // ardour_osc_h