upgrade libvpx+lv2, fix dbl tap play bug, add multi nest/unnest clips, add del top...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / maskauto.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef MASKAUTO_H
23 #define MASKAUTO_H
24
25
26 #include "arraylist.h"
27 #include "auto.h"
28 #include "maskauto.inc"
29 #include "maskautos.inc"
30
31 class MaskPoint
32 {
33 public:
34         MaskPoint();
35
36         int operator==(MaskPoint& ptr);
37         MaskPoint& operator=(MaskPoint& ptr);
38         void copy_from(MaskPoint &ptr);
39
40         float x, y;
41 // Incoming acceleration
42         float control_x1, control_y1;
43 // Outgoing acceleration
44         float control_x2, control_y2;
45 };
46
47 class SubMask
48 {
49 public:
50         SubMask(MaskAuto *keyframe);
51         ~SubMask();
52
53 // Don't use ==
54         int operator==(SubMask& ptr);
55         int equivalent(SubMask& ptr);
56         void copy_from(SubMask& ptr);
57         void load(FileXML *file);
58         void copy(FileXML *file);
59         void dump();
60
61         ArrayList<MaskPoint*> points;
62         MaskAuto *keyframe;
63 };
64
65 class MaskAuto : public Auto
66 {
67 public:
68         MaskAuto(EDL *edl, MaskAutos *autos);
69         ~MaskAuto();
70
71         int operator==(Auto &that);
72         int operator==(MaskAuto &that);
73         int identical(MaskAuto *src);
74         void load(FileXML *file);
75         void copy(int64_t start, int64_t end, FileXML *file, int default_auto);
76         void copy_from(Auto *src);
77         int interpolate_from(Auto *a1, Auto *a2, int64_t position, Auto *templ=0);
78         void copy_from(MaskAuto *src);
79 // Copy data but not position
80         void copy_data(MaskAuto *src);
81         void get_points(ArrayList<MaskPoint*> *points,
82                 int submask);
83         void set_points(ArrayList<MaskPoint*> *points,
84                 int submask);
85
86 // Copy parameters to this which differ between ref & src
87         void update_parameter(MaskAuto *ref, MaskAuto *src);
88
89         void dump();
90 // Retrieve submask with clamping
91         SubMask* get_submask(int number);
92 // Translates all submasks
93         void translate_submasks(float translate_x, float translate_y);
94 // scale all submasks
95         void scale_submasks(int orig_scale, int new_scale);
96
97
98         ArrayList<SubMask*> masks;
99 // These are constant for the entire track
100         int mode;
101         float feather;
102 // 0 - 100
103         int value;
104         int apply_before_plugins;
105         int disable_opengl_masking;
106 };
107
108
109
110
111 #endif