1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
/* Dumb terminal driver, for I/O before we get into screen mode.
*
* $Id: dumbterm.c,v 1.28 2025/01/26 13:56:30 tom Exp $
*
*/
#include "estruct.h"
#include "edef.h"
static int this_col;
static int last_col;
/*
* If this is an ordinary dumb terminal, then it can have C1-controls, etc.,
* and we'll assume it can only handle POSIX.
*/
#if DISP_TERMCAP || DISP_CURSES
#define enc_MAX enc_POSIX
#else
#define enc_MAX enc_8BIT
#endif
static ENC_CHOICES my_encoding = enc_DEFAULT;
static void
flush_blanks(void)
{
if (last_col > 0) {
while (last_col++ < this_col)
(void) putchar(' ');
last_col = 0;
}
term.flush();
}
void
dumb_set_encoding(ENC_CHOICES code)
{
if (code > enc_MAX)
code = enc_MAX;
my_encoding = code;
}
ENC_CHOICES
dumb_get_encoding(void)
{
return my_encoding;
}
static void
dumb_kopen(void)
{
}
static void
dumb_kclose(void)
{
}
static int
dumb_getc(void)
{
flush_blanks();
return getchar();
}
static OUTC_DCL
dumb_putc(int c)
{
if (isSpace(c)) {
if (last_col == 0)
last_col = this_col;
} else {
flush_blanks();
(void) putchar(c);
}
this_col++;
OUTC_RET c;
}
static int
dumb_typahead(void)
{
return TRUE;
}
static void
dumb_flush(void)
{
(void) fflush(stdout);
}
/*ARGSUSED*/
static void
dumb_move(int row GCC_UNUSED, int col)
{
if (last_col == 0)
last_col = this_col;
if (col == 0) {
putchar('\r');
if (last_col != 0)
putchar('\n');
} else if (last_col > col) {
while (last_col-- > col)
putchar('\b');
} else if (last_col < col) {
while (last_col++ < col)
putchar(' ');
}
last_col = 0;
this_col = col;
}
static void
dumb_eeol(void)
{
}
static void
dumb_eeop(void)
{
}
/*ARGSUSED*/
static int
dumb_cres( /* change screen resolution */
const char *res GCC_UNUSED)
{
return (FALSE);
}
/* ARGSUSED */
static void
dumb_rev(UINT state GCC_UNUSED)
{
}
static void
dumb_beep(void)
{
putchar(BEL);
}
TERM dumb_term =
{
1,
1,
80,
80,
dumb_set_encoding,
dumb_get_encoding,
NULL, /* use this to put us into raw mode */
NULL, /* ...and this, just in case we exit */
dumb_kopen,
dumb_kclose,
nullterm_clean,
nullterm_unclean,
nullterm_openup,
dumb_getc,
dumb_putc,
dumb_typahead,
dumb_flush,
dumb_move,
dumb_eeol,
dumb_eeop,
dumb_beep,
dumb_rev,
dumb_cres,
nullterm_setfore,
nullterm_setback,
nullterm_setpal,
nullterm_setccol,
nullterm_scroll,
nullterm_pflush,
nullterm_icursor,
nullterm_settitle,
nullterm_watchfd,
nullterm_unwatchfd,
nullterm_cursorvis,
nullterm_mopen,
nullterm_mclose,
nullterm_mevent,
};
|