Fix thinko in 9581cb26 - scratch-buffer can't be used recursively.
[ardour.git] / libs / ardour / gain_control.cc
1 /*
2     Copyright (C) 2006-2016 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify it
5     under the terms of the GNU General Public License as published by the Free
6     Software Foundation; either version 2 of the License, or (at your option)
7     any later version.
8
9     This program is distributed in the hope that it will be useful, but WITHOUT
10     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12     for more details.
13
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <cmath>
20
21 #include "pbd/convert.h"
22 #include "pbd/strsplit.h"
23
24 #include "evoral/Curve.hpp"
25
26 #include "ardour/dB.h"
27 #include "ardour/gain_control.h"
28 #include "ardour/session.h"
29 #include "ardour/vca.h"
30 #include "ardour/vca_manager.h"
31
32 #include "pbd/i18n.h"
33
34 using namespace ARDOUR;
35 using namespace std;
36
37 GainControl::GainControl (Session& session, const Evoral::Parameter &param, boost::shared_ptr<AutomationList> al)
38         : SlavableAutomationControl (session, param, ParameterDescriptor(param),
39                                      al ? al : boost::shared_ptr<AutomationList> (new AutomationList (param)),
40                                      param.type() == GainAutomation ? X_("gaincontrol") : X_("trimcontrol"),
41                                      Controllable::GainLike)
42 {
43         alist()->reset_default (1.0);
44
45         lower_db = accurate_coefficient_to_dB (_desc.lower);
46         range_db = accurate_coefficient_to_dB (_desc.upper) - lower_db;
47 }
48
49 double
50 GainControl::internal_to_interface (double v) const
51 {
52         if (_desc.type == GainAutomation) {
53                 return gain_to_slider_position (v);
54         } else {
55                 return (accurate_coefficient_to_dB (v) - lower_db) / range_db;
56         }
57 }
58
59 double
60 GainControl::interface_to_internal (double v) const
61 {
62         if (_desc.type == GainAutomation) {
63                 return slider_position_to_gain (v);
64         } else {
65                 return dB_to_coefficient (lower_db + v * range_db);
66         }
67 }
68
69 double
70 GainControl::internal_to_user (double v) const
71 {
72         return accurate_coefficient_to_dB (v);
73 }
74
75 double
76 GainControl::user_to_internal (double u) const
77 {
78         return dB_to_coefficient (u);
79 }
80
81 std::string
82 GainControl::get_user_string () const
83 {
84         char theBuf[32]; sprintf( theBuf, _("%3.1f dB"), accurate_coefficient_to_dB (get_value()));
85         return std::string(theBuf);
86 }
87
88 void
89 GainControl::inc_gain (gain_t factor)
90 {
91         /* To be used ONLY when doing group-relative gain adjustment, from
92          * ControlGroup::set_group_values().
93          */
94
95         const float desired_gain = user_double();
96
97         if (fabsf (desired_gain) < GAIN_COEFF_SMALL) {
98                 // really?! what's the idea here?
99                 actually_set_value (0.000001f + (0.000001f * factor), Controllable::ForGroup);
100         } else {
101                 actually_set_value (desired_gain + (desired_gain * factor), Controllable::ForGroup);
102         }
103 }
104
105 bool
106 GainControl::get_masters_curve_locked (framepos_t start, framepos_t end, float* vec, framecnt_t veclen) const
107 {
108         if (_masters.empty()) {
109                 return list()->curve().rt_safe_get_vector (start, end, vec, veclen);
110         }
111         for (framecnt_t i = 0; i < veclen; ++i) {
112                 vec[i] = 1.f;
113         }
114         return SlavableAutomationControl::masters_curve_multiply (start, end, vec, veclen);
115 }