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
|
}
key_transp(s);
curvoice.ckey = clone(s)
if (curvoice.key.k_none)
s.k_sf = 0
}
function set_ottava(dcn) {
if (cfmt.sound)
return
switch (dcn) {
case "15ma(":
curvoice.ottava = -14
break
case "8va(":
curvoice.ottava = -7
break
case "8vb(":
curvoice.ottava = 7
break
case "15mb(":
curvoice.ottava = 14
break
case "15ma)":
case "8va)":
case "8vb)":
case "15mb)":
curvoice.ottava = 0
break
}
}
/* -- process a pseudo-comment (%% or I:) -- */
// (possible hook)
function do_pscom(text) {
var h1, val, s, cmd, param, n, k, b,
lock = false
if (text.slice(-5) == ' lock') {
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
747
748
749
750
751
752
753
754
755
756
757
758
759
760
|
}
key_transp(s);
curvoice.ckey = clone(s)
if (curvoice.key.k_none)
s.k_sf = 0
}
/* -- process a pseudo-comment (%% or I:) -- */
// (possible hook)
function do_pscom(text) {
var h1, val, s, cmd, param, n, k, b,
lock = false
if (text.slice(-5) == ' lock') {
|
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
|
goto_tune()
}
n = parseInt(param)
if (isNaN(n) || n < -2 || n > 2) {
syntax(1, errs.bad_val, "%%ottava")
return
}
switch (curvoice.ottava) {
case 14: b = "15mb)"; break
case 7: b = "8vb)"; break
case -7: b = "8va)"; break
case -14: b = "15ma)"; break
}
if (b) {
if (!a_dcn)
a_dcn = []
a_dcn.push(b);
set_ottava(b)
}
switch (n) {
case -2: b = "15mb("; break
case -1: b = "8vb("; break
case 0: return
case 1: b = "8va("; break
case 2: b = "15ma("; break
}
if (!a_dcn)
a_dcn = []
a_dcn.push(b);
set_ottava(b)
return
case "repbra":
if (parse.state >= 2) {
if (parse.state == 2)
goto_tune();
curvoice.norepbra = !get_bool(param)
}
|
<
<
<
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
|
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
|
goto_tune()
}
n = parseInt(param)
if (isNaN(n) || n < -2 || n > 2) {
syntax(1, errs.bad_val, "%%ottava")
return
}
parse.ottava = n
return
case "repbra":
if (parse.state >= 2) {
if (parse.state == 2)
goto_tune();
curvoice.norepbra = !get_bool(param)
}
|
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
|
nstaff = -1;
voice_tb = [];
curvoice = null;
new_syst(true);
staves_found = -1;
gene = {}
a_de = [] // remove old decorations
od = {} // no ottava decorations anymore
}
// treat V: with many voices
function do_cloning(vs) {
var i, eol,
file = parse.file,
start = parse.eol + 1, // next line after V:
|
<
|
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
|
nstaff = -1;
voice_tb = [];
curvoice = null;
new_syst(true);
staves_found = -1;
gene = {}
a_de = [] // remove old decorations
}
// treat V: with many voices
function do_cloning(vs) {
var i, eol,
file = parse.file,
start = parse.eol + 1, // next line after V:
|