[f40a309] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | etagch.c -- assignment editor - group to channel number field handlers
|
---|
| 4 | Version 6 -- 1987-12-10 -- D.N. Lynx Crowe
|
---|
| 5 | =============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[b28a12e] | 8 | #include "ram.h"
|
---|
[f40a309] | 9 |
|
---|
| 10 | /*
|
---|
| 11 | =============================================================================
|
---|
| 12 | et_agch() -- load the edit buffer
|
---|
| 13 | =============================================================================
|
---|
| 14 | */
|
---|
| 15 |
|
---|
[7258c6a] | 16 | int16_t et_agch(int16_t n)
|
---|
[f40a309] | 17 | {
|
---|
[7258c6a] | 18 | register int16_t grp;
|
---|
[f40a309] | 19 |
|
---|
| 20 | grp = 0x00FF & (n >> 8);
|
---|
| 21 |
|
---|
| 22 | numblk(ebuf, grp2prt[grp][1]);
|
---|
| 23 | ebflag = TRUE;
|
---|
| 24 |
|
---|
| 25 | return(SUCCESS);
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | /*
|
---|
| 29 | =============================================================================
|
---|
| 30 | ef_agch() -- parse (unload) the edit buffer
|
---|
| 31 | =============================================================================
|
---|
| 32 | */
|
---|
| 33 |
|
---|
[7258c6a] | 34 | int16_t ef_agch(int16_t n)
|
---|
[f40a309] | 35 | {
|
---|
[7258c6a] | 36 | register int16_t tmpval, grp, i;
|
---|
[f40a309] | 37 |
|
---|
| 38 | grp = 0x00FF & (n >> 8);
|
---|
| 39 |
|
---|
| 40 | ebuf[2] = '\0'; /* terminate the string in ebuf */
|
---|
| 41 | ebflag = FALSE;
|
---|
| 42 | tmpval = 0;
|
---|
| 43 |
|
---|
| 44 | if ((ebuf[0] EQ ' ') AND (ebuf[1] EQ ' ')) {
|
---|
| 45 |
|
---|
| 46 | tmpval = -1;
|
---|
| 47 |
|
---|
| 48 | } else {
|
---|
| 49 |
|
---|
| 50 | for (i = 0; i < 2; i++) {
|
---|
| 51 |
|
---|
| 52 | if (ebuf[i] EQ ' ')
|
---|
| 53 | ebuf[i] = '0';
|
---|
| 54 |
|
---|
| 55 | tmpval = (tmpval * 10) + (ebuf[i] - '0');
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | if ((tmpval EQ 0) OR (tmpval GT 16))
|
---|
| 59 | return(FAILURE);
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | grp2prt[grp][1] = tmpval;
|
---|
| 63 |
|
---|
| 64 | modasg();
|
---|
| 65 | return(SUCCESS);
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | /*
|
---|
| 69 | =============================================================================
|
---|
| 70 | rd_agch() -- (re)display the field
|
---|
| 71 | =============================================================================
|
---|
| 72 | */
|
---|
| 73 |
|
---|
[7258c6a] | 74 | int16_t rd_agch(int16_t nn)
|
---|
[f40a309] | 75 | {
|
---|
[7258c6a] | 76 | register int16_t n, grp;
|
---|
| 77 | int8_t buf[4];
|
---|
[f40a309] | 78 |
|
---|
| 79 | n = 0x00FF & nn;
|
---|
| 80 | grp = 0x00FF & (nn >> 8);
|
---|
| 81 |
|
---|
| 82 | vbank(0);
|
---|
| 83 | vcputsv(asgob, 64, adbox[n][4], adbox[n][5],
|
---|
| 84 | cfetp->frow, cfetp->flcol, numblk(buf, grp2prt[grp][1]), 14);
|
---|
| 85 |
|
---|
| 86 | return(SUCCESS);
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | /*
|
---|
| 90 | =============================================================================
|
---|
| 91 | nd_agch() -- handle new data entry
|
---|
| 92 | =============================================================================
|
---|
| 93 | */
|
---|
| 94 |
|
---|
[7258c6a] | 95 | int16_t nd_agch(int16_t nn, int16_t k)
|
---|
[f40a309] | 96 | {
|
---|
[7258c6a] | 97 | register int16_t n;
|
---|
[f40a309] | 98 |
|
---|
| 99 | n = nn & 0xFF;
|
---|
[432327d] | 100 | ebuf[stccol - cfetp->flcol] = (int8_t)(k + '0');
|
---|
[f40a309] | 101 | ebuf[2] = '\0';
|
---|
| 102 |
|
---|
[432327d] | 103 | dspbuf[0] = (int8_t)(k + '0');
|
---|
[f40a309] | 104 | dspbuf[1] = '\0';
|
---|
| 105 |
|
---|
| 106 | vbank(0);
|
---|
| 107 | vcputsv(asgob, 64, AK_ENTRY, adbox[n][5],
|
---|
| 108 | stcrow, stccol, dspbuf, 14);
|
---|
| 109 |
|
---|
| 110 | advacur();
|
---|
| 111 | return(SUCCESS);
|
---|
| 112 | }
|
---|
| 113 |
|
---|
[6262b5c] | 114 |
|
---|