convert from Glib:: to Glib::Threads for all thread-related API
[ardour.git] / libs / surfaces / mackie / mackie_control_protocol.h
index c4cda58c266446bb43867c0cb902ae9f54190bed..080aef1e3decf926c0571aedf567d0ac2f45b75a 100644 (file)
@@ -28,8 +28,6 @@
 #include <pthread.h>
 #include <boost/smart_ptr.hpp>
 
-#include <glibmm/thread.h>
-
 #include "pbd/abstract_ui.h"
 #include "midi++/types.h"
 #include "ardour/types.h"
 #include "types.h"
 #include "midi_byte_array.h"
 #include "controls.h"
-#include "mackie_jog_wheel.h"
+#include "jog_wheel.h"
 #include "timer.h"
 #include "device_info.h"
+#include "device_profile.h"
 
 namespace ARDOUR {
        class AutomationControl;
@@ -118,12 +117,16 @@ class MackieControlProtocol
        static MackieControlProtocol* instance() { return _instance; }
        
        const Mackie::DeviceInfo& device_info() const { return _device_info; }
+       Mackie::DeviceProfile& device_profile() { return _device_profile; }
 
        int set_active (bool yn);
-       void set_device (const std::string&);
+       void set_device (const std::string&, bool allow_activation = true);
+       void set_profile (const std::string&);
 
        bool     flip_mode () const { return _flip_mode; }
        ViewMode view_mode () const { return _view_mode; }
+       bool zoom_mode () const { return _zoom_mode; }
+       bool     metering_active () const { return _metering_active; }
 
        void set_view_mode (ViewMode);
        void set_flip_mode (bool);
@@ -141,7 +144,7 @@ class MackieControlProtocol
        void set_master_on_surface_strip (uint32_t surface, uint32_t strip);
        void set_monitor_on_surface_strip (uint32_t surface, uint32_t strip);
        
-       uint32_t n_strips () const;
+       uint32_t n_strips (bool with_locked_strips = true) const;
        
        bool has_editor () const { return true; }
        void* get_gui () const;
@@ -160,6 +163,7 @@ class MackieControlProtocol
        void notify_record_state_changed();
        void notify_transport_state_changed();
        void notify_loop_state_changed();
+       void notify_metering_state_changed();
        // mainly to pick up punch-in and punch-out
        void notify_parameter_changed(std::string const &);
        void notify_solo_active_changed(bool);
@@ -167,7 +171,7 @@ class MackieControlProtocol
        /// Turn timecode on and beats off, or vice versa, depending
        /// on state of _timecode_type
        void update_timecode_beats_led();
-  
+       
        /// this is called to generate the midi to send in response to a button press.
        void update_led(Mackie::Surface&, Mackie::Button & button, Mackie::LedState);
   
@@ -177,8 +181,6 @@ class MackieControlProtocol
        ARDOUR::Session & get_session() { return *session; }
        framepos_t transport_frame() const;
 
-       void add_in_use_timeout (Mackie::Surface& surface, Mackie::Control& in_use_control, boost::weak_ptr<ARDOUR::AutomationControl> touched);
-
        int modifier_state() const { return _modifier_state; }
 
        typedef std::list<boost::shared_ptr<ARDOUR::AutomationControl> > ControlList;
@@ -190,9 +192,12 @@ class MackieControlProtocol
        void add_down_select_button (int surface, int strip);
        void remove_down_select_button (int surface, int strip);
        void select_range ();
-       
-       std::string f_action (uint32_t fn, uint32_t modifier = 0);
 
+       int16_t ipmidi_base() const { return _ipmidi_base; }
+       void    set_ipmidi_base (int16_t);
+
+       void midi_connectivity_established ();
+       
   protected:
        // shut down the surface
        void close();
@@ -231,9 +236,7 @@ class MackieControlProtocol
 
        void thread_init ();
 
-       /* handling function key presses */
-
-       void f_press (uint32_t fn);
+       bool route_is_locked_to_strip (boost::shared_ptr<ARDOUR::Route>) const;
 
   private:
 
@@ -253,6 +256,7 @@ class MackieControlProtocol
        static MackieControlProtocol* _instance;
        
        Mackie::DeviceInfo       _device_info;
+       Mackie::DeviceProfile    _device_profile;
        sigc::connection          periodic_connection;
        uint32_t                 _current_initial_bank;
        PBD::ScopedConnectionList audio_engine_connections;
@@ -260,7 +264,6 @@ class MackieControlProtocol
        PBD::ScopedConnectionList port_connections;
        PBD::ScopedConnectionList route_connections;
        PBD::ScopedConnectionList gui_connections;
-       bool _transport_previously_rolling;
        // timer for two quick marker left presses
        Mackie::Timer            _frm_left_last;
        // last written timecode string
@@ -279,22 +282,26 @@ class MackieControlProtocol
        int                      _current_selected_track;
        int                      _modifier_state;
        PortSources               port_sources;
-       std::vector<std::string> _f_actions;
        ButtonMap                 button_map;
+       int16_t                  _ipmidi_base;
+       bool                      needs_ipmidi_restart;
+       bool                     _metering_active;
+       bool                     _initialized;
+
+       ARDOUR::RouteNotificationList _last_selected_routes;
 
        void create_surfaces ();
-       void port_connected_or_disconnected (std::string, std::string, bool);
-       bool control_in_use_timeout (Mackie::Surface*, Mackie::Control *, boost::weak_ptr<ARDOUR::AutomationControl>);
        bool periodic();
        void build_gui ();
        bool midi_input_handler (Glib::IOCondition ioc, MIDI::Port* port);
        void clear_ports ();
        void force_special_route_to_strip (boost::shared_ptr<ARDOUR::Route> r, uint32_t surface, uint32_t strip_number);
        void build_button_map ();
-
-       void gui_track_selection_changed (ARDOUR::RouteNotificationListPtr);
-
-
+       void gui_track_selection_changed (ARDOUR::RouteNotificationListPtr, bool save_list);
+       void _gui_track_selection_changed (ARDOUR::RouteNotificationList*, bool save_list);
+       void ipmidi_restart ();
+       void initialize ();
+       
        /* BUTTON HANDLING */
 
        typedef std::set<uint32_t> DownButtonList;
@@ -351,8 +358,6 @@ class MackieControlProtocol
        Mackie::LedState global_solo_release(Mackie::Button &);
        Mackie::LedState marker_press(Mackie::Button &);
        Mackie::LedState marker_release(Mackie::Button &);
-       Mackie::LedState drop_press(Mackie::Button &);
-       Mackie::LedState drop_release(Mackie::Button &);
        Mackie::LedState save_press(Mackie::Button &);
        Mackie::LedState save_release(Mackie::Button &);
        Mackie::LedState timecode_beats_press(Mackie::Button &);
@@ -428,8 +433,6 @@ class MackieControlProtocol
        Mackie::LedState on_release (Mackie::Button &);
        Mackie::LedState rec_ready_press (Mackie::Button &);
        Mackie::LedState rec_ready_release (Mackie::Button &);
-       Mackie::LedState snapshot_press (Mackie::Button &);
-       Mackie::LedState snapshot_release (Mackie::Button &);
        Mackie::LedState touch_press (Mackie::Button &);
        Mackie::LedState touch_release (Mackie::Button &);
        Mackie::LedState enter_press (Mackie::Button &);
@@ -444,8 +447,55 @@ class MackieControlProtocol
        Mackie::LedState user_b_release (Mackie::Button &);
        Mackie::LedState fader_touch_press (Mackie::Button &);
        Mackie::LedState fader_touch_release (Mackie::Button &);
+       Mackie::LedState master_fader_touch_press (Mackie::Button &);
+       Mackie::LedState master_fader_touch_release (Mackie::Button &);
+
+       Mackie::LedState snapshot_press (Mackie::Button&);
+       Mackie::LedState snapshot_release (Mackie::Button&);
+       Mackie::LedState read_press (Mackie::Button&);
+       Mackie::LedState read_release (Mackie::Button&);
+       Mackie::LedState write_press (Mackie::Button&);
+       Mackie::LedState write_release (Mackie::Button&);
+       Mackie::LedState fdrgroup_press (Mackie::Button&);
+       Mackie::LedState fdrgroup_release (Mackie::Button&);
+       Mackie::LedState clearsolo_press (Mackie::Button&);
+       Mackie::LedState clearsolo_release (Mackie::Button&);
+       Mackie::LedState track_press (Mackie::Button&);
+       Mackie::LedState track_release (Mackie::Button&);
+       Mackie::LedState send_press (Mackie::Button&);
+       Mackie::LedState send_release (Mackie::Button&);
+       Mackie::LedState miditracks_press (Mackie::Button&);
+       Mackie::LedState miditracks_release (Mackie::Button&);
+       Mackie::LedState inputs_press (Mackie::Button&);
+       Mackie::LedState inputs_release (Mackie::Button&);
+       Mackie::LedState audiotracks_press (Mackie::Button&);
+       Mackie::LedState audiotracks_release (Mackie::Button&);
+       Mackie::LedState audioinstruments_press (Mackie::Button&);
+       Mackie::LedState audioinstruments_release (Mackie::Button&);
+       Mackie::LedState aux_press (Mackie::Button&);
+       Mackie::LedState aux_release (Mackie::Button&);
+       Mackie::LedState busses_press (Mackie::Button&);
+       Mackie::LedState busses_release (Mackie::Button&);
+       Mackie::LedState outputs_press (Mackie::Button&);
+       Mackie::LedState outputs_release (Mackie::Button&);
+       Mackie::LedState user_press (Mackie::Button&);
+       Mackie::LedState user_release (Mackie::Button&);
+       Mackie::LedState trim_press (Mackie::Button&);
+       Mackie::LedState trim_release (Mackie::Button&);
+       Mackie::LedState latch_press (Mackie::Button&);
+       Mackie::LedState latch_release (Mackie::Button&);
+       Mackie::LedState grp_press (Mackie::Button&);
+       Mackie::LedState grp_release (Mackie::Button&);
+       Mackie::LedState nudge_press (Mackie::Button&);
+       Mackie::LedState nudge_release (Mackie::Button&);
+       Mackie::LedState drop_press (Mackie::Button&);
+       Mackie::LedState drop_release (Mackie::Button&);
+       Mackie::LedState replace_press (Mackie::Button&);
+       Mackie::LedState replace_release (Mackie::Button&);
+       Mackie::LedState click_press (Mackie::Button&);
+       Mackie::LedState click_release (Mackie::Button&);
+       Mackie::LedState view_press (Mackie::Button&);
+       Mackie::LedState view_release (Mackie::Button&);
 };
 
-
-
 #endif // ardour_mackie_control_protocol_h