Added Phase control mackie controls as part of the Trim (track) vpot assignment.
[ardour.git] / libs / surfaces / mackie / strip.h
index 99e51ae6e154f1b4c6ad3c4f0245383f2b037859..e2f701830a0003cce56914b6850277656b5671cd 100644 (file)
@@ -7,6 +7,7 @@
 #include "evoral/Parameter.hpp"
 
 #include "pbd/property_basics.h"
+#include "pbd/ringbuffer.h"
 #include "pbd/signals.h"
 
 #include "ardour/types.h"
@@ -23,6 +24,8 @@ namespace ARDOUR {
        class ChannelCount;
 }
 
+namespace ArdourSurface {
+
 namespace Mackie {
 
 class Control;
@@ -33,15 +36,9 @@ class Fader;
 class Meter;
 class SurfacePort;
 
-struct StripControlDefinition {
-    const char* name;
-    uint32_t base_id;
-    Control* (*factory)(Surface&, int index, const char* name, Group&);
-};
-
 struct GlobalControlDefinition {
     const char* name;
-    uint32_t id;
+    int id;
     Control* (*factory)(Surface&, int index, const char* name, Group&);
     const char* group_name;
 };
@@ -59,24 +56,26 @@ public:
 
        void add (Control & control);
        int index() const { return _index; } // zero based
-       
+
        void set_route (boost::shared_ptr<ARDOUR::Route>, bool with_messages = true);
 
        // call all signal handlers manually
-       void notify_all();
+       void notify_all ();
 
        void handle_button (Button&, ButtonState bs);
        void handle_fader (Fader&, float position);
+       void handle_fader_touch (Fader&, bool touch_on);
        void handle_pot (Pot&, float delta);
 
-       void periodic (uint64_t now_usecs);
+       void periodic (ARDOUR::microseconds_t now_usecs);
+       void redisplay (ARDOUR::microseconds_t now_usecs);
 
        MidiByteArray display (uint32_t line_number, const std::string&);
        MidiByteArray blank_display (uint32_t line_number);
 
        void zero ();
 
-       void flip_mode_changed (bool notify=false);
+       void potmode_changed (bool notify=false);
 
        void lock_controls ();
        void unlock_controls ();
@@ -84,6 +83,11 @@ public:
 
        void gui_selection_changed (const ARDOUR::StrongRouteNotificationList&);
 
+       void notify_metering_state_changed();
+
+       void block_screen_display_for (uint32_t msecs);
+       void block_vpot_mode_display_for (uint32_t msecs);
+
 private:
        Button*  _solo;
        Button*  _recenable;
@@ -97,13 +101,19 @@ private:
        int      _index;
        Surface* _surface;
        bool     _controls_locked;
-       uint64_t _reset_display_at;
+       bool     _transport_is_rolling;
+       bool     _metering_active;
+       uint64_t _block_vpot_mode_redisplay_until;
+       uint64_t _block_screen_redisplay_until;
        boost::shared_ptr<ARDOUR::Route> _route;
        PBD::ScopedConnectionList route_connections;
 
+       ARDOUR::AutomationType  _pan_mode;
+
        float _last_gain_position_written;
        float _last_pan_azi_position_written;
        float _last_pan_width_position_written;
+       float _last_trim_position_written;
 
        void notify_solo_changed ();
        void notify_mute_changed ();
@@ -114,38 +124,45 @@ private:
        void notify_panner_width_changed (bool force_update = true);
        void notify_active_changed ();
        void notify_route_deleted ();
-       
+       void notify_trim_changed (bool force_update = true);
+       void notify_phase_changed (bool force_update = true);
+
        void update_automation ();
        void update_meter ();
 
        std::string vpot_mode_string () const;
 
-       void queue_display_reset (uint32_t msecs);
-       void clear_display_reset ();
-       void reset_display ();
-       void do_parameter_display (ARDOUR::AutomationType, float val);
-       
-       typedef std::map<std::string,boost::shared_ptr<ARDOUR::Bundle> > BundleMap;
-       BundleMap input_bundles;
-       BundleMap output_bundles;
+       void return_to_vpot_mode_display ();
+
+       struct RedisplayRequest {
+               ARDOUR::AutomationType type;
+               float val;
+       };
 
-       void build_input_list (const ARDOUR::ChanCount&);
-       void build_output_list (const ARDOUR::ChanCount&);
-       void maybe_add_to_bundle_map (BundleMap& bm, boost::shared_ptr<ARDOUR::Bundle>, bool for_input, const ARDOUR::ChanCount&);
+       RingBuffer<RedisplayRequest> redisplay_requests;
+
+       void do_parameter_display (ARDOUR::AutomationType, float val);
+       void queue_parameter_display (ARDOUR::AutomationType, float val);
 
        void select_event (Button&, ButtonState);
        void vselect_event (Button&, ButtonState);
        void fader_touch_event (Button&, ButtonState);
 
        std::vector<Evoral::Parameter> possible_pot_parameters;
+       std::vector<Evoral::Parameter> possible_trim_parameters;
        void next_pot_mode ();
        void set_vpot_parameter (Evoral::Parameter);
+       void show_route_name ();
 
        void reset_saved_values ();
 
-       std::map<Evoral::Parameter,Control*> control_by_parameter;
+       bool is_midi_track () const;
+
+       typedef std::map<Evoral::Parameter,Control*> ControlParameterMap;
+       ControlParameterMap control_by_parameter;
 };
 
+}
 }
 
 #endif /* __ardour_mackie_control_protocol_strip_h__ */