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 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
|
/*
* exportmidi.c
*
* Functions for exporting a Standard Midi file
*
* for Denemo, a gtk+ frontend to GNU Lilypond
* (C) 2001 Per Andersson
*
* License: this file may be used under the FSF GPL version 2
*/
#define EXPORTMIDI_VERSION "1.2"
/*
* The function exportmidi() writes a "Standard MIDI file" to disk.
* The file can then be played by programs like playmidi
* or TiMidity, externally or by the denemo playback command.
*
* See www.wotsit.org for some info on midi and the standard file format
*
* The ambition is to honour as many musical directives (tempo, slurs, ties,
* dynamics, staccato ...) as possible, and to make the output as musical
* as possible. Efforts have been made to try to handle empty or incomplete
* measures, unbalanced slurs and other strange input.
*
* Exportmidi() has a velocity modulation feature to make the sound
* less mechanical, but this is still under development.
* Timing modulation is planned.
*
* Call exportmidi() from some file menu or as a part of the playback command.
* It has the same parameters as exportmudela().
* There is a code fragment for this in the file fragment.c.
* The makefile needs the four files exportmidi.[ch] and instrumentname.[ch].
*
* Environment variable is used for user preferences. This should be replaced
* by some musical "style sheet" in the future, since the values depend on
* the genre (and tempo) of the piece, as well as personal taste.
* Information should be stored in the mudela file, somehow.
* Values may change within the piece, and ...
* There are many issues to resolve here!
*
* This software is tested with denemo 0.5.5.
*
*
*
* Per Andersson
* Artifex consulting
*
* email to: artifex@europe.com
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <time.h>
#include <ctype.h>
#include "instrumentname.h"
#include "datastructures.h"
/*
* only for developers
*/
int debug = 0;
/****************************************************************/
/*
* support macros for exportmidi()
*/
/* length, in ticks, of a quarter note */
#define MIDI_RESOLUTION 384
/* tick conversion */
#define ticks2bars(t,u,l) (t/(MIDI_RESOLUTION*4*u/l))
#define bars2ticks(t,u,l) (t*(MIDI_RESOLUTION*4*u/l))
#define ticks2beats(t,u,l) (t/(MIDI_RESOLUTION*4/l))
#define beats2ticks(t,u,l) (t*(MIDI_RESOLUTION*4/l))
/****************************************************************/
/*
* dynamic request handling
*/
enum dynamics
{
DYN_TACET = 0,
DYN_PPP,
DYN_PP,
DYN_P,
DYN_MP,
DYN_MF,
DYN_F,
DYN_FF,
DYN_FFF,
DYN_MAX
};
char *dyn_strings[DYN_MAX] = {
"tacet",
"ppp",
"pp",
"p",
"mp",
"mf",
"f",
"ff",
"fff",
};
int dyn_vol[DYN_MAX] = { 1, 16, 32, 48, 64, 80, 96, 112, 127 };
/*
* convert dynamic string to midi velocity 0 .. 127
*/
int
string_to_vol (char *dynamic, int default_vol)
{
int i;
for (i = 0; i < DYN_MAX; i++)
{
if (!strcmp (dynamic, dyn_strings[i]))
{
return dyn_vol[i];
}
}
return default_vol;
}
/****************************************************************/
/*
* unbiased random generator,
*
* returns a value within +- maxdev
*/
int
i_random (int *accumulate, int maxdev)
{
int rnd;
rnd = maxdev - 2 * maxdev * (rand () >> 4) / (RAND_MAX >> 4) - *accumulate;
*accumulate += rnd / 2;
if (debug >= 10)
{
fprintf (stderr, "random=%d\n", rnd / 2);
}
return rnd / 2;
}
/****************************************************************/
/*
* limit a value to be within limits
* (simple first approach)
*/
int
compress (int range, int invalue)
{
int outvalue;
outvalue = invalue;
if (invalue >= range)
{
outvalue = range - 1;
}
if (invalue != outvalue)
{
fprintf (stderr, "compress %d %d\n", invalue, outvalue);
}
return outvalue;
}
/****************************************************************/
/*
* integer base 2 logarithm used in time-sig code
*/
int
twolog (x)
{
int answer = 0;
/* should not happen! */
if (x < 1)
return 0;
while (x >= 1)
{
x >>= 2;
answer++;
}
return answer;
}
/****************************************************************/
/*
* midi file basic output functions
*/
void
midi_byte (FILE * fd, int c0)
{
putc (c0, fd);
}
void
midi_2_bytes (FILE * fd, int c0, int c1)
{
putc (c0, fd);
putc (c1, fd);
}
void
midi_3_bytes (FILE * fd, int c0, int c1, int c2)
{
putc (c0, fd);
putc (c1, fd);
putc (c2, fd);
}
void
midi_4_bytes (FILE * fd, int c0, int c1, int c2, int c3)
{
putc (c0, fd);
putc (c1, fd);
putc (c2, fd);
putc (c3, fd);
}
void
midi_short (FILE * fd, int amount)
{
midi_2_bytes (fd, (amount >> 8) & 255, (amount >> 0) & 255);
}
void
midi_medium (FILE * fd, long amount)
{
midi_3_bytes (fd,
(amount >> 16) & 255,
(amount >> 8) & 255, (amount >> 0) & 255);
}
void
midi_long (FILE * fd, long amount)
{
if (amount > 4000)
fprintf (stderr, "[midilong:%ld=%lx]", amount, amount);
midi_4_bytes (fd,
(amount >> 24) & 255,
(amount >> 16) & 255,
(amount >> 8) & 255, (amount >> 0) & 255);
}
/****************************************************************/
/*
* now some complex midi output functions
*
* most meta event functions write their own
* (zero) delta time code
*/
/*
* standard midi file specific variable length time diff encoding
*
* one delta is required before each event
*
* the lower seven bits is a number 0 .. 127
* the high bit means the are bytes more to come
*/
int
midi_delta (FILE * fd, long delta, int more)
{
char x;
int sz = 0;
if (delta < 0)
{
fprintf (stderr, " Error: negative delta! (%ld)\n", delta);
midi_byte (fd, 0);
return 0;
};
if (delta > 127)
{
sz += midi_delta (fd, delta / 128, 1);
}
x = (more ? 128 : 0) | (delta % 128);
midi_byte (fd, x);
sz++;
return sz;
}
/*
* this is used by several meta events
*/
void
midi_meta_text (FILE * fd, int metatype, char *string)
{
int len;
midi_delta (fd, 0, 0);
len = strlen (string);
/* meta event */
midi_byte (fd, 0xff);
/* meta type */
midi_byte (fd, metatype);
/* meta size */
midi_byte (fd, len);
/* meta text */
fprintf (fd, string);
}
/*
* put two strings and a number in a midi comment (debug)
*/
void
midi_comment (FILE * fd, char *txt1, long number, char *txt2)
{
char buf[200];
if (number)
{
sprintf (buf, "%s %ld %s", txt1, number, txt2);
midi_meta_text (fd, 1, buf);
}
else
{
sprintf (buf, "%s%s", txt1, txt2);
midi_meta_text (fd, 1, buf);
}
}
/*
* put a string and two numbers in a midi comment (debug)
*/
void
midi_com2 (FILE * fd, char *txt1, long number1, long number2)
{
char buf[200];
sprintf (buf, "%s %ld %ld", txt1, number1, number2);
midi_meta_text (fd, 1, buf);
}
/*
* used for most midi events: note on, note off, aftertouch ...
*/
void
midi_channel_event (FILE * fd, int type, int chan, int note, int val)
{
midi_3_bytes (fd, type | chan, note, val);
if (debug)
printf ("mchev: %x %d %d %d\n", type, chan + 1, note + 1, val);
}
/*
* almost only used for program change
*/
void
midi_change_event (FILE * fd, int type, int chan, int val)
{
midi_2_bytes (fd, type | chan, val);
}
/*
* meta event: required after every track
*/
void
midi_end_of_track (FILE * fd)
{
midi_4_bytes (fd, 0, 0xff, 0x2f, 0);
}
/*
* meta event: set time signature, time scale and metronome
*/
void
midi_timesig (FILE * fd, int upper, int lower)
{
midi_4_bytes (fd, 0, 0xff, 0x58, 4);
midi_4_bytes (fd, upper, twolog (lower), 24, 8);
}
/*
* meta event: set system clock speed
*/
void
midi_tempo (FILE * fd, long tempo)
{
long midi_tempo;
if (tempo == 0)
{
tempo = 1;
}
midi_delta (fd, 0, 0);
midi_3_bytes (fd, 0xff, 0x51, 3);
midi_tempo = 60000000 / tempo;
midi_medium (fd, midi_tempo);
}
/*
* compute midi chromatic note number from diatonic offset
*/
int
dia_to_midinote (int offs)
{
int table[] = { -10, -8, -7, -5, -3, -1, 0, 2, 4, 5, 7, 9, 11 };
int tone, octave;
int midinum;
octave = offs / 7;
tone = offs % 7;
midinum = 60 + 12 * octave + table[tone + 6];
return midinum;
}
/****************************************************************/
/*
* slur handling code:
*
* decide what to do about slurs and things, using a note status table
* describing each note and a status variable for the general situation
*/
/*
* constants used in note status table
*/
#define FLG_CONNECT_B 0x01
#define FLG_CONNECT_F 0x02
#define FLG_SLUR_BEGIN 0x04
#define FLG_SLUR_END 0x08
#define FLG_NOTE_ON 0x10
#define FLG_NOTE_OFF 0x20
#define FLG_STACCATO 0x40
#define FLG_STACCATISSIMO 0x80
#define FLG_TIED_F 0x100
#define FLG_TIED_B 0x200
/*
* debug print-out of slur table
*/
char *
fmt_ticks (long t)
{
static char answer[12];
long sig = 4;
long res = 4;
long count;
count = t * res / MIDI_RESOLUTION / sig;
sprintf (answer, "%ld = %ld+%ld/%ld", t, count / res, count % res, res);
return answer;
}
int
print_slurs (FILE * fd, int *tab, int status,
int t_read, int t_written, char *txt)
{
int i;
fprintf (fd, "=== slurs: (state=%d) %s @ ", status, txt);
fprintf (fd, "r=%s ", fmt_ticks (t_read));
fprintf (fd, "w=%s\n", fmt_ticks (t_written));
for (i = 0; i < 128; i++)
{
if (tab[i])
{
fprintf (fd, "%2d: %3x %s%s%s%s%s%s%s%s%s%s\n",
i, tab[i],
tab[i] & FLG_CONNECT_B ? "connect-backward " : "",
tab[i] & FLG_CONNECT_F ? "connect-forward " : "",
tab[i] & FLG_SLUR_BEGIN ? "begin " : "",
tab[i] & FLG_SLUR_END ? "end " : "",
tab[i] & FLG_STACCATO ? "staccato " : "",
tab[i] & FLG_STACCATISSIMO ? "staccatissimo " : "",
tab[i] & FLG_NOTE_ON ? "note_is_on " : "",
tab[i] & FLG_NOTE_OFF ? "note_is_off " : "",
tab[i] & FLG_TIED_B ? "tied_backward " : "",
tab[i] & FLG_TIED_F ? "tied_forward " : "");
}
}
/* not used */
return 0;
}
#define STATE_NONE 0
#define STATE_FIRST 1
#define STATE_LAST 2
#define STATE_THROUGH 3
/*
* reset note status table and slur status
*
* called once before each track
*/
void
slur_erase (int *table, int *state)
{
int i;
for (i = 0; i < 128; i++)
{
table[i] = 0;
}
*state = STATE_NONE;
}
/*
* prepare note status table for next chord
*
* only keep notes that are still playing
*
* called once after each chord
*/
void
slur_shift (int *table)
{
int i;
for (i = 0; i < 128; i++)
{
if (table[i] & FLG_CONNECT_F)
{
table[i] |= FLG_CONNECT_B;
}
else
{
table[i] &= ~FLG_CONNECT_B;
}
if (table[i] & FLG_TIED_F)
{
table[i] |= FLG_TIED_B;
}
else
{
table[i] &= ~FLG_TIED_B;
}
table[i] &= (FLG_TIED_B | FLG_CONNECT_B);
}
}
/*
* update slur status (begin/middle/end of slurs, or no slur)
*/
void
slur_update (int *state, int begin, int end)
{
/* prepare flag bits */
begin = begin ? FLG_SLUR_BEGIN : 0;
end = end ? FLG_SLUR_END : 0;
/* look at: previous state, begin and end, then set new state */
switch (*state)
{
case STATE_FIRST:
switch (begin + end)
{
case FLG_SLUR_BEGIN:
fprintf (stderr, "warning: strange slur: extra begin\n");
*state = STATE_THROUGH;
break;
case 0:
case FLG_SLUR_BEGIN + FLG_SLUR_END:
*state = STATE_THROUGH;
break;
case FLG_SLUR_END:
*state = STATE_LAST;
break;
}
break;
case STATE_LAST:
switch (begin + end)
{
case FLG_SLUR_BEGIN:
*state = STATE_FIRST;
break;
case FLG_SLUR_BEGIN + FLG_SLUR_END:
*state = STATE_THROUGH;
fprintf (stderr, "strange slur: extra end\n");
break;
case 0:
*state = STATE_NONE;
break;
case FLG_SLUR_END:
fprintf (stderr, "strange slur: extra end\n");
*state = STATE_LAST;
break;
}
break;
case STATE_NONE:
switch (begin + end)
{
case FLG_SLUR_BEGIN:
*state = STATE_FIRST;
break;
case 0:
*state = STATE_NONE;
break;
case FLG_SLUR_BEGIN + FLG_SLUR_END:
fprintf (stderr, "strange slur: missing begin\n");
*state = STATE_THROUGH;
break;
case FLG_SLUR_END:
*state = STATE_LAST;
break;
}
break;
case STATE_THROUGH:
switch (begin + end)
{
case FLG_SLUR_BEGIN:
fprintf (stderr, "strange slur: extra begin\n");
*state = STATE_THROUGH;
break;
case 0:
case FLG_SLUR_BEGIN + FLG_SLUR_END:
*state = STATE_THROUGH;
break;
case FLG_SLUR_END:
*state = STATE_LAST;
break;
}
break;
}
}
/*
* insert a note and it's properties in the table
*/
void
slur_note (int *table, int state, int notenum,
int staccato, int staccatissimo, int tied)
{
int running;
/* see if note is already playing */
running = table[notenum] & FLG_CONNECT_B;
/* set flags for directives */
staccato = staccato ? FLG_STACCATO : 0;
staccatissimo = (staccatissimo ? FLG_STACCATISSIMO : 0);
table[notenum] &= FLG_TIED_B;
/* set note on/off according to the slur state */
switch (state)
{
case STATE_LAST:
if (!running)
{
table[notenum] |= FLG_NOTE_ON + FLG_NOTE_OFF;
}
else
{
table[notenum] |= FLG_NOTE_OFF;
}
break;
case STATE_NONE:
/* normal note, no slur */
if (running)
{
fprintf (stderr, "warning: note should not be on (0)\n");
}
table[notenum] |= FLG_NOTE_ON + FLG_NOTE_OFF;
break;
case STATE_THROUGH:
/* note may be started before */
if (!running)
{
table[notenum] |= FLG_NOTE_ON + FLG_CONNECT_F;
}
else
{
table[notenum] |= FLG_CONNECT_F;
}
break;
case STATE_FIRST:
/* first note of slur */
if (running)
{
fprintf (stderr, "warning: note should not be on (1)\n");
table[notenum] |= FLG_CONNECT_F;
}
else
{
table[notenum] |= FLG_NOTE_ON + FLG_CONNECT_F;
}
break;
default:
fprintf (stderr, "this shouldn't happen!\n");
exit (3);
}
if (tied)
{
table[notenum] |= FLG_TIED_F;
table[notenum] &= ~FLG_NOTE_OFF;
}
/* only relevant in normal notes or at end of slur */
table[notenum] += staccato + staccatissimo;
}
/*
* some predicates used in exportmidi
*/
int
slur_on_p (int *table, int notenum)
{
return (table[notenum] & FLG_NOTE_ON) && !(table[notenum] & FLG_TIED_B);
}
int
slur_kill_p (int *table, int notenum)
{
return
((table[notenum] & FLG_CONNECT_B) && !(table[notenum] & FLG_NOTE_ON))
|| ((table[notenum] & FLG_TIED_B) && !(table[notenum] & FLG_NOTE_ON));
}
int
slur_off_p (int *table, int notenum)
{
return (table[notenum] & FLG_NOTE_OFF);
}
int
slur_staccato_p (int *table, int notenum)
{
return !(table[notenum] & FLG_STACCATO);
}
int
slur_staccatissimo_p (int *table, int notenum)
{
return !(table[notenum] & FLG_STACCATISSIMO);
}
/****************************************************************/
/*
* compute the amount of extra velocity to be added to a note
*/
int
compute_beat (long ticks, long ticks_in_a_beat,
long ticks_in_a_measure, int length, int factor)
{
/* give extra beat only to short notes */
if (length < ticks_in_a_measure / 2)
{
if (ticks == 0)
{
/* put more emphasis on the first beat */
return factor;
}
else if (ticks % ticks_in_a_beat)
{
/* put less emphasis on off beat notes */
return -factor;
}
else
{
/* leave the rest alone */
return 0;
}
}
else
{
return 0;
}
}
/****************************************************************/
/*
* some important midi command bytes
*/
#define MIDI_NOTE_OFF 0x80
#define MIDI_NOTE_ON 0x90
#define MIDI_PROG_CHANGE 0xc0
#define MAX_TRACKS 16
/* convert denemo time values to ticks */
#define internaltoticks(i) ((MIDI_RESOLUTION*4)>>i)
/* this is a real high-tech macro */
#define percent(t,p) ((t*p)/100)
/*
* the main midi output system (somewhat large)
*/
/****************************************************************/
/****************************************************************/
/****************************************************************/
void
exportmidi (gchar * thefilename, struct scoreinfo *si, gint start, gint end)
{
/* variables for reading and decoding the object list */
FILE *fd;
staffnode *curstaff;
staff *curstaffstruct;
measurenode *curmeasure;
objnode *curobjnode;
mudelaobject *curobj;
gint curmeasurenum;
chord chordval;
gint duration, numdots;
gint enshift;
gchar mid_c_offset;
GList *curtone;
GString *filename = g_string_new (thefilename);
gint measurenum, last = 0;
/* variables for generating music */
int i;
int d, n;
long ticks_read;
long ticks_written;
long ticks_at_bar = 0;
int cur_volume;
int midi_channel = (-1);
int tracknumber = 0;
int timesigupper = 4;
int timesiglower = 4;
int notenumber;
int prognum;
int width;
int notes_in_chord = 0;
int note_status[128];
int slur_status;
int measure_is_empty;
int measure_has_odd_tuplet;
int measurewidth;
/* output velocity and timing modulation */
int rand_sigma = 0;
int rand_delta;
int beat = 0;
/* to handle user preferences */
char *envp;
int vel_randfact = 5;
int vel_beatfact = 10;
int pref_width = 90;
int pref_staccato = 25;
int pref_staccatissimo = 10;
/* tuplets */
int tuplet = 0;
tupopen tupletnums;
tupopen savedtuplet;
/* used to insert track sizes in the midi file */
long track_start_pos[MAX_TRACKS];
long track_end_pos[MAX_TRACKS];
/* statistics */
time_t starttime;
time_t endtime;
/* get user preferences, if any */
envp = getenv ("EXP_MIDI_VEL");
if (envp)
{
sscanf (envp, "%d %d", &vel_randfact, &vel_beatfact);
fprintf (stderr, "VELOCITY parameters are: %d %d\n",
vel_randfact, vel_beatfact);
}
envp = getenv ("EXP_MIDI_PERCENT");
if (envp)
{
sscanf (envp, "%d %d %d",
&pref_width, &pref_staccato, &pref_staccatissimo);
fprintf (stderr,
"PERCENT parameters are: normal=%d staccato=%d %d\n",
pref_width, pref_staccato, pref_staccatissimo);
}
/* just curious */
time (&starttime);
/* Append .mid to the filename */
g_string_append (filename, ".midi");
/* Now open the file */
fd = fopen (filename->str, "w");
/* verify file descriptor */
if (!fd)
{
perror (filename->str);
fprintf (stderr, "Can't open midi file %s for writing!\n",
filename->str);
return;
}
/* MIDI file header */
midi_4_bytes (fd, 'M', 'T', 'h', 'd');
midi_long (fd, 6);
/* midi file type */
midi_short (fd, 1);
/* tracks in the file */
/* this gets overwritten before closing the file */
midi_short (fd, 0);
/* ticks in a quarter note */
midi_short (fd, MIDI_RESOLUTION);
/*
* end of headers and meta events, now for some real actions
*/
/* iterate over all tracks in file */
for (curstaff = si->thescore; curstaff; curstaff = curstaff->next)
{
/* handle one track */
curstaffstruct = curstaff->data;
/* select a suitable track number */
tracknumber++;
if (!strcmp (curstaffstruct->midi_instrument->str, "drums"))
{
midi_channel = 9;
}
else
{
midi_channel = (tracknumber >= 9) ? tracknumber + 1 : tracknumber;
}
/* MIDI track header */
midi_4_bytes (fd, 'M', 'T', 'r', 'k');
/* remember track size (to be filled in later, when we know the size) */
midi_long (fd, 0);
track_start_pos[tracknumber] = ftell (fd);
/* track name */
midi_meta_text (fd, 3, curstaffstruct->lily_name->str);
/* tempo */
midi_tempo (fd, si->tempo);
/* The midi instrument */
midi_meta_text (fd, 4, curstaffstruct->midi_instrument->str);
/* drums is a special case, else try to match an instrument name */
if (midi_channel == 9)
{
prognum = 0;
}
else
{
prognum = select_program (curstaffstruct->midi_instrument->str);
}
/* set selected midi program */
midi_delta (fd, 0, 0);
midi_change_event (fd, MIDI_PROG_CHANGE, midi_channel, prognum);
/* Time signature */
timesigupper = curstaffstruct->stime1;
timesiglower = curstaffstruct->stime2;
midi_timesig (fd, timesigupper, timesiglower);
/* set a default velocity value */
cur_volume = dyn_vol[DYN_MF];
/* reset measure */
curmeasurenum = 0;
curmeasure = curstaffstruct->measures;
/* reset tick counters */
ticks_read = 0;
ticks_written = 0;
/* reset slur system */
slur_erase (note_status, &slur_status);
/* set boundries */
if (!end)
last = g_list_length (curmeasure);
if (start)
curmeasure = g_list_nth (curmeasure, start - 1);
/* iterate for over measures in track */
for (measurenum = MAX (start, 1); curmeasure && measurenum <= last;
curmeasure = curmeasure->next, measurenum++)
{
/* start of measure */
curmeasurenum++;
measure_is_empty = 1;
measure_has_odd_tuplet = 0;
ticks_at_bar = ticks_read;
/* iterate for over objects in measure */
for (curobjnode = curmeasure->data; curobjnode;
curobjnode = curobjnode->next)
{
curobj = curobjnode->data;
/*******************************************
* huge switch:
* here we handle every kind of object
* that seems relevant to us
*******************************************/
switch (curobj->type)
{
case CHORD:
/********************
* one or more notes
********************/
measure_is_empty = 0;
if (debug)
fprintf (stderr,
"=============================== chord at %s\n",
fmt_ticks (ticks_read));
chordval = curobj->u.chordval;
/***********************************
* compute nominal duration of note
***********************************/
numdots = chordval.numdots;
duration = 0;
for (d = 0; d <= numdots; d++)
{
duration +=
internaltoticks (chordval.baseduration) >> d;
}
if (tuplet >= 1)
{
duration *= tupletnums.numerator;
duration /= tupletnums.denominator;
if (MIDI_RESOLUTION % tupletnums.denominator)
{
measure_has_odd_tuplet = 1;
}
}
if (tuplet >= 2)
{
if (MIDI_RESOLUTION % tupletnums.denominator *
savedtuplet.denominator)
{
measure_has_odd_tuplet = 1;
}
duration *= savedtuplet.numerator;
duration /= savedtuplet.denominator;
}
/********************************
* compute real duration of note
********************************/
if (chordval.has_staccatissimo_p)
{
width = percent (duration, pref_staccatissimo);
}
else if (chordval.has_stacatto_p)
{
width = percent (duration, pref_staccato);
}
else
{
width = percent (duration, pref_width);
}
if (debug)
fprintf (stderr, "duration is %s\n",
fmt_ticks (duration));
if (chordval.tones)
{
/**************************
* prepare for note output
**************************/
notes_in_chord = 0;
if (debug)
fprintf (stderr, "this is a chord\n");
slur_update (&slur_status,
chordval.slur_begin_p,
chordval.slur_end_p);
/* compute beat to add to note velocity */
beat = compute_beat (ticks_read - ticks_at_bar,
beats2ticks (1, timesigupper,
timesiglower),
bars2ticks (1, timesigupper,
timesiglower),
duration, vel_beatfact);
/************************
* begin chord read loop
************************/
for (curtone = chordval.tones; curtone;
curtone = curtone->next)
{
mid_c_offset =
((note *) curtone->data)->mid_c_offset;
enshift = ((note *) curtone->data)->enshift;
notenumber =
dia_to_midinote (mid_c_offset) + enshift;
slur_note (note_status,
slur_status,
notenumber,
chordval.has_stacatto_p,
chordval.has_staccatissimo_p,
chordval.is_tied);
}
/* End chord read loop */
#if slurdebug
print_slurs (stderr,
note_status, slur_status,
ticks_read, ticks_written,
"after chord read");
#endif
/****************************
* start note-on output loop
****************************/
/* kill old slurs and ties */
/* start new notes */
notes_in_chord = 0;
/* write delta */
for (n = 0; n < 128; n++)
{
if (slur_on_p (note_status, n)
|| slur_kill_p (note_status, n))
{
if (notes_in_chord++ == 0)
{
midi_delta (fd, ticks_read - ticks_written,
0);
ticks_written = ticks_read;
}
else
{
midi_delta (fd, 0, 0);
}
}
/* compute velocity delta */
rand_delta = i_random (&rand_sigma, vel_randfact);
/* write note on/off */
if (slur_on_p (note_status, n))
{
midi_channel_event (fd, MIDI_NOTE_ON,
midi_channel, n,
compress (128,
cur_volume +
rand_delta +
beat));
}
else if (slur_kill_p (note_status, n))
{
midi_channel_event (fd, MIDI_NOTE_OFF,
midi_channel, n, 12820);
}
}
/* end of first chord output loop */
#if slurdebug
print_slurs (stderr,
note_status, slur_status,
ticks_read, ticks_written, "after loop1");
#endif
/*****************************
* start note-off output loop
*****************************/
/* kill untied notes */
notes_in_chord = 0;
/* start second chord output loop */
/* write delta */
for (n = 0; n < 128; n++)
{
if (slur_off_p (note_status, n))
{
if (notes_in_chord++ == 0)
{
width += ticks_read - ticks_written;
midi_delta (fd, width, 0);
ticks_written += width;
if (ticks_written > ticks_read + duration)
{
fprintf (stderr, "BAD WIDTH %d\n"
"(should not happen!)", width);
}
}
else
{
midi_delta (fd, 0, 0);
}
/* write note off */
midi_channel_event (fd, MIDI_NOTE_OFF,
midi_channel, n, 60);
}
}
/* end of second chord output loop */
}
#if slurdebug
print_slurs (stderr,
note_status, slur_status,
ticks_read, ticks_written, "after loop2");
#endif
/* prepare for next event */
ticks_read += duration;
slur_shift (note_status);
#if slurdebug
print_slurs (stderr,
note_status, slur_status,
ticks_read, ticks_written, "after shift");
#endif
if (debug)
fprintf (stderr, "chord end\n");
break;
case TIMESIG:
/************************
* time signature change
************************/
if (ticks_read != ticks_at_bar)
{
fprintf (stderr, "error: can only change time"
" signature at beginning of a measure\n");
}
timesigupper = curobj->u.timeval.time1;
timesiglower = curobj->u.timeval.time2;
if (debug)
{
fprintf (stderr, "timesig change to %d:%d\n",
timesigupper, timesiglower);
}
midi_timesig (fd, timesigupper, timesiglower);
break;
case TUPOPEN:
/***************
* tuplet begin
***************/
switch (tuplet)
{
default:
fprintf (stderr, "too complicated tuplets\n");
break;
case 1:
savedtuplet.numerator = tupletnums.numerator;
savedtuplet.denominator = tupletnums.denominator;
tupletnums.numerator = curobj->u.tupval.numerator;
tupletnums.denominator = curobj->u.tupval.denominator;
break;
case 0:
tupletnums.numerator = curobj->u.tupval.numerator;
tupletnums.denominator = curobj->u.tupval.denominator;
break;
}
tuplet++;
break;
case TUPCLOSE:
/*************
* tuplet end
*************/
tuplet--;
switch (tuplet)
{
case 2:
case 3:
case 4:
case 5:
case 6:
case -1:
fprintf (stderr, "too complicated tuplets\n");
break;
case 1:
tupletnums.numerator = savedtuplet.numerator;
tupletnums.denominator = savedtuplet.denominator;
break;
case 0:
break;
}
break;
case DYNAMIC:
/********************
* dynamic directive
********************/
cur_volume =
string_to_vol (curobj->u.dynval.type->str, cur_volume);
break;
case KEYSIG:
case CLEF:
/***********
* ignored!
***********/
break;
default:
fprintf (stderr, "ignoring type %d\n", curobj->type);
break;
}
}
/*******************
* Do some checking
*******************/
measurewidth = bars2ticks (1, timesigupper, timesiglower);
if (ticks_at_bar + measurewidth != ticks_read)
{
if ((!measure_is_empty) && curmeasure->next)
{
fprintf (stderr,
"warning: ticks_read reset in %s "
"measure %d from %ld to %ld "
"\n%sdifference is %ld, measure began at %ld)\n",
curstaffstruct->lily_name->str,
measurenum,
ticks_read,
ticks_at_bar + measurewidth,
measure_has_odd_tuplet ?
"(after unusual tuplet: " : "(",
ticks_at_bar + measurewidth - ticks_read,
ticks_at_bar);
}
ticks_read = ticks_at_bar + internaltoticks (0);
}
else
{
fprintf (stderr, "[%d]", measurenum);
}
fflush (stdout);
/*************************
* Done with this measure
*************************/
/* end the track (required!) */
if (!curmeasure->next)
{
midi_end_of_track (fd);
}
track_end_pos[tracknumber] = ftell (fd);
} /* Done with this staff */
/***********************
* Done with this track
***********************/
fprintf (stderr, "[%s done]\n", curstaffstruct->lily_name->str);
fflush (stdout);
}
/*********************
* Insert track sizes
*********************/
/* insert track count in file header */
fseek (fd, 10, SEEK_SET);
midi_short (fd, tracknumber);
fflush (fd);
/* insert track byte count in track headers */
for (i = 1; i <= tracknumber; i++)
{
fseek (fd, track_start_pos[i] - 4, SEEK_SET);
midi_long (fd, track_end_pos[i] - track_start_pos[i]);
fflush (fd);
if (debug)
fprintf (stderr,
"track %d from: %ld to %ld (%ld at %ld)\n", i,
track_start_pos[i], track_end_pos[i],
(track_end_pos[i] - track_start_pos[i]), ftell (fd) - 4);
}
/********
* Done!
********/
/* we are done */
fclose (fd);
/* just curious again */
time (&endtime);
fprintf (stderr,
"exportmidi %s done:\nfile: %s %s %s\ntotal elapsed time is %ld\n",
EXPORTMIDI_VERSION, filename->str, __DATE__, __TIME__,
endtime - starttime);
g_string_free (filename, FALSE);
}
/*
* That's all, folks!
*
* End of exportmidi.c
*/
|