add a hack to deal with device discovery race, in which the devices were not actually...
[ardour.git] / libs / surfaces / mackie / strip.h
1 #ifndef __ardour_mackie_control_protocol_strip_h__
2 #define __ardour_mackie_control_protocol_strip_h__
3
4 #include <string>
5 #include <iostream>
6
7 #include "evoral/Parameter.hpp"
8
9 #include "pbd/property_basics.h"
10 #include "pbd/signals.h"
11
12 #include "ardour/types.h"
13 #include "control_protocol/types.h"
14
15 #include "control_group.h"
16 #include "types.h"
17 #include "midi_byte_array.h"
18 #include "device_info.h"
19
20 namespace ARDOUR {
21         class Route;
22         class Bundle;
23         class ChannelCount;
24 }
25
26 namespace Mackie {
27
28 class Control;
29 class Surface;
30 class Button;
31 class Pot;
32 class Fader;
33 class Meter;
34 class SurfacePort;
35
36 struct GlobalControlDefinition {
37     const char* name;
38     int id;
39     Control* (*factory)(Surface&, int index, const char* name, Group&);
40     const char* group_name;
41 };
42
43 /**
44         This is the set of controls that make up a strip.
45 */
46 class Strip : public Group
47 {
48 public:
49         Strip (Surface&, const std::string & name, int index, const std::map<Button::ID,StripButtonInfo>&);
50         ~Strip();
51
52         boost::shared_ptr<ARDOUR::Route> route() const { return _route; }
53
54         void add (Control & control);
55         int index() const { return _index; } // zero based
56         
57         void set_route (boost::shared_ptr<ARDOUR::Route>, bool with_messages = true);
58
59         // call all signal handlers manually
60         void notify_all();
61
62         void handle_button (Button&, ButtonState bs);
63         void handle_fader (Fader&, float position);
64         void handle_fader_touch (Fader&, bool touch_on);
65         void handle_pot (Pot&, float delta);
66
67         void periodic (uint64_t now_usecs);
68
69         MidiByteArray display (uint32_t line_number, const std::string&);
70         MidiByteArray blank_display (uint32_t line_number);
71
72         void zero ();
73
74         void flip_mode_changed (bool notify=false);
75
76         void lock_controls ();
77         void unlock_controls ();
78         bool locked() const { return _controls_locked; }
79
80         void gui_selection_changed (const ARDOUR::StrongRouteNotificationList&);
81   
82         void notify_metering_state_changed();
83
84 private:
85         Button*  _solo;
86         Button*  _recenable;
87         Button*  _mute;
88         Button*  _select;
89         Button*  _vselect;
90         Button*  _fader_touch;
91         Pot*     _vpot;
92         Fader*   _fader;
93         Meter*   _meter;
94         int      _index;
95         Surface* _surface;
96         bool     _controls_locked;
97         bool     _transport_is_rolling;
98         bool     _metering_active;
99         uint64_t _reset_display_at;
100         boost::shared_ptr<ARDOUR::Route> _route;
101         PBD::ScopedConnectionList route_connections;
102
103         float _last_gain_position_written;
104         float _last_pan_azi_position_written;
105         float _last_pan_width_position_written;
106
107         void notify_solo_changed ();
108         void notify_mute_changed ();
109         void notify_record_enable_changed ();
110         void notify_gain_changed (bool force_update = true);
111         void notify_property_changed (const PBD::PropertyChange&);
112         void notify_panner_azi_changed (bool force_update = true);
113         void notify_panner_width_changed (bool force_update = true);
114         void notify_active_changed ();
115         void notify_route_deleted ();
116         
117         void update_automation ();
118         void update_meter ();
119
120         std::string vpot_mode_string () const;
121
122         void queue_display_reset (uint32_t msecs);
123         void clear_display_reset ();
124         void reset_display ();
125         void do_parameter_display (ARDOUR::AutomationType, float val);
126         
127         typedef std::map<std::string,boost::shared_ptr<ARDOUR::Bundle> > BundleMap;
128         BundleMap input_bundles;
129         BundleMap output_bundles;
130
131         void build_input_list (const ARDOUR::ChanCount&);
132         void build_output_list (const ARDOUR::ChanCount&);
133         void maybe_add_to_bundle_map (BundleMap& bm, boost::shared_ptr<ARDOUR::Bundle>, bool for_input, const ARDOUR::ChanCount&);
134
135         void select_event (Button&, ButtonState);
136         void vselect_event (Button&, ButtonState);
137         void fader_touch_event (Button&, ButtonState);
138
139         std::vector<Evoral::Parameter> possible_pot_parameters;
140         void next_pot_mode ();
141         void set_vpot_parameter (Evoral::Parameter);
142
143         void reset_saved_values ();
144
145         std::map<Evoral::Parameter,Control*> control_by_parameter;
146 };
147
148 }
149
150 #endif /* __ardour_mackie_control_protocol_strip_h__ */