* Evoral::Sequence: conditional compile for debugging output
[ardour.git] / libs / evoral / src / Control.cpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
3  * Copyright (C) 2000-2008 Paul Davis
4  * 
5  * Evoral is free software; you can redistribute it and/or modify it under the
6  * terms of the GNU General Public License as published by the Free Software
7  * Foundation; either version 2 of the License, or (at your option) any later
8  * version.
9  * 
10  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for 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  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include <iostream>
20 #include "evoral/Control.hpp"
21 #include "evoral/ControlList.hpp"
22
23 namespace Evoral {
24
25 Parameter::TypeMetadata Parameter::_type_metadata;
26
27 Control::Control(const Parameter& parameter, boost::shared_ptr<ControlList> list)
28         : _parameter(parameter)
29         , _list(list)
30         , _user_value(list ? list->default_value() : parameter.normal())
31 {
32 }
33
34
35 /** Get the currently effective value (ie the one that corresponds to current output)
36  */
37 float
38 Control::get_float(bool from_list, FrameTime frame) const
39 {
40         if (from_list)
41                 return _list->eval(frame);
42         else
43                 return _user_value;
44 }
45
46
47 void
48 Control::set_float(float value, bool to_list, FrameTime frame)
49 {
50         _user_value = value;
51         
52         if (to_list)
53                 _list->add(frame, value);
54 }
55
56
57 /** Get the latest user-set value, which may not equal get_value() when automation
58  * is playing back, etc.
59  *
60  * Automation write/touch works by periodically sampling this value and adding it
61  * to the AutomationList.
62  */
63 float
64 Control::user_float() const
65 {
66         return _user_value;
67 }
68         
69
70 void
71 Control::set_list(boost::shared_ptr<ControlList> list)
72 {
73         _list = list;
74 }
75
76 } // namespace Evoral
77