X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=sympathy.git;a=blobdiff_plain;f=src%2Flibsympathy.c;h=35e29ccf08f1916fb17a40b275ed9f03125d6a93;hp=ffe8d1679cb7654d2d77694f3f030739557ceff6;hb=a17e36f776907ddb4f582912243f5359d6e43107;hpb=c1ef27cf4cdfca6e978a7ee8eb3ec6fd6e6e9e03 diff --git a/src/libsympathy.c b/src/libsympathy.c index ffe8d16..35e29cc 100644 --- a/src/libsympathy.c +++ b/src/libsympathy.c @@ -1,16 +1,37 @@ -/* +/* * libsympathy.c: * - * Copyright (c) 2008 James McKenzie , + * Copyright (c) 2008 James McKenzie , * All rights reserved. * */ static char rcsid[] = - "$Id$"; + "$Id: libsympathy.c,v 1.19 2008/03/07 12:37:04 james Exp $"; -/* - * $Log$ +/* + * $Log: libsympathy.c,v $ + * Revision 1.19 2008/03/07 12:37:04 james + * *** empty log message *** + * + * Revision 1.18 2008/02/14 00:57:58 james + * *** empty log message *** + * + * Revision 1.17 2008/02/13 16:57:29 james + * *** empty log message *** + * + * Revision 1.16 2008/02/13 09:12:21 james + * *** empty log message *** + * + * Revision 1.15 2008/02/13 01:08:18 james + * *** empty log message *** + * + * Revision 1.14 2008/02/12 22:36:46 james + * *** empty log message *** + * + * Revision 1.13 2008/02/08 15:06:42 james + * *** empty log message *** + * * Revision 1.12 2008/02/07 13:26:35 james * *** empty log message *** * @@ -51,100 +72,3 @@ static char rcsid[] = */ #include "project.h" - -struct termios old = { 0 }; -static int had_winch = 0; - -static void -quit (int not) -{ - tcsetattr (0, TCSANOW, &old); - exit (1); -} - -static void -winch (int not) -{ - had_winch++; -} - - -void -testy (void) -{ - struct termios raw = { 0 }; - ANSI a = { 0 }; - fd_set rfd; - int fd; - char c; - TTY *t; - VT102 *v; - int i; - - - signal (SIGINT, quit); - { - struct sigaction sa = { 0 }; - - sa.sa_handler = winch; - sa.sa_flags = SA_RESTART; - sigaction (SIGWINCH, &sa, NULL); - } - - - tcgetattr (0, &old); - tcgetattr (0, &raw); - cfmakeraw (&raw); - tcsetattr (0, TCSANOW, &raw); - - a.fd = 0; - ansi_reset (&a); - - - t = tty_new_test (); - v = vt102_new (); - - FD_ZERO (&rfd); - for (;;) - { - struct timeval tv = { 0, 100000 }; - - FD_SET (t->fd, &rfd); - FD_SET (a.fd, &rfd); - select (t->fd + 1, &rfd, NULL, NULL, &tv); - -#if 0 - if (FD_ISSET (a.fd, &rfd)) - { - } -#endif - - switch (ansi_dispatch (&a, v, t)) - { - case -1: - break; - case 1: - ansi_getsize (&a); - ansi_reset (&a); - ansi_draw (&a, &v->crt); - break; - } - - if (FD_ISSET (t->fd, &rfd)) - { - if (vt102_dispatch_one (v, t)) - break; - } - - if (had_winch) - { - had_winch = 0; - ansi_getsize (&a); - ansi_reset (&a); - ansi_draw (&a, &v->crt); - } - ansi_draw (&a, &v->crt); - } - tcsetattr (0, TCSANOW, &old); - printf ("QUAT\n"); -}