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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390
|
cccccccccccccccccccccccccc
cc
cc scor2prt for PMX Version 2.2 (s2p14.for) 3/20/00
cc
cccccccccccccccccccccccccc
c To do
c Override fracindent, musicsize?
c Deal with midbar R?
c
c s2p14
c Fix bypass of MIDI commands.
c Restore change from "Version 2.1a, 21 Dec"
c s2p13
c Allow whole-bar double-whole rests.
c Bypass MIDI commands "I..." achar(10)="I"
c s2p12
c Let %ablabla ... %cblabla represent pmx input for parts 10-12. But %?blabla
c only taken as such if ? represents a hex digit .le. noinst, otherwise it's
c a simple comment. This lessens incompatibility.
c In subroutine mbrest, properly open parts 10-12 if needed
c s2p11
c Ignore leading blanks
c Fix undefined linelength in mbrest at very end of comments.
c s2p10
c Fix non-transfer of P..c" "
c Allow "%%" and "%"n anywhere
c Version 1.43
c Fix bug with P in TeX string.
c Ignore shifted whole-bar rests when consolidating whole-bar rests
c Copy type 4 TeX into all parts.
c Deal with XB and XP.
c Permit transfer of blank line into parts
c Change staves/inst in 'M' command.
c Arbitrary staves/inst.
c Recognize m1/2/3/4 syntax.
c Enable comment and one-voice syntax in instrument names
c
c Changes since 1.1
c Deal with saved macros.
c Revise setup readin, to admit comments.
c Do not copy 'X' into parts
c
cccccccccccccccccccccccccccccccccccccccccccccccc
parameter (noimax=12)
common /all/ noinow,iorig(noimax),noinst,insetup,replacing,
* instnum(noimax),botv(noimax),nvi(noimax),nsyst,nvnow
character*1 sq,achar(10)
character*2 termsym
character*27 jobname,infileq
character*128 instrum(noimax)
character*128 line,holdln,templine
logical termrpt,isachar,frstln,oneof2,botv,clefpend,fexist,
* insetup,replacing,gotname
data achar /'P','m','V','R','A','h','w','K','M','I'/
clefpend = .false.
insetup = .true.
replacing = .false.
frstln = .true.
lenhold = 0
sq = char(92)
print*,'This is scor2prt s2p14, 20 March 00'
numargs = iargc()
if (numargs .eq. 0) then
print*,'You could have entered a jobname on the command line,'
print*,' but you may enter one now:'
read(*,'(a)')jobname
numargs = 1
else
c call getarg(1,jobname,idum) ! May need to replace this w/ next line
call getarg(1,jobname)
end if
ljob = lenstr(jobname,27)
if (ljob .eq. 0) then
print*,'No was jobname entered. Restart and try again.'
stop
end if
c
c Strip ".pmx" if necessary
c
ndxpmx = max(index(jobname,'.pmx'),index(jobname,'.PMX'))
if (ndxpmx .gt. 0) then
jobname = jobname(1:ndxpmx-1)
ljob = ljob-4
end if
c
c Check for existence of input file
c
infileq = jobname(1:ljob)//'.pmx'
inquire(file=infileq,EXIST=fexist)
if (.not.fexist) then
print*,'Cannot find file '//infileq
stop
end if
open(10,file=jobname(1:ljob)//'.pmx')
c
c Open all instrument files now for allparts stuff. Later disgard those >nv
c
do 19 iv = 1 , noimax
iorig(iv) = iv
open(10+iv,status='SCRATCH')
19 continue
read(10,'(a)')line
call chkcom(line)
if (line(1:3) .eq. '---') then
call allparts(line,128)
31 read(10,'(a)')line
if (line(1:3) .ne. '---') then
call allparts(line,128)
go to 31
end if
call allparts(line,128)
read(10,'(a)')line
call chkcom(line)
end if
iccount = 0
nv = readin(line,iccount,1)+.1
noinst = readin(line,iccount,2)+.1
if (noinst .gt. 0) then
nvi(1) = nv-noinst+1
else
noinst = 1-noinst
do 21 iinst = 1 , noinst
nvi(iinst) = readin(line,iccount,-1)+.1
21 continue
end if
noinow = noinst
insnow = 1
c
c ivlast is last iv in current inst. instnum(iv) is iinst for current voice.
c
ivlast = nvi(1)
do 22 iv = 1 , nv
instnum(iv) = insnow
if (iv .eq. ivlast) then
if (iv .lt. nv) botv(iv+1) = .true.
c
c The previous stmt will set botv true only for bot voice of iinst>1. It is
c used when writing termrpts, but the one in voice one is handled differently,
c so botv(1) is left .false.
c
if (insnow .lt. noinst) then
insnow = insnow+1
ivlast = ivlast+nvi(insnow)
end if
end if
22 continue
mtrnuml = readin(line,iccount,0)+.1
mtrdenl = readin(line,iccount,0)+.1
mtrnmp = readin(line,iccount,0)+.1
mtrdnp = readin(line,iccount,0)+.1
xmtrnum0 = readin(line,iccount,0)
isig = readin(line,iccount,0)+.1
npages = readin(line,iccount,3)+.1
nsyst = readin(line,iccount,0)+.1
musicsize = readin(line,iccount,4)+.1
fracindent = readin(line,iccount,5)
if (npages .eq. 0) then
print*,
*'You entered npages=0, which means nsyst is not the total number'
print*,
*'of systems. Scor2prt has to know the total number of systems.'
print*,
*'Please set npages and nsyst to their real values.'
stop
end if
c
c Must leave insetup=.true. else could bypass ALL instrument names.
c
read(10,'(a)')line
call chkcom(line)
backspace(10)
c
c Normally this puts pointer at start of line with 1st inst name
c Check if prior line was "%%"
c
backspace(10)
read(10,'(a)')line
if (line(1:2) .eq. '%%') backspace(10)
do 14 iv = 1 , noinst
gotname = .false.
16 read(10,'(a)') instrum(iv)
if (instrum(iv)(1:2) .eq. '%%') then
read(10,'(a)')line
go to 16
else if (instrum(iv)(1:1) .eq. '%') then
ivq = ichar(instrum(iv)(2:2))-48
if (ivq.ne.iv) then
c
c It's really a comment. Copy to parts, then get another trial name.
c
call allparts(instrum(iv),128)
go to 16
else
line = instrum(iv)(3:)
instrum(iv) = line
gotname = .true.
end if
else
gotname = .true.
end if
cc
cc The following checks for macro that write original C-clef as part of
cc instrument name. See pmx.tex
cc
c if (index(instrum(iv),'namewpc') .eq. 0) then
c write(10+iv,'(a)')' '
c else
c inm1 = index(instrum(iv),'{')+1
c inm2 = index(instrum(iv),'}')-1
c read(instrum(iv)(inm2+2:inm2+8),'(i1,4x,2i1)')ilev,iy1,iy2
c write(10+iv,'(a)')sq//'namewpc{}'//char(ilev+48)//'{20}'//
c * char(iy1+49)//char(iy2+49)
c instrum(iv) = instrum(iv)(inm1:inm2)
c end if
if (.not.gotname) then
print*,'You must provide a replacement instrument name'
stop
end if
write(10+iv,'(a)')' '
14 continue
replacing = .false.
nvnow = nv
c
c Clef string: Note insetup is still T, so "%%" will be treated specially
c
read(10,'(a)')line
call chkcom(line)
if (replacing) then
c
c If here, we have next line after "%%", containing score's clef string
c Assume all clefs are handled with instrument comments.
c
read(10,'(a)')line
call chkcom(line)
backspace(10)
else
c
c If here, line has the clef string in it. Handle the old way
c
kvstart = 1
kvend = nvi(1)
do 2 inst = 1 , noinst
write(10+inst,'(a'//char(48+nvi(inst))//')')
* line(kvstart:kvend)
if (inst .lt. noinst) then
kvstart = kvend+1
kvend = kvstart+nvi(inst+1)-1
end if
2 continue
end if
replacing = .false.
insetup = .false.
c
c *****NOTE*****This comment applies to stuff done earlier!
c Before starting the big loop, copy initial instnum and staffnum stuff
c into working values. Latter may change if noinst changes. Also make
c list of current inst nums relative to original ones. In addition to those
c below, must redo instnum(iv) and botv(iv) when we change noinst.
c
c Path string: ASSUME THIS WILL NEVER BE ALTERED IN PARTS!
c
18 read(10,'(a)') line
if (line(1:1) .eq. '%') then
call allparts(line,128)
go to 18
end if
call allparts(line,128)
c
c Write instrument names. Will be blank if later part of a score.
c
if (instrum(1)(1:1) .ne. ' ') then
do 3 iv = 1 , noinst
len = lenstr(instrum(iv),79)
write(10+iv,'(a2/a)')'Ti',instrum(iv)(1:len)
3 continue
end if
c
c The big loop. Except for '%%', put all comment lines in all parts.
c Unless preceeded by '%%', put all type 2 or 3 TeX Strings in all parts
c If a line starts with %!, put the rest of it in each part.
c If a line starts with %[n], put the rest of it in part [n].
c Check for Tt, Tc, Voltas, Repeats, headers, lower texts, meter changes.
c Assume they only come at top of block, except terminal repeat needs
c special handling.
c Check for "P"; ignore in parts.
c Check for consecutive full-bar rests; if found, replace with rm[nn]
c
iv = 1
iinst = 1
termrpt = .false.
4 read(10,'(a)',end=999)line
lenline = lenstr(line,128)
if (lenline .eq. 0) go to 4
call zapbl(line,128)
call chkcom(line)
lenline = lenstr(line,128)
if (lenline .eq. 0) go to 4
if (line(1:1) .eq. 'T') then
call allparts(line,128)
read(10,'(a)')line
call allparts(line,128)
go to 4
else if (line(1:2) .eq. sq//sq) then
call allparts(line,128)
go to 4
else if (index('hl',line(1:1)).gt.0 .and.
* index(' +-',line(2:2)) .gt. 0) then
call allparts(line,128)
read(10,'(a)')line
call allparts(line,128)
go to 4
else if (iv .eq. 1) then
do 5 ia = 1 , 10
24 continue
idxa = ntindex(line,achar(ia))
isachar = idxa .gt. 0
if (idxa.gt.1) isachar = line(idxa-1:idxa-1).eq.' '
if (ia .eq. 9) isachar =
* isachar .and. line(idxa+1:idxa+1).eq.'S'
if (isachar) then
c
c Find next blank
c
do 6 ib = idxa+1 , 128
if (line(ib:ib) .eq. ' ') go to 7
6 continue
print*,'Problem with "V,R,m,P,A,h,MS, or w"'
print*,'Send files to Dr. Don at dsimons@logicon.com'
stop 1
7 continue
c
c Next blank is at position ib. Later, if ia=1, must check for Pc" " ;
c i.e., look for '"' between P and blank
c
if (ia .eq. 4) then
c
c Check for terminal repeat. Note if there's a term rpt, there can't be any
c others. Also, must process repeats LAST, after m's and 'V's
c
do 8 ic = ib+1 , 128
if (index(' /',line(ic:ic)) .eq. 0) go to 9
if (line(ic:ic) .eq. '/') then
termrpt = .true.
termsym = line(ib-2:ib-1)
c
c Process the line as if there were no "R"
c
go to 10
end if
8 continue
c
c If here, all chars after "R" symbol are blanks, so process the line normally
c
else if (ia .eq. 1) then
idxq = ntindex(line,'"')
if (idxq.gt.idxa .and. idxq.lt.ib) then
c
c Quote is between P and next blank. Find 2nd quote, starting at the blank.
c
idxq2 = ib-1+ntindex(line,'"')
if (idxq.eq.0 .or. line(idxq2+1:idxq2+1).ne.' ') then
print*
print*,'Error copying P with quotes, idxq2:',idxq2
print*,line(1:60)
stop 1
end if
ib = idxq2+1
end if
c
c Do not transfer P into parts.
c
go to 12
else if (ia .eq. 9) then
c
c Start Saving a macro. After leaving here, a symbol will be sent to all parts,
c If all on this line, set ib to end and exit normally.
c
ndxm = index(line(ib+1:128),'M')
if (ndxm.gt.0 .and. line(ib+ndxm-1:ib+ndxm-1).eq.' ') then
c
c Macro ends on this line
c
ib = ib+ndxm+1
else
c
c Save leading part of current line
c
lenhold = idxa-1
if (lenhold .gt. 0) holdln = line(1:lenhold)
c
c Transfer rest of line
c
call allparts(line(idxa:128),129-idxa)
c
c Read next line
c
20 read(10,'(a)')line
c
c Check for comment, transfer and loop if so
c
c if (line(1:1) .eq.'%') then
23 if (line(1:1) .eq.'%') then
c call allparts(line,128)
c go to 20
call chkcom(line)
go to 23
end if
c
c Look for terminal ' M'
c
if (line(1:1) .eq. 'M') then
ndxm = 1
else
ndxm = index(line,' M')
if (ndxm .gt. 0) ndxm = ndxm+1
end if
if (ndxm .gt. 0) then
c
c Set parameters, exit normally (but later check for leading part of 1st line
c
idxa = 1
ib = ndxm+1
else
c
c No "M", transfer entire line, loop
c
call allparts(line,128)
go to 20
end if
end if
else if (ia .eq. 10) then
c
c Do not transfer MIDI command into parts
c
go to 12
end if
9 continue
call allparts(line(idxa:ib-1),ib-idxa)
12 continue
c
c Remove the string from line
c
if (idxa .eq. 1) then
line = line(ib:128)
else
line = line(1:idxa-1)//line(ib:128)
end if
lenline = lenstr(line,128)
c
c Loop if only blanks are left
c
if (lenline .eq. 0) go to 4
c
c Must check for multiple "I" commands, so go to just after start of ia loop
c
if (ia .eq. 10) go to 24
c
c Tack on front part from 1st line of saved macro
c
if (lenhold .gt. 0) then
line = holdln(1:lenhold)//' '//line(1:lenline)
lenhold = 0
end if
end if
5 continue
end if
c
c Now a special loop to deal with 'X'. If it was %[n]X..., will have been
c copied into part [n] already. If no "B" or "P", remove. If "P", just
c remove the "P" so pmxa/b will process. If "B". do nothing.
c
10 continue
nchk = 1
13 ntinx = nchk-1+ntindex(line(nchk:),'X')
if (ntinx .gt. nchk-1) then
c
c There is a non-TeX 'X' at ntinx. Loop if neither 1st nor after a blank.
c
if (ntinx.gt.1) then
if (line(ntinx-1:ntinx-1).ne.' ') then
c
c The X is not 1st char of PMX command. Advance starting point, loop.
c
nchk = ntinx+1
go to 13
end if
end if
c
c We now know the X at ntinx starts a PMX command. Find next blank
c
ib = ntinx+index(line(ntinx+1:),' ')
c
c There must be a blank to right of "X", so ib>ntinx
c
c locp = nchk-1+index(line(nchk:ib),'P')
locp = ntinx+index(line(ntinx+1:ib),'P')
c
c Did not need to use ntindex because we already know bounds of PMX command.
c
c if (locp .gt. nchk-1) then
if (locp .gt. ntinx) then
c
c Strip out the 'P'
c
templine = line(1:locp-1)
line = templine(1:locp-1)//line(locp+1:lenline)
lenline = lenline-1
ib = ib-1
end if
if (index(line(ntinx:ib),':').gt.0 .or.
* index(line(ntinx:ib),'S').gt.0 .or.
* index(line(ntinx:ib),'B').gt.0 .or. locp.gt.ntinx) then
c
c The X command is a shift, "Both", or "Part". Do not remove.
c
nchk = ib+1
go to 13
end if
c
c Remove the X command.
c
if (ntinx .eq. 1) then
if (ib .lt. lenline) then
line = line(ib+1:lenline)
else
c
c line contains ONLY the "X" command, so get a new line
c
go to 4
end if
else
templine = line(1:ntinx-1)
if (ib .lt. lenline) then
line = templine(1:ntinx-1)//line(ib+1:lenline)
else
line = templine(1:ntinx-1)
end if
end if
c
c Recompute lenline
c
lenline = lenstr(line,128)
c
c Resume checking after location of removed command.
c
nchk = ntinx
go to 13
end if
c
c End of loop for X-checks
c
oneof2 = ntindex(line,'//') .gt. 0
if (termrpt .and. botv(iv) .and. frstln .and.
* line(lenline:lenline).eq.'/') then
c
c Must add a terminal repeat before the slash
c
if (oneof2) lenline = lenline-1
if (lenline.gt.1) write(10+iorig(iinst),'(a)')line(1:lenline-1)
if (.not. oneof2) then
line = termsym//' /'
lenline = 4
else
line = termsym//' //'
lenline = 5
end if
end if
if (termrpt .and. frstln .and. line(lenline:lenline).eq.'/' .and.
* iv.eq.nvnow) termrpt = .false.
write(10+iorig(iinst),'(a)')line(1:lenline)
if (oneof2) then
frstln = .false.
else if (.not.frstln) then
frstln = .true.
end if
c if (ntindex(line,'/').gt.0 .and. index(line,'//').eq.0) then
if (ntindex(line,'/').gt.0 .and. ntindex(line,'//').eq.0) then
iv = 1+mod(iv,nvnow)
iinst = instnum(iv)
end if
go to 4
999 continue
close(10)
c
c In the mbrest checks, must run through ALL noinst files (not just noinow)
c
do 11 iinst = 1 , noinst
cc+++
cc
cc Temporarily transfer entire scratch file to real file
cc
c rewind(10+iinst)
c open(40,file='s2pout'//char(48+iinst)//'.pmx')
c do 50 m = 1 , 10000
c read(10+iinst,'(a)',end=51)line
c lenline = lenstr(line,128)
c if (lenline .ge. 1) then
c write(40,'(a)')line(1:lenline)
c else
c write(40,'(a)')' '
c end if
c50 continue
c51 continue
c close(40)
cc+++
if (nvi(iinst) .eq. 1) then
call mbrests(iinst,jobname,ljob)
else
c
c Send a signal with ljob to bypass most mbrest processing
c
call mbrests(iinst,jobname,-ljob)
end if
11 continue
end
function lenstr(string,n)
character*(*) string
do 1 lenstr = n , 1 , -1
if (string(lenstr:lenstr) .ne. ' ') return
1 continue
lenstr = 0
return
end
subroutine allparts(string,n)
parameter (noimax=12)
character*(*) string
common /all/ noinow,iorig(noimax),noinst,insetup,replacing,
* instnum(noimax),botv(noimax),nvi(noimax),nsyst,nvnow
logical insetup,replacing,botv
len = lenstr(string,n)
if (len .eq. 0) then
len = 1
string = ' '
end if
do 1 iinst = 1 , noinow
write(10+iorig(iinst),'(a)')string(1:len)
1 continue
return
end
subroutine mbrests(iv,jobname,ljob)
character*128 line(50),line1
character*80 sym
character*12 jobname
character*3 wbrsym(2)
character*2 partq
character*1 sq
logical wbrest,alldone,rpfirst,newmtr,type4
type4 = .false.
sq = char(92)
alldone = .false.
rewind(10+iv)
c open(20,file=jobname(1:abs(ljob))//char(48+iv)//'.pmx')
if (iv .lt. 10) then
partq(1:1) = char(48+iv)
lpart = 1
else
partq = '1'//char(38+iv)
lpart = 2
end if
open(30,file=jobname(1:abs(ljob))//partq(1:lpart)//'.pmx')
do 10 i = 1 , 10000
read(10+iv,'(a)')line(1)
if (line(1)(1:1).eq.'%' .or. line(1)(1:3).eq.'---'
* .or. type4) then
len = lenstr(line(1),128)
if (len .gt. 0) then
write(30,'(a)')line(1)(1:len)
else
write(30,'(a)')' '
end if
if (line(1)(1:3).eq.'---') type4 = .not.type4
else
go to 11
end if
10 continue
print*,'You should not be here in scor2prt. Call Dr. Don'
stop
11 continue
c
c Finished reading opening type4 TeX and comments. Next line to be read
c will contain the first of the input numbers
c
call dosetup(iv,line(1),mtrnum,mtrden)
do 1 i = 1 , 10000
13 read(10+iv,'(a)',end=999)line(1)
7 len = lenstr(line(1),128)
c
c Pass-through if instrumnet has >1 voice.
c
if (ljob .lt. 0) go to 2
if (index('TtTiTch+h-h l ',line(1)(1:2)) .gt. 0) then
c
c Traps titles, instruments, composers, headers, lower strings. Read 2 lines.
c
write(30,'(a)')line(1)(1:len)
read(10+iv,'(a)')line(1)
len = lenstr(line(1),128)
go to 2
end if
if (i.eq.1 .or. (i.gt.5.and.line(1)(1:1).eq.'m')) then
c
c NOTE! The above test is truly bogus.
c
if (line(1)(1:1) .eq. '%') then
write(30,'(a)')line(1)(1:len)
go to 13
end if
if (i .eq. 1) then
c read(line(1),'(10x,2i5)')mtrnum,mtrden
else
c
c Check for slashes (new meter change syntax)
c
idxs = index(line(1),'/')
idxb = index(line(1),' ')
newmtr = idxs.gt.0 .and. (idxb.eq.0 .or. idxs.lt.idxb)
if (.not.newmtr) then
c
c Old way, no slashes, uses 'o' for lonesome '1'
c
icden = 3
if (line(1)(2:2) .eq. 'o') then
mtrnum = 1
else
mtrnum = ichar(line(1)(2:2))-48
if (mtrnum .eq. 1) then
icden = 4
mtrnum = 10+ichar(line(1)(3:3))-48
end if
end if
mtrden = ichar(line(1)(icden:icden))-48
else
c
c New way with slashes: idxs is index of 1st slash!
c
read(line(1)(2:idxs-1),'(i'//char(48+idxs-2)//')')mtrnum
idxb = index(line(1)(idxs+1:),'/')
read(line(1)(idxs+1:idxs+idxb-1),
* '(i'//char(48+idxb-1)//')')mtrden
end if
end if
lenbeat = ifnodur(mtrden,'x')
lenmult = 1
if (mtrden .eq. 2) then
lenbeat = 16
lenmult = 2
end if
lenbar = lenmult*mtrnum*lenbeat
call fwbrsym(lenbar,nwbrs,wbrsym,lwbrs)
end if
ip1 = 0
line1 = line(1)
do 3 iw = 0 , nwbrs
if (iw .gt. 0) then
idx = ntindex(line1,wbrsym(iw)(1:lwbrs))
if (idx .gt. 0) then
c
c Check for blank or shifted rest, discount it if it's there
c
if (line1(idx+lwbrs:idx+lwbrs).ne.' ') idx = 0
end if
else
idx = ntindex(line1,'rp')
c
c Check for raised rest
c
if (idx.gt.0) then
if (line1(idx+2:idx+2).ne.' ') idx = 0
end if
end if
if (idx .gt. 0) then
if (ip1 .eq. 0) then
ip1 = idx
else
ip1 = min(ip1,idx)
end if
end if
3 continue
if (i.lt.5 .or. line(1)(1:1).eq.'%' .or. line(1)(1:2).eq.sq//sq
* .or. ip1.eq.0) go to 2
c
c Switch to multibar rest search mode!!! Start forward in line(1)
c
rpfirst = line1(ip1:ip1+1) .eq. 'rp'
iline = 1
nmbr = 1
if (rpfirst) then
lwbrsx = 2
else
lwbrsx = lwbrs
end if
ipe = ip1+lwbrsx-1
4 if (ipe .eq. len) then
c
c Need a new line
c
iline = iline+1
6 read(10+iv,'(a)',end=998)line(iline)
len = lenstr(line(iline),128)
if (line(iline)(1:1).eq.'%' ) then
write(30,'(a)')'% Following comment has been moved forward'
write(30,'(a)')line(iline)(1:len)
go to 6
end if
ipe = 0
go to 4
998 continue
c
c No more input left
c
print*,'All done!'
alldone = .true.
ipe = 0
iline = iline-1
len = lenstr(line(iline),128)
go to 4
else
if (alldone) then
sym(1:1) = ' '
else
c
c ipe<len here, so it's ok to get a symbol
c
call nextsym(line(iline),len,ipe,ipenew,sym,lsym)
end if
c
c Check for end of block or bar line symbol
c
if (index('/|',sym(1:1)) .gt. 0) then
ipe = ipenew
go to 4
else
wbrest = .false.
if (alldone) go to 12
do 5 iw = 1 , nwbrs
wbrest = wbrest .or. sym(1:lsym).eq.wbrsym(iw)(1:lwbrs)
5 continue
wbrest = wbrest .or. (sym(1:lsym).eq.'r'.and.lwbrs.eq.2)
* .or. (sym(1:lsym).eq.'rd'.and.lwbrs.eq.3)
* .or. (sym(1:lsym).eq.'rp')
* .or. (sym(1:lsym).eq.'r' .and. rpfirst)
12 if (wbrest) then
ipe = ipenew
nmbr = nmbr+1
go to 4
else
c
c AHA! Failed prev. test, so last symbol was *not* mbr.
c It must be saved, and its starting position is ipenew-lsym+1
c
if (nmbr .gt. 1) then
c
c Write stuff up to start of mbr
c
if (ip1 .gt. 1) write(30,'(a)')line(1)(1:ip1-1)
c
c Insert mbr symbol. Always end with a slash just in case next sym must be
c at start of block. May think this causes undefined octaves, but
c probably not since it's a single voice.
c
ndig = int(alog10(nmbr+.01))+1
print*,'Inserting rm, iv,nmbr:',iv,nmbr
write(30,'(a2,i'//char(48+ndig)//',a2)')'rm',nmbr,' /'
if (alldone) go to 999
ipc = ipenew-lsym+1
line(1) = line(iline)(ipc:len)
else
c
c Write old stuff up to end of original lonesome wbr, save the rest.
c 4 cases: (wbr /) , (wbr line-end) , (wbr followed by other non-/ symbols) ,
c alldone.
c In 1st 2 will have gotten some other lines, so write all up to one b4 last
c non-comment line; then revert to normal mode on that. In 3rd case must
c split line.
c
if (alldone) then
write(30,'(a)')line(1)(1:len)
go to 999
else if (iline .gt. 1) then
do 9 il = 1 , iline-1
len = lenstr(line(il),128)
write(30,'(a)')line(il)(1:len)
9 continue
line(1) = line(iline)
else
c
c Since iline = 1 the wbr is not the last sym, so must split
c
write(30,'(a)')line(1)(1:ip1+lwbrsx-1)
line(1) = line(1)(ip1+lwbrsx+1:len)
end if
end if
c
c Exit multibar mode
c
go to 7
end if
end if
end if
2 continue
if (len .gt. 0) then
write(30,'(a)')line(1)(1:len)
else
write(30,'(a)')' '
end if
1 continue
999 continue
close(10+iv)
close(30)
return
end
function ifnodur(idur,dotq)
character*1 dotq
if (idur .eq. 6) then
ifnodur=1
else if (idur .eq. 3) then
ifnodur=2
else if (idur.eq.1 .or. idur.eq.16) then
ifnodur=4
else if (idur .eq. 8) then
ifnodur=8
else if (idur .eq. 4) then
ifnodur=16
else if (idur .eq. 2) then
ifnodur=32
else if (idur .eq. 0) then
ifnodur=64
else
print*,'You entered an invalid note-length value'
stop
end if
if (dotq .eq. 'd') ifnodur = ifnodur*3/2
return
end
subroutine fwbrsym(lenbar,nwbrs,wbrsym,lwbrs)
character*3 wbrsym(2)
nwbrs = 1
lwbrs = 2
if (lenbar .eq. 16) then
wbrsym(1) = 'r4'
else if (lenbar .eq. 32) then
wbrsym(1) = 'r2'
else if (lenbar .eq. 64) then
wbrsym(1) = 'r0'
else if (lenbar .eq. 8) then
wbrsym(1) = 'r8'
else if (lenbar .eq. 128) then
wbrsym(1) = 'r9'
else
nwbrs = 2
lwbrs = 3
if (lenbar .eq. 24) then
wbrsym(1) = 'rd4'
wbrsym(2) = 'r4d'
else if (lenbar .eq. 48) then
wbrsym(1) = 'rd2'
wbrsym(2) = 'r2d'
else if (lenbar .eq. 96) then
wbrsym(1) = 'rd0'
wbrsym(2) = 'r0d'
else
write(*,'(33H Any whole-bar rests of duration ,i3,
* 26H/64 will not be recognized)') lenbar
end if
end if
return
end
subroutine nextsym(line,len,ipeold,ipenew,sym,lsym)
c
c Know its the last symbol if on return ipenew = len!. So should never
c be called when ipstart=len.
c
character*128 line
character*80 sym
if (ipeold .ge. len) then
print*,'Called nextsym with ipstart>=len '
print*,'Send files to Dr. Don at dsimons@logicon.com'
stop
end if
do 1 ip = ipeold+1 , len
if (line(ip:ip) .ne. ' ') then
c
c symbol starts here (ip). We're committed to exit the loop.
c
if (ip .lt. len) then
do 2 iip = ip+1 , len
if (line(iip:iip) .ne. ' ') go to 2
c
c iip is the space after the symbol
c
ipenew = iip-1
lsym = ipenew-ip+1
sym = line(ip:ipenew)
return
2 continue
c
c Have len>=2 and ends on len
c
ipenew = len
lsym = ipenew-ip+1
sym = line(ip:ipenew)
return
else
c
c ip = len
c
ipenew = len
lsym = 1
sym = line(ip:ip)
return
end if
end if
1 continue
print*,'Error #3. Send files to Dr. Don at dsimons@logicon.com'
end
function ntindex(line,s2q)
c
c Returns index(line,s2q) if NOT in TeX string, 0 otherwise
c
character*(*) s2q
character*128 line
logical intex
c
c print*,'Starting ntindex. s2q:',s2q,', line(1:79) is below'
c print*,line(1:79)
c
ndxs2 = index(line,s2q)
ndxbs = index(line,char(92))
if (ndxbs.eq.0 .or. ndxs2.lt.ndxbs) then
ntindex = ndxs2
c print*,'No bs, or char is left of 1st bs, ntindex:',ntindex
else
c
c There are both bs and s2q, and bs is to the left of sq2. So check bs's to
c right of first: End is '\ ', start is ' \'
c
len = lenstr(line,128)
intex = .true.
c print*,'intex+>',intex
do 1 ic = ndxbs+1 , len
if (ic .eq. ndxs2) then
if (intex) then
ntindex = 0
ndxs2 = index(line(ic+1:len),s2q)+ic
c print*,'ndxs2 =>',ndxs2
else
ntindex = ndxs2
return
end if
c print*,'Internal exit, intex, ntindex:',intex,ntindex
else if (intex .and. line(ic+1:ic+2).eq.char(92)//' ') then
intex = .false.
c print*,'intex+>',intex
else if (.not.intex .and. line(ic+1:ic+2).eq.' '//char(92))
* then
intex = .true.
c print*,'intex+>',intex
end if
1 continue
c print*,'Out end of loop 1'
end if
c print*,'Exiting ntindex at the end???'
return
end
subroutine getchar(line,iccount,charq)
c
c Gets the next character out of line*128. If pointer iccount=128 on entry,
c then reads in a new line. Resets iccount to position of the new character.
c
character*1 charq
character*128 line
if (iccount .eq. 128) then
read(10,'(a)')line
iccount = 0
end if
iccount = iccount+1
charq = line(iccount:iccount)
return
end
function readin(line,iccount,iread)
parameter (noimax=12)
common /all/ noinow,iorig(noimax),noinst,insetup,replacing,
* instnum(noimax),botv(noimax),nvi(noimax),nsyst,nvnow
logical insetup,replacing,botv
c
c Reads a piece of setup data from line, gets a new line from
c file 10 (jobname.pmx) if needed, Transfers comment lines into all parts.
c
c iread controls copying of values into scratch files for parts, but only
c if not replacing.
c
c iread input value written
c -1 nvi nothing (only used when noinst<0 initially)
c 0 various value read
c 1 nv -1 , replace later with nvi(i)
c 2 noinst 1
c 3 np -2 , replace later with (nsyst-1)/12+1
c 4 musicsize 20
c 5 fracondent 0.05
c
character*128 line
character*1 durq
4 if (iccount .eq. 128) then
read(10,'(a)')line
if (replacing) replacing = .false.
call chkcom(line)
iccount = 0
end if
iccount = iccount+1
c
c Find next non-blank or end of line
c
do 2 iccount = iccount , 127
if (line(iccount:iccount) .ne. ' ') go to 3
2 continue
c
c If here, need to get a new line
c
iccount = 128
go to 4
3 continue
c
c iccount now points to start of number to read
c
i1 = iccount
5 call getchar(line,iccount,durq)
c
c Remember that getchar first increments iccount, *then* reads a character.
c
if (index('0123456789.-',durq) .gt. 0) go to 5
i2 = iccount-1
if (i2 .lt. i1) then
print*,'Found "'//durq//'" instead of number'
stop 1
end if
icf = i2-i1+49
read(line(i1:i2),'(f'//char(icf)//'.0)')readin
if (.not.replacing) then
if (iread .eq. 0) then
call allparts(line(i1:i2),i2-i1+1)
else if (iread .eq. 1) then
call allparts('-999',4)
else if (iread .eq. 2) then
call allparts('1',1)
else if (iread .eq. 3) then
call allparts('-998',4)
else if (iread .eq. 4) then
call allparts('20',2)
else if (iread .eq. 5) then
call allparts('.05',3)
else if (iread .ne. -1) then
print*,'Error with iread in readin'
stop
end if
end if
return
end
subroutine chkcom(line)
parameter (noimax=12)
common /all/ noinow,iorig(noimax),noinst,insetup,replacing,
* instnum(noimax),botv(noimax),nvi(noimax),nsyst,nvnow
logical insetup,replacing,clefpend,botv
character*128 line
c
c Assume that line has just been read. No need to change iccount since we only
c process full lines.
c
1 if (line(1:1) .ne. '%') return
c
c If here, line has some sort of comment
c
if (line(2:2) .eq. '%') then
if (.not. insetup) then
c
c Suck up a line, then flow out of "if" block to get another and loop
c
read(10,'(a)')line
c++VV
c
c UNLESS (a) it has a score-only "M" and changes # of inst's.
c
if (index(line,'M') .gt. 0) then
idxL = index(line,'L')
idxM = index(line,'M')
idxn = index(line,'n')
idxb = index(line,' ')
if (idxL.lt.idxM .and. idxM.lt.idxn .and.
* (idxb.eq.0 .or. idxn.lt.idxb)) then
noinow = ichar(line(idxn+1:idxn+1))-48
clefpend = .true.
c
c Next noinow digits are original inst. #'s of new inst. set. Next noinow
c char's after that are clefs
c
nvnow = 0
do 24 j = 1 , noinow
iorig(j) = ichar(line(idxn+1+j:idxn+1+j))-48
iposc0 = idxn+1+noinow
do 25 k = 1 , nvi(iorig(j))
nvnow = nvnow+1
c clefq(nvnow) = line(iposc0+nvnow:iposc0+nvnow)
instnum(nvnow) = j
botv(nvnow) = k.eq.1 .and. j.ne.1
25 continue
24 continue
end if
end if
c
c or if it's "h" or "l", need to suck up one more line
c
if ((line(1:1).eq.'h'.and.index('+- ',line(2:2)).gt.0) .or.
* line(1:2).eq.'l ') read(10,'(a)')line
else
c
c In setup mode. Set flag, flow out and do use following line
c
replacing = .true.
end if
else if (line(2:2) .eq. '!') then
c
c Copy to all parts
c
call allparts(line(3:128),125)
else
c
c Get value of hex integer 1,2,...,9,a,b,c in 2nd position, zero otherwise
c
ivq = index('123456789abc',line(2:2))
c
c Only treat as part-specific pmx line if number .le. noinst
c
if (ivq.lt.1 .or. ivq.gt.noinst) then
c
c Simple comment.
c
call allparts(line,128)
else
c
c Instrument comment, copy only to part
c
lenline = lenstr(line,128)
if (lenline .gt. 2) then
write(10+ivq,'(a)')line(3:lenline)
else
c
c Transferring blank line
c
write(10+ivq,'(a)')' '
end if
end if
end if
read(10,'(a)',end=2)line
call zapbl(line,128)
go to 1
2 continue
return
end
subroutine dosetup(iv,line,mtrnum,mtrden)
parameter (noimax=12)
c
c Transfers setup data from scratch file to real one for one instrument
c Data may be mixed with comments, but on entry 1st item is a number.
c Write a comment when encountered, as it comes.
c Write numbers one per line.
c Three input data require special handling:
c If not already replaced, i.e., if negative, then
c iset(1) (nv) will be replaced with nvi(i)
c iset(9) (npages) will be replaced with (nsyst-1)/12+1
c iset(2), if negative, will be followed by extra numbers to be transf.
c
common /all/ noinow,iorig(noimax),noinst,insetup,replacing,
* instnum(noimax),botv(noimax),nvi(noimax),nsyst,nvnow
character*128 line
iccount = 0
do 1 iset = 1 , 12
call partnum(iv,iccount,line,xdata)
if (iset .eq. 2) then
if (xdata .gt. 0) then
write(30,'(i5)')int(xdata+.1)
else
noi = -xdata+.1
write(30,'(i5)')noi
do 2 ioi = 1 , noi
call partnum(iv,iccount,line,xdata)
write(30,'(i5)')int(xdata+.1)
2 continue
end if
else if (iset.ne.8 .and. xdata.lt.0) then
c
c Must be either nv or npages
c
if (int(-xdata+.1) .eq. 999) then
c
c It's nv
c
write(30,'(i5)')nvi(iv)
else
c
c npages must be computed
c
write(30,'(i5)')(nsyst-1)/12+1
end if
else if (iset.ne.7 .and. iset.ne.12) then
c
c write integer
c
write(30,'(i5)')nint(xdata)
else
c
c write floating number
c
write(30,'(f5.2)')xdata
end if
if (iset .eq. 3) then
mtrnum = nint(xdata)
else if (iset .eq. 4) then
mtrden = nint(xdata)
end if
1 continue
return
end
subroutine partnum(iv,iccount,line,xdata)
c
c Simplified number parsing. Only looks for comment lines and numbers.
c
character*128 line
character*1 durq
2 if (iccount .eq. 128) then
read(10+iv,'(a)')line
if (line(1:1) .eq. '%') then
len = lenstr(line,128)
write(30,'(a)')line(1:len)
go to 2
end if
iccount = 0
end if
iccount = iccount+1
c
c Find next non-blank or end of line
c
do 4 iccount = iccount , 127
if (line(iccount:iccount) .ne. ' ') go to 3
4 continue
c
c If here, iccount=128 and need to get a new line
c
go to 2
3 continue
c
c iccount now points to start of number to read
c
i1 = iccount
5 call getchar(line,iccount,durq)
c
c Remember that getchar first increments iccount, *then* reads a character.
c
if (index('0123456789.-',durq) .gt. 0) go to 5
i2 = iccount-1
if (i2 .lt. i1) then
print*,'Found "'//durq//'" instead of number'
stop 1
end if
icf = i2-i1+49
read(line(i1:i2),'(f'//char(icf)//'.0)')xdata
return
end
block data
parameter (noimax=12)
common /all/ noinow,iorig(noimax),noinst,insetup,replacing,
* instnum(noimax),botv(noimax),nvi(noimax),nsyst,nvnow
logical insetup,replacing,botv
data nvi /noimax*1/, noinst,noinow /2*noimax/
data botv /noimax*.false./
end
subroutine zapbl(string,len)
character*(*) string
do 1 i = 1 , len
if (string(i:i) .eq. ' ')go to 1
if (i .eq. 1) return
go to 2
1 continue
c
c If line is all blank, leave it alone
c
return
2 continue
string = string(i:len)
return
end
|