MSVC won't allow us to cast directly from float to an enum. We need to kludge it...
[ardour.git] / libs / surfaces / osc / osc.h
index c9dd723f2c7a55a51ff4509b9faadccface5d23d..f7284063f5916e01664c50121a304e8e27f0448c 100644 (file)
@@ -90,11 +90,14 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        // generic osc send
 
        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 ();
 
@@ -106,15 +109,15 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                All
        };
 
-       enum JogMode {
-               JOG,
-               NUDGE,
-               SCRUB,
-               SHUTTLE,
-               MARKER,
-               SCROLL,
-               TRACK,
-               BANK
+       enum OSCCustomMode {
+               CusOff = 0,
+               CusRawOrder = 1,
+               CusSort =2,
+               CusFilterRaw = 5,
+               CusFilter = 6,
+               GroupOnly = 7,
+               VCAOnly = 8,
+               BusOnly = 9
        };
 
        typedef std::vector<boost::shared_ptr<ARDOUR::Stripable> > Sorted;
@@ -128,14 +131,15 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                //global
                std::string remote_url;         // the url these setting belong to
                bool no_clear;                          // don't send osc clear messages on strip change
-               JogMode jogmode;                        // current jogmode
+               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
+               OSCCustomMode custom_mode;      // use custom strip list
+               Sorted temp_strips;                     // temp strip list for grouponly, vcaonly, auxonly
                Sorted strips;                          // list of stripables for this surface
                // strips
                uint32_t bank;                          // current bank
@@ -198,7 +202,8 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                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
+               OSCCustomMode custom_mode;      // use custom strip list
+               Sorted temp_strips;                     // temp strip list for grouponly, vcaonly, auxonly
                std::bitset<32> strip_types;    // strip_types for this linkset
                Sorted strips;                                  // list of valid strips in order for this set
        };
@@ -206,6 +211,14 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        std::map<uint32_t, LinkSet> link_sets;
         // list of linksets
 
+       struct PortAdd {
+       public:
+               std::string host;
+               std::string port;
+       };
+
+       std::vector<PortAdd> _ports;
+
 // GUI calls
        std::string get_server_url ();
        void set_debug_mode (OSCDebugMode m) { _debugmode = m; }
@@ -277,6 +290,7 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
 
        std::string get_unix_server_url ();
        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<ARDOUR::Stripable> strip, lo_address addr);
@@ -302,6 +316,7 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        int route_get_sends (lo_message msg);
        int route_get_receives(lo_message msg);
        void routes_list (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);
@@ -349,6 +364,8 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        PATH_CALLBACK_MSG(route_get_sends);
        PATH_CALLBACK_MSG(route_get_receives);
        PATH_CALLBACK_MSG(routes_list);
+       PATH_CALLBACK_MSG(group_list);
+       PATH_CALLBACK_MSG(sel_bus_only);
        PATH_CALLBACK_MSG(surface_list);
        PATH_CALLBACK_MSG(transport_sample);
        PATH_CALLBACK_MSG(transport_speed);
@@ -470,6 +487,18 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
                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<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 > 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);
 
@@ -478,6 +507,9 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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);
@@ -589,6 +621,7 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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);
@@ -603,6 +636,7 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        PATH_CALLBACK2_MSG(strip_gui_select,i,i);
        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);
@@ -618,6 +652,8 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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<ARDOUR::Stripable> 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);
@@ -631,7 +667,6 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        int strip_hide (int ssid, 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);
        int route_set_gain_fader (int rid, float pos, lo_message msg);
        int strip_db_delta (int ssid, float delta, lo_message msg);
@@ -664,9 +699,12 @@ 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 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 (OSCCustomMode 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);
@@ -696,6 +734,9 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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);
@@ -710,6 +751,8 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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_bus_only (lo_message msg);
+       boost::shared_ptr<ARDOUR::Send> get_send (boost::shared_ptr<ARDOUR::Stripable> 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);
@@ -736,6 +779,9 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
        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 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<ARDOUR::VCA> get_vca_by_name (std::string vname);
 
        void listen_to_route (boost::shared_ptr<ARDOUR::Stripable>, lo_address);