ardour
Control.cpp
Go to the documentation of this file.
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 
21 #include "pbd/stacktrace.h"
22 
23 #include "evoral/Control.hpp"
24 #include "evoral/ControlList.hpp"
26 #include "evoral/TypeMap.hpp"
27 
28 namespace Evoral {
29 
30 Control::Control(const Parameter& parameter,
31  const ParameterDescriptor& desc,
33  : _parameter(parameter)
34  , _user_value(list ? list->default_value() : desc.normal)
35 {
36  set_list (list);
37 }
38 
39 
42 double
43 Control::get_double (bool from_list, double frame) const
44 {
45  if (from_list) {
46  return _list->eval(frame);
47  } else {
48  return _user_value;
49  }
50 }
51 
52 
53 void
54 Control::set_double (double value, double frame, bool to_list)
55 {
56  _user_value = value;
57 
58  /* if we're in a write pass, the automation watcher will determine the
59  values and add them to the list, so we we don't need to bother.
60  */
61 
62  if (to_list && (!_list->in_write_pass() || _list->descriptor().toggled)) {
63  _list->add (frame, value, false);
64  }
65 }
66 
67 
68 void
70 {
72 
73  _list = list;
74 
75  if (_list) {
76  _list->Dirty.connect_same_thread (_list_marked_dirty_connection, boost::bind (&Control::list_marked_dirty, this));
77  }
78 }
79 
80 void
82 {
83  ListMarkedDirty (); /* EMIT SIGNAL */
84 }
85 
86 } // namespace Evoral
87 
virtual double get_double(bool from_list=false, double frame=0) const
Definition: Control.cpp:43
void set_list(boost::shared_ptr< ControlList >)
Definition: Control.cpp:69
double _user_value
Definition: Control.hpp:77
void list_marked_dirty()
Definition: Control.cpp:81
PBD::ScopedConnection _list_marked_dirty_connection
Definition: Control.hpp:78
PBD::Signal0< void > ListMarkedDirty
Definition: Control.hpp:72
boost::shared_ptr< ControlList > list()
Definition: Control.hpp:66
boost::shared_ptr< ControlList > _list
Definition: Control.hpp:76
virtual void set_double(double val, double frame=0, bool to_list=false)
Definition: Control.cpp:54
Control(const Parameter &parameter, const ParameterDescriptor &desc, boost::shared_ptr< ControlList > list)
Definition: Control.cpp:30