remove debug output
[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 "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 (name.empty() ? EventTypeMap::instance().to_symbol(parameter) : name)
54         , Evoral::Control(parameter, desc, list)
55         , _session(session)
56         , _desc(desc)
57 {
58         if (_desc.toggled) {
59                 set_flags (Controllable::Toggle);
60         }
61 }
62
63 AutomationControl::~AutomationControl ()
64 {
65         DropReferences (); /* EMIT SIGNAL */
66 }
67
68 bool
69 AutomationControl::writable() const
70 {
71         boost::shared_ptr<AutomationList> al = alist();
72         if (al) {
73                 return al->automation_state() != Play;
74         }
75         return true;
76 }
77
78 /** Get the current effective `user' value based on automation state */
79 double
80 AutomationControl::get_value() const
81 {
82         bool from_list = _list && boost::dynamic_pointer_cast<AutomationList>(_list)->automation_playback();
83         return Control::get_double (from_list, _session.transport_frame());
84 }
85
86 void
87 AutomationControl::set_value (double val, PBD::Controllable::GroupControlDisposition gcd)
88 {
89         if (!writable()) {
90                 return;
91         }
92
93         /* enforce strict double/boolean value mapping */
94
95         if (_desc.toggled) {
96                 if (val != 0.0) {
97                         val = 1.0;
98                 }
99         }
100
101         if (check_rt (val, gcd)) {
102                 /* change has been queued to take place in an RT context */
103                 return;
104         }
105
106         if (_group && _group->use_me (gcd)) {
107                 _group->set_group_value (shared_from_this(), val);
108         } else {
109                 actually_set_value (val, gcd);
110         }
111 }
112
113 /** Set the value and do the right thing based on automation state
114  *  (e.g. record if necessary, etc.)
115  *  @param value `user' value
116  */
117 void
118 AutomationControl::actually_set_value (double value, PBD::Controllable::GroupControlDisposition gcd)
119 {
120         bool to_list = _list && boost::dynamic_pointer_cast<AutomationList>(_list)->automation_write();
121         const double old_value = Control::user_double ();
122
123         Control::set_double (value, _session.transport_frame(), to_list);
124
125         AutomationType at = (AutomationType) _parameter.type();
126
127         //std::cerr << "++++ Changed (" << enum_2_string (at) << ", " << enum_2_string (gcd) << ") = " << value 
128         //<< " (was " << old_value << ") @ " << this << std::endl;
129
130         Changed (true, gcd);
131 }
132
133 void
134 AutomationControl::set_list (boost::shared_ptr<Evoral::ControlList> list)
135 {
136         Control::set_list (list);
137         Changed (true, Controllable::NoGroup);
138 }
139
140 void
141 AutomationControl::set_automation_state (AutoState as)
142 {
143         if (_list && as != alist()->automation_state()) {
144
145                 alist()->set_automation_state (as);
146                 if (_desc.toggled) {
147                         return;  // No watch for boolean automation
148                 }
149
150                 if (as == Write) {
151                         AutomationWatch::instance().add_automation_watch (shared_from_this());
152                 } else if (as == Touch) {
153                         if (!touching()) {
154                                 AutomationWatch::instance().remove_automation_watch (shared_from_this());
155                         } else {
156                                 /* this seems unlikely, but the combination of
157                                  * a control surface and the mouse could make
158                                  * it possible to put the control into Touch
159                                  * mode *while* touching it.
160                                  */
161                                 AutomationWatch::instance().add_automation_watch (shared_from_this());
162                         }
163                 } else {
164                         AutomationWatch::instance().remove_automation_watch (shared_from_this());
165                 }
166         }
167 }
168
169 void
170 AutomationControl::set_automation_style (AutoStyle as)
171 {
172         if (!_list) return;
173         alist()->set_automation_style (as);
174 }
175
176 void
177 AutomationControl::start_touch(double when)
178 {
179         if (!_list) {
180                 return;
181         }
182
183         if (!touching()) {
184
185                 if (alist()->automation_state() == Touch) {
186                         /* subtle. aligns the user value with the playback */
187                         set_value (get_value (), Controllable::NoGroup);
188                         alist()->start_touch (when);
189                         if (!_desc.toggled) {
190                                 AutomationWatch::instance().add_automation_watch (shared_from_this());
191                         }
192                 }
193                 set_touching (true);
194         }
195 }
196
197 void
198 AutomationControl::stop_touch(bool mark, double when)
199 {
200         if (!_list) return;
201         if (touching()) {
202                 set_touching (false);
203
204                 if (alist()->automation_state() == Touch) {
205                         alist()->stop_touch (mark, when);
206                         if (!_desc.toggled) {
207                                 AutomationWatch::instance().remove_automation_watch (shared_from_this());
208
209                         }
210                 }
211         }
212 }
213
214 void
215 AutomationControl::commit_transaction (bool did_write)
216 {
217         if (did_write) {
218                 if (alist ()->before ()) {
219                         _session.begin_reversible_command (string_compose (_("record %1 automation"), name ()));
220                         _session.commit_reversible_command (new MementoCommand<AutomationList> (*alist ().get (), alist ()->before (), &alist ()->get_state ()));
221                 }
222         } else {
223                 alist ()->clear_history ();
224         }
225 }
226
227 double
228 AutomationControl::internal_to_interface (double val) const
229 {
230         if (_desc.integer_step) {
231                 // both upper and lower are inclusive.
232                 val =  (val - lower()) / (1 + upper() - lower());
233         } else {
234                 val =  (val - lower()) / (upper() - lower());
235         }
236
237         if (_desc.logarithmic) {
238                 if (val > 0) {
239                         val = pow (val, 1./2.0);
240                 } else {
241                         val = 0;
242                 }
243         }
244
245         return val;
246 }
247
248 double
249 AutomationControl::interface_to_internal (double val) const
250 {
251         if (!isfinite_local (val)) {
252                 val = 0;
253         }
254         if (_desc.logarithmic) {
255                 if (val <= 0) {
256                         val = 0;
257                 } else {
258                         val = pow (val, 2.0);
259                 }
260         }
261
262         if (_desc.integer_step) {
263                 val =  lower() + val * (1 + upper() - lower());
264         } else {
265                 val =  lower() + val * (upper() - lower());
266         }
267
268         if (val < lower()) val = lower();
269         if (val > upper()) val = upper();
270
271         return val;
272 }
273
274 void
275 AutomationControl::set_group (boost::shared_ptr<ControlGroup> cg)
276 {
277         /* this method can only be called by a ControlGroup. We do not need
278            to ensure consistency by calling ControlGroup::remove_control(),
279            since we are guaranteed that the ControlGroup will take care of that
280            for us.
281         */
282
283         _group = cg;
284 }
285
286 bool
287 AutomationControl::check_rt (double val, Controllable::GroupControlDisposition gcd)
288 {
289         if (!_session.loading() && (flags() & Controllable::RealTime) && !AudioEngine::instance()->in_process_thread()) {
290                 /* queue change in RT context */
291                 _session.set_control (shared_from_this(), val, gcd);
292                 return true;
293         }
294
295         return false;
296 }