summaryrefslogtreecommitdiff
path: root/src/loris/lorisPartialList_pi.C
blob: c99c77c65775cb9365693f884dacc938f259d9b7 (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
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
/*
 * 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
 *
 *
 *	lorisPartialList_pi.C
 *
 *	A component of the C-linkable procedural interface for Loris. 
 *
 *	Main components of the Loris procedural interface:
 *	- object interfaces - Analyzer, Synthesizer, Partial, PartialIterator, 
 *		PartialList, PartialListIterator, Breakpoint, BreakpointEnvelope,  
 *		and SampleVector need to be (opaque) objects in the interface, 
 * 		either because they hold state (e.g. Analyzer) or because they are 
 *		fundamental data types (e.g. Partial), so they need a procedural 
 *		interface to their member functions. All these things need to be 
 *		opaque pointers for the benefit of C.
 *	- non-object-based procedures - other classes in Loris are not so stateful,
 *		and have sufficiently narrow functionality that they need only 
 *		procedures, and no object representation.
 *	- utility functions - some procedures that are generally useful but are
 *		not yet part of the Loris core are also defined.
 *	- notification and exception handlers - all exceptions must be caught and
 *		handled internally, clients can specify an exception handler and 
 *		a notification function (the default one in Loris uses printf()).
 *
 *	This file contains the procedural interface for the Loris 
 *	PartialList (std::list< Partial >) class.
 *
 * Kelly Fitz, 10 Nov 2000
 * loris@cerlsoundgroup.org
 *
 * http://www.cerlsoundgroup.org/Loris/
 *
 */
#if HAVE_CONFIG_H
	#include "config.h"
#endif

#include "loris.h"
#include "lorisException_pi.h"

#include "Partial.h"
#include "Notifier.h"

#include <list>

using namespace Loris;


/* ---------------------------------------------------------------- */
/*		PartialList object interface								
/*
/*	A PartialList represents a collection of Bandwidth-Enhanced 
	Partials, each having a trio of synchronous, non-uniformly-
	sampled breakpoint envelopes representing the time-varying 
	frequency, amplitude, and noisiness of a single bandwidth-
	enhanced sinusoid.

	For more information about Bandwidth-Enhanced Partials and the  
	Reassigned Bandwidth-Enhanced Additive Sound Model, refer to
	the Loris website: www.cerlsoundgroup.org/Loris/.

	In C++, a PartialList * is a Loris::PartialList *.
 */ 

/* ---------------------------------------------------------------- */
/*        createPartialList        
/*
/*	Return a new empty PartialList.
 */
extern "C"
PartialList * createPartialList( void )
{
	try 
	{
		debugger << "creating empty PartialList" << endl;
		return new std::list< Partial >;
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in createPartialList(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in createPartialList(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return NULL;
}

/* ---------------------------------------------------------------- */
/*        destroyPartialList        
/*
/*	Destroy this PartialList.
 */
extern "C"
void destroyPartialList( PartialList * ptr_this )
{
	try 
	{
		ThrowIfNull((PartialList *) ptr_this);

		debugger << "deleting PartialList containing " << ptr_this->size() << " Partials" << endl;
		delete ptr_this;
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in destroyPartialList(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in destroyPartialList(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        partialList_clear        
/*
/*	Remove (and destroy) all the Partials from this PartialList,
	leaving it empty.
 */
extern "C"
void partialList_clear( PartialList * ptr_this )
{
	try 
	{
		ThrowIfNull((PartialList *) ptr_this);
		ptr_this->clear();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partialList_clear(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partialList_clear(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        partialList_copy        
/*
/*	Make this PartialList a copy of the source PartialList by making
	copies of all of the Partials in the source and adding them to 
	this PartialList.
 */
extern "C"
void partialList_copy( PartialList * dst, const PartialList * src )
{
	try 
	{
		ThrowIfNull((PartialList *) dst);
		ThrowIfNull((PartialList *) src);

		debugger << "copying PartialList containing " << src->size() << " Partials" << endl;
		*dst = *src;
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partialList_copy(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partialList_copy(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        partialList_size        
/*
/*	Return the number of Partials in this PartialList.
 */
extern "C"
unsigned long partialList_size( const PartialList * ptr_this )
{
	try 
	{
		ThrowIfNull((PartialList *) ptr_this);
		return ptr_this->size();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partialList_size(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partialList_size(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return 0;
}

/* ---------------------------------------------------------------- */
/*        partialList_splice        
/*
/*	Splice all the Partials in the source PartialList onto the end of
	this PartialList, leaving the source empty.
 */
extern "C"
void partialList_splice( PartialList * dst, PartialList * src )
{
	try 
	{
		ThrowIfNull((PartialList *) dst);
		ThrowIfNull((PartialList *) src);

		debugger << "splicing PartialList containing " << src->size() << " Partials" 
				 << " into PartialList containing " << dst->size() << " Partials"<< endl;
		dst->splice( dst->end(), *src );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partialList_splice(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partialList_splice(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*		Partial object interface
/*
/*	A Partial represents a single component in the
	reassigned bandwidth-enhanced additive model. A Partial consists of a
	chain of Breakpoints describing the time-varying frequency, amplitude,
	and bandwidth (or noisiness) envelopes of the component, and a 4-byte
	label. The Breakpoints are non-uniformly distributed in time. For more
	information about Reassigned Bandwidth-Enhanced Analysis and the
	Reassigned Bandwidth-Enhanced Additive Sound Model, refer to the Loris
	website: www.cerlsoundgroup.org/Loris/.
 */ 

/* ---------------------------------------------------------------- */
/*        partial_startTime        
/*
/*	Return the start time (seconds) for the specified Partial.
 */
double partial_startTime( const Partial * p )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->startTime();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_startTime(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_startTime(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_endTime        
/*
/*	Return the end time (seconds) for the specified Partial.
 */
double partial_endTime( const Partial * p )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->endTime();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_endTime(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_endTime(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_duration        
/*
/*	Return the duration (seconds) for the specified Partial.
 */
double partial_duration( const Partial * p )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->duration();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_duration(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_duration(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_initialPhase        
/*
/*	Return the initial phase (radians) for the specified Partial.
 */
double partial_initialPhase( const Partial * p )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->initialPhase();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_initialPhase(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_initialPhase(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_label        
/*
/*	Return the integer label for the specified Partial.
 */
int partial_label( const Partial * p )
{
    int ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->label();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_label(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_label(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_numBreakpoints        
/*
/*	Return the number of Breakpoints in the specified Partial.
 */
unsigned long partial_numBreakpoints( const Partial * p )
{
    unsigned long ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->size();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_numBreakpoints(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_numBreakpoints(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_frequencyAt        
/*
/*	Return the frequency (Hz) of the specified Partial interpolated
	at a particular time. It is an error to apply this function to
	a Partial having no Breakpoints.
 */
double partial_frequencyAt( const Partial * p, double t )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->frequencyAt( t );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_frequencyAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_frequencyAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_bandwidthAt        
/*
/*	Return the bandwidth of the specified Partial interpolated
	at a particular time. It is an error to apply this function to
	a Partial having no Breakpoints.
 */
double partial_bandwidthAt( const Partial * p, double t )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->bandwidthAt( t );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_bandwidthAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_bandwidthAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_phaseAt        
/*
/*	Return the phase (radians) of the specified Partial interpolated
	at a particular time. It is an error to apply this function to
	a Partial having no Breakpoints.
 */
double partial_phaseAt( const Partial * p, double t )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->phaseAt( t );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_phaseAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_phaseAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_amplitudeAt        
/*
/*	Return the (absolute) amplitude of the specified Partial interpolated
	at a particular time. Partials are assumed to fade out
	over 1 millisecond at the ends (rather than instantaneously).
	It is an error to apply this function to a Partial having no Breakpoints.
 */
double partial_amplitudeAt( const Partial * p, double t )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		ret = p->amplitudeAt( t, 0.001 );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_amplitudeAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_amplitudeAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        partial_setLabel        
/*
/* 	Assign a new integer label to the specified Partial.
 */
void partial_setLabel( Partial * p, int label )
{
	try 
	{
		ThrowIfNull((Partial *) p);

		p->setLabel( label );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in partial_setLabel(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in partial_setLabel(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*		Breakpoint object interface
/*
/*	A Breakpoint represents a single breakpoint in the
	Partial parameter (frequency, amplitude, bandwidth) envelope.
	Instantaneous phase is also stored, but is only used at the onset of 
	a partial, or when it makes a transition from zero to nonzero amplitude.
	
	Loris Partials represent reassigned bandwidth-enhanced model components.
	A Partial consists of a chain of Breakpoints describing the time-varying
	frequency, amplitude, and bandwidth (noisiness) of the component.
	For more information about Reassigned Bandwidth-Enhanced 
	Analysis and the Reassigned Bandwidth-Enhanced Additive Sound 
	Model, refer to the Loris website: 
	www.cerlsoundgroup.org/Loris/.
 */ 

/* ---------------------------------------------------------------- */
/*        breakpoint_getFrequency        
/*
/*	Return the frequency (Hz) of the specified Breakpoint.
 */
double breakpoint_getFrequency( const Breakpoint * bp )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Breakpoint *) bp);

		ret = bp->frequency();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in breakpoint_getFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in breakpoint_getFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        breakpoint_getAmplitude        
/*
/* 	Return the (absolute) amplitude of the specified Breakpoint.
 */
double breakpoint_getAmplitude( const Breakpoint * bp )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Breakpoint *) bp);

		ret = bp->amplitude();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in breakpoint_getAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in breakpoint_getAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        breakpoint_getBandwidth        
/*
/*	Return the bandwidth coefficient of the specified Breakpoint.
 */
double breakpoint_getBandwidth( const Breakpoint * bp )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Breakpoint *) bp);

		ret = bp->bandwidth();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in breakpoint_getBandwidth(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in breakpoint_getBandwidth(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        breakpoint_getPhase        
/*
/*	Return the phase (radians) of the specified Breakpoint.
 */
double breakpoint_getPhase( const Breakpoint * bp )
{
    double ret = 0;
	try 
	{
		ThrowIfNull((Breakpoint *) bp);

		ret = bp->phase();
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in breakpoint_getPhase(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in breakpoint_getPhase(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	return ret;
}

/* ---------------------------------------------------------------- */
/*        breakpoint_setFrequency        
/*
/*	Assign a new frequency (Hz) to the specified Breakpoint.
 */
void breakpoint_setFrequency( Breakpoint * bp, double f )
{
	try 
	{
		ThrowIfNull((Breakpoint *) bp);

		bp->setFrequency( f );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in breakpoint_setFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in breakpoint_setFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        breakpoint_setAmplitude        
/*
/* 	Assign a new (absolute) amplitude to the specified Breakpoint.
 */
void breakpoint_setAmplitude( Breakpoint * bp, double a )
{
	try 
	{
		ThrowIfNull((Breakpoint *) bp);

		bp->setAmplitude( a );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in breakpoint_setAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in breakpoint_setAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        breakpoint_setBandwidth        
/*
/*	Assign a new bandwidth coefficient to the specified Breakpoint.
 */
void breakpoint_setBandwidth( Breakpoint * bp, double bw )
{
	try 
	{
		ThrowIfNull((Breakpoint *) bp);

		bp->setBandwidth( bw );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in breakpoint_setBandwidth(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in breakpoint_setBandwidth(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        breakpoint_setPhase        
/*
/*	Assign a new phase (radians) to the specified Breakpoint.
 */
void breakpoint_setPhase( Breakpoint * bp, double phi )
{
	try 
	{
		ThrowIfNull((Breakpoint *) bp);

		bp->setPhase( phi );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in breakpoint_setPhase(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in breakpoint_setPhase(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}