rework canvas zoom, add 3 plugins from 7.2, tweak cwdw boundry, vdevicex11 dupl close...
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / tremolo / tremolo.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008-2019 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 TREMOLO_H
23 #define TREMOLO_H
24
25 class Tremolo;
26
27 #include "pluginaclient.h"
28
29
30 #define SINE 0
31 #define SAWTOOTH 1
32 #define SAWTOOTH2 2
33 #define SQUARE 3
34 #define TRIANGLE 4
35 #define TOTAL_WAVEFORMS 5
36
37 class TremoloConfig
38 {
39 public:
40         TremoloConfig();
41
42
43         int equivalent(TremoloConfig &that);
44         void copy_from(TremoloConfig &that);
45         void interpolate(TremoloConfig &prev, 
46                 TremoloConfig &next, 
47                 int64_t prev_frame, 
48                 int64_t next_frame, 
49                 int64_t current_frame);
50         void boundaries();
51
52
53 // starting phase offset in ms
54         float offset;
55 // how much the phase oscillates in ms
56         float depth;
57 // rate of phase oscillation in Hz
58         float rate;
59         int waveform;
60 };
61
62
63
64
65 class Tremolo : public PluginAClient
66 {
67 public:
68         Tremolo(PluginServer *server);
69         ~Tremolo();
70
71         void update_gui();
72
73
74
75 // required for all realtime/multichannel plugins
76         PLUGIN_CLASS_MEMBERS(TremoloConfig);
77     int process_buffer(int64_t size, 
78             Samples *buffer, 
79             int64_t start_position,
80             int sample_rate);
81     void reallocate_dsp(int new_dsp_allocated);
82     void reallocate_history(int new_allocation);
83
84         int is_realtime();
85         int is_synthesis();
86         int is_multichannel();
87         void save_data(KeyFrame *keyframe);
88         void read_data(KeyFrame *keyframe);
89
90     int table_size;
91     double *table;
92     int table_offset;
93 // detect seeking
94     int64_t last_position;
95         int need_reconfigure;
96 };
97
98
99
100 class TremoloWaveForm;
101 class TremoloWindow : public PluginClientWindow
102 {
103 public:
104         TremoloWindow(Tremolo *plugin);
105         ~TremoloWindow();
106         
107         void create_objects();
108     void update();
109     static char* waveform_to_text(char *text, int waveform);
110     void param_updated();
111
112         Tremolo *plugin;
113     PluginParam *offset;
114     PluginParam *depth;
115     PluginParam *rate;
116     TremoloWaveForm *waveform;
117 };
118
119
120 class TremoloWaveForm : public BC_PopupMenu
121 {
122 public:
123         TremoloWaveForm(Tremolo *plugin, int x, int y, char *text);
124         ~TremoloWaveForm();
125
126         void create_objects();
127         Tremolo *plugin;
128 };
129
130 class TremoloWaveFormItem : public BC_MenuItem
131 {
132 public:
133         TremoloWaveFormItem(Tremolo *plugin, char *text, int value);
134         ~TremoloWaveFormItem();
135         
136         int handle_event();
137         
138         int value;
139         Tremolo *plugin;
140 };
141
142
143
144
145 #endif
146
147
148