2010-12-05 17:35:22 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2009 Paul Davis
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2010-12-05 17:35:22 -05:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "boost/lambda/lambda.hpp"
|
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/track.h"
|
|
|
|
#include "ardour/monitor_control.h"
|
|
|
|
#include "ardour/dB.h"
|
|
|
|
#include "ardour/meter.h"
|
2010-12-05 17:35:22 -05:00
|
|
|
|
|
|
|
#include "osc.h"
|
|
|
|
#include "osc_route_observer.h"
|
2011-04-22 23:34:42 -04:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2010-12-05 17:35:22 -05:00
|
|
|
|
2011-01-19 17:05:38 -05:00
|
|
|
using namespace std;
|
2010-12-05 17:35:22 -05:00
|
|
|
using namespace PBD;
|
|
|
|
using namespace ARDOUR;
|
2015-04-15 17:21:47 -04:00
|
|
|
using namespace ArdourSurface;
|
2010-12-05 17:35:22 -05:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
OSCRouteObserver::OSCRouteObserver (boost::shared_ptr<Stripable> s, lo_address a, uint32_t ss, uint32_t gm, std::bitset<32> fb)
|
|
|
|
: _strip (s)
|
|
|
|
,ssid (ss)
|
|
|
|
,gainmode (gm)
|
|
|
|
,feedback (fb)
|
2010-12-05 17:35:22 -05:00
|
|
|
{
|
|
|
|
addr = lo_address_new (lo_address_get_hostname(a) , lo_address_get_port(a));
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
if (feedback[0]) { // buttons are separate feedback
|
|
|
|
_strip->PropertyChanged.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCRouteObserver::name_changed, this, boost::lambda::_1), OSC::instance());
|
|
|
|
name_changed (ARDOUR::Properties::name);
|
2011-01-19 17:05:38 -05:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
_strip->mute_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_change_message, this, X_("/strip/mute"), _strip->mute_control()), OSC::instance());
|
|
|
|
send_change_message ("/strip/mute", _strip->mute_control());
|
|
|
|
|
|
|
|
_strip->solo_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_change_message, this, X_("/strip/solo"), _strip->solo_control()), OSC::instance());
|
|
|
|
send_change_message ("/strip/solo", _strip->solo_control());
|
|
|
|
|
|
|
|
boost::shared_ptr<Track> track = boost::dynamic_pointer_cast<Track> (_strip);
|
|
|
|
if (track) {
|
2016-07-20 11:59:06 -04:00
|
|
|
track->monitoring_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_monitor_status, this, track->monitoring_control()), OSC::instance());
|
|
|
|
send_monitor_status (track->monitoring_control());
|
2016-05-31 17:09:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<AutomationControl> rec_controllable = _strip->rec_enable_control ();
|
|
|
|
if (rec_controllable) {
|
|
|
|
rec_controllable->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_change_message, this, X_("/strip/recenable"), _strip->rec_enable_control()), OSC::instance());
|
|
|
|
send_change_message ("/strip/recenable", _strip->rec_enable_control());
|
|
|
|
}
|
|
|
|
boost::shared_ptr<AutomationControl> recsafe_controllable = _strip->rec_safe_control ();
|
|
|
|
if (rec_controllable) {
|
|
|
|
recsafe_controllable->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_change_message, this, X_("/strip/record_safe"), _strip->rec_safe_control()), OSC::instance());
|
|
|
|
send_change_message ("/strip/record_safe", _strip->rec_safe_control());
|
|
|
|
}
|
2016-06-29 22:38:17 -04:00
|
|
|
_strip->presentation_info().PropertyChanged.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_select_status, this, _1), OSC::instance());
|
|
|
|
send_select_status (ARDOUR::Properties::selected);
|
2011-01-19 17:05:38 -05:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
if (feedback[1]) { // level controls
|
|
|
|
if (gainmode) {
|
|
|
|
_strip->gain_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_gain_message, this, X_("/strip/fader"), _strip->gain_control()), OSC::instance());
|
|
|
|
send_gain_message ("/strip/fader", _strip->gain_control());
|
|
|
|
} else {
|
|
|
|
_strip->gain_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_gain_message, this, X_("/strip/gain"), _strip->gain_control()), OSC::instance());
|
|
|
|
send_gain_message ("/strip/gain", _strip->gain_control());
|
|
|
|
}
|
2011-01-19 17:05:38 -05:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
boost::shared_ptr<Controllable> trim_controllable = boost::dynamic_pointer_cast<Controllable>(_strip->trim_control());
|
|
|
|
if (trim_controllable) {
|
|
|
|
trim_controllable->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_trim_message, this, X_("/strip/trimdB"), _strip->trim_control()), OSC::instance());
|
|
|
|
send_trim_message ("/strip/trimdB", _strip->trim_control());
|
|
|
|
}
|
2011-01-19 17:05:38 -05:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
boost::shared_ptr<Controllable> pan_controllable = boost::dynamic_pointer_cast<Controllable>(_strip->pan_azimuth_control());
|
|
|
|
if (pan_controllable) {
|
|
|
|
pan_controllable->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCRouteObserver::send_change_message, this, X_("/strip/pan_stereo_position"), _strip->pan_azimuth_control()), OSC::instance());
|
|
|
|
send_change_message ("/strip/pan_stereo_position", _strip->pan_azimuth_control());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tick();
|
2010-12-05 17:35:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
OSCRouteObserver::~OSCRouteObserver ()
|
|
|
|
{
|
2016-05-31 17:09:38 -04:00
|
|
|
|
|
|
|
strip_connections.drop_connections ();
|
|
|
|
// all strip buttons should be off and faders 0 and etc.
|
2016-07-05 17:11:16 -04:00
|
|
|
clear_strip ("/strip/expand", 0);
|
2016-05-31 17:09:38 -04:00
|
|
|
if (feedback[0]) { // buttons are separate feedback
|
2016-08-17 11:24:57 -04:00
|
|
|
text_with_id ("/strip/name", ssid, " ");
|
2016-05-31 17:09:38 -04:00
|
|
|
clear_strip ("/strip/mute", 0);
|
|
|
|
clear_strip ("/strip/solo", 0);
|
|
|
|
clear_strip ("/strip/recenable", 0);
|
|
|
|
clear_strip ("/strip/record_safe", 0);
|
|
|
|
clear_strip ("/strip/monitor_input", 0);
|
|
|
|
clear_strip ("/strip/monitor_disk", 0);
|
2016-06-04 10:04:32 -04:00
|
|
|
clear_strip ("/strip/gui_select", 0);
|
2016-06-05 10:25:54 -04:00
|
|
|
clear_strip ("/strip/select", 0);
|
2016-05-31 17:09:38 -04:00
|
|
|
}
|
|
|
|
if (feedback[1]) { // level controls
|
|
|
|
if (gainmode) {
|
|
|
|
clear_strip ("/strip/fader", 0);
|
|
|
|
} else {
|
|
|
|
clear_strip ("/strip/gain", -193);
|
|
|
|
}
|
|
|
|
clear_strip ("/strip/trimdB", 0);
|
|
|
|
clear_strip ("/strip/pan_stereo_position", 0.5);
|
|
|
|
}
|
|
|
|
if (feedback[9]) {
|
|
|
|
clear_strip ("/strip/signal", 0);
|
|
|
|
}
|
|
|
|
if (feedback[7]) {
|
|
|
|
if (gainmode) {
|
|
|
|
clear_strip ("/strip/meter", 0);
|
|
|
|
} else {
|
|
|
|
clear_strip ("/strip/meter", -193);
|
|
|
|
}
|
|
|
|
}else if (feedback[8]) {
|
|
|
|
clear_strip ("/strip/meter", 0);
|
|
|
|
}
|
2011-01-19 17:05:38 -05:00
|
|
|
|
2010-12-05 17:35:22 -05:00
|
|
|
lo_address_free (addr);
|
|
|
|
}
|
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
void
|
|
|
|
OSCRouteObserver::tick ()
|
|
|
|
{
|
|
|
|
if (feedback[7] || feedback[8] || feedback[9]) { // meters enabled
|
|
|
|
// the only meter here is master
|
2016-06-21 21:47:43 -04:00
|
|
|
float now_meter;
|
|
|
|
if (_strip->peak_meter()) {
|
|
|
|
now_meter = _strip->peak_meter()->meter_level(0, MeterMCP);
|
|
|
|
} else {
|
|
|
|
now_meter = -193;
|
|
|
|
}
|
2016-07-26 17:11:06 -04:00
|
|
|
if (now_meter < -120) now_meter = -193;
|
2016-05-31 17:09:38 -04:00
|
|
|
if (_last_meter != now_meter) {
|
|
|
|
if (feedback[7] || feedback[8]) {
|
|
|
|
string path = "/strip/meter";
|
|
|
|
lo_message msg = lo_message_new ();
|
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
|
|
|
if (gainmode && feedback[7]) {
|
2016-07-26 17:11:06 -04:00
|
|
|
lo_message_add_float (msg, ((now_meter + 94) / 100));
|
2016-05-31 17:09:38 -04:00
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
} else if ((!gainmode) && feedback[7]) {
|
|
|
|
lo_message_add_float (msg, now_meter);
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
} else if (feedback[8]) {
|
|
|
|
uint32_t ledlvl = (uint32_t)(((now_meter + 54) / 3.75)-1);
|
|
|
|
uint16_t ledbits = ~(0xfff<<ledlvl);
|
|
|
|
lo_message_add_int32 (msg, ledbits);
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
}
|
|
|
|
lo_message_free (msg);
|
|
|
|
}
|
|
|
|
if (feedback[9]) {
|
|
|
|
string path = "/strip/signal";
|
|
|
|
lo_message msg = lo_message_new ();
|
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
|
|
|
float signal;
|
|
|
|
if (now_meter < -40) {
|
|
|
|
signal = 0;
|
|
|
|
} else {
|
|
|
|
signal = 1;
|
|
|
|
}
|
|
|
|
lo_message_add_float (msg, signal);
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
lo_message_free (msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_last_meter = now_meter;
|
|
|
|
|
|
|
|
}
|
2016-08-17 11:24:57 -04:00
|
|
|
if (feedback[1]) {
|
|
|
|
if (gain_timeout) {
|
|
|
|
if (gain_timeout == 1) {
|
|
|
|
text_with_id ("/strip/name", ssid, _strip->name());
|
|
|
|
}
|
|
|
|
gain_timeout--;
|
|
|
|
}
|
|
|
|
if (trim_timeout) {
|
|
|
|
if (trim_timeout == 1) {
|
|
|
|
text_with_id ("/strip/name", ssid, _strip->name());
|
|
|
|
}
|
|
|
|
trim_timeout--;
|
|
|
|
}
|
|
|
|
}
|
2016-05-31 17:09:38 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-12-05 17:35:22 -05:00
|
|
|
void
|
|
|
|
OSCRouteObserver::name_changed (const PBD::PropertyChange& what_changed)
|
|
|
|
{
|
|
|
|
if (!what_changed.contains (ARDOUR::Properties::name)) {
|
|
|
|
return;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
if (!_strip) {
|
2010-12-05 17:35:22 -05:00
|
|
|
return;
|
|
|
|
}
|
2016-08-17 11:24:57 -04:00
|
|
|
text_with_id ("/strip/name", ssid, _strip->name());
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2016-08-17 11:24:57 -04:00
|
|
|
void
|
|
|
|
OSCRouteObserver::send_change_message (string path, boost::shared_ptr<Controllable> controllable)
|
|
|
|
{
|
2010-12-05 17:35:22 -05:00
|
|
|
lo_message msg = lo_message_new ();
|
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
2016-08-17 11:24:57 -04:00
|
|
|
float val = controllable->get_value();
|
|
|
|
lo_message_add_float (msg, (float) controllable->internal_to_interface (val));
|
2010-12-05 17:35:22 -05:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
2010-12-05 17:35:22 -05:00
|
|
|
lo_message_free (msg);
|
|
|
|
}
|
2011-01-19 17:05:38 -05:00
|
|
|
|
|
|
|
void
|
2016-08-17 11:24:57 -04:00
|
|
|
OSCRouteObserver::text_with_id (string path, uint32_t id, string name)
|
2011-01-19 17:05:38 -05:00
|
|
|
{
|
|
|
|
lo_message msg = lo_message_new ();
|
2016-05-31 17:09:38 -04:00
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
2016-08-17 11:24:57 -04:00
|
|
|
lo_message_add_int32 (msg, id);
|
2016-05-31 17:09:38 -04:00
|
|
|
}
|
2016-08-17 11:24:57 -04:00
|
|
|
|
|
|
|
lo_message_add_string (msg, name.c_str());
|
2011-01-19 17:05:38 -05:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
lo_message_free (msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
OSCRouteObserver::send_monitor_status (boost::shared_ptr<Controllable> controllable)
|
|
|
|
{
|
|
|
|
int disk, input;
|
|
|
|
float val = controllable->get_value();
|
|
|
|
switch ((int) val) {
|
|
|
|
case 1:
|
|
|
|
disk = 0;
|
|
|
|
input = 1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
disk = 1;
|
|
|
|
input = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
disk = 0;
|
|
|
|
input = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
lo_message msg = lo_message_new ();
|
|
|
|
string path = "/strip/monitor_input";
|
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
|
|
|
lo_message_add_int32 (msg, (float) input);
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
lo_message_free (msg);
|
|
|
|
|
|
|
|
msg = lo_message_new ();
|
|
|
|
path = "/strip/monitor_disk";
|
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
|
|
|
lo_message_add_int32 (msg, (float) disk);
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
lo_message_free (msg);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
OSCRouteObserver::send_trim_message (string path, boost::shared_ptr<Controllable> controllable)
|
|
|
|
{
|
2016-08-17 11:24:57 -04:00
|
|
|
if (gainmode) {
|
|
|
|
text_with_id ("/strip/name", ssid, string_compose ("%1%2%3", std::fixed, std::setprecision(2), accurate_coefficient_to_dB (controllable->get_value())));
|
|
|
|
trim_timeout = 8;
|
|
|
|
}
|
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
lo_message msg = lo_message_new ();
|
|
|
|
|
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
2011-01-19 17:05:38 -05:00
|
|
|
|
2016-05-31 17:09:38 -04:00
|
|
|
lo_message_add_float (msg, (float) accurate_coefficient_to_dB (controllable->get_value()));
|
2011-01-19 17:05:38 -05:00
|
|
|
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
lo_message_free (msg);
|
|
|
|
}
|
2016-05-31 17:09:38 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
OSCRouteObserver::send_gain_message (string path, boost::shared_ptr<Controllable> controllable)
|
|
|
|
{
|
|
|
|
lo_message msg = lo_message_new ();
|
|
|
|
|
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gainmode) {
|
2016-07-26 17:11:06 -04:00
|
|
|
lo_message_add_float (msg, gain_to_slider_position (controllable->get_value()));
|
2016-08-17 11:24:57 -04:00
|
|
|
text_with_id ("/strip/name", ssid, string_compose ("%1%2%3", std::fixed, std::setprecision(2), accurate_coefficient_to_dB (controllable->get_value())));
|
|
|
|
gain_timeout = 8;
|
2016-05-31 17:09:38 -04:00
|
|
|
} else {
|
|
|
|
if (controllable->get_value() < 1e-15) {
|
|
|
|
lo_message_add_float (msg, -200);
|
|
|
|
} else {
|
|
|
|
lo_message_add_float (msg, accurate_coefficient_to_dB (controllable->get_value()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
lo_message_free (msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
OSCRouteObserver::set_path (string path)
|
|
|
|
{
|
|
|
|
if (feedback[2]) {
|
2016-08-17 11:24:57 -04:00
|
|
|
path = string_compose ("%1/%2", path, ssid);
|
2016-05-31 17:09:38 -04:00
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
OSCRouteObserver::clear_strip (string path, float val)
|
|
|
|
{
|
|
|
|
lo_message msg = lo_message_new ();
|
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
|
|
|
lo_message_add_float (msg, val);
|
|
|
|
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
lo_message_free (msg);
|
|
|
|
|
|
|
|
}
|
2016-06-04 10:04:32 -04:00
|
|
|
|
|
|
|
void
|
2016-06-29 22:38:17 -04:00
|
|
|
OSCRouteObserver::send_select_status (const PropertyChange& what)
|
2016-06-04 10:04:32 -04:00
|
|
|
{
|
2016-06-29 22:38:17 -04:00
|
|
|
if (what == PropertyChange(ARDOUR::Properties::selected)) {
|
|
|
|
if (_strip) {
|
|
|
|
string path = "/strip/select";
|
|
|
|
|
|
|
|
lo_message msg = lo_message_new ();
|
|
|
|
if (feedback[2]) {
|
|
|
|
path = set_path (path);
|
|
|
|
} else {
|
|
|
|
lo_message_add_int32 (msg, ssid);
|
|
|
|
}
|
|
|
|
lo_message_add_float (msg, _strip->is_selected());
|
|
|
|
lo_send_message (addr, path.c_str(), msg);
|
|
|
|
lo_message_free (msg);
|
2016-06-04 10:04:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|