X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=demo%2Fboxshell.c;h=00a11a099d4c2d98d1eba162cd5fd1cdc7a7c479;hb=800cf6341f10d4c927c5ee77a5351b684a431ac1;hp=dbb47e4690644720f2e002173841a7bfa1108dd6;hpb=f38bb36465858ae6af3776175010e8c09e70f980;p=apps%2Fmadtty.git diff --git a/demo/boxshell.c b/demo/boxshell.c index dbb47e4..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,19 +21,24 @@ 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(void) { - struct timeval next = { 0, 0 }; madtty_t *rt; - int pos = 0; - char buf[BUFSIZ]; + int dirty = 0; - signal(SIGCHLD, sigchld); + signal(SIGCHLD, handler); + signal(SIGWINCH, handler); madtty_initialize(); getmaxyx(stdscr, screen_h, screen_w); @@ -47,34 +55,43 @@ int main(void) /* keep reading keypresses from the user and passing them to the terminal; * also, redraw the terminal to the window at each iteration */ - 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) { - if (madtty_process(rt)) - break; + 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; } }