-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
tune n-edo.qml
1051 lines (968 loc) · 39 KB
/
tune n-edo.qml
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
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import QtQuick 2.1
import QtQuick.Controls 1.3
import QtQuick.Controls.Styles 1.3
import MuseScore 3.0
MuseScore {
version: "2.3.3"
description: "Retune selection to any EDO temperament, or whole score if nothing selected."
menuPath: "Plugins.n-EDO.Tune"
// WARNING! This doesn't validate the accidental code!
property variant customKeySigRegex: /\.(.*)\.(.*)\.(.*)\.(.*)\.(.*)\.(.*)\.(.*)/g
// these lookups are for transposition annotations
property variant fifthsFromC: {
'f': -1,
'c': 0,
'g': 1,
'd': 2,
'a': 3,
'e': 4,
'b': 5
}
property variant standardAccFifths: {
'bb': -14,
'b': -7,
'': 0,
'#': 7,
'x': 14
}
// Enumeration of custom names to map MuseScore symbols, text, and accidentals
// to a consistent accidental enumeration called AccType instead of Accidental.
property variant accType: (function() {
var symbols =
[
'NONE',
'NATURAL',
'SHARP_SLASH4',
'SHARP_SLASH',
'MIRRORED_FLAT',
'MIRRORED_FLAT2',
'DOUBLE_SHARP_THREE_ARROWS_UP',
'DOUBLE_SHARP_TWO_ARROWS_UP',
'SHARP2_ARROW_UP',
'DOUBLE_SHARP_ONE_ARROW_UP',
'SHARP2',
'SHARP2_ARROW_DOWN',
'DOUBLE_SHARP_ONE_ARROW_DOWN',
'DOUBLE_SHARP_TWO_ARROWS_DOWN',
'DOUBLE_SHARP_THREE_ARROWS_DOWN',
'SHARP_THREE_ARROWS_UP',
'SHARP_TWO_ARROWS_UP',
'SHARP_ARROW_UP',
'SHARP_ONE_ARROW_UP',
'SHARP',
'SHARP_ARROW_DOWN',
'SHARP_ONE_ARROW_DOWN',
'SHARP_TWO_ARROWS_DOWN',
'SHARP_THREE_ARROWS_DOWN',
'NATURAL_THREE_ARROWS_UP',
'NATURAL_TWO_ARROWS_UP',
'NATURAL_ARROW_UP',
'NATURAL_ONE_ARROW_UP',
'NATURAL_ARROW_DOWN',
'NATURAL_ONE_ARROW_DOWN',
'NATURAL_TWO_ARROWS_DOWN',
'NATURAL_THREE_ARROWS_DOWN',
'FLAT_THREE_ARROWS_UP',
'FLAT_TWO_ARROWS_UP',
'FLAT_ARROW_UP',
'FLAT_ONE_ARROW_UP',
'FLAT',
'FLAT_ARROW_DOWN',
'FLAT_ONE_ARROW_DOWN',
'FLAT_TWO_ARROWS_DOWN',
'FLAT_THREE_ARROWS_DOWN',
'DOUBLE_FLAT_THREE_ARROWS_UP',
'DOUBLE_FLAT_TWO_ARROWS_UP',
'FLAT2_ARROW_UP',
'DOUBLE_FLAT_ONE_ARROW_UP',
'FLAT2',
'FLAT2_ARROW_DOWN',
'DOUBLE_FLAT_ONE_ARROW_DOWN',
'DOUBLE_FLAT_TWO_ARROWS_DOWN',
'DOUBLE_FLAT_THREE_ARROWS_DOWN',
// Addon
'LOWER_ONE_SEPTIMAL_COMMA', // v4
'RAISE_ONE_SEPTIMAL_COMMA', // ^4
'RAISE_ONE_TRIDECIMAL_QUARTERTONE', // #v4
'SHARP_SLASH2', // #^4
'THREE_TWELFTH_FLAT', // bv4
'FOUR_TWELFTH_FLAT', // b^4
'SAGITTAL_SHARP25SD', // xv4
'DOUBLE_SHARP_EQUAL_TEMPERED', // x^4
'NINE_TWELFTH_FLAT', // bbv4
'TEN_TWELFTH_FLAT' // bb^4
];
var enumeration = {};
for (var i = 0; i < symbols.length; i++) {
enumeration[symbols[i]] = i;
}
Object.freeze(enumeration);
return enumeration;
})()
// An object class for defining all possible accidentals, including
// multi-accidentals, etc...
property var acc: (function() {
var clazz = function() {
this.type = AccType.NONE;
};
clazz.prototype.calculatePitchOffset = function(tuningSystem) {
};
clazz.prototype.readFromNote = function(note) {
};
})()
// MuseScore's annotations contain formatting code in angle brackets if the
// annotation text formatting is not default. This function removes
// all text within angle brackets including the brackets themselves
function removeFormattingCode(str) {
if (typeof(str) == 'string')
return str.replace(/<[^>]*>/g, '');
else
return null;
}
// Calculates the number of cents to detune the default musescore note by.
// noteName: the note nominal alphabet from 'f' thru 'b'
// stepOffset: offset the nominal by this many steps of the EDO
// regAcc: number of regular accidentals
// edo: how many notes per octave in the tuning system.
// center: the central note and its frequency in Hz (by default A4, 440)
//
// Special credits to @FloraCanou (https://github.com/FloraCanou) for conceiving this method
// method edited by @euwbah to set A as the normalised frequency instead of D
/**
noteName: nominal of note to tune
stepOffset: number of edosteps away from nominal
regAcc: number of sharps in the accidental of this note is a regular accidental
edo: edo to tune to
center: Reference pitch e.g. {note: 'a4', freq: 440}
transFifths: number of fifths this part is transposed by if transposing instrument and
concert pitch mode is off. E.g. Bb clarinet should be -2.
Only regular fifth-based transpositions can be used.
Rationale for this is that musescore's transposing instruments
are transposed in 12 edo, so an additional offset must be applied
to convert it to a fifth-based transposition in n-edo.
*/
function getCentOffset(noteName, stepOffset, regAcc, edo, center, transFifths) {
var stepSize = 1200.0 / edo;
var val = [2, 3].map (function (q) {return Math.round(edo * Math.log(q) / Math.LN2);});
var fifthStep = -val[0] + val[1];
var sharpValue = -11*val[0] + 7*val[1];
var twelveFifthVsEdoFifthCents = 700 - (fifthStep * stepSize);
var transpositionCorrection = -transFifths * twelveFifthVsEdoFifthCents;
// Offset caused by custom central frequency
var centOffset = 1200*Math.log (center.freq / 440) / Math.LN2;
// Offset caused by custom central note
var centerValue;
switch (center.note.substring(0, 1)) {
case 'f':
centOffset += 400;
centerValue = 3;
break;
case 'c':
centOffset += 900;
centerValue = 2;
break;
case 'g':
centOffset += 200;
centerValue = 1;
break;
case 'd':
centOffset += 700;
centerValue = 0;
break;
case 'a':
centOffset += 0;
centerValue = -1;
break;
case 'e':
centOffset += 500;
centerValue = -2;
break;
case 'b':
centOffset += -200;
centerValue = -3;
break;
}
centOffset += -1200*(parseInt(center.note.substring(1, 2)) - 4);
var nominalOffset = 0;
var nominalOffset = 0;
switch (noteName) {
case 'f':
nominalOffset = (centerValue - 3)*(stepSize*fifthStep - 700);
break;
case 'c':
nominalOffset = (centerValue - 2)*(stepSize*fifthStep - 700);
break;
case 'g':
nominalOffset = (centerValue - 1)*(stepSize*fifthStep - 700);
break;
case 'd':
nominalOffset = centerValue*(stepSize*fifthStep - 700);
break;
case 'a':
nominalOffset = (centerValue + 1)*(stepSize*fifthStep - 700);
break;
case 'e':
nominalOffset = (centerValue + 2)*(stepSize*fifthStep - 700);
break;
case 'b':
nominalOffset = (centerValue + 3)*(stepSize*fifthStep - 700);
break;
}
return stepSize*stepOffset - 100*regAcc + nominalOffset + centOffset + transpositionCorrection;
}
function convertAccidentalToStepsOrNull(acc, edo) {
var val = [2, 3].map (function (q) {return Math.round(edo * Math.log(q) / Math.LN2);});
var fifthStep = -val[0] + val[1];
var sharpValue = -11*val[0] + 7*val[1];
switch(acc.trim()) {
case 'db':
case 'bd':
return -3*sharpValue/2;
case 'd':
return -sharpValue/2;
case '+':
return sharpValue/2;
case '#+':
case '+#':
return 3*sharpValue/2;
case 'bbv3':
return -2*sharpValue - 3;
case 'bbv2':
return -2*sharpValue - 2;
case 'bbv1':
case 'bbv':
return -2*sharpValue - 1;
case 'bb':
return -2*sharpValue;
case 'bb^':
case 'bb^1':
return -2*sharpValue + 1;
case 'bb^2':
return -2*sharpValue + 2;
case 'bb^3':
return -2*sharpValue + 3;
case 'bv3':
return -sharpValue - 3;
case 'bv2':
return -sharpValue - 2;
case 'bv1':
case 'bv':
return -sharpValue - 1;
case 'b':
return -sharpValue;
case 'b^':
case 'b^1':
return -sharpValue + 1;
case 'b^2':
return -sharpValue + 2;
case 'b^3':
return -sharpValue + 3;
case 'v3':
return -3;
case 'v2':
return -2;
case 'v1':
case 'v':
return -1;
case '':
return 0;
case '^':
case '^1':
return 1;
case '^2':
return 2;
case '^3':
return 3;
case '#v3':
return sharpValue - 3;
case '#v2':
return sharpValue - 2;
case '#v1':
case '#v':
return sharpValue - 1;
case '#':
return sharpValue;
case '#^':
case '#^1':
return sharpValue + 1;
case '#^2':
return sharpValue + 2;
case '#^3':
return sharpValue + 3;
case 'xv3':
return 2*sharpValue - 3;
case 'xv2':
return 2*sharpValue - 2;
case 'xv1':
case 'xv':
return 2*sharpValue - 1;
case 'x':
return 2*sharpValue;
case 'x^':
case 'x^1':
return 2*sharpValue + 1;
case 'x^2':
return 2*sharpValue + 2;
case 'x^3':
return 2*sharpValue + 3;
// Addon
case '^4':
return 4;
case 'v4':
return -4;
case '#^4':
return sharpValue + 4;
case '#v4':
return sharpValue - 4;
case 'b^4':
return -sharpValue + 4;
case 'bv4':
return -sharpValue - 4;
case 'x^4':
return 2*sharpValue + 4;
case 'xv4':
return 2*sharpValue - 4;
case 'bb^4':
return -2*sharpValue + 4;
case 'bbv4':
return -2*sharpValue - 4;
default:
return null;
}
}
// Takes in annotations[].text and returns either
// a key signature object if str is a valid custom key sig code or null.
//
// Valid key sig code is denoted as such:
// .c.d.e.f.g.a.b
// where identifiers c thru b denote a valid accidental code of which
// will apply to the respective notes.
//
// For example, this is F-down major: .v.v.v.v.v.v.bv
//
// whitespace can be placed between dots and accidentals for readability.
//
// For the natural accidental, blank or whitespace will both work.
//
// Assign the key signature object to the parms.currKeySig field!
function scanCustomKeySig(str, edo) {
if (typeof (str) !== 'string')
return null;
str = str.trim();
var keySig = {};
var res = str.match(customKeySigRegex);
// For code golfing
var notes = [null, 'c', 'd', 'e', 'f', 'g', 'a', 'b'];
if (res === null)
return null;
for (var i = 1; i <= 7; i++) {
var acc = convertAccidentalToStepsOrNull(res[i].trim(), edo);
console.log('keySig ' + i + ', steps: ' + acc);
if (acc !== null)
keySig[notes[i]] = acc;
else
keySig[notes[i]] = 0;
}
return keySig;
}
// Apply the given function to all notes in selection
// or, if nothing is selected, in the entire score
function applyToNotesInSelection(func, parms) {
var cursor = curScore.newCursor();
cursor.rewind(1);
var startStaff;
var endStaff;
var endTick;
var fullScore = false;
if (!cursor.segment) { // no selection
fullScore = true;
startStaff = 0; // start with 1st staff
endStaff = curScore.nstaves - 1; // and end with last
} else {
startStaff = cursor.staffIdx;
cursor.rewind(2);
if (cursor.tick == 0) {
// this happens when the selection includes
// the last measure of the score.
// rewind(2) goes behind the last segment (where
// there's none) and sets tick=0
endTick = curScore.lastSegment.tick + 1;
} else {
endTick = cursor.tick;
}
endStaff = cursor.staffIdx;
}
console.log(startStaff + " - " + endStaff + " - " + endTick);
// -------------- Actual thing here -----------------------
for (var staff = startStaff; staff <= endStaff; staff++) {
// Reset accidentals at the start of every staff.
parms.accidentals = {};
// Even if system text is used for key sig, the text
// won't carry over for all voices (if the text was placed on voice 1, only
// voice 1 will see the text)
//
// Therefore, all the diff custom key sig texts across all 4 voices
// need to be aggregated into this array before the notes can be
// tuned.
var staffKeySigHistory = [];
var staffCenterHistory = [];
var staffEDOHistory = [];
var staffTranspositionHistory = [];
// initial run to populate custom key signatures
for (var voice = 0; voice < 4; voice++) {
// Note: either ways, it is still necesssary to go to the start of the score before
// applying to notes in selection as custom key signatures may precede the selection
// that should still apply to the score.
// NOTE: THIS IS THE ONLY RIGHT WAY (TM) TO REWIND THE CURSOR TO THE START OF THE SCORE.
// ANY OTHER METHOD WOULD RESULT IN CATASTROPHIC FAILURE FOR WHATEVER REASON.
cursor.rewind(1);
cursor.voice = voice;
cursor.staffIdx = staff;
cursor.rewind(0);
var measureCount = 0;
console.log("processing custom key signatures staff: " + staff + ", voice: " + voice);
while (true) {
if (cursor.segment) {
// scan edo & tuning center first. key signature parsing is dependant on edo used.
for (var i = 0; i < cursor.segment.annotations.length; i++) {
var annotation = cursor.segment.annotations[i];
console.log("found annotation type: " + annotation.name);
if ((annotation.name == 'StaffText' && Math.floor(annotation.track / 4) == staff) ||
(annotation.name == 'SystemText')) {
var text = removeFormattingCode(annotation.text);
if (text.toLowerCase().trim().endsWith('edo')) {
var edo = parseInt(text.substring(0, text.length - 3));
if (edo !== NaN || edo !== undefined || edo !== null) {
console.log('found EDO annotation: ' + text)
staffEDOHistory.push({
tick: cursor.tick,
edo: edo
});
}
} else if (text.trim().search(/[a-g][0-9]:/i) == 0) {
var txt = text.toLowerCase().trim();
if (txt.endsWith('hz'))
txt = txt.substring(0, txt.length - 2);
var center = {note: txt.substring(0, 2), freq: parseFloat(txt.substring(3))};
if (center.freq !== NaN || center.freq !== undefined || center.freq !== null) {
console.log('found tuning center annotation: ' + text)
staffCenterHistory.push({
tick: cursor.tick,
center: center
});
}
}
}
}
// Check for StaffText key signature changes, then update staffKeySigHistory
for (var i = 0; i < cursor.segment.annotations.length; i++) {
var annotation = cursor.segment.annotations[i];
console.log("found annotation type: " + annotation.name);
if ((annotation.name == 'StaffText' && Math.floor(annotation.track / 4) == staff) ||
(annotation.name == 'SystemText')) {
var t = annotation.text.toLowerCase().trim();
if (t.startsWith('t:')) {
t = t.substring(2).trim();
var nominal = t.substring(0, 1);
var acc = t.substring(1).trim();
if (fifthsFromC[nominal] !== undefined && standardAccFifths[acc] !== undefined) {
staffTranspositionHistory.push({
tick: cursor.tick,
fifths: fifthsFromC[nominal] + standardAccFifths[acc]
});
}
} else {
var text = removeFormattingCode(t);
var mostRecentEDO = staffEDOHistory.length !== 0 ? staffEDOHistory[staffEDOHistory.length - 1].edo : null;
if (!mostRecentEDO)
mostRecentEDO = 12;
var maybeKeySig = scanCustomKeySig(text, mostRecentEDO);
if (maybeKeySig !== null) {
console.log("detected new custom keySig: " + text + ", staff: " + staff + ", voice: " + voice);
staffKeySigHistory.push({
tick: cursor.tick,
keySig: maybeKeySig
});
}
}
}
}
if (cursor.segment.tick == cursor.measure.firstSegment.tick && voice === 0) {
// once new bar is reached, denote new bar in the parms.accidentals.bars object
// so that getAccidental will reset. Only do this for the first voice in a staff
// since voices in a staff shares the same barrings.
if (!parms.accidentals.bars)
parms.accidentals.bars = [];
parms.accidentals.bars.push(cursor.segment.tick);
measureCount ++;
console.log("New bar - " + measureCount);
}
}
if (!cursor.next())
break;
}
}
// 2 passes - one to ensure all accidentals are represented acorss
// all 4 voices, then the second one to apply those accidentals.
for (var rep = 0; rep < 2; rep++) {
// After every staff, reset the keySig and tuning states back to default
parms.currKeySig = parms.keySig;
parms.currEdo = 12;
parms.currCenter = {note: 'a4', freq: 440};
parms.currTranspose = 0;
for (var voice = 0; voice < 4; voice++) {
// if first pass go to start of score so that anchors.all
// accidentals are accounted for
// otherwise, go to the start of the selection to begin tuning
// NOTE: FOR WHATEVER REASON, rewind(1) must be called BEFORE assigning voice and staffIdx,
// and rewind(0) MUST be called AFTER rewind(1), AND AFTER assigning voice and staffIdx.
cursor.rewind(1);
cursor.voice = voice; //voice has to be set after goTo
cursor.staffIdx = staff;
if (fullScore || rep == 0)
cursor.rewind(0);
var measureCount = 0;
console.log("processing staff: " + staff + ", voice: " + voice);
// Loop elements of a voice
while (cursor.segment && (fullScore || cursor.tick < endTick)) {
// Note that the parms.accidentals object now stores accidentals
// from all 4 voices in a staff since microtonal accidentals from one voice
// should affect subsequent notes on the same line in other voices as well.
var mostRecentKeySigTick = -1;
for (var i = 0; i < staffKeySigHistory.length; i++) {
var keySig = staffKeySigHistory[i];
if (keySig.tick <= cursor.tick && keySig.tick >= mostRecentKeySigTick) {
parms.currKeySig = keySig.keySig;
mostRecentKeySigTick = keySig.tick;
}
}
var mostRecentEDOTick = -1;
for (var i = 0; i < staffEDOHistory.length; i++) {
var edo = staffEDOHistory[i];
if (edo.tick <= cursor.tick && edo.tick >= mostRecentEDOTick) {
parms.currEdo = edo.edo;
mostRecentEDOTick = edo.tick;
}
}
var mostRecentCenterTick = -1;
for (var i = 0; i < staffCenterHistory.length; i++) {
var center = staffCenterHistory[i];
if (center.tick <= cursor.tick && center.tick >= mostRecentCenterTick) {
parms.currCenter = center.center;
mostRecentCenterTick = center.tick;
}
}
var mostRecentTransposeTick = -1;
for (var i = 0; i < staffTranspositionHistory.length; i++) {
var trans = staffTranspositionHistory[i];
if (trans.tick <= cursor.tick && trans.tick >= mostRecentTransposeTick) {
parms.currTranspose = trans.fifths;
mostRecentTransposeTick = trans.tick;
}
}
if (cursor.element) {
if (cursor.element.type == Ms.CHORD) {
var graceChords = cursor.element.graceNotes;
for (var i = 0; i < graceChords.length; i++) {
// iterate through all grace chords
var notes = graceChords[i].notes;
for (var j = 0; j < notes.length; j++)
func(notes[j], cursor.segment, parms, rep === 0);
}
var notes = cursor.element.notes;
for (var i = 0; i < notes.length; i++) {
var note = notes[i];
// find other symbols (aux accidentals) attached to the note
// for (var j = 0; j < note.elements.length; j++) {
// if (note.elements[j].symbol)
// console.log(note.elements[j].symbol);
// }
func(note, cursor.segment, parms, rep === 0);
}
}
}
cursor.next();
}
}
}
}
}
// This will register an accidental's offset value and tick position.
// Unified accidental registry is necessary so that special accidentals across
// different voices in the same staff will affect each other as it should.
//
// Only microtonal accidentals need to be registered. Musescore properly handles
// normal accidentals with TPCs.
//
// Remember to reset the parms.accidentals array after every bar & staff!
function registerAccidental(noteLine, tick, stepOffset, parms) {
if (!parms.accidentals[noteLine]) {
parms.accidentals[noteLine] = [];
}
parms.accidentals[noteLine].push({
tick: tick,
offset: stepOffset
});
}
// Returns the step offset if a prior microtonal accidental exists
// before or at the given tick value.
// Null if there are no explicit microtonal accidentals
// WARNING: DON'T USE !getAccidental() to check for Null because !0 IS TRUE!
function getAccidental(noteLine, tick, parms) {
// Tick of the most recent measure just before current tick
var mostRecentBar = 0;
for (var i = 0; i < parms.accidentals.bars.length; i++) {
var barTick = parms.accidentals.bars[i];
if (barTick > mostRecentBar && barTick <= tick) {
mostRecentBar = barTick;
}
}
var oldTick = -1;
var offset = null;
if (!parms.accidentals[noteLine])
return null;
for (var i = 0; i < parms.accidentals[noteLine].length; i++) {
var acc = parms.accidentals[noteLine][i];
// Accidentals only count if
// 1. They are in the same bar as the current note
// 2. They are before or at the current note's tick
// 3. It is the most recent accidental that fulfills 1. and 2.
if (acc.tick >= mostRecentBar && acc.tick <= tick && acc.tick >= oldTick) {
console.log('note line: ' + noteLine + ', steps: ' + acc.offset + ', tick: ' + acc.tick);
console.log('acc.tick: ' + acc.tick + ', mostRecentBar: ' + mostRecentBar + ', tick: ' + tick + ', oldTick: ' + oldTick);
offset = acc.offset;
oldTick = acc.tick;
}
}
return offset;
}
// Note: if scanOnly is true, accidentals will be registered but the note
// will not be tuned.
function tuneNote(note, segment, parms, scanOnly) {
var tpc = note.tpc;
var val = [2, 3].map (function (q) {return Math.round(parms.currEdo * Math.log(q) / Math.LN2);});
var fifthStep = -val[0] + val[1];
var sharpValue = -11*val[0] + 7*val[1];
// If tpc is non-natural, there's no need to go through additional steps,
// since accidentals and key sig are already taken into consideration
// to produce a non-screw-up tpc.
// However, if tpc is natural, it needs to be checked against acc and
// the key signature to truly determine what note it is.
switch(tpc) {
case -1: //Fbb
note.tuning = getCentOffset ('f', -2*sharpValue, -2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 0: //Cbb
note.tuning = getCentOffset ('c', -2*sharpValue, -2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 1: //Gbb
note.tuning = getCentOffset ('g', -2*sharpValue, -2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 2: //Dbb
note.tuning = getCentOffset ('d', -2*sharpValue, -2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 3: //Abb
note.tuning = getCentOffset ('a', -2*sharpValue, -2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 4: //Ebb
note.tuning = getCentOffset ('e', -2*sharpValue, -2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 5: //Bbb
note.tuning = getCentOffset ('b', -2*sharpValue, -2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 6: //Fb
note.tuning = getCentOffset ('f', -sharpValue, -1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 7: //Cb
note.tuning = getCentOffset ('c', -sharpValue, -1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 8: //Gb
note.tuning = getCentOffset ('g', -sharpValue, -1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 9: //Db
note.tuning = getCentOffset ('d', -sharpValue, -1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 10: //Ab
note.tuning = getCentOffset ('a', -sharpValue, -1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 11: //Eb
note.tuning = getCentOffset ('e', -sharpValue, -1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 12: //Bb
note.tuning = getCentOffset ('b', -sharpValue, -1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 20: //F#
note.tuning = getCentOffset ('f', sharpValue, 1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 21: //C#
note.tuning = getCentOffset ('c', sharpValue, 1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 22: //G#
note.tuning = getCentOffset ('g', sharpValue, 1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 23: //D#
note.tuning = getCentOffset ('d', sharpValue, 1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 24: //A#
note.tuning = getCentOffset ('a', sharpValue, 1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 25: //E#
note.tuning = getCentOffset ('e', sharpValue, 1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 26: //B#
note.tuning = getCentOffset ('b', sharpValue, 1, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 27: //Fx
note.tuning = getCentOffset ('f', 2*sharpValue, 2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 28: //Cx
note.tuning = getCentOffset ('c', 2*sharpValue, 2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 29: //Gx
note.tuning = getCentOffset ('g', 2*sharpValue, 2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 30: //Dx
note.tuning = getCentOffset ('d', 2*sharpValue, 2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 31: //Ax
note.tuning = getCentOffset ('a', 2*sharpValue, 2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 32: //Ex
note.tuning = getCentOffset ('e', 2*sharpValue, 2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
case 33: //Bx
note.tuning = getCentOffset ('b', 2*sharpValue, 2, parms.currEdo, parms.currCenter, parms.currTranspose);
return;
}
// in the event that tpc is considered natural by
// MuseScore's playback, it would mean that it is
// either a natural note, or a microtonal accidental.
var baseNote;
switch(tpc) {
case 13:
baseNote = 'f';
break;
case 14:
baseNote = 'c';
break;
case 15:
baseNote = 'g';
break;
case 16:
baseNote = 'd';
break;
case 17:
baseNote = 'a';
break;
case 18:
baseNote = 'e';
break;
case 19:
baseNote = 'b';
break;
}
//NOTE: Only special accidentals need to be remembered.
var accOffset = null;
if (note.accidental) {
console.log('Note: ' + baseNote + ', Line: ' + note.line +
', Special Accidental: ' + note.accidentalType);
switch(0 + note.accidentalType) {
case Accidental.NATURAL:
accOffset = 0;
break;
case Accidental.SHARP_SLASH4:
accOffset = 3*sharpValue/2;
break;
case Accidental.SHARP_SLASH:
accOffset = sharpValue/2;
break;
case Accidental.MIRRORED_FLAT:
accOffset = -sharpValue/2;
break;
case Accidental.MIRRORED_FLAT2:
accOffset = -3*sharpValue/2;
break;
case Accidental.DOUBLE_SHARP_THREE_ARROWS_UP:
accOffset = 2*sharpValue + 3;
break;
case Accidental.DOUBLE_SHARP_TWO_ARROWS_UP:
accOffset = 2*sharpValue + 2;
break;
case Accidental.SHARP2_ARROW_UP:
case Accidental.DOUBLE_SHARP_ONE_ARROW_UP:
accOffset = 2*sharpValue + 1;
break;
case Accidental.SHARP2_ARROW_DOWN:
case Accidental.DOUBLE_SHARP_ONE_ARROW_DOWN:
accOffset = 2*sharpValue - 1;
break;
case Accidental.DOUBLE_SHARP_TWO_ARROWS_DOWN:
accOffset = 2*sharpValue - 2;
break;
case Accidental.DOUBLE_SHARP_THREE_ARROWS_DOWN:
accOffset = 2*sharpValue - 3;
break;
case Accidental.SHARP_THREE_ARROWS_UP:
accOffset = sharpValue + 3;
break;
case Accidental.SHARP_TWO_ARROWS_UP:
accOffset = sharpValue + 2;
break;
case Accidental.SHARP_ARROW_UP:
case Accidental.SHARP_ONE_ARROW_UP:
accOffset = sharpValue + 1;
break;
case Accidental.SHARP_ARROW_DOWN:
case Accidental.SHARP_ONE_ARROW_DOWN:
accOffset = sharpValue - 1;
break;
case Accidental.SHARP_TWO_ARROWS_DOWN:
accOffset = sharpValue - 2;
break;
case Accidental.SHARP_THREE_ARROWS_DOWN:
accOffset = sharpValue - 3;
break;
case Accidental.NATURAL_THREE_ARROWS_UP:
accOffset = 3;
break;
case Accidental.NATURAL_TWO_ARROWS_UP:
accOffset = 2;
break;
case Accidental.NATURAL_ARROW_UP:
case Accidental.NATURAL_ONE_ARROW_UP:
accOffset = 1;
break;
case Accidental.NATURAL_ARROW_DOWN:
case Accidental.NATURAL_ONE_ARROW_DOWN:
accOffset = -1;
break;
case Accidental.NATURAL_TWO_ARROWS_DOWN:
accOffset = -2;
break;
case Accidental.NATURAL_THREE_ARROWS_DOWN:
accOffset = -3;
break;
case Accidental.FLAT_THREE_ARROWS_UP:
accOffset = -sharpValue + 3;
break;
case Accidental.FLAT_TWO_ARROWS_UP:
accOffset = -sharpValue + 2;
break;
case Accidental.FLAT_ARROW_UP:
case Accidental.FLAT_ONE_ARROW_UP:
accOffset = -sharpValue + 1;
break;
case Accidental.FLAT_ARROW_DOWN:
case Accidental.FLAT_ONE_ARROW_DOWN:
accOffset = -sharpValue - 1;
break;
case Accidental.FLAT_TWO_ARROWS_DOWN:
accOffset = -sharpValue - 2;
break;
case Accidental.FLAT_THREE_ARROWS_DOWN:
accOffset = -sharpValue - 3;
break;
case Accidental.DOUBLE_FLAT_THREE_ARROWS_UP:
accOffset = -2*sharpValue + 3;
break;
case Accidental.DOUBLE_FLAT_TWO_ARROWS_UP:
accOffset = -2*sharpValue + 2;
break;
case Accidental.FLAT2_ARROW_UP:
case Accidental.DOUBLE_FLAT_ONE_ARROW_UP:
accOffset = -2*sharpValue + 1;
break;
case Accidental.FLAT2_ARROW_DOWN:
case Accidental.DOUBLE_FLAT_ONE_ARROW_DOWN:
accOffset = -2*sharpValue - 1;
break;
case Accidental.DOUBLE_FLAT_TWO_ARROWS_DOWN:
accOffset = -2*sharpValue - 2;
break;
case Accidental.DOUBLE_FLAT_THREE_ARROWS_DOWN:
accOffset = -2*sharpValue - 3;
break;
// Addon
case Accidental.RAISE_ONE_SEPTIMAL_COMMA: // ^4
accOffset = 4;
break;
case Accidental.LOWER_ONE_SEPTIMAL_COMMA: // v4
accOffset = -4;
break;
case Accidental.SHARP_SLASH2: // #^4
accOffset = sharpValue + 4;
break;
case Accidental.RAISE_ONE_TRIDECIMAL_QUARTERTONE: // #v4
accOffset = sharpValue - 4;
break;
case Accidental.FOUR_TWELFTH_FLAT: // b^4
accOffset = -sharpValue + 4;
break;
case Accidental.THREE_TWELFTH_FLAT: // bv4
accOffset = -sharpValue - 4;
break;
case Accidental.DOUBLE_SHARP_EQUAL_TEMPERED: // x^4
accOffset = 2*sharpValue + 4;
break;
case Accidental.SAGITTAL_SHARP25SD: // xv4
accOffset = 2*sharpValue - 4;
break;
case Accidental.TEN_TWELFTH_FLAT: // bb^4
accOffset = -2*sharpValue + 4;
break;
case Accidental.NINE_TWELFTH_FLAT: // bbv4
accOffset = -2*sharpValue - 4;
break;
}
if (accOffset !== null) {
registerAccidental(note.line, segment.tick, accOffset, parms);
}
}
// Check for prev accidentals first, will be null if not present
var stepsFromBaseNote = accOffset !== null ? accOffset : getAccidental(note.line, segment.tick, parms);
console.log('steps bef KeySig: ' + stepsFromBaseNote);
if (stepsFromBaseNote === null) {
// No accidentals - check key signature.
stepsFromBaseNote = parms.currKeySig[baseNote];
console.log('steps on KeySig: ' + stepsFromBaseNote);
}