Source file b_text_display.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
open Str
open B_utils
open Tsdl
open Tsdl_ttf
module Theme = B_theme
module Var = B_var
module Draw = B_draw
module Label = B_label
type entity =
| Word of string
| Space
| Color of Draw.color
| Style of Ttf.Style.t
type words = entity list
let example : words = let open Ttf.Style in
[ Color Draw.(opaque blue); Word "Hello";
Space; Word "I"; Space; Word "am"; Space;
Style bold; Word "bold"; Color Draw.(opaque !text_color);
Style normal; Space; Word "and"; Space;
Style italic; Word "italic." ]
type t =
{ paragraphs : (words list) Var.t;
render : (Draw.texture option) Var.t;
font : (Label.font) Var.t;
size: int;
mutable w: int option;
mutable h: int option;
}
let default_font () = Label.File !Theme.text_font
let unload td =
match Var.get td.render with
| None -> ()
| Some tex -> begin
Draw.forget_texture tex;
Var.set td.render None
end
let free = unload
let last_style words =
List.fold_left (fun style entity -> match entity with
| Style s when s = Ttf.Style.normal -> s
| Style s -> Ttf.Style.(s + style)
| _ -> style) Ttf.Style.normal words
let set_style style words =
let last = last_style words in
let new_words =
if style = Ttf.Style.normal
then List.filter (function
| Style _ -> false
| _ -> true) words
else let w = List.filter (function
| Style s when s = style -> false
| Style s when s = Ttf.Style.normal -> false
| _ -> true) words in
(Style style) :: w in
List.rev (Style last :: (List.rev new_words))
let bold = set_style Ttf.Style.bold
let italic = set_style Ttf.Style.italic
let normal = set_style Ttf.Style.normal
let underline = set_style Ttf.Style.underline
let strikethrough = set_style Ttf.Style.strikethrough
(** convert tabs '\t' in a string to the required number of spaces *)
let tab_to_space ?(sep = 8) s =
let l = String.length s in
let b = Buffer.create l in
let rec loop i j =
if i < l then
let c = s.[i] in
let n = if c = '\t'
then (let n = sep*(j/sep) + sep - j in
let spaces = String.make n ' ' in
Buffer.add_string b spaces;
n)
else (Buffer.add_char b c;
1) in
loop (i+1) (j+n)
in
loop 0 0;
Buffer.contents b
(** change the content of the text on the fly *)
let update ?w ?h t paragraphs =
Var.update t.render (fun texo ->
do_option texo Draw.forget_texture;
Var.set t.paragraphs paragraphs;
t.w <- w;
t.h <- h;
None)
let split_line line =
full_split (regexp " ") line
|> List.map (function
| Text w -> Word w
| Delim _ -> Space)
let para = split_line
let raw s = [Word s]
let append w1 w2 : words =
List.append w1 w2
let ( ++ ) = append
let page list : words list = list
let create ?(size = Theme.text_font_size) ?w ?h ?(font = default_font ())
paragraphs =
Draw.ttf_init ();
{ paragraphs = Var.create (List.rev ([Style Ttf.Style.normal] :: (List.rev paragraphs)));
render = Var.create None;
font = Var.create font;
size; w; h}
let paragraphs_of_string text =
split (regexp "\n") text
|> List.map split_line
let paragraphs_of_lines lines =
List.map split_line lines
let create_from_string ?(size = Theme.text_font_size) ?w ?h ?(font = default_font ()) text =
let paragraphs = paragraphs_of_string text in
create ~size ?w ?h ~font paragraphs
let create_from_lines ?(size = Theme.text_font_size) ?w ?h ?(font = default_font ()) lines =
let paragraphs = paragraphs_of_lines lines in
create ~size ?w ?h ~font paragraphs
let htmltags =
[ "<b>"; "</b>";
"<em>"; "</em>";
"<u>"; "</u>";
"<strong>"; "</strong>";
"<p>"; "</p>"; "<br>";
"<font[ \t\n]+color=\"[^\"]+\">"; "</font>" ]
|> String.concat "\\|"
|> regexp
let delims = regexp "[ \n]+"
let style_from_stack stack =
List.fold_left (Ttf.Style.(+)) Ttf.Style.normal stack
let add_style line style =
let line = match line with
| (Style _) :: rest -> rest
| _ -> line in
(Style style)::line
let apply_style line stylestack style =
let stk = style :: stylestack in
let line = if List.mem style stylestack
then line
else add_style line (style_from_stack stk) in
stk, line
let close_style line stylestack style =
let stk = try list_remove_first (fun x -> x = style) stylestack
with Not_found ->
printd debug_warning "Bad HTML: closing tag without opening first.";
stylestack in
let line = add_style line (style_from_stack stk) in
stk, line
let color_from_html c =
let open Draw in
if String.length c <> 0 && c.[0] = '#'
then
let i, c = match int_of_hex c with
| Some i -> i, c
| None -> printd debug_error "Cannot recognize color code '0x%s'" c;
0xAAAA, "AAAA" in
match String.length c - 1 with
| 3 -> opaque @@ color_of_int12 i
| 4 -> rgba_of_int16 i
| 6 -> opaque @@ color_of_int24 i
| 8 -> rgba_of_int32 i
| _ -> printd debug_error "Cannot recognize HTML color '%s'" c;
opaque grey
else opaque @@ find_color c
let color_from_tag s =
let s = global_replace delims " " s in
if string_match (regexp "<font color=\"\\([^\"]+\\)\">") s 0 then
begin
let c = matched_group 1 s in
color_from_html c
end
else begin
printd debug_error "Cannot recognize an HTML color tag in [%s]" s;
Draw.(opaque grey)
end
let paragraphs_of_html src =
let def_color = Color Draw.(opaque !text_color) in
let colorstack = Stack.create () in
Stack.push def_color colorstack;
let rec loop stylestack paras line = function
| [] -> List.rev ((List.rev line)::paras)
| x::rest -> match x with
| Text s -> loop stylestack paras ((Word s)::line) rest
| Delim "<p>" when paras = [] && line = [] ->
loop stylestack [] [] rest
| Delim "<p>" when line = [] -> loop stylestack paras [] rest
| Delim "<p>" -> loop stylestack ((List.rev line)::paras) [] rest
| Delim "<br>" -> loop stylestack ((List.rev line)::paras) [] rest
| Delim "</p>" -> loop stylestack ([]::(List.rev line)::paras) [] rest
| Delim s when String.trim s = ""
-> loop stylestack paras (Space::line) rest
| Delim d ->
let stk, line = match String.lowercase_ascii d with
| "<b>"
| "<strong>" -> apply_style line stylestack Ttf.Style.bold
| "<em>" -> apply_style line stylestack Ttf.Style.italic
| "<u>" -> apply_style line stylestack Ttf.Style.underline
| "</b>"
| "</strong>" -> close_style line stylestack Ttf.Style.bold
| "</em>" -> close_style line stylestack Ttf.Style.italic
| "</u>" -> close_style line stylestack Ttf.Style.underline
| "</font>" ->
let _w = default (Stack.pop_opt colorstack) def_color in
let c = default (Stack.top_opt colorstack) def_color in
stylestack, c::line
| s when String.length s >= 5 && String.sub s 0 5 = "<font" ->
let c = color_from_tag s in
Stack.push (Color c) colorstack;
stylestack, ((Color c)::line)
| _ ->
printd debug_error "html tag %s not implemented" d;
stylestack, ((Word d)::line) in
loop stk paras line rest in
let list = full_split htmltags src
|> List.map (function Text t ->
full_split delims t | Delim d -> [Delim d])
|> List.flatten in
loop [] [] [] list
let create_from_html ?(size = Theme.text_font_size) ?w ?h
?(font = default_font ()) html =
let paragraphs = paragraphs_of_html html in
create ~size ?w ?h ~font paragraphs
let create_verbatim ?(size = Theme.text_font_size)
?(font = Label.File Theme.mono_font) text =
Draw.ttf_init ();
let font = match font with
| Label.Font f -> f
| Label.File f -> Draw.open_font f (Theme.scale_int size) in
let lines = List.map tab_to_space (split (regexp "\n") text) in
let w = list_max compare (List.map (fun s -> fst (Label.physical_size_text font s)) lines) in
let w = map_option w Theme.unscale_int in
let h = Some ((List.length lines) * (Ttf.font_line_skip font)) in
let h = map_option h Theme.unscale_int in
let paragraphs = List.map (fun p -> [Word p]) lines in
create ~size ?w ?h ~font:(Label.Font font) paragraphs
let update_verbatim_old t text =
let size = t.size in
let font = Var.get t.font in
let dummy = create_verbatim ~size ~font text in
let paragraphs = Var.get dummy.paragraphs in
print_endline (Printf.sprintf "New SIZE %d,%d" (default dummy.w 0) (default dummy.h 0));
update ?w:dummy.w ?h:dummy.h t paragraphs
let replace ~by:t old =
let paragraphs = Var.get t.paragraphs in
update ?w:t.w ?h:t.h old paragraphs
let update_verbatim t text =
let size = t.size in
let font = Var.get t.font in
let dummy = create_verbatim ~size ~font text in
replace ~by:dummy t
let unsplit_old words =
let rec loop list acc =
match list with
| [] -> acc
| w::rest -> loop rest (if acc = "" then w else acc ^ " " ^ w) in
loop words ""
let unsplit_words words =
List.map (function
| Word w -> w
| Space -> " "
| _ -> "") words
|> String.concat ""
let unsplit pars = String.concat "\n" (List.map unsplit_words pars)
let paragraphs td = Var.get td.paragraphs
let text td = unsplit (Var.get td.paragraphs)
let default_size = (256,128)
let size td =
let w,h = default_size in
(default td.w w),
(default td.h h)
let resize (w,h) td =
unload td;
td.w <- Some w;
td.h <- Some h
let render_word ?fg font word =
printd debug_graphics "render word:%s" word;
let color = Draw.create_color (default fg (10,11,12,255)) in
let surf = Draw.ttf_render font word color in
go (Sdl.set_surface_blend_mode surf Sdl.Blend.mode_none);
surf
let get_font td = Label.get_font_var td.font (Theme.scale_int td.size)
let display canvas layer td g =
let open Draw in
match Var.update_get td.render (function
| Some t -> Some t
| None -> begin
let font = get_font td in
let fg = ref (opaque !text_color) in
let lineskip = Ttf.font_line_skip font in
let space = fst (Label.physical_size_text font " ") in
let target_surf = create_surface ~renderer:canvas.renderer g.w g.h in
let rec loop list dx dy =
if dy > g.h then ()
else match list with
| [] -> ();
| []::rest -> loop rest 0 (dy + lineskip)
| (entity::rest_line)::rest ->
match entity with
| Word w ->
let surf = render_word ~fg:!fg font w in
let rect = Sdl.get_clip_rect surf in
let tw,th = Sdl.Rect.(w rect, h rect) in
if dx <> 0 && dx+tw >= g.w then begin
free_surface surf;
loop list 0 (dy + lineskip);
end
else (go (Sdl.blit_surface ~src:surf (Some rect) ~dst:target_surf
(Some (Sdl.Rect.create ~x:dx ~y:dy ~w:tw ~h:th)));
free_surface surf;
loop (rest_line::rest) (dx + tw) dy)
| Space ->
let space = if Ttf.Style.(test (Ttf.get_font_style font) italic)
then (round (float space *. 0.6)) else space in
loop (rest_line::rest) (dx + space) dy
| Style s ->
let current_style = Ttf.get_font_style font in
let new_style = if s = Ttf.Style.normal
then s else Ttf.Style.(s + current_style) in
ttf_set_font_style font new_style;
loop (rest_line::rest) dx dy
| Color c ->
fg := c;
loop (rest_line::rest) dx dy
in
loop (paragraphs td) 0 0;
let tex = create_texture_from_surface canvas.renderer target_surf in
free_surface target_surf;
Some tex;
end) with
| Some tex ->
let dst = geom_to_rect g in
[make_blit ~voffset:g.voffset ~dst canvas layer tex]
| None -> failwith "Text_display.display error"