OSC: Add patch from 7137 and make it work for manual port selection.
[ardour.git] / libs / surfaces / osc / osc.h
index 0ff427ecf06659cf367d297364c539e80f3a1f63..8249f544118dc712938b790a271c104c52d81e40 100644 (file)
@@ -39,7 +39,7 @@
 #include "ardour/types.h"
 #include "control_protocol/control_protocol.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 class OSCControllable;
 class OSCRouteObserver;
@@ -96,6 +96,11 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                All
        };
 
+       typedef std::vector<boost::shared_ptr<ARDOUR::Stripable> > Sorted;
+       Sorted get_sorted_stripables(std::bitset<32> types);
+       // cue
+       //Sorted cue_get_sorted_stripables(boost::shared_ptr<Route> aux);
+
 // keep a surface's global setup by remote server url
        struct OSCSurface {
        public:
@@ -105,25 +110,12 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                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
+               int gainmode;                           // what kind of faders do we have Gain db or position 0 to 1?
+               uint32_t expand;                        // Used by /select/select
+               bool expand_enable;                     // use expand instead of select
                OSCSelectObserver* sel_obs;     // So we can sync select feedback with selected channel
-               //StripableList strips; //list of stripables for the current bank
+               Sorted strips;                          // list of stripables for this surface
        };
-               /*
-                * Reminder of what strip_types there are
-                * XXX these have changed!!!
-               AudioTrack = 0x1,
-               MidiTrack = 0x2,
-               AudioBus = 0x4,
-               MidiBus = 0x8,
-               VCA = 0x10,
-               MasterOut = 0x800,
-               MonitorOut = 0x1000,
-               Auditioner = 0x2000,
-               Selected = 0x4000,
-               Hidden = 0x8000,
-               */
                /*
                 * feedback bits:
                 * [0] - Strips - buttons
@@ -136,7 +128,10 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                 * [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] - Selection is local
+                * [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
                 */
 
 
@@ -147,6 +142,20 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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; }
+       void clear_devices ();
+       void gui_changed ();
+       std::string get_remote_port () { return remote_port; }
+       void set_remote_port (std::string pt) { remote_port = pt; }
 
   protected:
         void thread_init ();
@@ -167,6 +176,16 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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;
+       bool tick;
+       bool bank_dirty;
+       bool global_init;
+       boost::shared_ptr<ARDOUR::Stripable> _select;   // which stripable out of /surface/stripables is gui selected
 
        void register_callbacks ();
 
@@ -179,10 +198,11 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        // end "Application Hook" handles
 
        std::string get_unix_server_url ();
+       lo_address get_address (lo_message msg);
        OSCSurface * get_surface (lo_address addr);
-       uint32_t get_sid (uint32_t rid, lo_address addr);
-       uint32_t get_rid (uint32_t sid, lo_address addr);
-       void global_feedback (std::bitset<32> feedback, lo_address msg, uint32_t gainmode);
+       uint32_t get_sid (boost::shared_ptr<ARDOUR::Stripable> strip, lo_address addr);
+       boost::shared_ptr<ARDOUR::Stripable> get_strip (uint32_t ssid, lo_address addr);
+       void global_feedback (std::bitset<32> feedback, lo_address addr, uint32_t gainmode);
 
        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);
@@ -192,6 +212,8 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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 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);
        void transport_speed (lo_message msg);
@@ -213,10 +235,13 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                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(transport_speed);
        PATH_CALLBACK_MSG(record_enabled);
+       PATH_CALLBACK_MSG(refresh_surface);
        PATH_CALLBACK_MSG(bank_up);
        PATH_CALLBACK_MSG(bank_down);
 
@@ -250,6 +275,7 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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);
@@ -304,11 +330,11 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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_set_trim,f,);
        PATH_CALLBACK1(master_set_mute,i,);
        PATH_CALLBACK1(monitor_set_gain,f,);
-       PATH_CALLBACK1(monitor_set_fader,i,);
+       PATH_CALLBACK1(monitor_set_fader,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) { \
@@ -343,6 +369,17 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        PATH_CALLBACK1_MSG(sel_trim,f);
        PATH_CALLBACK1_MSG(sel_pan_position,f);
        PATH_CALLBACK1_MSG(sel_pan_width,f);
+       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_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,f);
+       PATH_CALLBACK1_MSG(sel_expand,i);
 
 #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) { \
@@ -368,6 +405,18 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                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<OSC*>(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<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
@@ -394,10 +443,16 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
 
        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(route_mute,i,i);
        PATH_CALLBACK2_MSG(route_solo,i,i);
        PATH_CALLBACK2_MSG(route_solo_iso,i,i);
@@ -407,20 +462,25 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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_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(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 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);
@@ -430,8 +490,8 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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_select (boost::shared_ptr<ARDOUR::Stripable> 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);
@@ -440,14 +500,20 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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_down (lo_message msg);
        int set_surface (uint32_t b_size, uint32_t strips, uint32_t fb, uint32_t gmode, lo_message msg);
@@ -455,14 +521,15 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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 refresh_surface (lo_message msg);
 
        int master_set_gain (float dB);
-       int master_set_fader (uint32_t position);
+       int master_set_fader (float position);
        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 monitor_set_gain (float dB);
-       int monitor_set_fader (uint32_t position);
+       int monitor_set_fader (float position);
        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);
@@ -479,20 +546,44 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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_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 (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);
 
        void listen_to_route (boost::shared_ptr<ARDOUR::Stripable>, lo_address);
        void end_listen (boost::shared_ptr<ARDOUR::Stripable>, lo_address);
        void drop_route (boost::weak_ptr<ARDOUR::Stripable>);
-       void gui_selection_changed (ARDOUR::StripableNotificationListPtr stripables);
+       void route_lost (boost::weak_ptr<ARDOUR::Stripable>);
+       void gui_selection_changed (void);
 
        void route_name_changed (const PBD::PropertyChange&, boost::weak_ptr<ARDOUR::Route> r, lo_address addr);
+       void recalcbanks ();
+       void _recalcbanks ();
+       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);
+       int sel_fail (std::string path, float val, lo_address addr);
 
        typedef std::list<OSCRouteObserver*> RouteObservers;