summaryrefslogtreecommitdiff
path: root/libs/ardour/gain_control.cc
blob: 5ba7179231bc291fa4a64e2587ca0b63e1e55dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/*
    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.
*/

#include "ardour/dB.h"
#include "ardour/gain_control.h"
#include "ardour/session.h"

#include "i18n.h"

using namespace ARDOUR;
using namespace std;

GainControl::GainControl (Session& session, const Evoral::Parameter &param, 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
GainControl::set_value (double val, PBD::Controllable::GroupControlDisposition group_override)
{
	if (writable()) {
		_set_value (val, group_override);
	}
}

void
GainControl::set_value_unchecked (double val)
{
	/* 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);
	_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);
}

gain_t
GainControl::get_master_gain () const
{
	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
{
	/* Master lock MUST be held */

	gain_t g = 1.0;

	for (Masters::const_iterator m = _masters.begin(); m != _masters.end(); ++m) {
		g *= (*m)->get_value ();
	}

	return g;
}

void
GainControl::add_master (boost::shared_ptr<GainControl> m)
{
	gain_t old_master_val;
	gain_t new_master_val;

	{
		Glib::Threads::Mutex::Lock lm (master_lock);
		old_master_val = get_master_gain_locked ();
		_masters.push_back (m);
		new_master_val = get_master_gain_locked ();
	}

	if (old_master_val != new_master_val) {
		Changed(); /* EMIT SIGNAL */
	}
}

void
GainControl::remove_master (boost::shared_ptr<GainControl> m)
{
	gain_t old_master_val;
	gain_t new_master_val;

	{
		Glib::Threads::Mutex::Lock lm (master_lock);
		old_master_val = get_master_gain_locked ();
		_masters.remove (m);
		new_master_val = get_master_gain_locked ();
	}

	if (old_master_val != new_master_val) {
		Changed(); /* EMIT SIGNAL */
	}
}

void
GainControl::clear_masters ()
{
	gain_t old_master_val;
	gain_t new_master_val;

	{
		Glib::Threads::Mutex::Lock lm (master_lock);
		old_master_val = get_master_gain_locked ();
		_masters.clear ();
		new_master_val = get_master_gain_locked ();
	}

	if (old_master_val != new_master_val) {
		Changed(); /* EMIT SIGNAL */
	}
}

bool
GainControl::slaved_to (boost::shared_ptr<GainControl> gc) const
{
	Glib::Threads::Mutex::Lock lm (master_lock);
	return find (_masters.begin(), _masters.end(), gc) != _masters.end();
}