1
1
'use strict' ;
2
2
define ( function ( require ) {
3
3
4
-
5
4
var p5sound = require ( 'master' ) ;
6
5
var TimelineSignal = require ( 'Tone/signal/TimelineSignal' ) ;
7
- require ( 'sndcore' ) ;
8
-
6
+ var noteToFreq = require ( 'helpers' ) . noteToFreq ;
9
7
10
8
/**
11
9
* An AudioVoice is used as a single voice for sound synthesis.
@@ -247,30 +245,27 @@ define(function (require) {
247
245
* </code></div>
248
246
*/
249
247
p5 . PolySynth . prototype . noteAttack = function ( _note , _velocity , secondsFromNow ) {
250
- var now = p5sound . audiocontext . currentTime ;
251
-
252
248
//this value goes to the audiovoices which handle their own scheduling
253
- var tFromNow = secondsFromNow || 0 ;
249
+ var secondsFromNow = ~ ~ secondsFromNow ;
254
250
255
251
//this value is used by this._voicesInUse
256
- var t = now + tFromNow ;
252
+ var acTime = p5sound . audiocontext . currentTime + secondsFromNow ;
257
253
258
254
//Convert note to frequency if necessary. This is because entries into this.notes
259
255
//should be based on frequency for the sake of consistency.
260
- var note = typeof _note === 'string' ? this . AudioVoice . prototype . _setNote ( _note )
261
- : typeof _note === 'number' ? _note : 440 ;
262
- var velocity = _velocity === undefined ? 1 : _velocity ;
256
+ var note = noteToFreq ( _note ) ;
257
+ var velocity = _velocity || 0.1 ;
263
258
264
259
var currentVoice ;
265
260
266
261
//Release the note if it is already playing
267
- if ( this . notes [ note ] !== undefined && this . notes [ note ] . getValueAtTime ( t ) !== null ) {
268
- this . noteRelease ( note , 0 ) ;
262
+ if ( this . notes [ note ] && this . notes [ note ] . getValueAtTime ( acTime ) !== null ) {
263
+ this . noteRelease ( note , 0 ) ;
269
264
}
270
265
271
266
//Check to see how many voices are in use at the time the note will start
272
- if ( this . _voicesInUse . getValueAtTime ( t ) < this . maxVoices ) {
273
- currentVoice = Math . max ( ~ ~ this . _voicesInUse . getValueAtTime ( t ) , 0 ) ;
267
+ if ( this . _voicesInUse . getValueAtTime ( acTime ) < this . maxVoices ) {
268
+ currentVoice = Math . max ( ~ ~ this . _voicesInUse . getValueAtTime ( acTime ) , 0 ) ;
274
269
}
275
270
//If we are exceeding the polyvalue, bump off the oldest notes and replace
276
271
//with a new note
@@ -285,23 +280,23 @@ define(function (require) {
285
280
//Overrite the entry in the notes object. A note (frequency value)
286
281
//corresponds to the index of the audiovoice that is playing it
287
282
this . notes [ note ] = new TimelineSignal ( ) ;
288
- this . notes [ note ] . setValueAtTime ( currentVoice , t ) ;
283
+ this . notes [ note ] . setValueAtTime ( currentVoice , acTime ) ;
289
284
290
285
//Find the scheduled change in this._voicesInUse that will be previous to this new note
291
286
//Add 1 and schedule this value at time 't', when this note will start playing
292
- var previousVal = this . _voicesInUse . _searchBefore ( t ) === null ? 0 : this . _voicesInUse . _searchBefore ( t ) . value ;
293
- this . _voicesInUse . setValueAtTime ( previousVal + 1 , t ) ;
287
+ var previousVal = this . _voicesInUse . _searchBefore ( acTime ) === null ? 0 : this . _voicesInUse . _searchBefore ( acTime ) . value ;
288
+ this . _voicesInUse . setValueAtTime ( previousVal + 1 , acTime ) ;
294
289
295
290
//Then update all scheduled values that follow to increase by 1
296
- this . _updateAfter ( t , 1 ) ;
291
+ this . _updateAfter ( acTime , 1 ) ;
297
292
298
293
this . _newest = currentVoice ;
299
294
//The audiovoice handles the actual scheduling of the note
300
295
if ( typeof velocity === 'number' ) {
301
- var maxRange = 1 / this . _voicesInUse . getValueAtTime ( t ) * 2 ;
296
+ var maxRange = 1 / this . _voicesInUse . getValueAtTime ( acTime ) * 2 ;
302
297
velocity = velocity > maxRange ? maxRange : velocity ;
303
298
}
304
- this . audiovoices [ currentVoice ] . triggerAttack ( note , velocity , tFromNow ) ;
299
+ this . audiovoices [ currentVoice ] . triggerAttack ( note , velocity , secondsFromNow ) ;
305
300
} ;
306
301
307
302
/**
@@ -368,16 +363,16 @@ define(function (require) {
368
363
} ) ;
369
364
this . _voicesInUse . setValueAtTime ( 0 , t ) ;
370
365
for ( var n in this . notes ) {
371
- this . notes [ n ] . setValueAtTime ( null , t )
366
+ this . notes [ n ] . dispose ( ) ;
367
+ delete this . notes [ n ] ;
372
368
}
373
369
return ;
374
370
}
375
371
376
372
//Make sure note is in frequency inorder to query the this.notes object
377
- var note = typeof _note === 'string' ? this . AudioVoice . prototype . _setNote ( _note )
378
- : typeof _note === 'number' ? _note : this . audiovoices [ this . _newest ] . oscillator . freq ( ) . value ;
373
+ var note = noteToFreq ( _note ) ;
379
374
380
- if ( this . notes [ note ] . getValueAtTime ( t ) === null ) {
375
+ if ( ! this . notes [ note ] || this . notes [ note ] . getValueAtTime ( t ) === null ) {
381
376
console . warn ( 'Cannot release a note that is not already playing' ) ;
382
377
} else {
383
378
//Find the scheduled change in this._voicesInUse that will be previous to this new note
@@ -390,7 +385,8 @@ define(function (require) {
390
385
}
391
386
392
387
this . audiovoices [ this . notes [ note ] . getValueAtTime ( t ) ] . triggerRelease ( tFromNow ) ;
393
- this . notes [ note ] . setValueAtTime ( null , t ) ;
388
+ this . notes [ note ] . dispose ( ) ;
389
+ delete this . notes [ note ] ;
394
390
395
391
this . _newest = this . _newest === 0 ? 0 : ( this . _newest - 1 ) % ( this . maxVoices - 1 ) ;
396
392
}
0 commit comments