Skip to content

Commit

Permalink
Fixed an issue with calling stop more than once on a node. Also remov…
Browse files Browse the repository at this point in the history
…ed all forEach's in favour of using while loops.
  • Loading branch information
meenie committed Mar 9, 2014
1 parent f70e379 commit 6c1eae6
Showing 1 changed file with 42 additions and 30 deletions.
72 changes: 42 additions & 30 deletions src/band.js
Expand Up @@ -143,15 +143,17 @@

if (pitch) {
pitch = pitch.split(',');
pitch.forEach(function(p) {
var index = -1;
while (++index < pitch.length) {
var p = pitch[index];
p = p.trim();
if (typeof pitches[p] === 'undefined') {
p = parseFloat(p);
if (isNaN(p) || p < 0) {
throw new Error(p + ' is not a valid pitch.');
}
}
});
}
}

soundsBuffer.push({
Expand Down Expand Up @@ -222,15 +224,16 @@
numOfRepeats = typeof numOfRepeats === 'undefined' ? 1 : numOfRepeats;
var soundsBufferCopy = soundsBuffer.slice(lastRepeatCount);
for (var r = 0; r < numOfRepeats; r++) {
soundsBufferCopy.forEach(function(sound) {
var soundCopy = clone(sound);
var index = -1;
while (++index < soundsBufferCopy.length) {
var soundCopy = clone(soundsBufferCopy[index]);

soundCopy.startTime = currentTime;
soundCopy.stopTime = currentTime + soundCopy.duration - soundCopy.articulationGap;

soundsBuffer.push(soundCopy);
currentTime += soundCopy.duration;
});
}
}

return self;
Expand All @@ -241,10 +244,12 @@
* of each instrument.
*/
this.finish = function() {
var duration = 0;
soundsBuffer.forEach(function(sound) {
var duration = 0,
index = -1;
while (++index < soundsBuffer.length) {
var sound = soundsBuffer[index];
duration += sound.duration;
});
}
// Figure out longest duration out of all the instruments
if (duration > totalDuration) {
totalDuration = duration;
Expand Down Expand Up @@ -317,7 +322,9 @@
if (! json['notes'].hasOwnProperty(inst)) {
continue;
}
json['notes'][inst].forEach(function(note) {
var index = -1;
while (++index < json['notes'][inst].length) {
var note = json['notes'][inst][index];
// Use shorthand if it's a string
if (typeof note === 'string') {
var noteParts = note.split('|');
Expand All @@ -326,15 +333,15 @@
} else {
instrumentList[inst].note(noteParts[0], noteParts[1], noteParts[2]);
}
// Otherwise use longhand
// Otherwise use longhand
} else {
if ('rest' === note.type) {
instrumentList[inst].rest(note.rhythm);
} else if ('note' === note.type) {
instrumentList[inst].note(note.rhythm, note.pitch, note.tie);
}
}
});
}
instrumentList[inst].finish();
}

Expand Down Expand Up @@ -451,9 +458,10 @@
*/
this.end = function() {
// Reset the buffer position of all instruments
instruments.forEach(function(instrument) {
instrument.bufferPosition = 0;
});
var index = -1;
while (++index < instruments.length) {
instruments[index].bufferPosition = 0;
}
// Setup initials sounds
allSounds = this.bufferSounds();
};
Expand All @@ -470,12 +478,14 @@
}

var sounds = [];
instruments.forEach(function(instrument) {
var index = -1;
while (++index < instruments.length) {
var instrument = instruments[index];
// Create volume for this instrument
var bufferCount = bufferSize;

for (var i = 0; i < bufferCount; i++) {
var sound = instrument.sounds[instrument.bufferPosition + i];
var index2 = -1;
while (++index2 < bufferCount) {
var sound = instrument.sounds[instrument.bufferPosition + index2];

if (typeof sound === 'undefined') {
break;
Expand Down Expand Up @@ -507,20 +517,22 @@
volumeLevel: volumeLevel
});
} else {
pitch.forEach(function(p) {
var index3 = -1;
while (++index3 < pitch.length) {
var p = pitch[index3];
sounds.push({
startTime: startTime,
stopTime: stopTime,
node: instrument.instrument.createSound(gain, pitches[p.trim()] || parseFloat(p)),
gain: gain,
volumeLevel: volumeLevel
});
});
}
}
}
}
instrument.bufferPosition += bufferCount;
});
}

// Return array of sounds
return sounds;
Expand Down Expand Up @@ -566,10 +578,11 @@
totalPlayTimeCalculator();
var timeOffset = ac.currentTime - totalPlayTime,
playSounds = function(sounds) {
sounds.forEach(function(sound) {
var index = -1;
while (++index < sounds.length) {
var sound = sounds[index];
var startTime = sound.startTime + timeOffset,
stopTime = sound.stopTime + timeOffset
;
stopTime = sound.stopTime + timeOffset;

/**
* If no tie, then we need to introduce a volume ramp up to remove any clipping
Expand All @@ -587,7 +600,7 @@

sound.node.start(startTime);
sound.node.stop(stopTime);
});
}
},
bufferUp = function() {
bufferTimeout = setTimeout(function() {
Expand Down Expand Up @@ -701,11 +714,10 @@
*/
function reset() {
clearTimeout(bufferTimeout);
allSounds.forEach(function(sound) {
if (sound.node) {
sound.node.stop(0);
}
});
var index = -1;
while (++index < allSounds.length) {
allSounds[index].gain.disconnect();
}
self.end();
}

Expand Down

0 comments on commit 6c1eae6

Please sign in to comment.