Big ol' automation refactor.
[ardour.git] / libs / ardour / ardour / curve.h
1 /*
2     Copyright (C) 2001-2003 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 */
19
20 #ifndef __ardour_curve_h__
21 #define __ardour_curve_h__
22
23 #include <sys/types.h>
24 #include <sigc++/signal.h>
25 #include <glibmm/thread.h>
26 #include <pbd/undo.h>
27 #include <list>
28 #include <algorithm>
29 #include <ardour/automation_event.h>
30
31 namespace ARDOUR {
32
33 class Curve
34 {
35   public:
36         Curve (const AutomationList& al);
37         ~Curve ();
38         Curve (const Curve& other);
39         //Curve (const Curve& other, double start, double end);
40         /*Curve (const XMLNode&, ParamID id);*/
41
42         bool rt_safe_get_vector (double x0, double x1, float *arg, int32_t veclen);
43         void get_vector (double x0, double x1, float *arg, int32_t veclen);
44
45         void solve ();
46
47   private:
48         double unlocked_eval (double where);
49         double multipoint_eval (double x);
50
51         void _get_vector (double x0, double x1, float *arg, int32_t veclen);
52
53         const AutomationList& _list;
54
55         void on_list_dirty() { _dirty = true; }
56         bool _dirty;
57 };
58
59 } // namespace ARDOUR
60
61 extern "C" {
62         void curve_get_vector_from_c (void *arg, double, double, float*, int32_t);
63 }
64
65 #endif /* __ardour_curve_h__ */