blob: d12182a4aa8cd88bf10c57bdc5689f3b9b74b752 (
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
/*
* vt102.h:
*
* Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
* All rights reserved.
*
*/
/*
* $Id$
*/
/*
* $Log$
* Revision 1.15 2008/02/24 00:42:53 james
* *** empty log message ***
*
* Revision 1.14 2008/02/23 11:48:37 james
* *** empty log message ***
*
* Revision 1.13 2008/02/22 17:07:00 james
* *** empty log message ***
*
* Revision 1.12 2008/02/22 14:51:54 james
* *** empty log message ***
*
* Revision 1.11 2008/02/08 15:06:42 james
* *** empty log message ***
*
* Revision 1.10 2008/02/07 12:16:04 james
* *** empty log message ***
*
* Revision 1.9 2008/02/07 01:57:46 james
* *** empty log message ***
*
* Revision 1.8 2008/02/07 00:39:13 james
* *** empty log message ***
*
* Revision 1.7 2008/02/06 20:26:58 james
* *** empty log message ***
*
* Revision 1.6 2008/02/06 17:53:28 james
* *** empty log message ***
*
* Revision 1.5 2008/02/06 15:53:22 james
* *** empty log message ***
*
* Revision 1.4 2008/02/06 11:30:37 james
* *** empty log message ***
*
* Revision 1.3 2008/02/04 20:23:55 james
* *** empty log message ***
*
* Revision 1.2 2008/02/04 02:05:06 james
* *** empty log message ***
*
* Revision 1.1 2008/02/03 23:36:41 james
* *** empty log message ***
*
*/
#ifndef __VT102_H__
#define __VT102_H__
#define VT102_CSI_LEN 128
#define VT102_ROWS 24
#define VT102_COLS 80
#define VT102_STATUS_ROW 24
#define VT102_NMODES 32
typedef struct
{
int in_escape;
int in_csi;
int csi_ptr;
int ignore_until_bell;
char csi_buf[VT102_CSI_LEN];
} VT102_parser;
typedef struct
{
CRT_Pos pos;
int attr;
int color;
int origin_mode;
} VT102_State;
typedef struct
{
CRT_Pos top_margin, bottom_margin;
CRT_Pos screen_start, screen_end;
VT102_parser parser;
int attr;
int color;
CRT crt;
int pending_wrap;
CRT_Pos pos, current_line;
VT102_State saved;
uint8_t modes[VT102_NMODES];
uint8_t private_modes[VT102_NMODES];
uint8_t tabs[VT102_COLS];
int application_keypad_mode;
int last_reg_char;
int xn_glitch;
} VT102;
#define VT102_PRIVATE_MODE_CURSOR_MODE 1
#define VT102_PRIVATE_MODE_VT52 2
#define VT102_PRIVATE_MODE_132COLS 3
#define VT102_PRIVATE_MODE_SMOOTH_SCROLL 4
#define VT102_PRIVATE_MODE_REVERSE_SCREEN 5
#define VT102_PRIVATE_MODE_ORIGIN_MODE 6
#define VT102_PRIVATE_MODE_AUTO_WRAP 7
#define VT102_PRIVATE_MODE_AUTO_REPEAT 8
#define VT102_PRIVATE_MODE_SHOW_CURSOR 25
#define VT102_MODE_KEYBOARD_DISABLE 2
#define VT102_MODE_INSERT 4
#define VT102_MODE_LOCAL_ECHO_OFF 12
#define VT102_MODE_NEWLINE_MODE 20
#endif /* __VT102_H__ */
|