X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flibsympathy.c;h=35e29ccf08f1916fb17a40b275ed9f03125d6a93;hb=refs%2Fheads%2Fmaster;hp=7e6d78beedae5d6f8f84f50dc24354500653487c;hpb=89fa7c69158bf37823875c61345024308b156772;p=sympathy.git diff --git a/src/libsympathy.c b/src/libsympathy.c index 7e6d78b..35e29cc 100644 --- a/src/libsympathy.c +++ b/src/libsympathy.c @@ -1,16 +1,28 @@ -/* +/* * 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 *** * @@ -60,79 +72,3 @@ static char rcsid[] = */ #include "project.h" - - - -void -testy (void) -{ - struct termios raw = { 0 }; - ANSI a = { 0 }; - Context c; - -#if 0 - fd_set rfd; - int fd; - char c; - - TTY *t; - VT102 *v; - History *h; - int i; -#endif - - - - ansi_reset (&a); - - - c.t = tty_new_test (); - c.v = vt102_new (); - - a.terminal=terminal_open(0,1); - - - 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, h)) - 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"); -}