Add Audio Tracks and Busses too.
[ardour.git] / libs / surfaces / mackie / mackie_control_protocol.h
index ac1ba53896396d173be015323e770891a11ea306..abdd96bf9077fa9d0345189a735175a0cf9fec67 100644 (file)
@@ -44,6 +44,7 @@
 
 namespace ARDOUR {
        class AutomationControl;
+       class Port;
 }
 
 namespace MIDI {
@@ -102,44 +103,56 @@ class MackieControlProtocol
 
        enum ViewMode {
                Mixer,
-               Dynamics,
-               EQ,
-               Loop,
                AudioTracks,
                MidiTracks,
                Busses,
-               Sends,
+               Auxes,
                Plugins,
        };
 
+       enum PotMode {
+               Trim,
+               Send,
+               Pan,
+       };
+
        enum FlipMode {
                Normal, /* fader controls primary, vpot controls secondary */
                Mirror, /* fader + vpot control secondary */
                Swap,   /* fader controls secondary, vpot controls primary */
                Zero,   /* fader controls primary, but doesn't move, vpot controls secondary */
        };
-       
+
        MackieControlProtocol(ARDOUR::Session &);
        virtual ~MackieControlProtocol();
 
        static MackieControlProtocol* instance() { return _instance; }
-       
+
        const Mackie::DeviceInfo& device_info() const { return _device_info; }
        Mackie::DeviceProfile& device_profile() { return _device_profile; }
 
+       PBD::Signal0<void> DeviceChanged;
+       PBD::Signal1<void,boost::shared_ptr<Mackie::Surface> > ConnectionChange;
+
         void device_ready ();
 
        int set_active (bool yn);
-       int  set_device (const std::string&);
+       int  set_device (const std::string&, bool force);
         void set_profile (const std::string&);
 
        FlipMode flip_mode () const { return _flip_mode; }
        ViewMode view_mode () const { return _view_mode; }
+       PotMode pot_mode () const { return _pot_mode; }
        bool zoom_mode () const { return modifier_state() & MODIFIER_ZOOM; }
        bool     metering_active () const { return _metering_active; }
 
+       bool is_track (boost::shared_ptr<ARDOUR::Route>) const;
+       bool is_audio_track (boost::shared_ptr<ARDOUR::Route>) const;
+       bool is_midi_track (boost::shared_ptr<ARDOUR::Route>) const;
+
        void set_view_mode (ViewMode);
        void set_flip_mode (FlipMode);
+       void set_pot_mode (PotMode);
 
        XMLNode& get_state ();
        int set_state (const XMLNode&, int version);
@@ -148,20 +161,23 @@ class MackieControlProtocol
           we do not implement get/set_feedback() since this aspect of
           support for the protocol is not optional.
        */
-       
+
        static bool probe();
-       
-        Glib::Threads::Mutex surfaces_lock;
+
+       mutable Glib::Threads::Mutex surfaces_lock;
        typedef std::list<boost::shared_ptr<Mackie::Surface> > Surfaces;
        Surfaces surfaces;
 
+       boost::shared_ptr<Mackie::Surface> get_surface_by_raw_pointer (void*) const;
+       boost::shared_ptr<Mackie::Surface> nth_surface (uint32_t) const;
+
        std::list<boost::shared_ptr<ARDOUR::Bundle> > bundles ();
 
        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 (bool with_locked_strips = true) const;
-       
+
        bool has_editor () const { return true; }
        void* get_gui () const;
        void tear_down_gui ();
@@ -174,7 +190,7 @@ class MackieControlProtocol
        void recalibrate_faders ();
        void toggle_backlight ();
        void set_touch_sensitivity (int);
-       
+
        /// rebuild the current bank. Called on route added/removed and
        /// remote id changed.
        void refresh_current_bank();
@@ -191,7 +207,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);
 
@@ -209,7 +225,7 @@ class MackieControlProtocol
        void add_down_button (ARDOUR::AutomationType, int surface, int strip);
        void remove_down_button (ARDOUR::AutomationType, int surface, int strip);
        ControlList down_controls (ARDOUR::AutomationType);
-       
+
        void add_down_select_button (int surface, int strip);
        void remove_down_select_button (int surface, int strip);
        void select_range ();
@@ -217,11 +233,8 @@ class MackieControlProtocol
        int16_t ipmidi_base() const { return _ipmidi_base; }
        void    set_ipmidi_base (int16_t);
 
-       bool session_load () { return _session_load; }
-       void not_session_load () { _session_load = false; }
+       void ping_devices ();
 
-       void midi_connectivity_established ();
-       
   protected:
        // shut down the surface
        void close();
@@ -229,14 +242,14 @@ class MackieControlProtocol
        // This sets up the notifications and sets the
        // controls to the correct values
        void update_surfaces();
-       
+
        // connects global (not strip) signals from the Session to here
        // so the surface can be notified of changes from the other UIs.
        void connect_session_signals();
-       
+
        // set all controls to their zero position
        void zero_all();
-       
+
        /**
           Fetch the set of routes to be considered for control by the
           surface. Excluding master, hidden and control routes, and inactive routes
@@ -254,7 +267,7 @@ class MackieControlProtocol
 
        std::string format_bbt_timecode (ARDOUR::framepos_t now_frame);
        std::string format_timecode_timecode (ARDOUR::framepos_t now_frame);
-       
+
        void do_request (MackieControlUIRequest*);
        int stop ();
 
@@ -267,7 +280,7 @@ class MackieControlProtocol
        struct ButtonHandlers {
            Mackie::LedState (MackieControlProtocol::*press) (Mackie::Button&);
            Mackie::LedState (MackieControlProtocol::*release) (Mackie::Button&);
-       
+
            ButtonHandlers (Mackie::LedState (MackieControlProtocol::*p) (Mackie::Button&),
                            Mackie::LedState (MackieControlProtocol::*r) (Mackie::Button&))
            : press (p)
@@ -277,7 +290,7 @@ class MackieControlProtocol
        typedef std::map<Mackie::Button::ID,ButtonHandlers> ButtonMap;
 
        static MackieControlProtocol* _instance;
-       
+
        Mackie::DeviceInfo       _device_info;
        Mackie::DeviceProfile    _device_profile;
        sigc::connection          periodic_connection;
@@ -302,6 +315,7 @@ class MackieControlProtocol
        bool                     _scrub_mode;
        FlipMode                 _flip_mode;
        ViewMode                 _view_mode;
+       PotMode                  _pot_mode;
        int                      _current_selected_track;
        int                      _modifier_state;
        ButtonMap                 button_map;
@@ -310,9 +324,9 @@ class MackieControlProtocol
        bool                     _metering_active;
        bool                     _initialized;
        ARDOUR::RouteNotificationList _last_selected_routes;
-       XMLNode*                                _surfaces_state;
-       int                                             _surfaces_version;
-       bool                                    _session_load;
+       XMLNode*                 configuration_state;
+       int                      state_version;
+
        boost::shared_ptr<ArdourSurface::Mackie::Surface>       _master_surface;
 
         struct ipMIDIHandler {
@@ -337,6 +351,12 @@ class MackieControlProtocol
        int ipmidi_restart ();
         void initialize ();
         int set_device_info (const std::string& device_name);
+       void update_configuration_state ();
+
+       /* MIDI port connection management */
+
+       PBD::ScopedConnection port_connection;
+       void connection_handler (boost::weak_ptr<ARDOUR::Port>, std::string name1, boost::weak_ptr<ARDOUR::Port>, std::string name2, bool);
 
        /* BUTTON HANDLING */
 
@@ -486,6 +506,8 @@ class MackieControlProtocol
        Mackie::LedState click_release (Mackie::Button&);
        Mackie::LedState view_press (Mackie::Button&);
        Mackie::LedState view_release (Mackie::Button&);
+
+       Mackie::LedState bank_release (Mackie::Button&, uint32_t bank_num);
 };
 
 } // namespace