source: buchla-68k/orig/DOC/EVDEFS.TXT

Last change on this file was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Imported original source code.

  • Property mode set to 100755
File size: 1.4 KB
Line 
1Event types (number in comment field is event size)
2-----------
3
4EV_NULL 0 /* 1 - null event */
5EV_SCORE 1 /* 1 - score begin */
6EV_SBGN 2 /* 2 - section begin */
7EV_SEND 3 /* 2 - section end */
8EV_INST 4 /* 2 - instrument change */
9EV_NBEG 5 /* 1 - note begin */
10EV_NEND 6 /* 1 - note end */
11EV_STOP 7 /* 1 - stop */
12EV_INTP 8 /* 2 - interpolate */
13EV_TMPO 9 /* 2 - tempo */
14EV_TUNE 10 /* 2 - tuning */
15EV_GRP 11 /* 2 - group status */
16EV_LOCN 12 /* 2 - location */
17EV_DYN 13 /* 2 - dynamics */
18EV_ANVL 14 /* 2 - analog value */
19EV_ANRS 15 /* 2 - analog resolution */
20EV_ASGN 16 /* 2 - I/O assign */
21EV_TRNS 17 /* 3 - transposition */
22EV_REPT 18 /* 1 - repeat */
23EV_PNCH 19 /* 1 - punch in/out */
24EV_PRES 20 /* 1 - polyphonic pressure */
25EV_FINI 21 /* 1 - score end */
26EV_CPRS 22 /* 1 - channel pressure */
27EV_BAR 23 /* 1 - bar marker */
28
29N_ETYPES 24 /* number of event types (1 + last type code) */
30
31Event header types
32------------------
33
34EH_INST 0 /* instrument change */
35EH_GRP 1 /* group status */
36EH_LOCN 2 /* location */
37EH_DYN 3 /* dynamics */
38EH_ANRS 4 /* analog resolution */
39EH_TRNS 5 /* transposition */
40EH_INTP 6 /* interpolate */
41EH_TMPO 7 /* tempo */
42EH_TUNE 8 /* tuning */
43EH_ASGN 9 /* I/O assign */
44EH_SBGN 10 /* section begin */
45EH_SEND 11 /* section end */
46
47N_TYPES 12 /* number of event header types */
Note: See TracBrowser for help on using the repository browser.