Only show user-presets in favorite sidebar
[ardour.git] / libs / surfaces / osc / osc_cue_observer.cc
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "boost/lambda/lambda.hpp"
21
22 #include "pbd/control_math.h"
23
24 #include "ardour/track.h"
25 #include "ardour/dB.h"
26 #include "ardour/meter.h"
27
28 #include "osc.h"
29 #include "osc_cue_observer.h"
30
31 #include "pbd/i18n.h"
32
33 using namespace std;
34 using namespace PBD;
35 using namespace ARDOUR;
36 using namespace ArdourSurface;
37
38 OSCCueObserver::OSCCueObserver (OSC& o, ArdourSurface::OSC::OSCSurface* su)
39         :  _osc (o)
40         ,sur (su)
41         , tick_enable (false)
42 {
43         addr = lo_address_new_from_url  (sur->remote_url.c_str());
44         uint32_t sid = sur->aux - 1;
45         if (sid >= sur->strips.size ()) {
46                 sid = 0;
47         }
48
49         _strip = sur->strips[sid];
50         sends = sur->sends;
51         _last_signal = -1;
52         _last_meter = -200;
53         refresh_strip (_strip, sends, true);
54 }
55
56 OSCCueObserver::~OSCCueObserver ()
57 {
58         tick_enable = false;
59         clear_observer ();
60         lo_address_free (addr);
61 }
62
63 void
64 OSCCueObserver::clear_observer ()
65 {
66         tick_enable = false;
67
68         strip_connections.drop_connections ();
69         _strip = boost::shared_ptr<ARDOUR::Stripable> ();
70         send_end (0);
71         // all strip buttons should be off and faders 0 and etc.
72         _osc.text_message_with_id (X_("/cue/name"), 0, " ", true, addr);
73         _osc.float_message (X_("/cue/mute"), 0, addr);
74         _osc.float_message (X_("/cue/fader"), 0, addr);
75         _osc.float_message (X_("/cue/signal"), 0, addr);
76
77 }
78
79 void
80 OSCCueObserver::refresh_strip (boost::shared_ptr<ARDOUR::Stripable> new_strip, Sorted new_sends, bool force)
81 {
82         tick_enable = false;
83
84         strip_connections.drop_connections ();
85
86         send_end (new_sends.size ());
87         _strip = new_strip;
88         _strip->DropReferences.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::clear_observer, this), OSC::instance());
89         sends = new_sends;
90
91         _strip->PropertyChanged.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::name_changed, this, boost::lambda::_1, 0), OSC::instance());
92         name_changed (ARDOUR::Properties::name, 0);
93
94         _strip->mute_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_change_message, this, X_("/cue/mute"), 0, _strip->mute_control()), OSC::instance());
95         send_change_message (X_("/cue/mute"), 0, _strip->mute_control());
96
97         gain_timeout.push_back (0);
98         _last_gain.push_back (-1.0);
99         _strip->gain_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_gain_message, this, 0, _strip->gain_control(), false), OSC::instance());
100         send_gain_message (0, _strip->gain_control(), true);
101
102         send_init ();
103
104         tick_enable = true;
105         tick ();
106 }
107
108 void
109 OSCCueObserver::tick ()
110 {
111         if (!tick_enable) {
112                 return;
113         }
114         float now_meter;
115         if (_strip->peak_meter()) {
116                 now_meter = _strip->peak_meter()->meter_level(0, MeterMCP);
117         } else {
118                 now_meter = -193;
119         }
120         if (now_meter < -120) now_meter = -193;
121         if (_last_meter != now_meter) {
122                 float signal;
123                 if (now_meter < -45) {
124                         signal = 0;
125                 } else {
126                         signal = 1;
127                 }
128                 if (_last_signal != signal) {
129                         _osc.float_message (X_("/cue/signal"), signal, addr);
130                         _last_signal = signal;
131                 }
132         }
133         _last_meter = now_meter;
134
135         for (uint32_t i = 0; i < gain_timeout.size(); i++) {
136                 if (gain_timeout[i]) {
137                         if (gain_timeout[i] == 1) {
138                                 name_changed (ARDOUR::Properties::name, i);
139                         }
140                         gain_timeout[i]--;
141                 }
142         }
143
144 }
145
146 void
147 OSCCueObserver::send_init()
148 {
149         for (uint32_t i = 0; i < sends.size(); i++) {
150                 boost::shared_ptr<Route> r = boost::dynamic_pointer_cast<Route> (sends[i]);
151                 boost::shared_ptr<Send> send = r->internal_send_for (boost::dynamic_pointer_cast<Route> (_strip));
152                 if (r) {
153                         r->processors_changed.connect  (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_restart, this), OSC::instance());
154                 }
155
156                 if (send) {
157                         // send name
158                         if (r) {
159                                 sends[i]->PropertyChanged.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::name_changed, this, boost::lambda::_1, i + 1), OSC::instance());
160                                 name_changed (ARDOUR::Properties::name, i + 1);
161                         }
162
163
164                         if (send->gain_control()) {
165                                 gain_timeout.push_back (0);
166                                 _last_gain.push_back (-1.0);
167                                 send->gain_control()->Changed.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_gain_message, this, i + 1, send->gain_control(), false), OSC::instance());
168                                 send_gain_message (i + 1, send->gain_control(), true);
169                         }
170
171                         boost::shared_ptr<Processor> proc = boost::dynamic_pointer_cast<Processor> (send);
172                                 proc->ActiveChanged.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_enabled_message, this, X_("/cue/send/enable"), i + 1, proc), OSC::instance());
173                                 send_enabled_message (X_("/cue/send/enable"), i + 1, proc);
174                 }
175         }
176
177 }
178
179 void
180 OSCCueObserver::send_end (uint32_t new_size)
181 {
182         send_connections.drop_connections ();
183         if (new_size < sends.size()) {
184                 for (uint32_t i = new_size + 1; i <= sends.size(); i++) {
185                         _osc.float_message (string_compose (X_("/cue/send/fader/%1"), i), 0, addr);
186                         _osc.float_message (string_compose (X_("/cue/send/enable/%1"), i), 0, addr);
187                         _osc.text_message_with_id (X_("/cue/send/name"), i, " ", true, addr);
188                 }
189         }
190         gain_timeout.clear ();
191         _last_gain.clear ();
192         sends.clear ();
193 }
194
195 void
196 OSCCueObserver::send_restart ()
197 {
198         tick_enable = false;
199         send_end(sends.size());
200         send_init();
201         tick_enable = true;
202 }
203
204 void
205 OSCCueObserver::name_changed (const PBD::PropertyChange& what_changed, uint32_t id)
206 {
207         if (!what_changed.contains (ARDOUR::Properties::name)) {
208             return;
209         }
210
211         if (!_strip) {
212                 return;
213         }
214         if (id) {
215                 _osc.text_message_with_id (X_("/cue/send/name"), id, sends[id - 1]->name(), true, addr);
216         } else {
217                 _osc.text_message (X_("/cue/name"), _strip->name(), addr);
218         }
219 }
220
221 void
222 OSCCueObserver::send_change_message (string path, uint32_t id, boost::shared_ptr<Controllable> controllable)
223 {
224         if (id) {
225                 path = string_compose("%1/%2", path, id);
226         }
227         float val = controllable->get_value();
228         _osc.float_message (path, (float) controllable->internal_to_interface (val), addr);
229 }
230
231 void
232 OSCCueObserver::send_gain_message (uint32_t id,  boost::shared_ptr<Controllable> controllable, bool force)
233 {
234         if (_last_gain[id] != controllable->get_value()) {
235                 _last_gain[id] = controllable->get_value();
236         } else {
237                 return;
238         }
239         if (id) {
240                 _osc.text_message_with_id (X_("/cue/send/name"), id, string_compose ("%1%2%3", std::fixed, std::setprecision(2), accurate_coefficient_to_dB (controllable->get_value())), true, addr);
241                 _osc.float_message_with_id (X_("/cue/send/fader"), id, controllable->internal_to_interface (controllable->get_value()), true, addr);
242         } else {
243                 _osc.text_message (X_("/cue/name"), string_compose ("%1%2%3", std::fixed, std::setprecision(2), accurate_coefficient_to_dB (controllable->get_value())), addr);
244                 _osc.float_message (X_("/cue/fader"), controllable->internal_to_interface (controllable->get_value()), addr);
245         }
246
247         gain_timeout[id] = 8;
248 }
249
250 void
251 OSCCueObserver::send_enabled_message (std::string path, uint32_t id, boost::shared_ptr<ARDOUR::Processor> proc)
252 {
253         if (id) {
254                 _osc.float_message_with_id (path, id, (float) proc->enabled(), true, addr);
255         } else {
256                 _osc.float_message (path, (float) proc->enabled(), addr);
257         }
258 }