C++98 compat for 032139ac3
[ardour.git] / libs / surfaces / osc / osc_select_observer.cc
index 8b07932a1101ad9038491f74d15e50308e1589a9..9473897820f7fee43244705bebb66d521b5e163b 100644 (file)
@@ -17,6 +17,7 @@
 
 */
 
+#include <vector>
 #include "boost/lambda/lambda.hpp"
 
 #include "ardour/session.h"
@@ -120,14 +121,6 @@ OSCSelectObserver::OSCSelectObserver (boost::shared_ptr<Stripable> s, lo_address
                        change_message ("/select/pan_stereo_width", _strip->pan_width_control());
                }
 
-               // detecting processor changes requires cast to route
-               boost::shared_ptr<Route> r = boost::dynamic_pointer_cast<Route>(_strip);
-               if (r) {
-                       r->processors_changed.connect  (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::send_restart, this, -1), OSC::instance());
-                       send_init();
-                       eq_init();
-               }
-
        }
        if (feedback[13]) { // Well known controls
                // Rest of possible pan controls... Untested because I can't find a way to get them in the GUI :)
@@ -143,10 +136,20 @@ OSCSelectObserver::OSCSelectObserver (boost::shared_ptr<Stripable> s, lo_address
                        _strip->pan_lfe_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message, this, X_("/select/pan_lfe_control"), _strip->pan_lfe_control()), OSC::instance());
                        change_message ("/select/pan_lfe_control", _strip->pan_lfe_control());
                }
+
+               // sends and eq
+               // detecting processor changes requires cast to route
+               boost::shared_ptr<Route> r = boost::dynamic_pointer_cast<Route>(_strip);
+               if (r) {
+                       r->processors_changed.connect  (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::send_restart, this, -1), OSC::instance());
+                       send_init();
+                       eq_init();
+               }
+
                // Compressor
                if (_strip->comp_enable_controllable ()) {
-                       _strip->comp_enable_controllable ()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message, this, X_("/select/comp_enable"), _strip->comp_enable_controllable()), OSC::instance());
-                       change_message ("/select/comp_enable", _strip->comp_enable_controllable());
+                       _strip->comp_enable_controllable ()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::enable_message, this, X_("/select/comp_enable"), _strip->comp_enable_controllable()), OSC::instance());
+                       enable_message ("/select/comp_enable", _strip->comp_enable_controllable());
                }
                if (_strip->comp_threshold_controllable ()) {
                        _strip->comp_threshold_controllable ()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message, this, X_("/select/comp_threshold"), _strip->comp_threshold_controllable()), OSC::instance());
@@ -157,19 +160,13 @@ OSCSelectObserver::OSCSelectObserver (boost::shared_ptr<Stripable> s, lo_address
                        change_message ("/select/comp_speed", _strip->comp_speed_controllable());
                }
                if (_strip->comp_mode_controllable ()) {
-                       _strip->comp_mode_controllable ()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message, this, X_("/select/comp_mode"), _strip->comp_mode_controllable()), OSC::instance());
-                       change_message ("/select/comp_mode", _strip->comp_mode_controllable());
-                       text_message ("/select/comp_mode_name", _strip->comp_mode_name(_strip->comp_mode_controllable()->get_value()));
-                       text_message ("/select/comp_speed_name", _strip->comp_speed_name(_strip->comp_mode_controllable()->get_value()));
+                       _strip->comp_mode_controllable ()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::comp_mode, this), OSC::instance());
+                       comp_mode ();
                }
                if (_strip->comp_makeup_controllable ()) {
                        _strip->comp_makeup_controllable ()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message, this, X_("/select/comp_makeup"), _strip->comp_makeup_controllable()), OSC::instance());
                        change_message ("/select/comp_makeup", _strip->comp_makeup_controllable());
                }
-               if (_strip->comp_redux_controllable ()) {
-                       _strip->comp_redux_controllable ()->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message, this, X_("/select/comp_redux"), _strip->comp_redux_controllable()), OSC::instance());
-                       change_message ("/select/comp_redux", _strip->comp_redux_controllable());
-               }
 
        }
 
@@ -218,7 +215,7 @@ OSCSelectObserver::~OSCSelectObserver ()
                clear_strip ("/select/meter", 0);
        }
        if (feedback[13]) { // Well known controls
-               clear_strip ("/select/pan_elevation_position", .5);
+               clear_strip ("/select/pan_elevation_position", 0);
                clear_strip ("/select/pan_frontback_position", .5);
                clear_strip ("/select/pan_lfe_control", 0);
                clear_strip ("/select/comp_enable", 0);
@@ -228,7 +225,6 @@ OSCSelectObserver::~OSCSelectObserver ()
                text_message ("/select/comp_mode_name", " ");
                text_message ("/select/comp_speed_name", " ");
                clear_strip ("/select/comp_makeup", 0);
-               clear_strip ("/select/comp_redux", 0);
        }
        send_end();
        eq_end();
@@ -245,20 +241,21 @@ OSCSelectObserver::send_init()
                sends = false;
                if (_strip->send_level_controllable (nsends)) {
                        _strip->send_level_controllable(nsends)->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::send_gain, this, nsends, _strip->send_level_controllable(nsends)), OSC::instance());
+                       send_timeout.push_back (0);
                        send_gain (nsends, _strip->send_level_controllable(nsends));
                        sends = true;
                }
 
                if (_strip->send_enable_controllable (nsends)) {
-                       _strip->send_enable_controllable(nsends)->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/send_enable"), nsends + 1, _strip->send_enable_controllable(nsends)), OSC::instance());
-                       change_message_with_id ("/select/send_enable", nsends + 1, _strip->send_enable_controllable(nsends));
+                       _strip->send_enable_controllable(nsends)->Changed.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::enable_message_with_id, this, X_("/select/send_enable"), nsends + 1, _strip->send_enable_controllable(nsends)), OSC::instance());
+                       enable_message_with_id ("/select/send_enable", nsends + 1, _strip->send_enable_controllable(nsends));
                        sends = true;
                } else if (sends) {
                        // not used by Ardour, just mixbus so in Ardour always true
                        clear_strip_with_id ("/select/send_enable", nsends + 1, 1);
                }
                // this should get signalled by the route the send goes to, (TODO)
-               if (sends) { // if the gain control is there, this is too
+               if (!gainmode && sends) { // if the gain control is there, this is too
                        text_with_id ("/select/send_name", nsends + 1, _strip->send_name(nsends));
                }
                // Send numbers are 0 based, OSC is 1 based so this gets incremented at the end
@@ -309,8 +306,7 @@ OSCSelectObserver::tick ()
                                string path = "/select/meter";
                                lo_message msg = lo_message_new ();
                                if (gainmode && feedback[7]) {
-                                       uint32_t lev1023 = (uint32_t)((now_meter + 54) * 17.05);
-                                       lo_message_add_int32 (msg, lev1023);
+                                       lo_message_add_float (msg, ((now_meter + 94) / 100));
                                        lo_send_message (addr, path.c_str(), msg);
                                } else if ((!gainmode) && feedback[7]) {
                                        lo_message_add_float (msg, now_meter);
@@ -340,6 +336,24 @@ OSCSelectObserver::tick ()
                _last_meter = now_meter;
 
        }
+       if (feedback[1]) {
+               if (gain_timeout) {
+                       if (gain_timeout == 1) {
+                               text_message ("/select/name", _strip->name());
+                       }
+                       gain_timeout--;
+               }
+       }
+       if (feedback[13]) {
+               for (uint32_t i = 0; i < send_timeout.size(); i++) {
+                       if (send_timeout[i]) {
+                               if (send_timeout[i] == 1) {
+                                       text_with_id ("/select/send_name", i + 1, _strip->send_name(i));
+                               }
+                               send_timeout[i]--;
+                       }
+               }
+       }
 
 }
 
@@ -378,6 +392,18 @@ OSCSelectObserver::change_message (string path, boost::shared_ptr<Controllable>
        lo_message_free (msg);
 }
 
+void
+OSCSelectObserver::enable_message (string path, boost::shared_ptr<Controllable> controllable)
+{
+       float val = controllable->get_value();
+       if (val) {
+               clear_strip (path, 1);
+       } else {
+               clear_strip (path, 0);
+       }
+
+}
+
 void
 OSCSelectObserver::change_message_with_id (string path, uint32_t id, boost::shared_ptr<Controllable> controllable)
 {
@@ -395,6 +421,17 @@ OSCSelectObserver::change_message_with_id (string path, uint32_t id, boost::shar
        lo_message_free (msg);
 }
 
+void
+OSCSelectObserver::enable_message_with_id (string path, uint32_t id, boost::shared_ptr<Controllable> controllable)
+{
+       float val = controllable->get_value();
+       if (val) {
+               clear_strip_with_id (path, id, 1);
+       } else {
+               clear_strip_with_id (path, id, 0);
+       }
+}
+
 void
 OSCSelectObserver::text_message (string path, std::string text)
 {
@@ -446,11 +483,9 @@ OSCSelectObserver::gain_message (string path, boost::shared_ptr<Controllable> co
        lo_message msg = lo_message_new ();
 
        if (gainmode) {
-               if (controllable->get_value() == 1) {
-                       lo_message_add_int32 (msg, 800);
-               } else {
-                       lo_message_add_int32 (msg, gain_to_slider_position (controllable->get_value()) * 1023);
-               }
+               lo_message_add_float (msg, gain_to_slider_position (controllable->get_value()));
+               text_message ("/select/name", to_string (accurate_coefficient_to_dB (controllable->get_value()), std::dec));
+               gain_timeout = 8;
        } else {
                if (controllable->get_value() < 1e-15) {
                        lo_message_add_float (msg, -200);
@@ -469,21 +504,31 @@ OSCSelectObserver::send_gain (uint32_t id, boost::shared_ptr<PBD::Controllable>
        lo_message msg = lo_message_new ();
        string path;
        float value;
+       float db;
+#ifdef MIXBUS
+               db = controllable->get_value();
+#else
+               if (controllable->get_value() < 1e-15) {
+                       db = -193;
+               } else {
+                       db = accurate_coefficient_to_dB (controllable->get_value());
+               }
+#endif
 
        if (gainmode) {
                path = "/select/send_fader";
-               if (controllable->get_value() == 1) {
-                       value = 800;
-               } else {
-                       value = gain_to_slider_position (controllable->get_value());
-               }
+#ifdef MIXBUS
+               value = controllable->internal_to_interface (controllable->get_value());
+#else
+               value = gain_to_slider_position (controllable->get_value());
+#endif
+       text_with_id ("/select/send_name" , id + 1, to_string (db, std::dec));
+       if (send_timeout.size() > id) {
+               send_timeout[id] = 8;
+       }
        } else {
                path = "/select/send_gain";
-               if (controllable->get_value() < 1e-15) {
-                       value = -193;
-               } else {
-                       value = accurate_coefficient_to_dB (controllable->get_value());
-               }
+               value = db;
        }
 
        if (feedback[2]) {
@@ -513,6 +558,14 @@ OSCSelectObserver::text_with_id (string path, uint32_t id, string name)
        lo_message_free (msg);
 }
 
+void
+OSCSelectObserver::comp_mode ()
+{
+       change_message ("/select/comp_mode", _strip->comp_mode_controllable());
+       text_message ("/select/comp_mode_name", _strip->comp_mode_name(_strip->comp_mode_controllable()->get_value()));
+       text_message ("/select/comp_speed_name", _strip->comp_speed_name(_strip->comp_mode_controllable()->get_value()));
+}
+
 void
 OSCSelectObserver::eq_init()
 {
@@ -522,8 +575,8 @@ OSCSelectObserver::eq_init()
                change_message ("/select/eq_hpf", _strip->eq_hpf_controllable());
        }
        if (_strip->eq_enable_controllable ()) {
-               _strip->eq_enable_controllable ()->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message, this, X_("/select/eq_enable"), _strip->eq_enable_controllable()), OSC::instance());
-               change_message ("/select/eq_enable", _strip->eq_enable_controllable());
+               _strip->eq_enable_controllable ()->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::enable_message, this, X_("/select/eq_enable"), _strip->eq_enable_controllable()), OSC::instance());
+               enable_message ("/select/eq_enable", _strip->eq_enable_controllable());
        }
 
        uint32_t eq_bands = _strip->eq_band_cnt ();
@@ -536,19 +589,19 @@ OSCSelectObserver::eq_init()
                        text_with_id ("/select/eq_band_name", i + 1, _strip->eq_band_name (i));
                }
                if (_strip->eq_gain_controllable (i)) {
-                       _strip->eq_gain_controllable(i)->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/eq_gain"), i, _strip->eq_gain_controllable(i)), OSC::instance());
+                       _strip->eq_gain_controllable(i)->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/eq_gain"), i + 1, _strip->eq_gain_controllable(i)), OSC::instance());
                        change_message_with_id ("/select/eq_gain", i + 1, _strip->eq_gain_controllable(i));
                }
                if (_strip->eq_freq_controllable (i)) {
-                       _strip->eq_freq_controllable(i)->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/eq_freq"), i, _strip->eq_freq_controllable(i)), OSC::instance());
+                       _strip->eq_freq_controllable(i)->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/eq_freq"), i + 1, _strip->eq_freq_controllable(i)), OSC::instance());
                        change_message_with_id ("/select/eq_freq", i + 1, _strip->eq_freq_controllable(i));
                }
                if (_strip->eq_q_controllable (i)) {
-                       _strip->eq_q_controllable(i)->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/eq_q"), i, _strip->eq_q_controllable(i)), OSC::instance());
+                       _strip->eq_q_controllable(i)->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/eq_q"), i + 1, _strip->eq_q_controllable(i)), OSC::instance());
                        change_message_with_id ("/select/eq_q", i + 1, _strip->eq_q_controllable(i));
                }
                if (_strip->eq_shape_controllable (i)) {
-                       _strip->eq_shape_controllable(i)->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/eq_shape"), i, _strip->eq_shape_controllable(i)), OSC::instance());
+                       _strip->eq_shape_controllable(i)->Changed.connect (eq_connections, MISSING_INVALIDATOR, boost::bind (&OSCSelectObserver::change_message_with_id, this, X_("/select/eq_shape"), i + 1, _strip->eq_shape_controllable(i)), OSC::instance());
                        change_message_with_id ("/select/eq_shape", i + 1, _strip->eq_shape_controllable(i));
                }
        }
@@ -557,6 +610,7 @@ OSCSelectObserver::eq_init()
 void
 OSCSelectObserver::eq_end ()
 {
+       //need to check feedback for [13]
        eq_connections.drop_connections ();
        clear_strip ("/select/eq_hpf", 0);
        clear_strip ("/select/eq_enable", 0);