forked from pichenettes/eurorack
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathenvelope.h
246 lines (199 loc) · 5.66 KB
/
envelope.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
// Copyright 2014 Olivier Gillet.
//
// Author: Olivier Gillet ([email protected])
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// See http://creativecommons.org/licenses/MIT/ for more information.
//
// -----------------------------------------------------------------------------
//
// Simple AD envelope - adapted from Peaks' multistage envelope.
#ifndef STREAMS_ENVELOPE_H_
#define STREAMS_ENVELOPE_H_
#include "stmlib/stmlib.h"
#include "streams/meta_parameters.h"
namespace streams {
enum EnvelopeShape {
ENV_SHAPE_LINEAR,
ENV_SHAPE_EXPONENTIAL,
ENV_SHAPE_QUARTIC
};
const uint16_t kMaxNumSegments = 8;
class Envelope {
public:
Envelope() { }
~Envelope() { }
void Init();
void Process(
int16_t audio,
int16_t excite,
uint16_t* gain,
uint16_t* frequency);
void Configure(bool alternate, int32_t* parameters, int32_t* globals) {
uint16_t a, d;
if (globals) {
a = globals[0];
d = globals[2];
ComputeAmountOffset(
parameters[1],
&target_frequency_amount_,
&target_frequency_offset_);
} else {
ComputeAttackDecay(parameters[0], &a, &d);
ComputeAmountOffset(
parameters[1],
&target_frequency_amount_,
&target_frequency_offset_);
}
if (a != attack_ || d != decay_ || alternate != alternate_) {
attack_ = a;
decay_ = d;
alternate_ = alternate;
if (alternate_) {
set_ar(a, d);
} else {
set_ad(a, d);
}
set_hard_reset(true);
}
}
inline void set_time(uint16_t segment, uint16_t time) {
time_[segment] = time;
}
inline void set_level(uint16_t segment, int16_t level) {
level_[segment] = level;
}
inline void set_num_segments(uint16_t num_segments) {
num_segments_ = num_segments;
}
inline void set_sustain_point(uint16_t sustain_point) {
sustain_point_ = sustain_point;
}
inline void set_ad(uint16_t attack, uint16_t decay) {
num_segments_ = 2;
sustain_point_ = 0;
level_[0] = 0;
level_[1] = 32767;
level_[2] = 0;
time_[0] = attack;
time_[1] = decay;
shape_[0] = ENV_SHAPE_LINEAR;
shape_[1] = ENV_SHAPE_EXPONENTIAL;
}
inline void set_adr(
uint16_t attack,
uint16_t decay,
uint16_t sustain,
uint16_t release) {
num_segments_ = 3;
sustain_point_ = 0;
level_[0] = 0;
level_[1] = 32767;
level_[2] = sustain;
level_[3] = 0;
time_[0] = attack;
time_[1] = decay;
time_[2] = release;
shape_[0] = ENV_SHAPE_LINEAR;
shape_[1] = ENV_SHAPE_LINEAR;
shape_[2] = ENV_SHAPE_LINEAR;
}
inline void set_ar(uint16_t attack, uint16_t decay) {
num_segments_ = 2;
sustain_point_ = 1;
level_[0] = 0;
level_[1] = 32767;
level_[2] = 0;
time_[0] = attack;
time_[1] = decay;
shape_[0] = ENV_SHAPE_LINEAR;
shape_[1] = ENV_SHAPE_LINEAR;
}
inline void set_adsar(
uint16_t attack,
uint16_t decay,
uint16_t sustain,
uint16_t release) {
num_segments_ = 4;
sustain_point_ = 2;
level_[0] = 0;
level_[1] = 32767;
level_[2] = sustain;
level_[3] = 32767;
level_[4] = 0;
time_[0] = attack;
time_[1] = decay;
time_[2] = attack;
time_[3] = release;
shape_[0] = ENV_SHAPE_LINEAR;
shape_[1] = ENV_SHAPE_LINEAR;
shape_[2] = ENV_SHAPE_LINEAR;
shape_[3] = ENV_SHAPE_LINEAR;
}
inline void set_adar(
uint16_t attack,
uint16_t decay,
uint16_t sustain,
uint16_t release) {
num_segments_ = 4;
sustain_point_ = 0;
level_[0] = 0;
level_[1] = 32767;
level_[2] = sustain;
level_[3] = 32767;
level_[4] = 0;
time_[0] = attack;
time_[1] = decay;
time_[2] = attack;
time_[3] = release;
shape_[0] = ENV_SHAPE_LINEAR;
shape_[1] = ENV_SHAPE_LINEAR;
shape_[2] = ENV_SHAPE_LINEAR;
shape_[3] = ENV_SHAPE_LINEAR;
}
inline void set_hard_reset(bool hard_reset) {
hard_reset_ = hard_reset;
}
private:
bool gate_;
int16_t level_[kMaxNumSegments];
uint16_t time_[kMaxNumSegments];
EnvelopeShape shape_[kMaxNumSegments];
int16_t segment_;
int16_t start_value_;
int16_t value_;
uint32_t phase_;
uint32_t phase_increment_;
uint16_t num_segments_;
uint16_t sustain_point_;
int32_t target_frequency_amount_;
int32_t target_frequency_offset_;
int32_t frequency_amount_;
int32_t frequency_offset_;
uint16_t attack_;
uint16_t decay_;
bool alternate_;
bool hard_reset_;
int32_t rate_modulation_;
int32_t gate_level_;
DISALLOW_COPY_AND_ASSIGN(Envelope);
};
} // namespace streams
#endif // STREAMS_ENVELOPE_H_