123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- #include <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <string.h>
- #include <sys/ioctl.h>
- #include <sys/time.h>
- #include <sys/types.h>
- #include <sys/select.h>
- #include <errno.h>
- #include <tinyrl/vt100.h>
- struct vt100_s {
- FILE *istream;
- FILE *ostream;
- };
- typedef struct {
- const char *sequence;
- vt100_esc_e code;
- } vt100_decode_t;
- // This table maps the vt100 escape codes to an enumeration
- static vt100_decode_t esc_map[] = {
- {"[A", VT100_CURSOR_UP},
- {"[B", VT100_CURSOR_DOWN},
- {"[C", VT100_CURSOR_RIGHT},
- {"[D", VT100_CURSOR_LEFT},
- {"[H", VT100_HOME},
- {"[1~", VT100_HOME},
- {"[F", VT100_END},
- {"[4~", VT100_END},
- {"[2~", VT100_INSERT},
- {"[3~", VT100_DELETE},
- {"[5~", VT100_PGUP},
- {"[6~", VT100_PGDOWN},
- };
- vt100_t *vt100_new(FILE *istream, FILE *ostream)
- {
- vt100_t *vt100 = NULL;
- vt100 = malloc(sizeof(vt100_t));
- if (!vt100)
- return NULL;
- // Initialize
- vt100->istream = istream;
- vt100->ostream = ostream;
- return vt100;
- }
- void vt100_free(vt100_t *vt100)
- {
- free(vt100);
- }
- FILE *vt100_istream(const vt100_t *vt100)
- {
- if (!vt100)
- return NULL;
- return vt100->istream;
- }
- void vt100_set_istream(vt100_t *vt100, FILE *istream)
- {
- if (!vt100)
- return;
- vt100->istream = istream;
- }
- FILE *vt100_ostream(const vt100_t *vt100)
- {
- if (!vt100)
- return NULL;
- return vt100->ostream;
- }
- void vt100_set_ostream(vt100_t *vt100, FILE *ostream)
- {
- if (!vt100)
- return;
- vt100->ostream = ostream;
- }
- vt100_esc_e vt100_esc_decode(const vt100_t *vt100, const char *esc_seq)
- {
- vt100_esc_e result = VT100_UNKNOWN;
- unsigned int i = 0;
- for (i = 0; i < (sizeof(esc_map) / sizeof(vt100_decode_t)); i++) {
- if (strcmp(esc_map[i].sequence, esc_seq))
- continue;
- result = esc_map[i].code;
- break;
- }
- vt100 = vt100; // Happy compiler
- return result;
- }
- int vt100_printf(const vt100_t *vt100, const char *fmt, ...)
- {
- va_list args;
- int len = 0;
- // If ostream is not set don't consider it as a error. Consider it
- // as a printf to NULL.
- if (!vt100 || !vt100->ostream)
- return 0;
- va_start(args, fmt);
- len = vt100_vprintf(vt100, fmt, args);
- va_end(args);
- return len;
- }
- int vt100_vprintf(const vt100_t *vt100, const char *fmt, va_list args)
- {
- if (!vt100 || !vt100->ostream)
- return 0;
- return vfprintf(vt100->ostream, fmt, args);
- }
- int vt100_getchar(const vt100_t *vt100, unsigned char *c)
- {
- if (!vt100 || !vt100->istream || !c) {
- errno = ENOENT;
- return -1;
- }
- return read(fileno(vt100->istream), c, 1);
- }
- int vt100_oflush(const vt100_t *vt100)
- {
- if (!vt100 || !vt100->ostream)
- return 0;
- return fflush(vt100->ostream);
- }
- int vt100_ierror(const vt100_t *vt100)
- {
- if (!vt100 || !vt100->istream)
- return 0;
- return ferror(vt100->istream);
- }
- int vt100_oerror(const vt100_t *vt100)
- {
- if (!vt100 || !vt100->ostream)
- return 0;
- return ferror(vt100->ostream);
- }
- int vt100_ieof(const vt100_t *vt100)
- {
- if (!vt100 || !vt100->istream)
- return 0;
- return feof(vt100->istream);
- }
- int vt100_eof(const vt100_t *vt100)
- {
- if (!vt100 || !vt100->istream)
- return 0;
- return feof(vt100->istream);
- }
- size_t vt100_width(const vt100_t *vt100)
- {
- #ifdef TIOCGWINSZ
- struct winsize ws = {};
- int res = 0;
- #endif
- const size_t default_width = 80;
- if(!vt100 || !vt100->ostream)
- return default_width;
- #ifdef TIOCGWINSZ
- ws.ws_col = 0;
- res = ioctl(fileno(vt100->ostream), TIOCGWINSZ, &ws);
- if (res || (0 == ws.ws_col))
- return default_width;
- return (size_t)ws.ws_col;
- #else
- return default_width;
- #endif
- }
- size_t vt100_height(const vt100_t *vt100)
- {
- #ifdef TIOCGWINSZ
- struct winsize ws = {};
- int res = 0;
- #endif
- const size_t default_height = 25;
- if(!vt100 || !vt100->ostream)
- return default_height;
- #ifdef TIOCGWINSZ
- ws.ws_row = 0;
- res = ioctl(fileno(vt100->ostream), TIOCGWINSZ, &ws);
- if (res || (0 == ws.ws_row))
- return default_height;
- return (size_t)ws.ws_row;
- #else
- return default_height;
- #endif
- }
- void vt100_ding(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c", KEY_BEL);
- vt100_oflush(vt100);
- }
- void vt100_attr_reset(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[0m", KEY_ESC);
- }
- void vt100_attr_bright(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[1m", KEY_ESC);
- }
- void vt100_attr_dim(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[2m", KEY_ESC);
- }
- void vt100_attr_underscore(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[4m", KEY_ESC);
- }
- void vt100_attr_blink(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[5m", KEY_ESC);
- }
- void vt100_attr_reverse(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[7m", KEY_ESC);
- }
- void vt100_attr_hidden(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[8m", KEY_ESC);
- }
- void vt100_erase_line(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[2K", KEY_ESC);
- }
- void vt100_clear_screen(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[2J", KEY_ESC);
- }
- void vt100_cursor_save(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c7", KEY_ESC); // VT100
- // vt100_printf(vt100, "%c[s", KEY_ESC); // ANSI
- }
- void vt100_cursor_restore(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c8", KEY_ESC); // VT100
- // vt100_printf(vt100, "%c[u", KEY_ESC); // ANSI
- }
- void vt100_cursor_forward(const vt100_t *vt100, size_t count)
- {
- vt100_printf(vt100, "%c[%dC", KEY_ESC, count);
- }
- void vt100_cursor_back(const vt100_t *vt100, size_t count)
- {
- vt100_printf(vt100, "%c[%dD", KEY_ESC, count);
- }
- void vt100_cursor_up(const vt100_t *vt100, size_t count)
- {
- vt100_printf(vt100, "%c[%dA", KEY_ESC, count);
- }
- void vt100_cursor_down(const vt100_t *vt100, size_t count)
- {
- vt100_printf(vt100, "%c[%dB", KEY_ESC, count);
- }
- void vt100_scroll_up(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%cD", KEY_ESC);
- }
- void vt100_scroll_down(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%cM", KEY_ESC);
- }
- void vt100_next_line(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%cE", KEY_ESC);
- }
- void vt100_cursor_home(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[H", KEY_ESC);
- }
- void vt100_erase(const vt100_t *vt100, size_t count)
- {
- vt100_printf(vt100, "%c[%dP", KEY_ESC, count);
- }
- void vt100_erase_down(const vt100_t *vt100)
- {
- vt100_printf(vt100, "%c[J", KEY_ESC);
- }
|