support for old-school automation loading
[ardour.git] / libs / ardour / ardour / automation_event.h
1 /*
2     Copyright (C) 2002 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __ardour_automation_event_h__
22 #define __ardour_automation_event_h__
23
24 #include <stdint.h>
25 #include <list>
26 #include <cmath>
27
28 #include <sigc++/signal.h>
29 #include <glibmm/thread.h>
30
31 #include <pbd/undo.h>
32 #include <pbd/xml++.h>
33 #include <pbd/statefuldestructible.h> 
34
35 #include <ardour/ardour.h>
36
37 namespace ARDOUR {
38         
39 struct ControlEvent {
40     double when;
41     double value;
42     
43     ControlEvent (double w, double v)
44             : when (w), value (v) { }
45     ControlEvent (const ControlEvent& other) 
46             : when (other.when), value (other.value) {}
47
48     virtual ~ControlEvent() {}
49     
50 //    bool operator==(const ControlEvent& other) {
51 //          return value == other.value && when == other.when;
52 //    }
53
54 };
55
56 class AutomationList : public PBD::StatefulDestructible
57 {
58   public:
59         typedef std::list<ControlEvent*> AutomationEventList;
60         typedef AutomationEventList::iterator iterator;
61         typedef AutomationEventList::const_iterator const_iterator;
62
63         AutomationList (double default_value);
64         AutomationList (const XMLNode&);
65         ~AutomationList();
66
67         AutomationList (const AutomationList&);
68         AutomationList (const AutomationList&, double start, double end);
69         AutomationList& operator= (const AutomationList&);
70         bool operator== (const AutomationList&);
71
72         void freeze();
73         void thaw ();
74
75         AutomationEventList::size_type size() const { return events.size(); }
76         bool empty() const { return events.empty(); }
77
78         void reset_default (double val) {
79                 default_value = val;
80         }
81
82         void clear ();
83         void x_scale (double factor);
84         bool extend_to (double);
85
86         void reposition_for_rt_add (double when);
87         void rt_add (double when, double value);
88         void add (double when, double value);
89         /* this should be private but old-school automation loading needs it in IO/Redirect */
90         void fast_simple_add (double when, double value);
91
92         void reset_range (double start, double end);
93         void erase_range (double start, double end);
94         void erase (iterator);
95         void erase (iterator, iterator);
96         void move_range (iterator start, iterator end, double, double);
97         void modify (iterator, double, double);
98
99         AutomationList* cut (double, double);
100         AutomationList* copy (double, double);
101         void clear (double, double);
102
103         AutomationList* cut (iterator, iterator);
104         AutomationList* copy (iterator, iterator);
105         void clear (iterator, iterator);
106
107         bool paste (AutomationList&, double position, float times);
108
109         void set_automation_state (AutoState);
110         AutoState automation_state() const { return _state; }
111         sigc::signal<void> automation_style_changed;
112
113         void set_automation_style (AutoStyle m);
114         AutoStyle automation_style() const { return _style; }
115         sigc::signal<void> automation_state_changed;
116
117         bool automation_playback() {
118                 return (_state & Play) || ((_state & Touch) && !_touching);
119         }
120         bool automation_write () {
121                 return (_state & Write) || ((_state & Touch) && _touching);
122         }
123
124         void start_touch ();
125         void stop_touch ();
126         bool touching() const { return _touching; }
127
128         void set_yrange (double min, double max) {
129                 min_yval = min;
130                 max_yval = max;
131         }
132
133         double get_max_y() const { return max_yval; }
134         double get_min_y() const { return min_yval; }
135
136         void truncate_end (double length);
137         void truncate_start (double length);
138         
139         iterator begin() { return events.begin(); }
140         iterator end() { return events.end(); }
141
142         ControlEvent* back() { return events.back(); }
143         ControlEvent* front() { return events.front(); }
144
145         const_iterator const_begin() const { return events.begin(); }
146         const_iterator const_end() const { return events.end(); }
147
148         std::pair<AutomationList::iterator,AutomationList::iterator> control_points_adjacent (double when);
149
150         template<class T> void apply_to_points (T& obj, void (T::*method)(const AutomationList&)) {
151                 Glib::Mutex::Lock lm (lock);
152                 (obj.*method)(*this);
153         }
154
155         sigc::signal<void,Change> StateChanged;
156
157         XMLNode& get_state(void); 
158         int set_state (const XMLNode &s);
159         XMLNode& state (bool full);
160         XMLNode& serialize_events ();
161
162         void set_max_xval (double);
163         double get_max_xval() const { return max_xval; }
164
165         double eval (double where) {
166                 Glib::Mutex::Lock lm (lock);
167                 return unlocked_eval (where);
168         }
169
170         double rt_safe_eval (double where, bool& ok) {
171
172                 Glib::Mutex::Lock lm (lock, Glib::TRY_LOCK);
173
174                 if ((ok = lm.locked())) {
175                         return unlocked_eval (where);
176                 } else {
177                         return 0.0;
178                 }
179         }
180
181         struct TimeComparator {
182                 bool operator() (const ControlEvent* a, const ControlEvent* b) { 
183                         return a->when < b->when;
184                 }
185         };
186
187         static sigc::signal<void, AutomationList*> AutomationListCreated;
188
189   protected:
190
191         AutomationEventList events;
192         mutable Glib::Mutex lock;
193         bool   _frozen;
194         bool    changed_when_thawed;
195         bool   _dirty;
196
197         struct LookupCache {
198             double left;  /* leftmost x coordinate used when finding "range" */
199             std::pair<AutomationList::iterator,AutomationList::iterator> range;
200         };
201
202         LookupCache lookup_cache;
203
204         AutoState  _state;
205         AutoStyle  _style;
206         bool  _touching;
207         bool  _new_touch;
208         double max_xval;
209         double min_yval;
210         double max_yval;
211         double default_value;
212
213         iterator rt_insertion_point;
214         double   rt_pos;
215
216         void maybe_signal_changed ();
217         void mark_dirty ();
218         void _x_scale (double factor);
219
220         /* called by type-specific unlocked_eval() to handle
221            common case of 0, 1 or 2 control points.
222         */
223
224         double shared_eval (double x);
225
226         /* called by shared_eval() to handle any case of
227            3 or more control points.
228         */
229
230         virtual double multipoint_eval (double x); 
231
232         /* called by locked entry point and various private
233            locations where we already hold the lock.
234         */
235
236         virtual double unlocked_eval (double where);
237
238         virtual ControlEvent* point_factory (double,double) const;
239         virtual ControlEvent* point_factory (const ControlEvent&) const;
240
241         AutomationList* cut_copy_clear (double, double, int op);
242
243         int deserialize_events (const XMLNode&);
244 };
245
246 } // namespace
247
248 #endif /* __ardour_automation_event_h__ */