gain controls are supposed to be "gain-like"
[ardour.git] / libs / ardour / automation_control.cc
1 /*
2     Copyright (C) 2007 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <math.h>
22 #include <iostream>
23
24 #include "pbd/memento_command.h"
25 #include "pbd/stacktrace.h"
26
27 #include "ardour/audioengine.h"
28 #include "ardour/automation_control.h"
29 #include "ardour/automation_watch.h"
30 #include "ardour/control_group.h"
31 #include "ardour/event_type_map.h"
32 #include "ardour/session.h"
33
34 #include "pbd/i18n.h"
35
36 #ifdef COMPILER_MSVC
37 #include <float.h>
38 // C99 'isfinite()' is not available in MSVC.
39 #define isfinite_local(val) (bool)_finite((double)val)
40 #else
41 #define isfinite_local isfinite
42 #endif
43
44 using namespace std;
45 using namespace ARDOUR;
46 using namespace PBD;
47
48 AutomationControl::AutomationControl(ARDOUR::Session&                          session,
49                                      const Evoral::Parameter&                  parameter,
50                                      const ParameterDescriptor&                desc,
51                                      boost::shared_ptr<ARDOUR::AutomationList> list,
52                                      const string&                             name,
53                                      Controllable::Flag                        flags)
54
55         : Controllable (name.empty() ? EventTypeMap::instance().to_symbol(parameter) : name, flags)
56         , Evoral::Control(parameter, desc, list)
57         , _session(session)
58         , _desc(desc)
59 {
60         if (_desc.toggled) {
61                 set_flags (Controllable::Toggle);
62         }
63 }
64
65 AutomationControl::~AutomationControl ()
66 {
67         DropReferences (); /* EMIT SIGNAL */
68 }
69
70 bool
71 AutomationControl::writable() const
72 {
73         boost::shared_ptr<AutomationList> al = alist();
74         if (al) {
75                 return al->automation_state() != Play;
76         }
77         return true;
78 }
79
80 /** Get the current effective `user' value based on automation state */
81 double
82 AutomationControl::get_value() const
83 {
84         bool from_list = _list && boost::dynamic_pointer_cast<AutomationList>(_list)->automation_playback();
85         return Control::get_double (from_list, _session.transport_frame());
86 }
87
88 void
89 AutomationControl::set_value (double val, PBD::Controllable::GroupControlDisposition gcd)
90 {
91         if (!writable()) {
92                 return;
93         }
94
95         /* enforce strict double/boolean value mapping */
96
97         if (_desc.toggled) {
98                 if (val != 0.0) {
99                         val = 1.0;
100                 }
101         }
102
103         if (check_rt (val, gcd)) {
104                 /* change has been queued to take place in an RT context */
105                 return;
106         }
107
108         if (_group && _group->use_me (gcd)) {
109                 _group->set_group_value (shared_from_this(), val);
110         } else {
111                 actually_set_value (val, gcd);
112         }
113 }
114
115 /** Set the value and do the right thing based on automation state
116  *  (e.g. record if necessary, etc.)
117  *  @param value `user' value
118  */
119 void
120 AutomationControl::actually_set_value (double value, PBD::Controllable::GroupControlDisposition gcd)
121 {
122         bool to_list = _list && boost::dynamic_pointer_cast<AutomationList>(_list)->automation_write();
123         //const double old_value = Control::user_double ();
124
125         Control::set_double (value, _session.transport_frame(), to_list);
126
127         //AutomationType at = (AutomationType) _parameter.type();
128         //std::cerr << "++++ Changed (" << enum_2_string (at) << ", " << enum_2_string (gcd) << ") = " << value
129         //<< " (was " << old_value << ") @ " << this << std::endl;
130
131         Changed (true, gcd);
132 }
133
134 void
135 AutomationControl::set_list (boost::shared_ptr<Evoral::ControlList> list)
136 {
137         Control::set_list (list);
138         Changed (true, Controllable::NoGroup);
139 }
140
141 void
142 AutomationControl::set_automation_state (AutoState as)
143 {
144         if (flags() & NotAutomatable) {
145                 return;
146         }
147         if (_list && as != alist()->automation_state()) {
148
149                 const double val = get_value ();
150
151                 alist()->set_automation_state (as);
152                 if (_desc.toggled) {
153                         return;  // No watch for boolean automation
154                 }
155
156                 if (as == Write) {
157                         AutomationWatch::instance().add_automation_watch (shared_from_this());
158                 } else if (as == Touch) {
159                         if (alist()->empty()) {
160                                 Control::set_double (val, _session.current_start_frame (), true);
161                                 Control::set_double (val, _session.current_end_frame (), true);
162                                 Changed (true, Controllable::NoGroup);
163                         }
164                         if (!touching()) {
165                                 AutomationWatch::instance().remove_automation_watch (shared_from_this());
166                         } else {
167                                 /* this seems unlikely, but the combination of
168                                  * a control surface and the mouse could make
169                                  * it possible to put the control into Touch
170                                  * mode *while* touching it.
171                                  */
172                                 AutomationWatch::instance().add_automation_watch (shared_from_this());
173                         }
174                 } else {
175                         AutomationWatch::instance().remove_automation_watch (shared_from_this());
176                 }
177         }
178 }
179
180 void
181 AutomationControl::set_automation_style (AutoStyle as)
182 {
183         if (!_list) return;
184         alist()->set_automation_style (as);
185 }
186
187 void
188 AutomationControl::start_touch(double when)
189 {
190         if (!_list) {
191                 return;
192         }
193
194         if (!touching()) {
195
196                 if (alist()->automation_state() == Touch) {
197                         /* subtle. aligns the user value with the playback */
198                         set_value (get_value (), Controllable::NoGroup);
199                         alist()->start_touch (when);
200                         if (!_desc.toggled) {
201                                 AutomationWatch::instance().add_automation_watch (shared_from_this());
202                         }
203                 }
204                 set_touching (true);
205         }
206 }
207
208 void
209 AutomationControl::stop_touch(bool mark, double when)
210 {
211         if (!_list) return;
212         if (touching()) {
213                 set_touching (false);
214
215                 if (alist()->automation_state() == Touch) {
216                         alist()->stop_touch (mark, when);
217                         if (!_desc.toggled) {
218                                 AutomationWatch::instance().remove_automation_watch (shared_from_this());
219
220                         }
221                 }
222         }
223 }
224
225 void
226 AutomationControl::commit_transaction (bool did_write)
227 {
228         if (did_write) {
229                 if (alist ()->before ()) {
230                         _session.begin_reversible_command (string_compose (_("record %1 automation"), name ()));
231                         _session.commit_reversible_command (new MementoCommand<AutomationList> (*alist ().get (), alist ()->before (), &alist ()->get_state ()));
232                 }
233         } else {
234                 alist ()->clear_history ();
235         }
236 }
237
238 double
239 AutomationControl::internal_to_interface (double val) const
240 {
241         if (_desc.integer_step) {
242                 // both upper and lower are inclusive.
243                 val =  (val - lower()) / (1 + upper() - lower());
244         } else {
245                 val =  (val - lower()) / (upper() - lower());
246         }
247
248         if (_desc.logarithmic) {
249                 if (val > 0) {
250                         val = pow (val, 1./2.0);
251                 } else {
252                         val = 0;
253                 }
254         }
255
256         return val;
257 }
258
259 double
260 AutomationControl::interface_to_internal (double val) const
261 {
262         if (!isfinite_local (val)) {
263                 val = 0;
264         }
265         if (_desc.logarithmic) {
266                 if (val <= 0) {
267                         val = 0;
268                 } else {
269                         val = pow (val, 2.0);
270                 }
271         }
272
273         if (_desc.integer_step) {
274                 val =  lower() + val * (1 + upper() - lower());
275         } else {
276                 val =  lower() + val * (upper() - lower());
277         }
278
279         if (val < lower()) val = lower();
280         if (val > upper()) val = upper();
281
282         return val;
283 }
284
285 void
286 AutomationControl::set_group (boost::shared_ptr<ControlGroup> cg)
287 {
288         /* this method can only be called by a ControlGroup. We do not need
289            to ensure consistency by calling ControlGroup::remove_control(),
290            since we are guaranteed that the ControlGroup will take care of that
291            for us.
292         */
293
294         _group = cg;
295 }
296
297 bool
298 AutomationControl::check_rt (double val, Controllable::GroupControlDisposition gcd)
299 {
300         if (!_session.loading() && (flags() & Controllable::RealTime) && !AudioEngine::instance()->in_process_thread()) {
301                 /* queue change in RT context */
302                 _session.set_control (shared_from_this(), val, gcd);
303                 return true;
304         }
305
306         return false;
307 }