1 | /*
|
---|
2 | =============================================================================
|
---|
3 | etsnbt.c -- beat field handlers
|
---|
4 | Version 4 -- 1988-07-28 -- D.N. Lynx Crowe
|
---|
5 | =============================================================================
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "fields.h"
|
---|
9 | #include "hwdefs.h"
|
---|
10 | #include "graphdef.h"
|
---|
11 | #include "vsdd.h"
|
---|
12 | #include "vsddsw.h"
|
---|
13 | #include "stddefs.h"
|
---|
14 |
|
---|
15 | #include "midas.h"
|
---|
16 | #include "scdsp.h"
|
---|
17 | #include "instdsp.h"
|
---|
18 |
|
---|
19 | extern unsigned *obj8;
|
---|
20 |
|
---|
21 | extern short clkrun;
|
---|
22 | extern short insmode;
|
---|
23 | extern short stccol;
|
---|
24 |
|
---|
25 | extern long t_cur;
|
---|
26 |
|
---|
27 | /* |
---|
28 |
|
---|
29 | */
|
---|
30 |
|
---|
31 | /*
|
---|
32 | =============================================================================
|
---|
33 | et_snbt() -- load edit buffer
|
---|
34 | =============================================================================
|
---|
35 | */
|
---|
36 |
|
---|
37 | short
|
---|
38 | et_snbt(n)
|
---|
39 | short n;
|
---|
40 | {
|
---|
41 | register long curfr, beat;
|
---|
42 |
|
---|
43 | if (clkrun) {
|
---|
44 |
|
---|
45 | ebflag = FALSE;
|
---|
46 | return(FAILURE);
|
---|
47 | }
|
---|
48 |
|
---|
49 | curfr = t_cur;
|
---|
50 | beat = curfr / 48;
|
---|
51 |
|
---|
52 | sprintf(ebuf, "%05ld", beat);
|
---|
53 | ebflag = TRUE;
|
---|
54 |
|
---|
55 | return(SUCCESS);
|
---|
56 | }
|
---|
57 |
|
---|
58 | /*
|
---|
59 | =============================================================================
|
---|
60 | ef_snbt() -- parse edit buffer
|
---|
61 | =============================================================================
|
---|
62 | */
|
---|
63 |
|
---|
64 | short
|
---|
65 | ef_snbt(n)
|
---|
66 | short n;
|
---|
67 | {
|
---|
68 | register long ival;
|
---|
69 | register short i;
|
---|
70 |
|
---|
71 | if (clkrun)
|
---|
72 | return(FAILURE);
|
---|
73 |
|
---|
74 | ival = 0L;
|
---|
75 |
|
---|
76 | for (i = 0; i < 5; i++)
|
---|
77 | ival = (ival * 10) + (ebuf[i] - '0');
|
---|
78 |
|
---|
79 | ebflag = FALSE;
|
---|
80 |
|
---|
81 | if (insmode) {
|
---|
82 |
|
---|
83 | icancel();
|
---|
84 | dsimode();
|
---|
85 | }
|
---|
86 |
|
---|
87 | sc_goto(fc_val = ival * 48L);
|
---|
88 | return(SUCCESS);
|
---|
89 | }
|
---|
90 |
|
---|
91 | /* |
---|
92 |
|
---|
93 | */
|
---|
94 |
|
---|
95 | /*
|
---|
96 | =============================================================================
|
---|
97 | rd_snbt() -- (re)display the field
|
---|
98 | =============================================================================
|
---|
99 | */
|
---|
100 |
|
---|
101 | short
|
---|
102 | rd_snbt(n)
|
---|
103 | short n;
|
---|
104 | {
|
---|
105 | register long curfr, beat;
|
---|
106 | char buf[8];
|
---|
107 |
|
---|
108 | curfr = t_cur;
|
---|
109 | beat = curfr / 48;
|
---|
110 | sprintf(buf, "%05ld", beat);
|
---|
111 |
|
---|
112 | if (v_regs[5] & 0x0180)
|
---|
113 | vbank(0);
|
---|
114 |
|
---|
115 | vputs(obj8, 0, 11, buf, SDW00ATR);
|
---|
116 |
|
---|
117 | return(SUCCESS);
|
---|
118 | }
|
---|
119 |
|
---|
120 | /* |
---|
121 |
|
---|
122 | */
|
---|
123 |
|
---|
124 | /*
|
---|
125 | =============================================================================
|
---|
126 | nd_snbt() -- data entry function
|
---|
127 | =============================================================================
|
---|
128 | */
|
---|
129 |
|
---|
130 | short
|
---|
131 | nd_snbt(n, k)
|
---|
132 | register short n, k;
|
---|
133 | {
|
---|
134 | register short ec;
|
---|
135 |
|
---|
136 | if (clkrun)
|
---|
137 | return(FAILURE);
|
---|
138 |
|
---|
139 | ec = stccol - cfetp->flcol;
|
---|
140 | ebuf[ec] = k + '0';
|
---|
141 |
|
---|
142 | if (v_regs[5] & 0x0180)
|
---|
143 | vbank(0);
|
---|
144 |
|
---|
145 | vputc(obj8, 0, stccol, k + '0', SDW00DEA);
|
---|
146 | advscur();
|
---|
147 |
|
---|
148 | return(SUCCESS);
|
---|
149 | }
|
---|