Fixed runtime errors

This commit is contained in:
manuroe 2014-10-19 09:08:27 +02:00
parent 4f58d41c15
commit 453a4f8f8b
1 changed files with 13 additions and 14 deletions

View File

@ -88,11 +88,12 @@ notes C-D-E/4 #0# =:: C-D-E-F/4 =|=");
getLogDuration: function(duration) {
var fraction = duration / this.beat;
console.log(fraction);
var musicFraction;
var duration = Math.floor(Math.log2(1 / fraction)) - 1;
return Math.floor(Math.log2(1 / fraction)) - 1;
},
renderChord: function(duration, rest) {
var musicFraction;
var logDuration = this.getLogDuration(duration);
var trashIt = false; // Flag to ignore artefact(???)
switch (logDuration) {
@ -124,9 +125,6 @@ notes C-D-E/4 #0# =:: C-D-E-F/4 =|=");
// Matthew is about to fix it
if (trashIt) return;
}
this.currentMeasureTime += duration;
var s = ":" + musicFraction + " ";
if (rest) {
@ -134,22 +132,22 @@ notes C-D-E/4 #0# =:: C-D-E-F/4 =|=");
}
else {
var notes = [];
for (var note in chord.notes) {
if (chord.notes.hasOwnProperty(note)) {
for (var note in this.chord.notes) {
if (this.chord.notes.hasOwnProperty(note)) {
notes.push(note);
}
}
if (notes.length > 1) {
s += "(";
for (int i = 0; i < notes.length; i++) {
for (var i = 0; i < notes.length; i++) {
s += notes[i];
if (i < notes.length - 1) s+= ".";
}
s += ")";
}
else {
s += vexNote;
s += notes[0];
}
}
@ -190,7 +188,7 @@ notes C-D-E/4 #0# =:: C-D-E-F/4 =|=");
if (event.content.midi_ts - this.chord.start_midi_ts < 300) { // empirically
// just add it to the current chord we're building up.
this.chord.note[vexNote]++;
this.chord.notes[vexNote]++;
}
else {
// render the last note/chord
@ -203,7 +201,8 @@ notes C-D-E/4 #0# =:: C-D-E-F/4 =|=");
}
// start a new chord
this.chord.notes = { vexNote };
this.chord.notes = {};
this.chord.notes[vexNote]++;
this.chord.start_midi_ts = midi_ts;
this.chord.end_midi_ts = 0;
}