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