chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / libsympathy.c
index e86c088098a87a4b78860bf40d64be0e723a88b1..8f28c17aa2e73c3e11ae257bb04bb02176de8027 100644 (file)
@@ -11,6 +11,15 @@ static char rcsid[] =
 
 /*
  * $Log$
+ * Revision 1.7  2008/02/07 00:39:13  james
+ * *** empty log message ***
+ *
+ * Revision 1.6  2008/02/06 20:26:58  james
+ * *** empty log message ***
+ *
+ * Revision 1.5  2008/02/06 17:53:28  james
+ * *** empty log message ***
+ *
  * Revision 1.4  2008/02/04 20:23:55  james
  * *** empty log message ***
  *
@@ -29,65 +38,85 @@ static char rcsid[] =
 #include "project.h"
 
 struct termios old = { 0 };
+static int had_winch = 0;
 
 static void
-foo (int not)
+quit (int not)
 {
   tcsetattr (0, TCSANOW, &old);
   exit (1);
 }
 
+static void
+winch (int not)
+{
+  had_winch++;
+}
+
 
 void
 testy (void)
 {
   struct termios raw = { 0 };
-  VT102 v = { 0 };
   ANSI a = { 0 };
   fd_set rfd;
   int fd;
   char c;
+  TTY *t;
+  VT102 *v;
 
 
-  signal (SIGINT, foo);
+  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 = 1;
-
-  vt102_reset (&v);
+  a.fd = 0;
   ansi_reset (&a);
 
 
-  fd = open_fd_to_bash ();
+  t=tty_new_test();  
+  v=vt102_new(t);
 
   FD_ZERO (&rfd);
-
-
   for (;;)
     {
-      FD_SET (fd, &rfd);
-      FD_SET (0, &rfd);
-      if (select (fd + 1, &rfd, NULL, NULL, NULL) <= 0)
-        continue;
-      if (FD_ISSET (0, &rfd))
-        {
-          if ((read (0, &c, 1) <= 0) || (c == 3))
-            break;
+      struct timeval tv = { 0, 100000 };
+
+      FD_SET (t->fd, &rfd);
+      FD_SET (a.fd, &rfd);
+      select (t->fd + 1, &rfd, NULL, NULL, &tv);
 
-          write (fd, &c, 1);
+#if 0
+      if (FD_ISSET (a.fd, &rfd))
+        {
         }
-      if (FD_ISSET (fd, &rfd))
+#endif
+       if (ansi_dispatch(&a,v))
+               break;
+
+      if (FD_ISSET (t->fd, &rfd)) {
+          if (vt102_dispatch (v)) break;
+      }
+
+      if (had_winch)
         {
-          if ((read (fd, &c, 1) <= 0))
-            break;
-          //write (1, &c, 1);
-          vt102_parse_char (&v, c);
-          ansi_draw (&a, &v.crt);
+          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");