Fix some warnings.
[ardour.git] / libs / evoral / src / Control.cpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 David 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         , _user_value(list ? list->default_value() : parameter.normal())
30 {
31         set_list (list);
32 }
33
34
35 /** Get the currently effective value (ie the one that corresponds to current output)
36  */
37 double
38 Control::get_double (bool from_list, double frame) const
39 {
40         if (from_list) {
41                 return _list->eval(frame);
42         } else {
43                 return _user_value;
44         }
45 }
46
47
48 void
49 Control::set_double (double value, bool to_list, double frame)
50 {
51         _user_value = value;
52
53         if (to_list) {
54                 _list->add (frame, value);
55         }
56 }
57
58
59 void
60 Control::set_list(boost::shared_ptr<ControlList> list)
61 {
62         _list_marked_dirty_connection.disconnect ();
63         
64         _list = list;
65
66         if (_list) {
67                 _list->Dirty.connect_same_thread (_list_marked_dirty_connection, boost::bind (&Control::list_marked_dirty, this));
68         }
69 }
70
71 void
72 Control::list_marked_dirty ()
73 {
74         ListMarkedDirty (); /* EMIT SIGNAL */
75 }
76
77 } // namespace Evoral
78