aboutsummaryrefslogtreecommitdiffstats
path: root/src/libsympathy.c
blob: 013afc7f7361a7576321ff37e18ba8bb28892c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * libsympathy.c:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

static char rcsid[] =
  "$Id$";

/*
 * $Log$
 * Revision 1.3  2008/02/04 05:45:55  james
 * ::
 *
 * Revision 1.2  2008/02/04 02:05:06  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/03 16:20:24  james
 * *** empty log message ***
 *
 *
 */

#include "project.h"

struct termios old={0};

static void foo(int not)
{
  tcsetattr(0,TCSANOW,&old);
  exit(1);
}


void
testy (void)
{
  struct termios raw={0};
  VT102 v = { 0 };
  ANSI a = { 0 };
  fd_set rfd;
  int fd;
  char c;
 

  signal(SIGINT,foo);

  tcgetattr(0,&old);
  tcgetattr(0,&raw);
  cfmakeraw(&raw);
  tcsetattr(0,TCSANOW,&raw);

  a.fd = 1;

//vt102_reset(&v);
  ansi_reset (&a);


  fd = open_fd_to_bash ();

  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))
        {
          read (0, &c, 1);
	  if (c==3) {
  tcsetattr(0,TCSANOW,&old);
	  exit(1);
	}
			
          write (fd, &c, 1);
        }
      if (FD_ISSET (fd, &rfd))
        {
          read (fd, &c, 1);
          //write (1, &c, 1);
          vt102_parse_char (&v, c);
          ansi_draw (&a, &v.crt);
        }
    }
}