enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[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 (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         //std::cerr << "++++ Changed (" << enum_2_string (at) << ", " << enum_2_string (gcd) << ") = " << value 
127         //<< " (was " << old_value << ") @ " << this << std::endl;
128
129         Changed (true, gcd);
130 }
131
132 void
133 AutomationControl::set_list (boost::shared_ptr<Evoral::ControlList> list)
134 {
135         Control::set_list (list);
136         Changed (true, Controllable::NoGroup);
137 }
138
139 void
140 AutomationControl::set_automation_state (AutoState as)
141 {
142         if (flags() & NotAutomatable) {
143                 return;
144         }
145         if (_list && as != alist()->automation_state()) {
146
147                 const double val = get_value ();
148
149                 alist()->set_automation_state (as);
150                 if (_desc.toggled) {
151                         return;  // No watch for boolean automation
152                 }
153
154                 if (as == Write) {
155                         AutomationWatch::instance().add_automation_watch (shared_from_this());
156                 } else if (as == Touch) {
157                         if (alist()->empty()) {
158                                 Control::set_double (val, _session.current_start_frame (), true);
159                                 Control::set_double (val, _session.current_end_frame (), true);
160                                 Changed (true, Controllable::NoGroup);
161                         }
162                         if (!touching()) {
163                                 AutomationWatch::instance().remove_automation_watch (shared_from_this());
164                         } else {
165                                 /* this seems unlikely, but the combination of
166                                  * a control surface and the mouse could make
167                                  * it possible to put the control into Touch
168                                  * mode *while* touching it.
169                                  */
170                                 AutomationWatch::instance().add_automation_watch (shared_from_this());
171                         }
172                 } else {
173                         AutomationWatch::instance().remove_automation_watch (shared_from_this());
174                 }
175         }
176 }
177
178 void
179 AutomationControl::set_automation_style (AutoStyle as)
180 {
181         if (!_list) return;
182         alist()->set_automation_style (as);
183 }
184
185 void
186 AutomationControl::start_touch(double when)
187 {
188         if (!_list) {
189                 return;
190         }
191
192         if (!touching()) {
193
194                 if (alist()->automation_state() == Touch) {
195                         /* subtle. aligns the user value with the playback */
196                         set_value (get_value (), Controllable::NoGroup);
197                         alist()->start_touch (when);
198                         if (!_desc.toggled) {
199                                 AutomationWatch::instance().add_automation_watch (shared_from_this());
200                         }
201                 }
202                 set_touching (true);
203         }
204 }
205
206 void
207 AutomationControl::stop_touch(bool mark, double when)
208 {
209         if (!_list) return;
210         if (touching()) {
211                 set_touching (false);
212
213                 if (alist()->automation_state() == Touch) {
214                         alist()->stop_touch (mark, when);
215                         if (!_desc.toggled) {
216                                 AutomationWatch::instance().remove_automation_watch (shared_from_this());
217
218                         }
219                 }
220         }
221 }
222
223 void
224 AutomationControl::commit_transaction (bool did_write)
225 {
226         if (did_write) {
227                 if (alist ()->before ()) {
228                         _session.begin_reversible_command (string_compose (_("record %1 automation"), name ()));
229                         _session.commit_reversible_command (new MementoCommand<AutomationList> (*alist ().get (), alist ()->before (), &alist ()->get_state ()));
230                 }
231         } else {
232                 alist ()->clear_history ();
233         }
234 }
235
236 double
237 AutomationControl::internal_to_interface (double val) const
238 {
239         if (_desc.integer_step) {
240                 // both upper and lower are inclusive.
241                 val =  (val - lower()) / (1 + upper() - lower());
242         } else {
243                 val =  (val - lower()) / (upper() - lower());
244         }
245
246         if (_desc.logarithmic) {
247                 if (val > 0) {
248                         val = pow (val, 1./2.0);
249                 } else {
250                         val = 0;
251                 }
252         }
253
254         return val;
255 }
256
257 double
258 AutomationControl::interface_to_internal (double val) const
259 {
260         if (!isfinite_local (val)) {
261                 val = 0;
262         }
263         if (_desc.logarithmic) {
264                 if (val <= 0) {
265                         val = 0;
266                 } else {
267                         val = pow (val, 2.0);
268                 }
269         }
270
271         if (_desc.integer_step) {
272                 val =  lower() + val * (1 + upper() - lower());
273         } else {
274                 val =  lower() + val * (upper() - lower());
275         }
276
277         if (val < lower()) val = lower();
278         if (val > upper()) val = upper();
279
280         return val;
281 }
282
283 void
284 AutomationControl::set_group (boost::shared_ptr<ControlGroup> cg)
285 {
286         /* this method can only be called by a ControlGroup. We do not need
287            to ensure consistency by calling ControlGroup::remove_control(),
288            since we are guaranteed that the ControlGroup will take care of that
289            for us.
290         */
291
292         _group = cg;
293 }
294
295 bool
296 AutomationControl::check_rt (double val, Controllable::GroupControlDisposition gcd)
297 {
298         if (!_session.loading() && (flags() & Controllable::RealTime) && !AudioEngine::instance()->in_process_thread()) {
299                 /* queue change in RT context */
300                 _session.set_control (shared_from_this(), val, gcd);
301                 return true;
302         }
303
304         return false;
305 }