X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=demo%2Fboxshell.c;h=00a11a099d4c2d98d1eba162cd5fd1cdc7a7c479;hb=61754ad6e0733a15c837d3ba1c8255731df99c9e;hp=44a9d9c243eac2bca45668b4b7ab4945f30e67a9;hpb=7e9bf69df0c4b6cd9a94172e71d7c6a584341f52;p=apps%2Fmadtty.git diff --git a/demo/boxshell.c b/demo/boxshell.c index 44a9d9c..00a11a0 100644 --- a/demo/boxshell.c +++ b/demo/boxshell.c @@ -6,10 +6,13 @@ */ #include -#include + #include +#include #include +#include #include +#include #include #include @@ -18,45 +21,31 @@ static unsigned char getout = 0; static int screen_w, screen_h; static WINDOW *term_win; -void sigchld(int signo __attribute__((unused))) +void handler(int signo) { - getout = 1; + switch (signo) { + case SIGCHLD: + getout = 1; + break; + case SIGWINCH: + break; + } } -int main(int argc, char *argv[]) +int main(void) { - struct timeval next = { 0, 0 }; madtty_t *rt; - int i, j, ch, w, h, pos; - char buf[BUFSIZ]; - - signal(SIGCHLD, sigchld); - - w = 80; - h = 40; - if (argc > 1) { - char *p = argv[1]; - w = strtol(p, &p, 10); - if (*p++ == 'x') - h = strtol(p, &p, 10); - } + int dirty = 0; + + signal(SIGCHLD, handler); + signal(SIGWINCH, handler); madtty_initialize(); getmaxyx(stdscr, screen_h, screen_w); - /* paint the screen blue */ - attrset(COLOR_PAIR(004)); - for (i = 0; i < screen_h; i++) - for (j = 0; j < screen_w; j++) - addch(' '); - refresh(); - /* create a window with a frame */ - term_win = newwin(h, w, 2, 3); - mvwprintw(term_win, 0, 27, " Term In a Box "); - wrefresh(term_win); - - rt = madtty_create(h, w); + term_win = newwin(screen_h - 2, screen_w - 2, 1, 1); + rt = madtty_create(screen_h - 2, screen_w - 2); { const char *path = getenv("SHELL") ?: "/bin/sh"; const char *args[] = { path, "--login", NULL}; @@ -66,44 +55,43 @@ int main(int argc, char *argv[]) /* keep reading keypresses from the user and passing them to the terminal; * also, redraw the terminal to the window at each iteration */ - ch = '\0'; - pos = 0; while (!getout) { fd_set rfds; - struct timeval tv = { 0 , 1000 }, t; + struct timeval tv = { 0, 1000 * 1000 / 50 }; + int ch; FD_ZERO(&rfds); + FD_SET(0, &rfds); FD_SET(rt->pty, &rfds); if (select(rt->pty + 1, &rfds, NULL, NULL, &tv) > 0) { - int nb; - - nb = madtty_read(rt, buf + pos, sizeof(buf) - pos); - if (nb <= 0) - continue; - pos += nb; - - nb = madtty_inject(rt, buf, pos); - if (nb <= 0) - continue; - memmove(buf, buf + nb, pos - nb); - pos -= nb; + if (FD_ISSET(rt->pty, &rfds)) { + madtty_process(rt); + dirty = 1; + } } while ((ch = getch()) != ERR) { +#if 0 + if (ch == KEY_F(1)) { + struct winsize ws = { + .ws_row = --rt->rows, + .ws_col = --rt->cols, + }; + + erase(); + ioctl(rt->pty, TIOCSWINSZ, &ws); + wresize(term_win, rt->rows, rt->cols); + } +#endif madtty_keypress(rt, ch); /* pass the keypress for handling */ + dirty = 1; } - gettimeofday(&t, NULL); - if (timercmp(&t, &next, >=)) { + if (dirty) { madtty_draw(rt, term_win, 0, 0); wrefresh(term_win); - gettimeofday(&next, NULL); - next.tv_usec += 1000 * 1000 / 50; - if (next.tv_usec > 1000 * 1000) { - next.tv_usec -= 1000 * 1000; - next.tv_sec++; - } + dirty = 0; } }