X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fsurfaces%2Fosc%2Fosc.h;h=2195afe5f1f995eb3be30f1733b1af7b6001509b;hb=8004b9bb8ed296a3785a97a8dfda86183736c2c7;hp=8466d512fb4908e8fd647c9daff2abb847a31c34;hpb=daddf2179f7456c06efd5a118a587405cf9b14fd;p=ardour.git diff --git a/libs/surfaces/osc/osc.h b/libs/surfaces/osc/osc.h index 8466d512fb..2195afe5f1 100644 --- a/libs/surfaces/osc/osc.h +++ b/libs/surfaces/osc/osc.h @@ -37,14 +37,17 @@ #include "pbd/abstract_ui.h" #include "ardour/types.h" +#include "ardour/send.h" +#include "ardour/plugin.h" #include "control_protocol/control_protocol.h" -#include "i18n.h" +#include "pbd/i18n.h" class OSCControllable; class OSCRouteObserver; class OSCGlobalObserver; class OSCSelectObserver; +class OSCCueObserver; namespace ARDOUR { class Session; @@ -75,15 +78,25 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI XMLNode& get_state (); int set_state (const XMLNode&, int version); + void stripable_selection_changed () {} + bool has_editor () const { return true; } void* get_gui () const; void tear_down_gui (); int set_active (bool yn); bool get_active () const; - int set_feedback (bool yn); - bool get_feedback () const; + // generic osc send + Glib::Threads::Mutex _lo_lock; + int float_message (std::string, float value, lo_address addr); + int int_message (std::string, int value, lo_address addr); + int text_message (std::string path, std::string val, lo_address addr); + int float_message_with_id (std::string, uint32_t ssid, float value, bool in_line, lo_address addr); + int int_message_with_id (std::string, uint32_t ssid, int value, bool in_line, lo_address addr); + int text_message_with_id (std::string path, uint32_t ssid, std::string val, bool in_line, lo_address addr); + + int send_group_list (lo_address addr); int start (); int stop (); @@ -96,38 +109,64 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI All }; + enum OSCTempMode { + TempOff = 0, + GroupOnly = 1, + VCAOnly = 2, + BusOnly = 3 + }; + typedef std::vector > Sorted; - Sorted get_sorted_stripables(std::bitset<32> types); + Sorted get_sorted_stripables(std::bitset<32> types, bool cue, uint32_t custom, Sorted my_list); + typedef std::map, uint32_t> FakeTouchMap; + FakeTouchMap _touch_timeout; // keep a surface's global setup by remote server url struct OSCSurface { public: + //global std::string remote_url; // the url these setting belong to + bool no_clear; // don't send osc clear messages on strip change + uint32_t jogmode; // current jogmode + OSCGlobalObserver* global_obs; // pointer to this surface's global observer + uint32_t nstrips; // how many strips are there for strip_types + std::bitset<32> feedback; // What is fed back? strips/meters/timecode/bar_beat/global + int gainmode; // what kind of faders do we have Gain db or position 0 to 1? + PBD::Controllable::GroupControlDisposition usegroup; // current group disposition + Sorted custom_strips; // a sorted list of user selected strips + uint32_t custom_mode; // use custom strip list + OSCTempMode temp_mode; // use temp strip list + Sorted temp_strips; // temp strip list for grouponly, vcaonly, auxonly + boost::shared_ptr temp_master; // stripable this surface uses as temp master + Sorted strips; // list of stripables for this surface + // strips uint32_t bank; // current bank uint32_t bank_size; // size of banks for this surface + std::vector observers; // route observers for this surface std::bitset<32> strip_types;// what strip types are a part of this bank - uint32_t nstrips; // how many strips are there for strip_types - std::bitset<32> feedback; // What is fed back? strips/meters/timecode/bar_beat/global - int gainmode; // what kind of faders do we have Gain db or position 0 to 1023? - uint32_t surface_sel; // which strip within the bank is locally selected + //select OSCSelectObserver* sel_obs; // So we can sync select feedback with selected channel - Sorted strips; // list of stripables for this surface + uint32_t expand; // Used by /select/select + bool expand_enable; // use expand instead of select + boost::shared_ptr expand_strip; // stripable this surface uses for expand + boost::shared_ptr select; // stripable this surface uses as selected + int plug_page; // current plugin page + uint32_t plug_page_size; // plugin page size (number of controls) + int plugin_id; // id of current plugin + std::vector plug_params; // vector to store ports that are controls + std::vector plugins; // stores allowable plugins with index (work around MB strip PIs) + int send_page; // current send page + uint32_t send_page_size; // send page size in channels + uint32_t nsends; // number of sends select has + PBD::ScopedConnection proc_connection; // for processor signal monitoring + // cue + bool cue; // is this a cue surface + uint32_t aux; // aux index for this cue surface + Sorted sends; // list of sends for cue aux + OSCCueObserver* cue_obs; // pointer to this surface's cue observer + uint32_t linkset; // ID of a set of surfaces used as one + uint32_t linkid; // ID of this surface within a linkset }; - /* - * Reminder of what strip_types there are - * - AudioTrack = 0x1 = [0] - MidiTrack = 0x2 = [1] - AudioBus = 0x4 = [2] - MidiBus = 0x8 = [3] - VCA = 0x10 = [4] - MasterOut = 0x20 = [5] - MonitorOut = 0x40 = [6] - Auditioner = 0x80 = [7] skip don't look for. - Selected = 0x100 = [8] - Hidden = 0x200 = [9] - OrderSet = 0x400, - */ /* * feedback bits: * [0] - Strips - buttons @@ -140,17 +179,83 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI * [7] - Send metering as dB or positional depending on gainmode * [8] - Send metering as 16 bits (led strip) * [9] - Send signal present (signal greater than -20dB) - * [10] - Announce follows Select + * [10] - Send Playhead position as samples + * [11] - Send Playhead position as minutes seconds + * [12] - Send Playhead position like primary/secondary GUI clocks + * [13] - Send well known feedback (for /select/command + * [14] - use OSC 1.0 only (#reply -> /reply) + * + * Strip_type bits: + * [0] - Audio Tracks + * [1] - Midi Tracks + * [2] - Audio Bus + * [3] - Midi Bus + * [4] - VCAs + * [5] - master + * [6] - Monitor + * [7] - Aux Bus + * [8] - Selected + * [9] - Hidden + * [10] - Use Groups + * [11] - Global Expand */ - // storage for each surface's settings + mutable Glib::Threads::Mutex surfaces_lock; typedef std::vector Surface; Surface _surface; +// linked surfaces + struct LinkSet { + public: + std::vector urls; //urls of linked surfaces + uint32_t banksize; // linkset banksize + uint32_t bank; // linkset current bank + bool autobank; // banksize is derived from total + uint32_t not_ready; // number of 1st device, 0 = ready + Sorted custom_strips; // a sorted list of user selected strips + uint32_t custom_mode; // use custom strip list + OSCTempMode temp_mode; // use custom strip list + Sorted temp_strips; // temp strip list for grouponly, vcaonly, auxonly + boost::shared_ptr temp_master; // temp master stripable + std::bitset<32> strip_types; // strip_types for this linkset + Sorted strips; // list of valid strips in order for this set + }; + + std::map link_sets; + // list of linksets + + struct PortAdd { + public: + std::string host; + std::string port; + }; + + std::vector _ports; + +// GUI calls std::string get_server_url (); void set_debug_mode (OSCDebugMode m) { _debugmode = m; } OSCDebugMode get_debug_mode () { return _debugmode; } + int get_portmode() { return address_only; } + void set_portmode (int pm) { address_only = pm; } + int get_banksize () { return default_banksize; } + void set_banksize (int bs) {default_banksize = bs; } + int get_gainmode() { return default_gainmode; } + void set_gainmode (int gm) { default_gainmode = gm; } + int get_defaultstrip() { return default_strip; } + void set_defaultstrip (int st) { default_strip = st; } + int get_defaultfeedback() { return default_feedback; } + void set_defaultfeedback (int fb) { default_feedback = fb; } + int get_send_size() { return default_send_size; } + void set_send_size (int ss) { default_send_size = ss; } + int get_plugin_size() { return default_plugin_size; } + void set_plugin_size (int ps) { default_plugin_size = ps; } + void clear_devices (); + void gui_changed (); + void get_surfaces (); + std::string get_remote_port () { return remote_port; } + void set_remote_port (std::string pt) { remote_port = pt; } protected: void thread_init (); @@ -169,10 +274,23 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI lo_server _osc_unix_server; std::string _osc_unix_socket_path; std::string _osc_url_file; - bool _send_route_changes; OSCDebugMode _debugmode; + bool address_only; + std::string remote_port; + uint32_t default_banksize; + uint32_t default_strip; + uint32_t default_feedback; + uint32_t default_gainmode; + uint32_t default_send_size; + uint32_t default_plugin_size; bool tick; bool bank_dirty; + bool observer_busy; + float scrub_speed; // Current scrub speed + double scrub_place; // place of play head at latest jog/scrub wheel tick + int64_t scrub_time; // when did the wheel move last? + bool global_init; + boost::shared_ptr _select; // which stripable out of /surface/stripables is gui selected void register_callbacks (); @@ -185,11 +303,17 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI // end "Application Hook" handles std::string get_unix_server_url (); - OSCSurface * get_surface (lo_address addr); + lo_address get_address (lo_message msg); + std::string get_port (std::string host); + OSCSurface * get_surface (lo_address addr, bool quiet = false); + int check_surface (lo_message msg); uint32_t get_sid (boost::shared_ptr strip, lo_address addr); - uint32_t get_rid (uint32_t ssid, lo_address addr); boost::shared_ptr get_strip (uint32_t ssid, lo_address addr); - void global_feedback (std::bitset<32> feedback, lo_address msg, uint32_t gainmode); + void global_feedback (OSCSurface* sur); + void strip_feedback (OSCSurface* sur, bool new_bank_size); + void surface_destroy (OSCSurface* sur); + uint32_t bank_limits_check (uint32_t bank, uint32_t size, uint32_t total); + void bank_leds (OSCSurface* sur); void send_current_value (const char* path, lo_arg** argv, int argc, lo_message msg); void current_value_query (const char* path, size_t len, lo_arg **argv, int argc, lo_message msg); @@ -199,40 +323,83 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI int catchall (const char *path, const char *types, lo_arg **argv, int argc, void *data); static int _catchall (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data); + int set_automation (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + int touch_detect (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + int fake_touch (boost::shared_ptr ctrl); + + int spill (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + + int route_get_sends (lo_message msg); + int route_get_receives(lo_message msg); void routes_list (lo_message msg); - void transport_frame (lo_message msg); + int group_list (lo_message msg); + void surface_list (lo_message msg); + void transport_sample (lo_message msg); void transport_speed (lo_message msg); void record_enabled (lo_message msg); + // cue + Sorted cue_get_sorted_stripables(boost::shared_ptr aux, uint32_t id, lo_message msg); + int cue_parse (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + int cue_set (uint32_t aux, lo_message msg); + int _cue_set (uint32_t aux, lo_address addr); + int cue_next (lo_message msg); + int cue_previous (lo_message msg); + int cue_send_fader (uint32_t id, float position, lo_message msg); + int cue_send_enable (uint32_t id, float state, lo_message msg); + int cue_aux_fader (float position, lo_message msg); + int cue_aux_mute (float state, lo_message msg); + void cue_set_aux (uint32_t aux, lo_message msg); + boost::shared_ptr cue_get_send (uint32_t id, lo_address addr); + // end cue + + // link + LinkSet * get_linkset (uint32_t set, lo_address addr); + int parse_link (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + int link_check (uint32_t linkset); + int set_link (uint32_t set, uint32_t id, lo_address addr); + void surface_link_state (LinkSet * set); + void link_strip_types (uint32_t linkset, uint32_t striptypes); + #define OSC_DEBUG \ if (_debugmode == All) { \ debugmsg (dgettext(PACKAGE, "OSC"), path, types, argv, argc); \ } -#define PATH_CALLBACK_MSG(name) \ - static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ +#define PATH_CALLBACK_MSG(name) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ - } \ - int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ - OSC_DEBUG; \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ if (argc > 0 && !strcmp (types, "f") && argv[0]->f != 1.0) { return 0; } \ - name (data); \ - return 0; \ + name (data); \ + return 0; \ } + PATH_CALLBACK_MSG(route_get_sends); + PATH_CALLBACK_MSG(route_get_receives); PATH_CALLBACK_MSG(routes_list); - PATH_CALLBACK_MSG(transport_frame); + PATH_CALLBACK_MSG(group_list); + PATH_CALLBACK_MSG(sel_previous); + PATH_CALLBACK_MSG(sel_next); + PATH_CALLBACK_MSG(surface_list); + PATH_CALLBACK_MSG(transport_sample); PATH_CALLBACK_MSG(transport_speed); PATH_CALLBACK_MSG(record_enabled); + PATH_CALLBACK_MSG(refresh_surface); PATH_CALLBACK_MSG(bank_up); PATH_CALLBACK_MSG(bank_down); + PATH_CALLBACK_MSG(master_select); + PATH_CALLBACK_MSG(custom_clear); #define PATH_CALLBACK(name) \ - static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ - } \ - int cb_ ## name (const char *path, const char *types, lo_arg ** argv, int argc, void *) { \ - OSC_DEBUG; \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg ** argv, int argc, void *data) { \ + OSC_DEBUG; \ + check_surface (data); \ if (argc > 0 && !strcmp (types, "f") && argv[0]->f != 1.0) { return 0; } \ name (); \ return 0; \ @@ -257,6 +424,7 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI PATH_CALLBACK(toggle_all_rec_enables); PATH_CALLBACK(all_tracks_rec_in); PATH_CALLBACK(all_tracks_rec_out); + PATH_CALLBACK(cancel_all_solos); PATH_CALLBACK(remove_marker_at_playhead); PATH_CALLBACK(mark_in); PATH_CALLBACK(mark_out); @@ -293,16 +461,17 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI PATH_CALLBACK(scroll_up_1_page); PATH_CALLBACK(scroll_dn_1_page); -#define PATH_CALLBACK1(name,type,optional) \ - static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ +#define PATH_CALLBACK1(name,type,optional) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ - } \ - int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *) { \ - OSC_DEBUG; \ - if (argc > 0) { \ - name (optional argv[0]->type); \ - } \ - return 0; \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ + check_surface (data); \ + if (argc > 0) { \ + name (optional argv[0]->type); \ + } \ + return 0; \ } PATH_CALLBACK1(set_transport_speed,f,); @@ -311,34 +480,57 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI PATH_CALLBACK1(jump_by_bars,f,); PATH_CALLBACK1(jump_by_seconds,f,); PATH_CALLBACK1(master_set_gain,f,); - PATH_CALLBACK1(master_set_fader,i,); + PATH_CALLBACK1(master_set_fader,f,); + PATH_CALLBACK1(master_delta_gain,f,); PATH_CALLBACK1(master_set_trim,f,); PATH_CALLBACK1(master_set_mute,i,); PATH_CALLBACK1(monitor_set_gain,f,); - PATH_CALLBACK1(monitor_set_fader,i,); - -#define PATH_CALLBACK1_MSG(name,arg1type) \ - static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ + PATH_CALLBACK1(monitor_set_fader,f,); + PATH_CALLBACK1(monitor_delta_gain,f,); + PATH_CALLBACK1(monitor_set_mute,i,); + PATH_CALLBACK1(monitor_set_dim,i,); + PATH_CALLBACK1(monitor_set_mono,i,); + PATH_CALLBACK1(click_level,f,); + +#define PATH_CALLBACK1_MSG(name,arg1type) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ - } \ - int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ - OSC_DEBUG; \ - if (argc > 0) { \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ + if (argc > 0) { \ name (argv[0]->arg1type, data); \ - } \ - return 0; \ + } \ + return 0; \ + } + +#define PATH_CALLBACK1_MSG_s(name,arg1type) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ + return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ + if (argc > 0) { \ + name (&argv[0]->arg1type, data); \ + } \ + return 0; \ } // pan position needs message info to send feedback PATH_CALLBACK1_MSG(master_set_pan_stereo_position,f); - PATH_CALLBACK1_MSG(set_surface_bank_size,i); - PATH_CALLBACK1_MSG(set_surface_strip_types,i); - PATH_CALLBACK1_MSG(set_surface_feedback,i); - PATH_CALLBACK1_MSG(set_surface_gainmode,i); + PATH_CALLBACK1_MSG(scrub,f); + PATH_CALLBACK1_MSG(jog,f); + PATH_CALLBACK1_MSG(jog_mode,f); + PATH_CALLBACK1_MSG(bank_delta,f); + PATH_CALLBACK1_MSG(use_group,f); + PATH_CALLBACK1_MSG_s(name_session,s); + PATH_CALLBACK1_MSG_s(sel_rename,s); + PATH_CALLBACK1_MSG_s(sel_comment,s); PATH_CALLBACK1_MSG(sel_recenable,i); PATH_CALLBACK1_MSG(sel_recsafe,i); PATH_CALLBACK1_MSG(sel_mute,i); + PATH_CALLBACK1_MSG(sel_master_send_enable,i); PATH_CALLBACK1_MSG(sel_solo,i); PATH_CALLBACK1_MSG(sel_solo_iso,i); PATH_CALLBACK1_MSG(sel_solo_safe,i); @@ -347,65 +539,106 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI PATH_CALLBACK1_MSG(sel_phase,i); PATH_CALLBACK1_MSG(sel_gain,f); PATH_CALLBACK1_MSG(sel_fader,f); + PATH_CALLBACK1_MSG(sel_dB_delta,f); PATH_CALLBACK1_MSG(sel_trim,f); + PATH_CALLBACK1_MSG(sel_hide,i); PATH_CALLBACK1_MSG(sel_pan_position,f); PATH_CALLBACK1_MSG(sel_pan_width,f); - -#define PATH_CALLBACK2(name,arg1type,arg2type) \ - static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ + PATH_CALLBACK1_MSG(sel_pan_elevation,f); + PATH_CALLBACK1_MSG(sel_pan_frontback,f); + PATH_CALLBACK1_MSG(sel_pan_lfe,f); + PATH_CALLBACK1_MSG(sel_send_page,f); + PATH_CALLBACK1_MSG(sel_plug_page,f); + PATH_CALLBACK1_MSG(sel_plugin,f); + PATH_CALLBACK1_MSG(sel_plugin_activate,f); + PATH_CALLBACK1_MSG(sel_comp_enable,f); + PATH_CALLBACK1_MSG(sel_comp_threshold,f); + PATH_CALLBACK1_MSG(sel_comp_speed,f); + PATH_CALLBACK1_MSG(sel_comp_mode,f); + PATH_CALLBACK1_MSG(sel_comp_makeup,f); + PATH_CALLBACK1_MSG(sel_eq_enable,f); + PATH_CALLBACK1_MSG(sel_eq_hpf_freq,f); + PATH_CALLBACK1_MSG(sel_eq_hpf_enable,f); + PATH_CALLBACK1_MSG(sel_eq_hpf_slope,f); + PATH_CALLBACK1_MSG(sel_eq_lpf_freq,f); + PATH_CALLBACK1_MSG(sel_eq_lpf_enable,f); + PATH_CALLBACK1_MSG(sel_eq_lpf_slope,f); + PATH_CALLBACK1_MSG(sel_expand,i); + PATH_CALLBACK1_MSG(custom_mode,f); + +#define PATH_CALLBACK2(name,arg1type,arg2type) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ - } \ - int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *) { \ - OSC_DEBUG; \ - if (argc > 1) { \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ + check_surface (data); \ + if (argc > 1) { \ name (argv[0]->arg1type, argv[1]->arg2type); \ - } \ - return 0; \ + } \ + return 0; \ } -#define PATH_CALLBACK2_MSG(name,arg1type,arg2type) \ - static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ +#define PATH_CALLBACK2_MSG(name,arg1type,arg2type) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ - } \ - int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ - OSC_DEBUG; \ - if (argc > 1) { \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ + if (argc > 1) { \ name (argv[0]->arg1type, argv[1]->arg2type, data); \ - } \ - return 0; \ + } \ + return 0; \ + } + +#define PATH_CALLBACK2_MSG_s(name,arg1type,arg2type) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ + return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ + if (argc > 1) { \ + name (argv[0]->arg1type, &argv[1]->arg2type, data); \ + } \ + return 0; \ } -#define PATH_CALLBACK3(name,arg1type,arg2type,arg3type) \ - static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ - return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ - } \ - int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ - OSC_DEBUG; \ - if (argc > 1) { \ - name (argv[0]->arg1type, argv[1]->arg2type,argv[2]->arg3type, data); \ - } \ - return 0; \ - } - -#define PATH_CALLBACK4(name,arg1type,arg2type,arg3type,arg4type) \ - static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ - return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ - } \ - int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ - OSC_DEBUG; \ - if (argc > 1) { \ - name (argv[0]->arg1type, argv[1]->arg2type,argv[2]->arg3type,argv[3]->arg4type, data); \ - } \ - return 0; \ - } +#define PATH_CALLBACK3(name,arg1type,arg2type,arg3type) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ + return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ + if (argc > 1) { \ + name (argv[0]->arg1type, argv[1]->arg2type,argv[2]->arg3type, data); \ + } \ + return 0; \ + } + +#define PATH_CALLBACK4(name,arg1type,arg2type,arg3type,arg4type) \ + static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \ + return static_cast(user_data)->cb_ ## name (path, types, argv, argc, data); \ + } \ + int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \ + OSC_DEBUG; \ + if (argc > 1) { \ + name (argv[0]->arg1type, argv[1]->arg2type,argv[2]->arg3type,argv[3]->arg4type, data); \ + } \ + return 0; \ + } PATH_CALLBACK2_MSG(sel_sendgain,i,f); PATH_CALLBACK2_MSG(sel_sendfader,i,f); PATH_CALLBACK2_MSG(sel_sendenable,i,f); + PATH_CALLBACK2_MSG(sel_eq_gain,i,f); + PATH_CALLBACK2_MSG(sel_eq_freq,i,f); + PATH_CALLBACK2_MSG(sel_eq_q,i,f); + PATH_CALLBACK2_MSG(sel_eq_shape,i,f); - PATH_CALLBACK4(set_surface,i,i,i,i); PATH_CALLBACK2(locate,i,i); PATH_CALLBACK2(loop_location,i,i); + PATH_CALLBACK2_MSG_s(route_rename,i,s); + PATH_CALLBACK2_MSG_s(strip_group,i,s); PATH_CALLBACK2_MSG(route_mute,i,i); PATH_CALLBACK2_MSG(route_solo,i,i); PATH_CALLBACK2_MSG(route_solo_iso,i,i); @@ -415,21 +648,29 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI PATH_CALLBACK2_MSG(route_monitor_input,i,i); PATH_CALLBACK2_MSG(route_monitor_disk,i,i); PATH_CALLBACK2_MSG(strip_phase,i,i); - PATH_CALLBACK2_MSG(strip_select,i,i); + PATH_CALLBACK2_MSG(strip_expand,i,i); + PATH_CALLBACK2_MSG(strip_hide,i,i); PATH_CALLBACK2_MSG(strip_gui_select,i,i); - PATH_CALLBACK2_MSG(route_set_gain_abs,i,f); PATH_CALLBACK2_MSG(route_set_gain_dB,i,f); PATH_CALLBACK2_MSG(route_set_gain_fader,i,f); + PATH_CALLBACK2_MSG(strip_db_delta,i,f); PATH_CALLBACK2_MSG(route_set_trim_dB,i,f); PATH_CALLBACK2_MSG(route_set_pan_stereo_position,i,f); PATH_CALLBACK2_MSG(route_set_pan_stereo_width,i,f); - PATH_CALLBACK3(route_set_send_gain_abs,i,i,f); PATH_CALLBACK3(route_set_send_gain_dB,i,i,f); PATH_CALLBACK3(route_set_send_fader,i,i,f); PATH_CALLBACK3(route_set_send_enable,i,i,f); PATH_CALLBACK4(route_plugin_parameter,i,i,i,f); PATH_CALLBACK3(route_plugin_parameter_print,i,i,i); - + PATH_CALLBACK2_MSG(route_plugin_activate,i,i); + PATH_CALLBACK2_MSG(route_plugin_deactivate,i,i); + PATH_CALLBACK1_MSG(route_plugin_list,i); + PATH_CALLBACK2_MSG(route_plugin_descriptor,i,i); + PATH_CALLBACK2_MSG(route_plugin_reset,i,i); + + int route_rename (int rid, char *s, lo_message msg); + int strip_group (int ssid, char *g, lo_message msg); + int strip_select_group (boost::shared_ptr s, char *g); int route_mute (int rid, int yn, lo_message msg); int route_solo (int rid, int yn, lo_message msg); int route_solo_iso (int rid, int yn, lo_message msg); @@ -439,41 +680,80 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI int route_monitor_input (int rid, int yn, lo_message msg); int route_monitor_disk (int rid, int yn, lo_message msg); int strip_phase (int rid, int yn, lo_message msg); - int strip_select (int rid, int yn, lo_message msg); - int _strip_select (int rid, lo_address addr); + int strip_expand (int rid, int yn, lo_message msg); + int strip_hide (int ssid, int yn, lo_message msg); + int _strip_select (boost::shared_ptr s, lo_address addr); int strip_gui_select (int rid, int yn, lo_message msg); - int route_set_gain_abs (int rid, float level, lo_message msg); int route_set_gain_dB (int rid, float dB, lo_message msg); int route_set_gain_fader (int rid, float pos, lo_message msg); + int strip_db_delta (int ssid, float delta, lo_message msg); int route_set_trim_abs (int rid, float level, lo_message msg); int route_set_trim_dB (int rid, float dB, lo_message msg); int route_set_pan_stereo_position (int rid, float left_right_fraction, lo_message msg); int route_set_pan_stereo_width (int rid, float percent, lo_message msg); - int route_set_send_gain_abs (int rid, int sid, float val, lo_message msg); int route_set_send_gain_dB (int rid, int sid, float val, lo_message msg); int route_set_send_fader (int rid, int sid, float val, lo_message msg); int route_set_send_enable (int rid, int sid, float val, lo_message msg); int route_plugin_parameter (int rid, int piid,int par, float val, lo_message msg); int route_plugin_parameter_print (int rid, int piid,int par, lo_message msg); + int route_plugin_activate (int rid, int piid, lo_message msg); + int route_plugin_deactivate (int rid, int piid, lo_message msg); + int route_plugin_list(int ssid, lo_message msg); + int route_plugin_descriptor(int ssid, int piid, lo_message msg); + int route_plugin_reset(int ssid, int piid, lo_message msg); //banking functions int set_bank (uint32_t bank_start, lo_message msg); int _set_bank (uint32_t bank_start, lo_address addr); int bank_up (lo_message msg); + int bank_delta (float delta, lo_message msg); + int use_group (float value, lo_message msg); int bank_down (lo_message msg); - int set_surface (uint32_t b_size, uint32_t strips, uint32_t fb, uint32_t gmode, lo_message msg); + // surface set up + int surface_parse (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + 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); int set_surface_bank_size (uint32_t bs, lo_message msg); int set_surface_strip_types (uint32_t st, lo_message msg); int set_surface_feedback (uint32_t fb, lo_message msg); int set_surface_gainmode (uint32_t gm, lo_message msg); - + int set_surface_port (uint32_t po, lo_message msg); + int refresh_surface (lo_message msg); + int custom_clear (lo_message msg); + int custom_mode (float state, lo_message msg); + int _custom_mode (uint32_t state, lo_address addr); + int name_session (char *n, lo_message msg); + // select + int sel_send_pagesize (uint32_t size, lo_message msg); + int sel_send_page (int page, lo_message msg); + int sel_plug_pagesize (uint32_t size, lo_message msg); + int sel_plug_page (int page, lo_message msg); + int sel_plugin (int delta, lo_message msg); + int _sel_plugin (int id, lo_address addr); + int sel_plugin_activate (float state, lo_message msg); + int select_plugin_parameter (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + void processor_changed (std::string remote_url); + + int scrub (float delta, lo_message msg); + int jog (float delta, lo_message msg); + int jog_mode (float mode, lo_message msg); + int set_marker (const char* types, lo_arg **argv, int argc, lo_message msg); + int click_level (float position); int master_set_gain (float dB); - int master_set_fader (uint32_t position); + int master_set_fader (float position); + int master_delta_gain (float delta); int master_set_trim (float dB); int master_set_pan_stereo_position (float position, lo_message msg); int master_set_mute (uint32_t state); + int master_select (lo_message msg); int monitor_set_gain (float dB); - int monitor_set_fader (uint32_t position); + int monitor_set_fader (float position); + int monitor_delta_gain (float delta); + int monitor_set_mute (uint32_t state); + int monitor_set_dim (uint32_t state); + int monitor_set_mono (uint32_t state); + int sel_group (char *g, lo_message msg); + int sel_rename (char *n, lo_message msg); + int sel_comment (char *c, lo_message msg); int sel_recenable (uint32_t state, lo_message msg); int sel_recsafe (uint32_t state, lo_message msg); int sel_mute (uint32_t state, lo_message msg); @@ -485,18 +765,45 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI int sel_phase (uint32_t state, lo_message msg); int sel_gain (float state, lo_message msg); int sel_fader (float state, lo_message msg); + int sel_dB_delta (float delta, lo_message msg); int sel_trim (float val, lo_message msg); + int sel_hide (uint32_t state, lo_message msg); + int sel_previous (lo_message msg); + int sel_next (lo_message msg); + int sel_delta (int delta, lo_message msg); + boost::shared_ptr get_send (boost::shared_ptr st, lo_address addr); int sel_pan_position (float val, lo_message msg); int sel_pan_width (float val, lo_message msg); int sel_sendgain (int id, float dB, lo_message msg); int sel_sendfader (int id, float pos, lo_message msg); int sel_sendenable (int id, float pos, lo_message msg); + int sel_master_send_enable (int state, lo_message msg); + int sel_expand (uint32_t state, lo_message msg); + int sel_pan_elevation (float val, lo_message msg); + int sel_pan_frontback (float val, lo_message msg); + int sel_pan_lfe (float val, lo_message msg); + int sel_comp_enable (float val, lo_message msg); + int sel_comp_threshold (float val, lo_message msg); + int sel_comp_speed (float val, lo_message msg); + int sel_comp_mode (float val, lo_message msg); + int sel_comp_makeup (float val, lo_message msg); + int sel_eq_enable (float val, lo_message msg); + int sel_eq_hpf_freq (float val, lo_message msg); + int sel_eq_hpf_enable (float val, lo_message msg); + int sel_eq_hpf_slope (float val, lo_message msg); + int sel_eq_lpf_freq (float val, lo_message msg); + int sel_eq_lpf_enable (float val, lo_message msg); + int sel_eq_lpf_slope (float val, lo_message msg); + int sel_eq_gain (int id, float val, lo_message msg); + int sel_eq_freq (int id, float val, lo_message msg); + int sel_eq_q (int id, float val, lo_message msg); + int sel_eq_shape (int id, float val, lo_message msg); + int set_temp_mode (lo_address addr); + int parse_sel_group (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + int parse_sel_vca (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg); + boost::shared_ptr get_vca_by_name (std::string vname); void listen_to_route (boost::shared_ptr, lo_address); - void end_listen (boost::shared_ptr, lo_address); - void drop_route (boost::weak_ptr); - void route_lost (boost::weak_ptr); - void gui_selection_changed (ARDOUR::StripableNotificationListPtr stripables); void route_name_changed (const PBD::PropertyChange&, boost::weak_ptr r, lo_address addr); void recalcbanks (); @@ -504,21 +811,11 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI void notify_routes_added (ARDOUR::RouteList &); void notify_vca_added (ARDOUR::VCAList &); - void update_clock (); + int cancel_all_solos (); bool periodic (void); sigc::connection periodic_connection; PBD::ScopedConnectionList session_connections; - int route_send_fail (std::string path, uint32_t ssid, float val, lo_address addr); - int sel_send_fail (std::string path, uint32_t id, float val, lo_address addr); - - typedef std::list RouteObservers; - - RouteObservers route_observers; - - typedef std::list GlobalObservers; - GlobalObservers global_observers; - void debugmsg (const char *prefix, const char *path, const char* types, lo_arg **argv, int argc); static OSC* _instance;