source: buchla-68k/include/asgdsp.h@ f7428b1

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

Started to rework include files.

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