[3ae31e9] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | asgdsp.h -- assignment editor common parameter header file
|
---|
| 4 | Version 8 -- 1988-04-18 -- D.N. Lynx Crowe
|
---|
| 5 |
|
---|
| 6 | Uses definitions from: "graphdef.h", "midas.h", "vsdd.h"
|
---|
| 7 | =============================================================================
|
---|
| 8 | */
|
---|
| 9 |
|
---|
| 10 | struct asgent { /* assignment table library entry structure */
|
---|
| 11 |
|
---|
| 12 | short a_mop; /* MIDI output port */
|
---|
| 13 | short a_tun; /* tuning table number */
|
---|
| 14 |
|
---|
| 15 | short a_aux; /* auxiliary control state */
|
---|
| 16 | short a_intn; /* intensity */
|
---|
| 17 | short a_rate; /* rate */
|
---|
| 18 | short a_dpth; /* depth */
|
---|
| 19 |
|
---|
| 20 | short a_i2grp[12]; /* instrument to group table */
|
---|
| 21 | short a_gpdyn[12]; /* group dynamics table */
|
---|
| 22 |
|
---|
| 23 | short a_v2grp[12]; /* voice to group table */
|
---|
| 24 | short a_mctln[4]; /* MIDI controller number table */
|
---|
| 25 | short a_g2prt[12][2]; /* group to port and channel table */
|
---|
| 26 | short a_k2grp[88]; /* port 1 key to group assigment table */
|
---|
| 27 |
|
---|
| 28 | char a_name[16]; /* assignment table name */
|
---|
| 29 | };
|
---|
| 30 |
|
---|
| 31 | #define ASGOBJ 8 /* display object number */
|
---|
| 32 | #define ASGPRI 8 /* display object priority */
|
---|
| 33 |
|
---|
| 34 | #define ASGNFL (V_RES3) /* display object flags */
|
---|
| 35 |
|
---|
| 36 | #define AK_BASE 158 /* top y value of group 1 select line */
|
---|
| 37 |
|
---|
| 38 | #define AKSTART 19718 /* word offset for keyboard icon */
|
---|
| 39 |
|
---|
| 40 | /* |
---|
| 41 |
|
---|
| 42 | */
|
---|
| 43 |
|
---|
| 44 | #define AK_CURS 1 /* cursor color */
|
---|
| 45 | #define AK_BORD 10 /* display border color */
|
---|
| 46 |
|
---|
| 47 | #define AK_SELC 15 /* selected key line color */
|
---|
| 48 | #define AK_SELC2 13 /* first selected key color */
|
---|
| 49 |
|
---|
| 50 | #define AK_WKEYT 6 /* top keyboard icon white key color */
|
---|
| 51 | #define AK_BKEYT 7 /* top keyboard icon black key color */
|
---|
| 52 | #define AK_WKEYB 8 /* bot keyboard icon white key color */
|
---|
| 53 | #define AK_BKEYB 9 /* bot keyboard icon black key color */
|
---|
| 54 | #define AK_LINE 14 /* keyboard icon line color */
|
---|
| 55 |
|
---|
| 56 | #define AK_MODC 13 /* assignment table modified color */
|
---|
| 57 | #define AK_ENTRY 12 /* data entry hilite color */
|
---|
| 58 |
|
---|
| 59 | #define ACFBX00 11 /* foreground color */
|
---|
| 60 | #define ACFBX01 11 /* foreground color */
|
---|
| 61 | #define ACFBX02 11 /* foreground color */
|
---|
| 62 | #define ACFBX03 11 /* foreground color */
|
---|
| 63 | #define ACFBX04 11 /* foreground color */
|
---|
| 64 | #define ACFBX05 11 /* foreground color */
|
---|
| 65 | #define ACFBX06 11 /* foreground color */
|
---|
| 66 | #define ACFBX07 11 /* foreground color */
|
---|
| 67 | #define ACFBX08 11 /* foreground color */
|
---|
| 68 | #define ACFBX09 11 /* foreground color */
|
---|
| 69 | #define ACFBX10 11 /* foreground color */
|
---|
| 70 |
|
---|
| 71 | #define ACBBX00 2 /* background color */
|
---|
| 72 | #define ACBBX01 2 /* background color */
|
---|
| 73 | #define ACBBX02 2 /* background color */
|
---|
| 74 | #define ACBBX03 4 /* background color */
|
---|
| 75 | #define ACBBX04 3 /* background color */
|
---|
| 76 | #define ACBBX05 2 /* background color */
|
---|
| 77 | #define ACBBX06 3 /* background color */
|
---|
| 78 | #define ACBBX07 5 /* background color */
|
---|
| 79 | #define ACBBX08 3 /* background color */
|
---|
| 80 | #define ACBBX09 4 /* background color */
|
---|
| 81 | #define ACBBX10 2 /* background color */
|
---|