2016-01-12 22:04:18 -05:00
|
|
|
/*
|
|
|
|
|
Copyright (C) 2006-2016 Paul Davis
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-03-02 12:09:24 -05:00
|
|
|
#include "pbd/convert.h"
|
|
|
|
|
#include "pbd/strsplit.h"
|
|
|
|
|
|
2016-01-12 22:04:18 -05:00
|
|
|
#include "ardour/dB.h"
|
|
|
|
|
#include "ardour/gain_control.h"
|
|
|
|
|
#include "ardour/session.h"
|
2016-03-02 12:09:24 -05:00
|
|
|
#include "ardour/vca.h"
|
|
|
|
|
#include "ardour/vca_manager.h"
|
2016-01-12 22:04:18 -05:00
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
GainControl::GainControl (Session& session, const Evoral::Parameter ¶m, boost::shared_ptr<AutomationList> al)
|
|
|
|
|
: AutomationControl (session, param, ParameterDescriptor(param),
|
|
|
|
|
al ? al : boost::shared_ptr<AutomationList> (new AutomationList (param)),
|
|
|
|
|
param.type() == GainAutomation ? X_("gaincontrol") : X_("trimcontrol")) {
|
|
|
|
|
|
|
|
|
|
alist()->reset_default (1.0);
|
|
|
|
|
|
|
|
|
|
lower_db = accurate_coefficient_to_dB (_desc.lower);
|
|
|
|
|
range_db = accurate_coefficient_to_dB (_desc.upper) - lower_db;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2016-01-21 11:03:14 -05:00
|
|
|
GainControl::set_value (double val, PBD::Controllable::GroupControlDisposition group_override)
|
2016-01-12 22:04:18 -05:00
|
|
|
{
|
|
|
|
|
if (writable()) {
|
2016-01-21 11:03:14 -05:00
|
|
|
_set_value (val, group_override);
|
2016-01-12 22:04:18 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
GainControl::set_value_unchecked (double val)
|
|
|
|
|
{
|
2016-01-21 11:03:14 -05:00
|
|
|
/* used only automation playback */
|
|
|
|
|
_set_value (val, Controllable::NoGroup);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
GainControl::_set_value (double val, Controllable::GroupControlDisposition group_override)
|
|
|
|
|
{
|
|
|
|
|
AutomationControl::set_value (std::max (std::min (val, (double)_desc.upper), (double)_desc.lower), group_override);
|
2016-01-12 22:04:18 -05:00
|
|
|
_session.set_dirty ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double
|
|
|
|
|
GainControl::internal_to_interface (double v) const
|
|
|
|
|
{
|
|
|
|
|
if (_desc.type == GainAutomation) {
|
|
|
|
|
return gain_to_slider_position (v);
|
|
|
|
|
} else {
|
|
|
|
|
return (accurate_coefficient_to_dB (v) - lower_db) / range_db;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double
|
|
|
|
|
GainControl::interface_to_internal (double v) const
|
|
|
|
|
{
|
|
|
|
|
if (_desc.type == GainAutomation) {
|
|
|
|
|
return slider_position_to_gain (v);
|
|
|
|
|
} else {
|
|
|
|
|
return dB_to_coefficient (lower_db + v * range_db);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double
|
|
|
|
|
GainControl::internal_to_user (double v) const
|
|
|
|
|
{
|
|
|
|
|
return accurate_coefficient_to_dB (v);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double
|
|
|
|
|
GainControl::user_to_internal (double u) const
|
|
|
|
|
{
|
|
|
|
|
return dB_to_coefficient (u);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string
|
|
|
|
|
GainControl::get_user_string () const
|
|
|
|
|
{
|
|
|
|
|
char theBuf[32]; sprintf( theBuf, _("%3.1f dB"), accurate_coefficient_to_dB (get_value()));
|
|
|
|
|
return std::string(theBuf);
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-28 11:57:18 -05:00
|
|
|
gain_t
|
|
|
|
|
GainControl::get_master_gain () const
|
2016-02-29 09:09:53 -05:00
|
|
|
{
|
|
|
|
|
Glib::Threads::Mutex::Lock sm (master_lock, Glib::Threads::TRY_LOCK);
|
|
|
|
|
|
|
|
|
|
if (sm.locked()) {
|
|
|
|
|
return get_master_gain_locked ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1.0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gain_t
|
|
|
|
|
GainControl::get_master_gain_locked () const
|
2016-01-22 14:42:25 -05:00
|
|
|
{
|
2016-02-28 11:57:18 -05:00
|
|
|
/* Master lock MUST be held */
|
2016-01-22 14:42:25 -05:00
|
|
|
|
2016-02-28 11:57:18 -05:00
|
|
|
gain_t g = 1.0;
|
|
|
|
|
|
|
|
|
|
for (Masters::const_iterator m = _masters.begin(); m != _masters.end(); ++m) {
|
|
|
|
|
g *= (*m)->get_value ();
|
2016-01-22 14:42:25 -05:00
|
|
|
}
|
|
|
|
|
|
2016-02-28 11:57:18 -05:00
|
|
|
return g;
|
|
|
|
|
}
|
2016-01-22 14:42:25 -05:00
|
|
|
|
2016-02-28 11:57:18 -05:00
|
|
|
void
|
2016-03-02 12:09:24 -05:00
|
|
|
GainControl::add_master (boost::shared_ptr<VCA> vca)
|
2016-02-28 11:57:18 -05:00
|
|
|
{
|
|
|
|
|
gain_t old_master_val;
|
|
|
|
|
gain_t new_master_val;
|
2016-03-02 12:41:27 -05:00
|
|
|
std::pair<set<boost::shared_ptr<GainControl> >::iterator,bool> res;
|
2016-02-28 11:57:18 -05:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
Glib::Threads::Mutex::Lock lm (master_lock);
|
2016-02-29 09:09:53 -05:00
|
|
|
old_master_val = get_master_gain_locked ();
|
2016-03-02 12:41:27 -05:00
|
|
|
res = _masters.insert (vca->control());
|
2016-03-02 12:09:24 -05:00
|
|
|
_masters_numbers.insert (vca->number());
|
2016-02-29 09:09:53 -05:00
|
|
|
new_master_val = get_master_gain_locked ();
|
2016-03-02 12:09:24 -05:00
|
|
|
|
|
|
|
|
/* note that we bind @param m as a weak_ptr<GainControl>, thus
|
|
|
|
|
avoiding holding a reference to the control in the binding
|
|
|
|
|
itself.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
vca->DropReferences.connect_same_thread (masters_connections, boost::bind (&GainControl::master_going_away, this, vca));
|
2016-03-02 17:23:55 -05:00
|
|
|
vca->control()->Changed.connect_same_thread (masters_connections, boost::bind (&PBD::Signal0<void>::operator(), &Changed));
|
2016-02-28 11:57:18 -05:00
|
|
|
}
|
2016-01-22 14:42:25 -05:00
|
|
|
|
2016-02-28 11:57:18 -05:00
|
|
|
if (old_master_val != new_master_val) {
|
|
|
|
|
Changed(); /* EMIT SIGNAL */
|
|
|
|
|
}
|
2016-03-02 12:41:27 -05:00
|
|
|
|
|
|
|
|
if (res.second) {
|
|
|
|
|
VCAStatusChange (); /* EMIT SIGNAL */
|
|
|
|
|
}
|
2016-02-28 11:57:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2016-03-02 12:09:24 -05:00
|
|
|
GainControl::master_going_away (boost::weak_ptr<VCA> wv)
|
|
|
|
|
{
|
|
|
|
|
boost::shared_ptr<VCA> v = wv.lock();
|
|
|
|
|
if (v) {
|
|
|
|
|
remove_master (v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
GainControl::remove_master (boost::shared_ptr<VCA> vca)
|
2016-02-28 11:57:18 -05:00
|
|
|
{
|
|
|
|
|
gain_t old_master_val;
|
|
|
|
|
gain_t new_master_val;
|
2016-03-02 12:41:27 -05:00
|
|
|
set<boost::shared_ptr<GainControl> >::size_type erased = 0;
|
2016-02-28 11:57:18 -05:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
Glib::Threads::Mutex::Lock lm (master_lock);
|
2016-02-29 09:09:53 -05:00
|
|
|
old_master_val = get_master_gain_locked ();
|
2016-03-02 12:41:27 -05:00
|
|
|
erased = _masters.erase (vca->control());
|
2016-03-02 12:09:24 -05:00
|
|
|
_masters_numbers.erase (vca->number());
|
2016-02-29 09:09:53 -05:00
|
|
|
new_master_val = get_master_gain_locked ();
|
2016-01-22 14:42:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (old_master_val != new_master_val) {
|
|
|
|
|
Changed(); /* EMIT SIGNAL */
|
|
|
|
|
}
|
2016-03-02 12:41:27 -05:00
|
|
|
|
|
|
|
|
if (erased) {
|
|
|
|
|
VCAStatusChange (); /* EMIT SIGNAL */
|
|
|
|
|
}
|
2016-01-22 14:42:25 -05:00
|
|
|
}
|
|
|
|
|
|
2016-02-28 11:57:18 -05:00
|
|
|
void
|
|
|
|
|
GainControl::clear_masters ()
|
|
|
|
|
{
|
|
|
|
|
gain_t old_master_val;
|
|
|
|
|
gain_t new_master_val;
|
2016-03-02 12:41:27 -05:00
|
|
|
bool had_masters = false;
|
2016-02-28 11:57:18 -05:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
Glib::Threads::Mutex::Lock lm (master_lock);
|
2016-02-29 09:09:53 -05:00
|
|
|
old_master_val = get_master_gain_locked ();
|
2016-03-02 12:41:27 -05:00
|
|
|
if (!_masters.empty()) {
|
|
|
|
|
had_masters = true;
|
|
|
|
|
}
|
2016-02-28 11:57:18 -05:00
|
|
|
_masters.clear ();
|
2016-03-02 12:09:24 -05:00
|
|
|
_masters_numbers.clear ();
|
2016-02-29 09:09:53 -05:00
|
|
|
new_master_val = get_master_gain_locked ();
|
2016-02-28 11:57:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (old_master_val != new_master_val) {
|
|
|
|
|
Changed(); /* EMIT SIGNAL */
|
|
|
|
|
}
|
2016-03-02 12:41:27 -05:00
|
|
|
|
|
|
|
|
if (had_masters) {
|
|
|
|
|
VCAStatusChange (); /* EMIT SIGNAL */
|
|
|
|
|
}
|
2016-02-28 11:57:18 -05:00
|
|
|
}
|
2016-02-29 21:26:45 -05:00
|
|
|
|
|
|
|
|
bool
|
2016-03-02 12:09:24 -05:00
|
|
|
GainControl::slaved_to (boost::shared_ptr<VCA> vca) const
|
2016-02-29 21:26:45 -05:00
|
|
|
{
|
|
|
|
|
Glib::Threads::Mutex::Lock lm (master_lock);
|
2016-03-02 12:09:24 -05:00
|
|
|
return find (_masters.begin(), _masters.end(), vca->control()) != _masters.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XMLNode&
|
|
|
|
|
GainControl::get_state ()
|
|
|
|
|
{
|
|
|
|
|
XMLNode& node (AutomationControl::get_state());
|
|
|
|
|
|
|
|
|
|
/* store VCA master IDs */
|
|
|
|
|
|
|
|
|
|
string str;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
Glib::Threads::Mutex::Lock lm (master_lock);
|
|
|
|
|
for (set<uint32_t>::const_iterator m = _masters_numbers.begin(); m != _masters_numbers.end(); ++m) {
|
|
|
|
|
if (!str.empty()) {
|
|
|
|
|
str += ',';
|
|
|
|
|
}
|
|
|
|
|
str += PBD::to_string (*m, std::dec);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!str.empty()) {
|
|
|
|
|
node.add_property (X_("masters"), str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
GainControl::set_state (XMLNode const& node, int version)
|
|
|
|
|
{
|
|
|
|
|
AutomationControl::set_state (node, version);
|
|
|
|
|
|
|
|
|
|
XMLProperty const* prop = node.property (X_("masters"));
|
|
|
|
|
|
|
|
|
|
/* XXXProblem here if we allow VCA's to be slaved to other VCA's .. we
|
|
|
|
|
* have to load all VCAs first, then call ::set_state() so that
|
|
|
|
|
* vca_by_number() will succeed.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (prop) {
|
|
|
|
|
vector<string> masters;
|
|
|
|
|
split (prop->value(), masters, ',');
|
|
|
|
|
|
|
|
|
|
for (vector<string>::const_iterator m = masters.begin(); m != masters.end(); ++m) {
|
|
|
|
|
boost::shared_ptr<VCA> vca = _session.vca_manager().vca_by_number (PBD::atoi (*m));
|
|
|
|
|
if (vca) {
|
|
|
|
|
add_master (vca);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
2016-02-29 21:26:45 -05:00
|
|
|
}
|