Fix code style
[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         refresh_strip (_strip, sends, true);
52 }
53
54 OSCCueObserver::~OSCCueObserver ()
55 {
56         tick_enable = false;
57         clear_observer ();
58         lo_address_free (addr);
59 }
60
61 void
62 OSCCueObserver::clear_observer ()
63 {
64         tick_enable = false;
65
66         strip_connections.drop_connections ();
67         _strip = boost::shared_ptr<ARDOUR::Stripable> ();
68         send_end (0);
69         // all strip buttons should be off and faders 0 and etc.
70         _osc.text_message_with_id (X_("/cue/name"), 0, " ", true, addr);
71         _osc.float_message (X_("/cue/mute"), 0, addr);
72         _osc.float_message (X_("/cue/fader"), 0, addr);
73         _osc.float_message (X_("/cue/signal"), 0, addr);
74
75 }
76
77 void
78 OSCCueObserver::refresh_strip (boost::shared_ptr<ARDOUR::Stripable> new_strip, Sorted new_sends, bool force)
79 {
80         tick_enable = false;
81
82         strip_connections.drop_connections ();
83
84         send_end (new_sends.size ());
85         _strip = new_strip;
86         _strip->DropReferences.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::clear_observer, this), OSC::instance());
87         sends = new_sends;
88
89         _strip->PropertyChanged.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::name_changed, this, boost::lambda::_1, 0), OSC::instance());
90         name_changed (ARDOUR::Properties::name, 0);
91
92         _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());
93         send_change_message (X_("/cue/mute"), 0, _strip->mute_control());
94
95         gain_timeout.push_back (0);
96         _last_gain.push_back (-1.0);
97         _strip->gain_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_gain_message, this, 0, _strip->gain_control(), false), OSC::instance());
98         send_gain_message (0, _strip->gain_control(), true);
99
100         send_init ();
101
102         tick_enable = true;
103         tick ();
104 }
105
106 void
107 OSCCueObserver::tick ()
108 {
109         if (!tick_enable) {
110                 return;
111         }
112         float now_meter;
113         if (_strip->peak_meter()) {
114                 now_meter = _strip->peak_meter()->meter_level(0, MeterMCP);
115         } else {
116                 now_meter = -193;
117         }
118         if (now_meter < -120) now_meter = -193;
119         if (_last_meter != now_meter) {
120                 float signal;
121                 if (now_meter < -40) {
122                         signal = 0;
123                 } else {
124                         signal = 1;
125                 }
126                 _osc.float_message (X_("/cue/signal"), signal, addr);
127         }
128         _last_meter = now_meter;
129
130         for (uint32_t i = 0; i < gain_timeout.size(); i++) {
131                 if (gain_timeout[i]) {
132                         if (gain_timeout[i] == 1) {
133                                 name_changed (ARDOUR::Properties::name, i);
134                         }
135                         gain_timeout[i]--;
136                 }
137         }
138
139 }
140
141 void
142 OSCCueObserver::send_init()
143 {
144         for (uint32_t i = 0; i < sends.size(); i++) {
145                 boost::shared_ptr<Route> r = boost::dynamic_pointer_cast<Route> (sends[i]);
146                 boost::shared_ptr<Send> send = r->internal_send_for (boost::dynamic_pointer_cast<Route> (_strip));
147                 if (r) {
148                         r->processors_changed.connect  (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_restart, this), OSC::instance());
149                 }
150
151                 if (send) {
152                         // send name
153                         if (r) {
154                                 sends[i]->PropertyChanged.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::name_changed, this, boost::lambda::_1, i + 1), OSC::instance());
155                                 name_changed (ARDOUR::Properties::name, i + 1);
156                         }
157                                 
158
159                         if (send->gain_control()) {
160                                 gain_timeout.push_back (0);
161                                 _last_gain.push_back (-1.0);
162                                 send->gain_control()->Changed.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_gain_message, this, i + 1, send->gain_control(), false), OSC::instance());
163                                 send_gain_message (i + 1, send->gain_control(), true);
164                         }
165                         
166                         boost::shared_ptr<Processor> proc = boost::dynamic_pointer_cast<Processor> (send);
167                                 proc->ActiveChanged.connect (send_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::send_enabled_message, this, X_("/cue/send/enable"), i + 1, proc), OSC::instance());
168                                 send_enabled_message (X_("/cue/send/enable"), i + 1, proc);
169                 }
170         }
171
172 }
173
174 void
175 OSCCueObserver::send_end (uint32_t new_size)
176 {
177         send_connections.drop_connections ();
178         if (new_size < sends.size()) {
179                 for (uint32_t i = new_size + 1; i <= sends.size(); i++) {
180                         _osc.float_message (string_compose (X_("/cue/send/fader/%1"), i), 0, addr);
181                         _osc.float_message (string_compose (X_("/cue/send/enable/%1"), i), 0, addr);
182                         _osc.text_message_with_id (X_("/cue/send/name"), i, " ", true, addr);
183                 }
184         }
185         gain_timeout.clear ();
186         _last_gain.clear ();
187         sends.clear ();
188 }
189
190 void
191 OSCCueObserver::send_restart ()
192 {
193         tick_enable = false;
194         send_end(sends.size());
195         send_init();
196         tick_enable = true;
197 }
198
199 void
200 OSCCueObserver::name_changed (const PBD::PropertyChange& what_changed, uint32_t id)
201 {
202         if (!what_changed.contains (ARDOUR::Properties::name)) {
203             return;
204         }
205
206         if (!_strip) {
207                 return;
208         }
209         if (id) {
210                 _osc.text_message_with_id (X_("/cue/send/name"), id, sends[id - 1]->name(), true, addr);
211         } else {
212                 _osc.text_message (X_("/cue/name"), _strip->name(), addr);
213         }
214 }
215
216 void
217 OSCCueObserver::send_change_message (string path, uint32_t id, boost::shared_ptr<Controllable> controllable)
218 {
219         if (id) {
220                 path = string_compose("%1/%2", path, id);
221         }
222         float val = controllable->get_value();
223         _osc.float_message (path, (float) controllable->internal_to_interface (val), addr);
224 }
225
226 void
227 OSCCueObserver::send_gain_message (uint32_t id,  boost::shared_ptr<Controllable> controllable, bool force)
228 {
229         if (_last_gain[id] != controllable->get_value()) {
230                 _last_gain[id] = controllable->get_value();
231         } else {
232                 return;
233         }
234         if (id) {
235                 _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);
236                 _osc.float_message_with_id (X_("/cue/send/fader"), id, controllable->internal_to_interface (controllable->get_value()), true, addr);
237         } else {
238                 _osc.text_message (X_("/cue/name"), string_compose ("%1%2%3", std::fixed, std::setprecision(2), accurate_coefficient_to_dB (controllable->get_value())), addr);
239                 _osc.float_message (X_("/cue/fader"), controllable->internal_to_interface (controllable->get_value()), addr);
240         }
241
242         gain_timeout[id] = 8;
243 }
244
245 void
246 OSCCueObserver::send_enabled_message (std::string path, uint32_t id, boost::shared_ptr<ARDOUR::Processor> proc)
247 {
248         if (id) {
249                 _osc.float_message_with_id (path, id, (float) proc->enabled(), true, addr);
250         } else {
251                 _osc.float_message (path, (float) proc->enabled(), addr);
252         }
253 }