dramatic overhaul of automation. too long to explain here. this work is not finished...
[ardour.git] / libs / ardour / ardour / automation_control.h
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 #ifndef __ardour_automation_control_h__
22 #define __ardour_automation_control_h__
23
24 #include <boost/shared_ptr.hpp>
25 #include <boost/enable_shared_from_this.hpp>
26
27 #include "pbd/controllable.h"
28 #include "evoral/Control.hpp"
29 #include "ardour/automation_list.h"
30
31 namespace ARDOUR {
32
33 class Session;
34 class Automatable;
35
36
37 /** A PBD::Controllable with associated automation data (AutomationList)
38  */
39 class AutomationControl : public PBD::Controllable, public Evoral::Control, public boost::enable_shared_from_this<AutomationControl>
40 {
41 public:
42         AutomationControl(ARDOUR::Session&,
43                           const Evoral::Parameter& parameter,
44                           boost::shared_ptr<ARDOUR::AutomationList> l=boost::shared_ptr<ARDOUR::AutomationList>(),
45                           const std::string& name="");
46
47         ~AutomationControl ();
48
49         boost::shared_ptr<AutomationList> alist() const {
50                 return boost::dynamic_pointer_cast<AutomationList>(_list);
51         }
52
53         void set_list (boost::shared_ptr<Evoral::ControlList>);
54
55         inline bool automation_playback() const {
56                 return alist()->automation_playback();
57         }
58
59         inline bool automation_write() const {
60                 return alist()->automation_write();
61         }
62
63         inline AutoState automation_state() const {
64                 return alist()->automation_state();
65         }
66
67         inline AutoStyle automation_style() const {
68                 return alist()->automation_style();
69         }
70
71         void set_automation_state(AutoState as);
72         void set_automation_style(AutoStyle as);
73         void start_touch (double when);
74         void stop_touch (bool mark, double when);
75
76         void set_value (double);
77         double get_value () const;
78
79         virtual double internal_to_interface (double v) const {
80                 return v;
81         }
82         
83         virtual double interface_to_internal (double v) const {
84                 return v;
85         }
86
87         virtual double internal_to_user (double v) const {
88                 return v;
89         }
90
91         double lower() const { return parameter().min(); }
92         double upper() const { return parameter().max(); }
93         double normal() const { return parameter().normal(); }
94         bool toggled() const { return parameter().toggled(); }
95
96         const ARDOUR::Session& session() const { return _session; }
97
98 protected:
99
100         ARDOUR::Session& _session;
101 };
102
103
104 } // namespace ARDOUR
105
106 #endif /* __ardour_automation_control_h__ */