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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
|
#ifndef INCLUDE_LINEARENVELOPE_H
#define INCLUDE_LINEARENVELOPE_H
/*
* This is the Loris C++ Class Library, implementing analysis,
* manipulation, and synthesis of digitized sounds using the Reassigned
* Bandwidth-Enhanced Additive Sound Model.
*
* Loris is Copyright (c) 1999-2010 by Kelly Fitz and Lippold Haken
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY, without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* LinearEnvelope.h
*
* Definition of class LinearEnvelope.
*
* Kelly Fitz, 23 April 2005
* loris@cerlsoundgroup.org
*
* http://www.cerlsoundgroup.org/Loris/
*
*/
#include "Envelope.h"
#include <map>
// begin namespace
namespace Loris {
// ---------------------------------------------------------------------------
// class LinearEnvelope
//
//! A LinearEnvelope represents a linear segment breakpoint function
//! with infinite extension at each end (that is, evalutaing the
//! envelope past either end of the breakpoint function yields the
//! value at the nearest end point).
//!
//! LinearEnvelope implements the Envelope interface, described
//! by the abstract class Envelope.
//!
//! LinearEnvelope inherits the types
//! \li \c size_type
//! \li \c value_type
//! \li \c iterator
//! \li \c const_iterator
//!
//! and the member functions
//! \li size_type size( void ) const
//! \li bool empty( void ) const
//! \li iterator begin( void )
//! \li const_iterator begin( void ) const
//! \li iterator end( void )
//! \li const_iterator end( void ) const
//!
//! from std::map< double, double >.
//
class LinearEnvelope : public Envelope, private std::map< double, double >
{
// -- public interface --
public:
// -- construction --
//! Construct a new LinearEnvelope having no
//! breakpoints (and an implicit value of 0 everywhere).
LinearEnvelope( void );
//! Construct and return a new LinearEnvelope having a
//! single breakpoint at 0 (and an implicit value everywhere)
//! of initialValue.
//!
//! \param initialValue is the value of this LinearEnvelope
//! at time 0.
explicit LinearEnvelope( double initialValue );
// compiler-generated copy, assignment, and destruction are OK.
// -- Envelope interface --
//! Return an exact copy of this LinearEnvelope
//! (polymorphic copy, following the Prototype pattern).
virtual LinearEnvelope * clone( void ) const;
//! Return the linearly-interpolated value of this LinearEnvelope at
//! the specified time.
//!
//! \param t is the time at which to evaluate this
//! LinearEnvelope.
virtual double valueAt( double t ) const;
// -- envelope composition --
//! Insert a breakpoint representing the specified (time, value)
//! pair into this LinearEnvelope. If there is already a
//! breakpoint at the specified time, it will be replaced with
//! the new breakpoint.
//!
//! \param time is the time at which to insert a new breakpoint
//! \param value is the value of the new breakpoint
void insert( double time, double value );
//! Insert a breakpoint representing the specified (time, value)
//! pair into this LinearEnvelope. Same as insert, retained
//! for backwards-compatibility.
//!
//! \param time is the time at which to insert a new breakpoint
//! \param value is the value of the new breakpoint
void insertBreakpoint( double time, double value )
{ insert( time, value ); }
//! Add a constant value to this LinearEnvelope and return a reference
//! to self.
//!
//! \param offset is the value to add to all points in the envelope
LinearEnvelope & operator+=( double offset );
//! Subtract a constant value from this LinearEnvelope and return a reference
//! to self.
//!
//! \param offset is the value to subtract from all points in the envelope
LinearEnvelope & operator-=( double offset )
{
return operator+=( -offset );
}
//! Scale this LinearEnvelope by a constant value and return a reference
//! to self.
//!
//! \param scale is the value by which to multiply to all points in
//! the envelope
LinearEnvelope & operator*=( double scale );
//! Divide this LinearEnvelope by a constant value and return a reference
//! to self.
//!
//! \param div is the value by which to divide to all points in
//! the envelope
LinearEnvelope & operator/=( double div )
{
return operator*=( 1.0 / div );
}
// -- interface inherited from std::map --
using std::map< double, double >::size;
using std::map< double, double >::empty;
using std::map< double, double >::clear;
using std::map< double, double >::begin;
using std::map< double, double >::end;
using std::map< double, double >::size_type;
using std::map< double, double >::value_type;
using std::map< double, double >::iterator;
using std::map< double, double >::const_iterator;
}; // end of class LinearEnvelope
// -- binary operators (inline nonmembers) --
//! Add a constant value to a LinearEnvelope and return a new
//! LinearEnvelope.
inline
LinearEnvelope operator+( LinearEnvelope env, double offset )
{
env += offset;
return env;
}
//! Add a constant value to a LinearEnvelope and return a new
//! LinearEnvelope.
inline
LinearEnvelope operator+( double offset, LinearEnvelope env )
{
env += offset;
return env;
}
//! Add two LinearEnvelopes and return a new LinearEnvelope.
inline
LinearEnvelope operator+( const LinearEnvelope & e1, const LinearEnvelope & e2 )
{
LinearEnvelope ret;
// For each breakpoint in e1, insert a breakpoint having a value
// equal to the sum of the two envelopes at that time.
for ( LinearEnvelope::const_iterator it = e1.begin(); it != e1.end(); ++it )
{
double t = it->first;
double v = it->second;
ret.insert( t, v + e2.valueAt( t ) );
}
// For each breakpoint in e2, insert a breakpoint having a value
// equal to the sum of the two envelopes at that time.
for ( LinearEnvelope::const_iterator it = e2.begin(); it != e2.end(); ++it )
{
double t = it->first;
double v = it->second;
ret.insert( t, v + e1.valueAt( t ) );
}
return ret;
}
//! Subtract a constant value from a LinearEnvelope and return a new
//! LinearEnvelope.
inline
LinearEnvelope operator-( LinearEnvelope env, double offset )
{
env -= offset;
return env;
}
//! Subtract a LinearEnvelope from a constant value and return a new
//! LinearEnvelope.
inline
LinearEnvelope operator-( double offset, LinearEnvelope env )
{
env *= -1.0;
env += offset;
return env;
}
//! Subtract two LinearEnvelopes and return a new LinearEnvelope.
inline
LinearEnvelope operator-( const LinearEnvelope & e1, const LinearEnvelope & e2 )
{
LinearEnvelope ret;
// For each breakpoint in e1, insert a breakpoint having a value
// equal to the difference between the two envelopes at that time.
for ( LinearEnvelope::const_iterator it = e1.begin(); it != e1.end(); ++it )
{
double t = it->first;
double v = it->second;
ret.insert( t, v - e2.valueAt( t ) );
}
// For each breakpoint in e2, insert a breakpoint having a value
// equal to the difference between the two envelopes at that time.
for ( LinearEnvelope::const_iterator it = e2.begin(); it != e2.end(); ++it )
{
double t = it->first;
double v = it->second;
ret.insert( t, e1.valueAt( t ) - v );
}
return ret;
}
//! Scale a LinearEnvelope by a constant value and return a new
//! LinearEnvelope.
inline
LinearEnvelope operator*( LinearEnvelope env, double scale )
{
env *= scale;
return env;
}
//! Scale a LinearEnvelope by a constant value and return a new
//! LinearEnvelope.
inline
LinearEnvelope operator*( double scale, LinearEnvelope env )
{
env *= scale;
return env;
}
//! Divide a LinearEnvelope by a constant value and return a new
//! LinearEnvelope.
inline
LinearEnvelope operator/( LinearEnvelope env, double div )
{
env /= div;
return env;
}
//! Divide constant value by a LinearEnvelope and return a new
//! LinearEnvelope. No shortcut implementation for this one,
//! don't inline.
LinearEnvelope operator/( double scale, LinearEnvelope env );
} // end of namespace Loris
#endif /* ndef INCLUDE_LINEARENVELOPE_H */
|