Merged with trunk R1705.
[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 struct CurvePoint : public ControlEvent 
34 {
35     double coeff[4];
36
37     CurvePoint (double w, double v) 
38             : ControlEvent (w, v) {
39
40             coeff[0] = coeff[1] = coeff[2] = coeff[3] = 0.0;
41     }
42
43     ~CurvePoint() {}
44 };
45
46 class Curve : public AutomationList
47 {
48   public:
49         Curve (double min_yval, double max_yval, double defaultvalue, bool nostate = false);
50         ~Curve ();
51         Curve (const Curve& other);
52         Curve (const Curve& other, double start, double end);
53         Curve (const XMLNode&);
54
55         bool rt_safe_get_vector (double x0, double x1, float *arg, int32_t veclen);
56         void get_vector (double x0, double x1, float *arg, int32_t veclen);
57
58         AutomationEventList::iterator closest_control_point_before (double xval);
59         AutomationEventList::iterator closest_control_point_after (double xval);
60
61         void solve ();
62
63         static sigc::signal<void, Curve*> CurveCreated;
64                 
65   protected:
66         ControlEvent* point_factory (double,double) const;
67         ControlEvent* point_factory (const ControlEvent&) const;
68
69   private:
70         AutomationList::iterator last_bound;
71
72         double unlocked_eval (double where);
73         double multipoint_eval (double x);
74
75         void _get_vector (double x0, double x1, float *arg, int32_t veclen);
76
77 };
78
79 } // namespace ARDOUR
80
81 extern "C" {
82         void curve_get_vector_from_c (void *arg, double, double, float*, int32_t);
83 }
84
85 #endif /* __ardour_curve_h__ */