From 4f7b9a12312b6374bb9e68b6fb0da259c307c1d8 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 5 Nov 2004 01:08:30 +0000 Subject: [PATCH] Commit the first version of the curses interface. --- io.c | 201 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 201 insertions(+) create mode 100644 io.c diff --git a/io.c b/io.c new file mode 100644 index 0000000..572d395 --- /dev/null +++ b/io.c @@ -0,0 +1,201 @@ +#include +#include +#include +#include +#include +#include +#ifdef MSDOS +#include +#endif +#include + +#include "sst.h" + +static int linecount; /* for paging */ +static int screenheight = 24, screenwidth = 80; +static int curses = FALSE; + +static void outro(int sig) { +/* wrap up, either normally or due to signal */ + if (curses) { + clear(); + (void)refresh(); + (void)resetterm(); + //(void)echo(); + (void)endwin(); + } +} + +static void fastexit(int sig) { + outro(sig); + putchar('\n'); + exit(0); +} + +void iostart(int usecurses) { + (void) signal(SIGINT, fastexit); + (void) signal(SIGINT, fastexit); +#ifdef SIGIOT + (void) signal(SIGIOT,fastexit); /* for assert(3) */ +#endif /* SIGIOT */ + if(signal(SIGQUIT,SIG_IGN) != SIG_IGN) + (void)signal(SIGQUIT,fastexit); + + if (curses = usecurses) { + (void)initscr(); +#ifdef KEY_MIN + keypad(stdscr, TRUE); +#endif /* KEY_MIN */ + (void)saveterm(); + (void)nonl(); + (void)cbreak(); + //(void)noecho(); + scrollok(stdscr, TRUE); + getmaxyx(stdscr, screenheight, screenwidth); + } else { + char *LINES = getenv("LINES"); + if (LINES) + screenheight = atoi(LINES); + } +} + +void ioend(void) { + outro(0); +} + +void clearscreen(void) { + /* Somehow we need to clear the screen */ +#ifdef __BORLANDC__ + extern void clrscr(void); + clrscr(); +#else + if (curses) { + wclear(stdscr); + wrefresh(stdscr); + } else { + // proutn("\033[2J"); /* Hope for an ANSI display */ + /* much more in that old-TTY spirit to just throw linefeeds */ + int i; + for (i = 0; i < screenheight; i++) + putchar('\n'); + } +#endif +} + +void pause(int i) { + char buf[BUFSIZ], *prompt; + if (i==1) { + if (skill > 2) + prompt = "[ANOUNCEMENT ARRIVING...]"; + else + prompt = "[IMPORTANT ANNOUNCEMENT ARRIVING -- PRESS ENTER TO CONTINUE]"; + } + else { + if (skill > 2) + prompt = "[CONTINUE?]"; + else + prompt = "[PRESS ENTER TO CONTINUE]"; + + } + if (curses) { + waddch('\n'); + waddstr(stdscr, prompt); + wgetnstr(stdscr, buf, sizeof(buf)); + wclear(stdscr); + wrefresh(stdscr); + } else { + putchar('\n'); + prout(prompt); + fgets(buf, sizeof(buf), stdin); + if (i != 0) { + clearscreen(); + } + linecount = 0; + } +} + + +void skip(int i) { + while (i-- > 0) { + if (curses) { + int y, x; + getyx(stdscr, y, x); + if (y == screenheight-1) + pause(0); + else + waddch(stdscr, '\n'); + } else { + linecount++; + if (linecount >= screenheight) + pause(0); + else + putchar('\n'); + } + } +} + +void proutn(char *fmt, ...) { + va_list ap; + va_start(ap, fmt); + if (curses) { + vw_printw(stdscr, fmt, ap); + wrefresh(stdscr); + } else + vprintf(fmt, ap); + va_end(ap); +} + +void prout(char *fmt, ...) { + va_list ap; + va_start(ap, fmt); + if (curses) { + vw_printw(stdscr, fmt, ap); + wrefresh(stdscr); + } else + vprintf(fmt, ap); + va_end(ap); + skip(1); +} + +void proutc(char *line) { + line[strlen(line)-1] = '\0'; + if (curses) + waddstr(stdscr, line); + else + fputs(line, stdout); + skip(1); +} + +void prouts(char *fmt, ...) { + clock_t endTime; + char *s, buf[BUFSIZ]; + /* print slowly! */ + va_list ap; + va_start(ap, fmt); + vsprintf(buf, fmt, ap); + va_end(ap); + skip(1); + for (s = buf; *s; s++) { + endTime = clock() + CLOCKS_PER_SEC*0.05; + while (clock() < endTime) continue; + if (curses) { + waddch(stdscr, *s); + wrefresh(stdscr); + } + else { + putchar(*s); + fflush(stdout); + } + } +} + +void getline(char *line, int max) +{ + if (curses) { + wgetnstr(stdscr, line, max); + wrefresh(stdscr); + } else { + fgets(line, max, stdin); + line[strlen(line)-1] = '\0'; + } +} -- 2.31.1