blob: 22c0bcdd14aadf69dfef0e10aceaf4a6c2120d47 (
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
91
92
93
94
|
/*
* ansi.h:
*
* Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
* All rights reserved.
*
*/
/*
* $Id$
*/
/*
* $Log$
* Revision 1.11 2008/02/20 20:16:07 james
* *** empty log message ***
*
* Revision 1.10 2008/02/20 19:44:37 james
* @@
*
* Revision 1.9 2008/02/20 19:36:06 james
* @@
*
* Revision 1.8 2008/02/20 19:25:09 james
* *** empty log message ***
*
* Revision 1.7 2008/02/13 16:57:29 james
* *** empty log message ***
*
* Revision 1.6 2008/02/13 01:08:18 james
* *** empty log message ***
*
* Revision 1.5 2008/02/07 12:16:04 james
* *** empty log message ***
*
* Revision 1.4 2008/02/07 00:43:27 james
* *** empty log message ***
*
* Revision 1.3 2008/02/07 00:39:13 james
* *** empty log message ***
*
* Revision 1.2 2008/02/06 11:30:37 james
* *** empty log message ***
*
* Revision 1.1 2008/02/03 23:31:25 james
* *** empty log message ***
*
*/
#ifndef __ANSI_H__
#define __ANSI_H__
#define ANSI_INVAL -1
#define ANSI_ESCAPE_BUF_LEN 10
#define ANSI_ESCAPE_TIMEOUT 100000 /*in ms */
typedef struct
{
int in_escape;
struct timeval last_escape;
char escape_buf[ANSI_ESCAPE_BUF_LEN];
int escape_ptr;
} ANSI_Parser;
struct CRT_struct;
struct Context_struct;
typedef struct ANSI_struct
{
ANSI_Parser parser;
TTY *terminal;
CRT crt;
CRT_Pos pos;
CRT_Pos size;
int hide_cursor;
int attr;
int color;
int history_ptr;
FILE *file;
int (*dispatch)(struct ANSI_struct *,struct Context_struct *);
void (*update)(struct ANSI_struct *,struct Context_struct *);
void (*one_shot)(struct ANSI_struct *,struct CRT_struct *);
void (*reset)(struct ANSI_struct *,struct CRT_struct *);
void (*terminal_reset)(struct ANSI_struct *);
void (*close)(struct ANSI_struct *);
} ANSI;
#endif /* __ANSI_H__ */
|