-
Notifications
You must be signed in to change notification settings - Fork 5
/
_curses.ml
196 lines (176 loc) · 4.95 KB
/
_curses.ml
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
(*pp gcc -x c -E *)
type window
type screen
type terminal
type chtype = int
type attr_t = int
type err = bool
#define quote(a) #a
#define ML0(f,tr) \
external f : unit -> tr = quote(mlcurses_##f)
#define ML1(f,tr,ta) \
external f : ta -> tr = quote(mlcurses_##f)
#define ML2(f,tr,ta,tb) \
external f : ta -> tb -> tr = quote(mlcurses_##f)
#define ML3(f,tr,ta,tb,tc) \
external f : ta -> tb -> tc -> tr = quote(mlcurses_##f)
#define ML4(f,tr,ta,tb,tc,td) \
external f : ta -> tb -> tc -> td -> tr = quote(mlcurses_##f)
#define ML5(f,tr,ta,tb,tc,td,te) \
external f : ta -> tb -> tc -> td -> te -> tr = quote(mlcurses_##f)
#define ML6(f,tr,ta,tb,tc,td,te,tf) \
external f : ta -> tb -> tc -> td -> te -> tf -> tr \
= quote(mlcurses_##f##_bytecode) quote(mlcurses_##f##_native)
#define ML7(f,tr,ta,tb,tc,td,te,tf,tg) \
external f : ta -> tb -> tc -> td -> te -> tf -> tg -> tr \
= quote(mlcurses_##f##_bytecode) quote(mlcurses_##f##_native)
#define ML8(f,tr,ta,tb,tc,td,te,tf,tg,th) \
external f : ta -> tb -> tc -> td -> te -> tf -> tg -> th -> tr \
= quote(mlcurses_##f##_bytecode) quote(mlcurses_##f##_native)
#define ML9(f,tr,ta,tb,tc,td,te,tf,tg,th,ti) \
external f : ta -> tb -> tc -> td -> te -> tf -> tg -> th -> ti -> tr \
= quote(mlcurses_##f##_bytecode) quote(mlcurses_##f##_native)
#define ML0d(f,tr) ML0(f,tr)
#define ML1d(f,tr,ta) ML1(f,tr,ta)
#define ML2d(f,tr,ta,tb) ML2(f,tr,ta,tb)
#define ML3d(f,tr,ta,tb,tc) ML3(f,tr,ta,tb,tc)
#define ML4d(f,tr,ta,tb,tc,td) ML4(f,tr,ta,tb,tc,td)
#define ML5d(f,tr,ta,tb,tc,td,te) ML5(f,tr,ta,tb,tc,td,te)
#define ML6d(f,tr,ta,tb,tc,td,te,tf) ML6(f,tr,ta,tb,tc,td,te,tf)
#define ML0_notimpl(f,tr) ML0(f,tr)
#define ML1_notimpl(f,tr,ta) ML1(f,tr,ta)
#define ML2_notimpl(f,tr,ta,tb) ML2(f,tr,ta,tb)
#define BEG (*
#define BEG0 BEG
#define BEG1 BEG
#define BEG2 BEG
#define BEG3 BEG
#define BEG4 BEG
#define BEG5 BEG
#define BEG6 BEG
#define BEG7 BEG
#define BEG8 BEG
#define BEG9 BEG
#define END *)
module Acs = struct
type acs = {
ulcorner: chtype;
llcorner: chtype;
urcorner: chtype;
lrcorner: chtype;
ltee: chtype;
rtee: chtype;
btee: chtype;
ttee: chtype;
hline: chtype;
vline: chtype;
plus: chtype;
s1: chtype;
s9: chtype;
diamond: chtype;
ckboard: chtype;
degree: chtype;
plminus: chtype;
bullet: chtype;
larrow: chtype;
rarrow: chtype;
darrow: chtype;
uarrow: chtype;
board: chtype;
lantern: chtype;
block: chtype;
s3: chtype;
s7: chtype;
lequal: chtype;
gequal: chtype;
pi: chtype;
nequal: chtype;
sterling: chtype
}
let bssb a = a.ulcorner
let ssbb a = a.llcorner
let bbss a = a.urcorner
let sbbs a = a.lrcorner
let sbss a = a.rtee
let sssb a = a.ltee
let ssbs a = a.btee
let bsss a = a.ttee
let bsbs a = a.hline
let sbsb a = a.vline
let ssss a = a.plus
end
#include "_functions.c"
(* these two were written separately in ml_curses.c,
* to permit proper threading behavior *)
ML0(getch,int)
ML1(wgetch,int,window)
let null_window = null_window ()
let bool_terminfo_variables = Hashtbl.create 67
let num_terminfo_variables = Hashtbl.create 67
let str_terminfo_variables = Hashtbl.create 601
let () =
let rec ins f h n =
let (a, b, c) = f n in
if a = "" then ()
else (
Hashtbl.add h c (a, b);
ins f h (n + 1)
) in
(* These functions do not exist on all curses implementations,
* so if they throw Invalid_argument, just ignore it.
*)
try
ins bool_terminfo_variable bool_terminfo_variables 0;
ins num_terminfo_variable num_terminfo_variables 0;
ins str_terminfo_variable str_terminfo_variables 0
with
Invalid_argument _ -> ()
/*
(* Bon, je vais recopier les constantes directement, parceque je n'ai
* aucune idée de comment générer ça automatiquement proprement. Si ça ne
* marche pas chez vous, il vous suffit de regarder l'include, et de
* corriger à la main. Faites-le moi savoir, à tout hasard... *)
*/
module A = struct
let normal = 0
let attributes = 0x7FFFFF00
let chartext = 0x000000FF
let color = 0x0000FF00
let standout = 0x00010000
let underline = 0x00020000
let reverse = 0x00040000
let blink = 0x00080000
let dim = 0x00100000
let bold = 0x00200000
let altcharset = 0x00400000
let invis = 0x00800000
let protect = 0x01000000
let horizontal = 0x02000000
let left = 0x04000000
let low = 0x08000000
let right = 0x10000000
let top = 0x20000000
let vertical = 0x40000000
let combine = List.fold_left (lor) 0
let color_pair n = (n lsl 8) land color
let pair_number a = (a land color) lsr 8
end
(*/* Je sais, c'est moche, mais ça marche */*)
module WA = A
module Color = struct
let black = 0
let red = 1
let green = 2
let yellow = 3
let blue = 4
let magenta = 5
let cyan = 6
let white = 7
end
module Key = struct
#include "_keys.ml"
let f n = f0 + n
end
module Curses_config = struct
#include "_config.ml"
end