X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=demo%2Fboxshell.c;h=00a11a099d4c2d98d1eba162cd5fd1cdc7a7c479;hb=800cf6341f10d4c927c5ee77a5351b684a431ac1;hp=b3c8f2d9d033c20c1357f901962c1492e55ef7c3;hpb=058608e1586891e4e40beb8785a3317957658365;p=apps%2Fmadtty.git diff --git a/demo/boxshell.c b/demo/boxshell.c index b3c8f2d..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,17 +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 dirty = 0; - signal(SIGCHLD, sigchld); + signal(SIGCHLD, handler); + signal(SIGWINCH, handler); madtty_initialize(); getmaxyx(stdscr, screen_h, screen_w); @@ -47,31 +57,41 @@ int main(void) * also, redraw the terminal to the window at each iteration */ 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; } }