summaryrefslogtreecommitdiff
path: root/simpl/lorisSynthesizer.i
blob: 52fdfd7a542a47682f4ac729b92d9d22feb017f7 (plain)
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
/*
 * 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
 *
 *
 *  lorisSynthesizer.i
 *
 *  SWIG interface file describing functions associated with Loris bandwidth-
 *  enhanced sinusoidal synthesis. Include this file in loris.i to include 
 *  these classes in the scripting module. 
 *
 * Kelly Fitz, 4 Nov 2009
 * loris@cerlsoundgroup.org
 *
 * http://www.cerlsoundgroup.org/Loris/
 *
 */
 

/* ******************** inserted C++ code ******************** */
%{

#include <LorisExceptions.h>
#include <Synthesizer.h>

using Loris::Synthesizer;


%}
/* ***************** end of inserted C++ code ***************** */

/* *************** synthesis parameters struct **************** */

%feature("docstring",
"Access to Loris bandwidth-enhanced sinusoidal synthesis parameters. 
Parameters assigned here are the default parameters used in Loris 
synthesis. Some functions allow these parameters to be overridden
(see e.g. loris.synthesize).") 
SynthesisParameters;


%feature("docstring",
"Return the Loris Synthesizer's Partial fade time, in seconds.") 
SynthesisParameters::fadeTime;

%feature("docstring",
"Return the sampling rate (in Hz) for the Loris Synthesizer.") 
SynthesisParameters::sampleRate;

%feature("docstring",
"Set the Loris Synthesizer's fade time to the specified value 
(in seconds, must be non-negative).

	t is the new Partial fade time in seconds.
") 
SynthesisParameters::setFadeTime;

%feature("docstring",
"Set the Loris Synthesizer's sample rate to the specified value 
(in Hz, must be positive).

	rate is the new synthesis sample rate.
") 
SynthesisParameters::setSampleRate;

%feature("docstring",
"Return the numerator coefficients in the filter used by the Loris 
Synthesizer in bandwidth-enhanced sinusoidal synthesis.") 
SynthesisParameters::filterCoefsNumerator;

%feature("docstring",
"Return the denominator coefficients in the filter used by the Loris 
Synthesizer in bandwidth-enhanced sinusoidal synthesis.") 
SynthesisParameters::filterCoefsDenominator;

%feature("docstring",
"Set the coefficients in the filter used by the Loris 
Synthesizer in bandwidth-enhanced sinusoidal synthesis.

    num is the new numerator coefficients
    den is the new denominator coefficients
    
The zeroeth denominator coefficient must be non-zero. If it is not
equal to 1.0, all the other coefficients are scaled by its inverse.
") 
SynthesisParameters::setFilterCoefs;


//  This class does not exist, really, it is just a collection of 
//  accessors and mutators for the global default Synthesizer 
//  parameters.

%nodefault SynthesisParameters;

%inline
%{
    class SynthesisParameters
    {
    public:
    
        //  -- default fade time access and mutation --
        
        static double fadeTime( void ) 
        {
            return Synthesizer::DefaultParameters().fadeTime;
        }
    
    
        static void setFadeTime( double t )
        {
            Synthesizer::Parameters params = 
                Synthesizer::DefaultParameters();
            params.fadeTime = t;
            Synthesizer::SetDefaultParameters( params );
        }
    
    
        //  -- default sample rate access and mutation --
        
        static double sampleRate( void ) 
        {
            return Synthesizer::DefaultParameters().sampleRate;
        }
    
    
        static void setSampleRate( double rate )    
        {
            Synthesizer::Parameters params = 
                Synthesizer::DefaultParameters();
            params.sampleRate = rate;
            Synthesizer::SetDefaultParameters( params );        
        }
    
        //  -- filter access and mutation --
        
        static std::vector< double > filterCoefsNumerator( void ) 
        {
            return Synthesizer::DefaultParameters().filter.numerator();
        }
        
        static std::vector< double > filterCoefsDenominator( void )
        {
            return Synthesizer::DefaultParameters().filter.denominator();
        }                
        
        static void setFilterCoefs( std::vector< double > num, std::vector< double > den )
        {
            if ( 0. == den[0] )
            {
                Throw( InvalidArgument, 
                       "Zeroeth feedback coefficient must be non-zero." );
            }
        
            Synthesizer::Parameters params = 
                Synthesizer::DefaultParameters();
            params.filter.numerator() = num;
            params.filter.denominator() = den;
            Synthesizer::SetDefaultParameters( params );        
        }
    
    };

%}




/* ******************** synthesis functions ******************** */


%feature("docstring",
"Synthesize Partials in a PartialList at the given sample rate, and
return the (floating point) samples in a vector. The vector is
sized to hold as many samples as are needed for the complete
synthesis of all the Partials in the PartialList. 

If the sample rate is unspecified, the sample rate in the default 
SynthesisParameters is used. (See loris.SynthesisParameters.)") 
synthesize;


%newobject synthesize;
%inline 
%{
	std::vector<double> synthesize( const PartialList * partials, double srate )
	{
		std::vector<double> dst;
		try
		{
			Synthesizer synth( srate, dst );
			synth.synthesize( partials->begin(), partials->end() );
		}
		catch ( std::exception & ex )
		{
			throw_exception( ex.what() );
		}
		return dst;
	}
	
	std::vector<double> synthesize( const PartialList * partials )
	{
		std::vector<double> dst;
		try
		{
			Synthesizer synth( dst );
			synth.synthesize( partials->begin(), partials->end() );
		}
		catch ( std::exception & ex )
		{
			throw_exception( ex.what() );
		}
		return dst;
	}
%}