Try to consume all input without waiting for the next idle cycle
[llpp.git] / main.ml
blobae40a2141c5d32cb66a507ba509f609dbe0951d5
1 type under =
2 | Unone
3 | Ulinkuri of string
4 | Ulinkgoto of (int * int)
5 | Utext of facename
6 and facename = string;;
8 let log fmt = Printf.kprintf prerr_endline fmt;;
9 let dolog fmt = Printf.kprintf prerr_endline fmt;;
11 external init : Unix.file_descr -> unit = "ml_init";;
12 external draw : int -> int -> int -> int -> string -> unit = "ml_draw";;
13 external seltext : string -> (int * int * int * int) -> int -> unit =
14 "ml_seltext";;
15 external copysel : string -> unit = "ml_copysel";;
16 external highlightlinks : string -> int -> unit = "ml_highlightlinks";;
17 external getpagewh : int -> float array = "ml_getpagewh";;
18 external whatsunder : string -> int -> int -> under = "ml_whatsunder";;
20 type mstate = Msel of ((int * int) * (int * int)) | Mnone;;
22 type 'a circbuf =
23 { store : 'a array
24 ; mutable rc : int
25 ; mutable wc : int
26 ; mutable len : int
30 type textentry = (char * string * onhist option * onkey * ondone)
31 and onkey = string -> int -> te
32 and ondone = string -> unit
33 and onhist = histcmd -> string
34 and histcmd = HCnext | HCprev | HCfirst | HClast
35 and te =
36 | TEstop
37 | TEdone of string
38 | TEcont of string
39 | TEswitch of textentry
42 let cbnew n v =
43 { store = Array.create n v
44 ; rc = 0
45 ; wc = 0
46 ; len = 0
50 let cblen b = Array.length b.store;;
52 let cbput b v =
53 let len = cblen b in
54 b.store.(b.wc) <- v;
55 b.wc <- (b.wc + 1) mod len;
56 b.len <- min (b.len + 1) len;
59 let cbpeekw b = b.store.(b.wc);;
61 let cbget b dir =
62 if b.len = 0 then b.store.(0) else
63 let rc = b.rc + dir in
64 let rc = if rc = -1 then b.len - 1 else rc in
65 let rc = if rc = b.len then 0 else rc in
66 b.rc <- rc;
67 b.store.(rc);
70 let cbrfollowlen b =
71 b.rc <- b.len;
74 type layout =
75 { pageno : int
76 ; pagedimno : int
77 ; pagew : int
78 ; pageh : int
79 ; pagedispy : int
80 ; pagey : int
81 ; pagevh : int
85 type conf =
86 { mutable scrollw : int
87 ; mutable scrollh : int
88 ; mutable icase : bool
89 ; mutable preload : bool
90 ; mutable pagebias : int
91 ; mutable verbose : bool
92 ; mutable scrollincr : int
93 ; mutable maxhfit : bool
94 ; mutable crophack : bool
95 ; mutable autoscroll : bool
96 ; mutable showall : bool
97 ; mutable hlinks : bool
98 ; mutable underinfo : bool
102 type outline = string * int * int * int;;
103 type outlines =
104 | Oarray of outline array
105 | Olist of outline list
106 | Onarrow of outline array * outline array
109 type rect = (float * float * float * float * float * float * float * float);;
111 type state =
112 { mutable csock : Unix.file_descr
113 ; mutable ssock : Unix.file_descr
114 ; mutable w : int
115 ; mutable h : int
116 ; mutable rotate : int
117 ; mutable y : int
118 ; mutable ty : float
119 ; mutable maxy : int
120 ; mutable layout : layout list
121 ; pagemap : ((int * int * int), string) Hashtbl.t
122 ; mutable pages : (int * int * int) list
123 ; mutable pagecount : int
124 ; pagecache : string circbuf
125 ; mutable rendering : bool
126 ; mutable mstate : mstate
127 ; mutable searchpattern : string
128 ; mutable rects : (int * int * rect) list
129 ; mutable rects1 : (int * int * rect) list
130 ; mutable text : string
131 ; mutable fullscreen : (int * int) option
132 ; mutable textentry : textentry option
133 ; mutable outlines : outlines
134 ; mutable outline : (bool * int * int * outline array * string) option
135 ; mutable bookmarks : outline list
136 ; mutable path : string
137 ; mutable invalidated : int
138 ; mutable colorscale : float
139 ; hists : hists
141 and hists =
142 { pat : string circbuf
143 ; pag : string circbuf
144 ; nav : float circbuf
148 let conf =
149 { scrollw = 5
150 ; scrollh = 12
151 ; icase = true
152 ; preload = true
153 ; pagebias = 0
154 ; verbose = false
155 ; scrollincr = 24
156 ; maxhfit = true
157 ; crophack = false
158 ; autoscroll = false
159 ; showall = false
160 ; hlinks = false
161 ; underinfo = false
165 let state =
166 { csock = Unix.stdin
167 ; ssock = Unix.stdin
168 ; w = 900
169 ; h = 900
170 ; rotate = 0
171 ; y = 0
172 ; ty = 0.0
173 ; layout = []
174 ; maxy = max_int
175 ; pagemap = Hashtbl.create 10
176 ; pagecache = cbnew 10 ""
177 ; pages = []
178 ; pagecount = 0
179 ; rendering = false
180 ; mstate = Mnone
181 ; rects = []
182 ; rects1 = []
183 ; text = ""
184 ; fullscreen = None
185 ; textentry = None
186 ; searchpattern = ""
187 ; outlines = Olist []
188 ; outline = None
189 ; bookmarks = []
190 ; path = ""
191 ; invalidated = 0
192 ; hists =
193 { nav = cbnew 100 0.0
194 ; pat = cbnew 20 ""
195 ; pag = cbnew 10 ""
197 ; colorscale = 1.0
201 let vlog fmt =
202 if conf.verbose
203 then
204 Printf.kprintf prerr_endline fmt
205 else
206 Printf.kprintf ignore fmt
209 let writecmd fd s =
210 let len = String.length s in
211 let n = 4 + len in
212 let b = Buffer.create n in
213 Buffer.add_char b (Char.chr ((len lsr 24) land 0xff));
214 Buffer.add_char b (Char.chr ((len lsr 16) land 0xff));
215 Buffer.add_char b (Char.chr ((len lsr 8) land 0xff));
216 Buffer.add_char b (Char.chr ((len lsr 0) land 0xff));
217 Buffer.add_string b s;
218 let s' = Buffer.contents b in
219 let n' = Unix.write fd s' 0 n in
220 if n' != n then failwith "write failed";
223 let readcmd fd =
224 let s = "xxxx" in
225 let n = Unix.read fd s 0 4 in
226 if n != 4 then failwith "incomplete read(len)";
227 let len = 0
228 lor (Char.code s.[0] lsl 24)
229 lor (Char.code s.[1] lsl 16)
230 lor (Char.code s.[2] lsl 8)
231 lor (Char.code s.[3] lsl 0)
233 let s = String.create len in
234 let n = Unix.read fd s 0 len in
235 if n != len then failwith "incomplete read(data)";
239 let yratio y =
240 if y = state.maxy then 1.0
241 else float y /. float state.maxy
244 let makecmd s l =
245 let b = Buffer.create 10 in
246 Buffer.add_string b s;
247 let rec combine = function
248 | [] -> b
249 | x :: xs ->
250 Buffer.add_char b ' ';
251 let s =
252 match x with
253 | `b b -> if b then "1" else "0"
254 | `s s -> s
255 | `i i -> string_of_int i
256 | `f f -> string_of_float f
257 | `I f -> string_of_int (truncate f)
259 Buffer.add_string b s;
260 combine xs;
262 combine l;
265 let wcmd s l =
266 let cmd = Buffer.contents (makecmd s l) in
267 writecmd state.csock cmd;
270 let calcheight () =
271 let rec f pn ph fh l =
272 match l with
273 | (n, _, h) :: rest ->
274 let fh = fh + (n - pn) * ph in
275 f n h fh rest
277 | [] ->
278 let fh = fh + (ph * (state.pagecount - pn)) in
279 max 0 fh
281 let fh = f 0 0 0 state.pages in
285 let getpagey pageno =
286 let rec f pn ph y l =
287 match l with
288 | (n, _, h) :: rest ->
289 if n >= pageno
290 then
291 y + (pageno - pn) * ph
292 else
293 let y = y + (n - pn) * ph in
294 f n h y rest
296 | [] ->
297 y + (pageno - pn) * ph
299 f 0 0 0 state.pages;
302 let layout y sh =
303 let rec f pageno pdimno prev vy py dy l cacheleft accu =
304 if pageno = state.pagecount || cacheleft = 0
305 then accu
306 else
307 let ((_, w, h) as curr), rest, pdimno =
308 match l with
309 | ((pageno', _, _) as curr) :: rest when pageno' = pageno ->
310 curr, rest, pdimno + 1
311 | _ ->
312 prev, l, pdimno
314 let pageno' = pageno + 1 in
315 if py + h > vy
316 then
317 let py' = vy - py in
318 let vh = h - py' in
319 if dy + vh > sh
320 then
321 let vh = sh - dy in
322 if vh <= 0
323 then
324 accu
325 else
326 let e =
327 { pageno = pageno
328 ; pagedimno = pdimno
329 ; pagew = w
330 ; pageh = h
331 ; pagedispy = dy
332 ; pagey = py'
333 ; pagevh = vh
336 e :: accu
337 else
338 let e =
339 { pageno = pageno
340 ; pagedimno = pdimno
341 ; pagew = w
342 ; pageh = h
343 ; pagedispy = dy
344 ; pagey = py'
345 ; pagevh = vh
348 let accu = e :: accu in
349 f pageno' pdimno curr
350 (vy + vh) (py + h) (dy + vh + 2) rest
351 (pred cacheleft) accu
352 else
353 f pageno' pdimno curr vy (py + h) dy rest cacheleft accu
355 if state.invalidated = 0
356 then
357 let accu = f 0 ~-1 (0,0,0) y 0 0 state.pages (cblen state.pagecache) [] in
358 state.maxy <- calcheight ();
359 List.rev accu
360 else
364 let clamp incr =
365 let y = state.y + incr in
366 let y = max 0 y in
367 let y = min y (state.maxy - (if conf.maxhfit then state.h else 0)) in
371 let getopaque pageno =
372 try Some (Hashtbl.find state.pagemap (pageno + 1, state.w - conf.scrollw,
373 state.rotate))
374 with Not_found -> None
377 let cache pageno opaque =
378 Hashtbl.replace state.pagemap (pageno + 1, state.w - conf.scrollw,
379 state.rotate) opaque
382 let validopaque opaque = String.length opaque > 0;;
384 let render l =
385 match getopaque l.pageno with
386 | None when not state.rendering ->
387 state.rendering <- true;
388 cache l.pageno "";
389 wcmd "render" [`i (l.pageno + 1)
390 ;`i l.pagedimno
391 ;`i l.pagew
392 ;`i l.pageh];
394 | _ -> ()
397 let loadlayout layout =
398 let rec f all = function
399 | l :: ls ->
400 begin match getopaque l.pageno with
401 | None -> render l; f false ls
402 | Some opaque -> f (all && validopaque opaque) ls
404 | [] -> all
406 f (layout <> []) layout;
409 let preload () =
410 if conf.preload && List.length state.layout < cblen state.pagecache then begin
411 let y = if state.y < state.h then 0 else state.y - state.h in
412 let pages = layout y (state.h*3) in
413 List.iter render pages;
414 end;
417 let gotoy y =
418 let y = max 0 y in
419 let y = min state.maxy y in
420 let pages = layout y state.h in
421 let ready = loadlayout pages in
422 state.ty <- yratio y;
423 if conf.showall then (
424 if ready then (
425 state.layout <- pages;
426 state.y <- y;
427 Glut.postRedisplay ();
430 else (
431 state.layout <- pages;
432 state.y <- y;
433 Glut.postRedisplay ();
435 preload ();
438 let addnav () =
439 cbput state.hists.nav (yratio state.y);
440 cbrfollowlen state.hists.nav;
443 let getnav () =
444 let y = cbget state.hists.nav ~-1 in
445 truncate (y *. float state.maxy)
448 let gotopage n top =
449 let y = getpagey n in
450 addnav ();
451 gotoy (y + top);
454 let invalidate () =
455 state.layout <- [];
456 state.pages <- [];
457 state.rects <- [];
458 state.rects1 <- [];
459 state.invalidated <- state.invalidated + 1;
462 let scalecolor c =
463 let c = c *. state.colorscale in
464 (c, c, c);
467 let reshape ~w ~h =
468 let ratio = float w /. float state.w in
469 let fixbookmark (s, l, pageno, pagey) =
470 let pagey = truncate (float pagey *. ratio) in
471 (s, l, pageno, pagey)
473 state.bookmarks <- List.map fixbookmark state.bookmarks;
474 state.w <- w;
475 state.h <- h;
476 GlDraw.viewport 0 0 w h;
477 GlMat.mode `modelview;
478 GlMat.load_identity ();
479 GlMat.mode `projection;
480 GlMat.load_identity ();
481 GlMat.rotate ~x:1.0 ~angle:180.0 ();
482 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
483 GlMat.scale3 (2.0 /. float w, 2.0 /. float state.h, 1.0);
484 GlClear.color (scalecolor 1.0);
485 GlClear.clear [`color];
487 invalidate ();
488 wcmd "geometry" [`i (state.w - conf.scrollw); `i h];
491 let showtext c s =
492 GlDraw.color (0.0, 0.0, 0.0);
493 GlDraw.rect
494 (0.0, float (state.h - 18))
495 (float (state.w - conf.scrollw - 1), float state.h)
497 let font = Glut.BITMAP_8_BY_13 in
498 GlDraw.color (1.0, 1.0, 1.0);
499 GlPix.raster_pos ~x:0.0 ~y:(float (state.h - 5)) ();
500 Glut.bitmapCharacter ~font ~c:(Char.code c);
501 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s;
504 let enttext () =
505 let len = String.length state.text in
506 match state.textentry with
507 | None ->
508 if len > 0 then showtext ' ' state.text
510 | Some (c, text, _, _, _) ->
511 let s =
512 if len > 0
513 then
514 text ^ " [" ^ state.text ^ "]"
515 else
516 text
518 showtext c s;
521 let showtext c s =
522 if true
523 then (
524 state.text <- Printf.sprintf "%c%s" c s;
525 Glut.postRedisplay ();
527 else (
528 showtext c s;
529 Glut.swapBuffers ();
534 let act cmd =
535 match cmd.[0] with
536 | 'c' ->
537 state.pages <- [];
538 state.outlines <- Olist []
540 | 'D' ->
541 state.rects <- state.rects1;
542 Glut.postRedisplay ()
544 | 'C' ->
545 let n = Scanf.sscanf cmd "C %d" (fun n -> n) in
546 state.pagecount <- n;
547 state.invalidated <- state.invalidated - 1;
548 if state.invalidated = 0
549 then (
550 let rely = yratio state.y in
551 state.maxy <- calcheight ();
552 gotoy (truncate (float state.maxy *. rely));
555 | 't' ->
556 let s = Scanf.sscanf cmd "t %n"
557 (fun n -> String.sub cmd n (String.length cmd - n))
559 Glut.setWindowTitle s
561 | 'T' ->
562 let s = Scanf.sscanf cmd "T %n"
563 (fun n -> String.sub cmd n (String.length cmd - n))
565 if state.textentry = None
566 then (
567 state.text <- s;
568 showtext ' ' s;
570 else (
571 state.text <- s;
572 Glut.postRedisplay ();
575 | 'V' ->
576 if conf.verbose
577 then
578 let s = Scanf.sscanf cmd "V %n"
579 (fun n -> String.sub cmd n (String.length cmd - n))
581 state.text <- s;
582 showtext ' ' s;
584 | 'F' ->
585 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
586 Scanf.sscanf cmd "F %d %d %f %f %f %f %f %f %f %f"
587 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
588 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
590 let y = (getpagey pageno) + truncate y0 in
591 addnav ();
592 gotoy y;
593 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
595 | 'R' ->
596 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
597 Scanf.sscanf cmd "R %d %d %f %f %f %f %f %f %f %f"
598 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
599 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
601 state.rects1 <-
602 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
604 | 'r' ->
605 let n, w, h, r, p =
606 Scanf.sscanf cmd "r %d %d %d %d %s"
607 (fun n w h r p -> (n, w, h, r, p))
609 Hashtbl.replace state.pagemap (n, w, r) p;
610 let opaque = cbpeekw state.pagecache in
611 if validopaque opaque
612 then (
613 let k =
614 Hashtbl.fold
615 (fun k v a -> if v = opaque then k else a)
616 state.pagemap (-1, -1, -1)
618 wcmd "free" [`s opaque];
619 Hashtbl.remove state.pagemap k
621 cbput state.pagecache p;
622 state.rendering <- false;
623 if conf.showall
624 then gotoy (truncate (ceil (state.ty *. float state.maxy)))
625 else (
626 let visible = List.exists (fun l -> l.pageno + 1 = n) state.layout in
627 if visible then gotoy state.y
628 else (ignore (loadlayout state.layout); preload ())
631 | 'l' ->
632 let (n, w, h) as pagelayout =
633 Scanf.sscanf cmd "l %d %d %d" (fun n w h -> n, w, h)
635 state.pages <- pagelayout :: state.pages
637 | 'o' ->
638 let (l, n, t, pos) =
639 Scanf.sscanf cmd "o %d %d %d %n" (fun l n t pos -> l, n, t, pos)
641 let s = String.sub cmd pos (String.length cmd - pos) in
642 let outline = (s, l, n, t) in
643 let outlines =
644 match state.outlines with
645 | Olist outlines -> Olist (outline :: outlines)
646 | Oarray _ -> Olist [outline]
647 | Onarrow _ -> Olist [outline]
649 state.outlines <- outlines
651 | _ ->
652 log "unknown cmd `%S'" cmd
655 let now = Unix.gettimeofday;;
656 let prev = ref 0.0;;
658 let idle () =
659 let rec loop delay =
660 let r, _, _ = Unix.select [state.csock] [] [] delay in
661 begin match r with
662 | [] ->
663 if conf.autoscroll then begin
664 let y = state.y + conf.scrollincr in
665 let y = if y >= state.maxy then 0 else y in
666 gotoy y;
667 state.text <- "";
668 end;
670 | _ ->
671 let cmd = readcmd state.csock in
672 act cmd;
673 loop 0.0
674 end;
675 in loop 0.001
678 let onhist cb = function
679 | HCprev -> cbget cb ~-1
680 | HCnext -> cbget cb 1
681 | HCfirst -> cbget cb ~-(cb.rc)
682 | HClast -> cbget cb (cb.len - 1 - cb.rc)
685 let search pattern forward =
686 if String.length pattern > 0
687 then
688 let pn, py =
689 match state.layout with
690 | [] -> 0, 0
691 | l :: _ ->
692 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
694 let cmd =
695 let b = makecmd "search"
696 [`b conf.icase; `i pn; `i py; `i (if forward then 1 else 0)]
698 Buffer.add_char b ',';
699 Buffer.add_string b pattern;
700 Buffer.add_char b '\000';
701 Buffer.contents b;
703 writecmd state.csock cmd;
706 let intentry text key =
707 let c = Char.unsafe_chr key in
708 match c with
709 | '0' .. '9' ->
710 let s = "x" in s.[0] <- c;
711 let text = text ^ s in
712 TEcont text
714 | _ ->
715 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
716 TEcont text
719 let addchar s c =
720 let b = Buffer.create (String.length s + 1) in
721 Buffer.add_string b s;
722 Buffer.add_char b c;
723 Buffer.contents b;
726 let textentry text key =
727 let c = Char.unsafe_chr key in
728 match c with
729 | _ when key >= 32 && key < 127 ->
730 let text = addchar text c in
731 TEcont text
733 | _ ->
734 log "unhandled key %d char `%c'" key (Char.unsafe_chr key);
735 TEcont text
738 let rotate angle =
739 state.rotate <- angle;
740 invalidate ();
741 wcmd "rotate" [`i angle];
744 let optentry text key =
745 let btos b = if b then "on" else "off" in
746 let c = Char.unsafe_chr key in
747 match c with
748 | 's' ->
749 let ondone s =
750 try conf.scrollincr <- int_of_string s with exc ->
751 state.text <- Printf.sprintf "bad integer `%s': %s"
752 s (Printexc.to_string exc)
754 TEswitch ('#', "", None, intentry, ondone)
756 | 'R' ->
757 let ondone s =
758 match try
759 Some (int_of_string s)
760 with exc ->
761 state.text <- Printf.sprintf "bad integer `%s': %s"
762 s (Printexc.to_string exc);
763 None
764 with
765 | Some angle -> rotate angle
766 | None -> ()
768 TEswitch ('^', "", None, intentry, ondone)
770 | 'i' ->
771 conf.icase <- not conf.icase;
772 TEdone ("case insensitive search " ^ (btos conf.icase))
774 | 'p' ->
775 conf.preload <- not conf.preload;
776 gotoy state.y;
777 TEdone ("preload " ^ (btos conf.preload))
779 | 'v' ->
780 conf.verbose <- not conf.verbose;
781 TEdone ("verbose " ^ (btos conf.verbose))
783 | 'h' ->
784 conf.maxhfit <- not conf.maxhfit;
785 state.maxy <- state.maxy + (if conf.maxhfit then -state.h else state.h);
786 TEdone ("maxhfit " ^ (btos conf.maxhfit))
788 | 'c' ->
789 conf.crophack <- not conf.crophack;
790 TEdone ("crophack " ^ btos conf.crophack)
792 | 'a' ->
793 conf.showall <- not conf.showall;
794 TEdone ("showall " ^ btos conf.showall)
796 | 'f' ->
797 conf.underinfo <- not conf.underinfo;
798 TEdone ("underinfo " ^ btos conf.underinfo)
800 | _ ->
801 state.text <- Printf.sprintf "bad option %d `%c'" key c;
802 TEstop
805 let maxoutlinerows () = (state.h - 31) / 16;;
807 let enterselector allowdel outlines errmsg =
808 if Array.length outlines = 0
809 then (
810 showtext ' ' errmsg;
812 else
813 let pageno =
814 match state.layout with
815 | [] -> -1
816 | {pageno=pageno} :: rest -> pageno
818 let active =
819 let rec loop n =
820 if n = Array.length outlines
821 then 0
822 else
823 let (_, _, outlinepageno, _) = outlines.(n) in
824 if outlinepageno >= pageno then n else loop (n+1)
826 loop 0
828 state.outline <-
829 Some (allowdel, active,
830 max 0 ((active - maxoutlinerows () / 2)), outlines, "");
831 Glut.postRedisplay ();
834 let enteroutlinemode () =
835 let outlines =
836 match state.outlines with
837 | Oarray a -> a
838 | Olist l ->
839 let a = Array.of_list (List.rev l) in
840 state.outlines <- Oarray a;
842 | Onarrow (a, b) -> a
844 enterselector false outlines "Document has no outline";
847 let enterbookmarkmode () =
848 let bookmarks = Array.of_list state.bookmarks in
849 enterselector true bookmarks "Document has no bookmarks (yet)";
853 let quickbookmark ?title () =
854 match state.layout with
855 | [] -> ()
856 | l :: _ ->
857 let title =
858 match title with
859 | None ->
860 let sec = Unix.gettimeofday () in
861 let tm = Unix.localtime sec in
862 Printf.sprintf "Quick %d visited (%d/%d/%d %d:%d)"
863 l.pageno
864 tm.Unix.tm_mday
865 tm.Unix.tm_mon
866 (tm.Unix.tm_year + 1900)
867 tm.Unix.tm_hour
868 tm.Unix.tm_min
869 | Some title -> title
871 state.bookmarks <-
872 (title, 0, l.pageno, l.pagey) :: state.bookmarks
875 let doreshape w h =
876 state.fullscreen <- None;
877 Glut.reshapeWindow w h;
880 let viewkeyboard ~key ~x ~y =
881 let enttext te =
882 state.textentry <- te;
883 state.text <- "";
884 enttext ();
885 Glut.postRedisplay ()
887 match state.textentry with
888 | None ->
889 let c = Char.chr key in
890 begin match c with
891 | '\027' | 'q' ->
892 exit 0
894 | '\008' ->
895 let y = getnav () in
896 gotoy y
898 | 'o' ->
899 enteroutlinemode ()
901 | 'u' ->
902 state.rects <- [];
903 state.text <- "";
904 Glut.postRedisplay ()
906 | '/' | '?' ->
907 let ondone isforw s =
908 cbput state.hists.pat s;
909 cbrfollowlen state.hists.pat;
910 state.searchpattern <- s;
911 search s isforw
913 enttext (Some (c, "", Some (onhist state.hists.pat),
914 textentry, ondone (c ='/')))
916 | '+' ->
917 let ondone s =
918 let n =
919 try int_of_string s with exc ->
920 state.text <- Printf.sprintf "bad integer `%s': %s"
921 s (Printexc.to_string exc);
922 max_int
924 if n != max_int
925 then (
926 conf.pagebias <- n;
927 state.text <- "page bias is now " ^ string_of_int n;
930 enttext (Some ('+', "", None, intentry, ondone))
932 | '-' ->
933 let ondone msg =
934 state.text <- msg;
936 enttext (Some ('-', "", None, optentry, ondone))
938 | '0' .. '9' ->
939 let ondone s =
940 let n =
941 try int_of_string s with exc ->
942 state.text <- Printf.sprintf "bad integer `%s': %s"
943 s (Printexc.to_string exc);
946 if n >= 0
947 then (
948 addnav ();
949 cbput state.hists.pag (string_of_int n);
950 cbrfollowlen state.hists.pag;
951 gotoy (getpagey (n + conf.pagebias - 1))
954 let pageentry text key =
955 match Char.unsafe_chr key with
956 | 'g' -> TEdone text
957 | _ -> intentry text key
959 let text = "x" in text.[0] <- c;
960 enttext (Some (':', text, Some (onhist state.hists.pag),
961 pageentry, ondone))
963 | 'b' ->
964 conf.scrollw <- if conf.scrollw > 0 then 0 else 5;
965 reshape state.w state.h;
967 | 'l' ->
968 conf.hlinks <- not conf.hlinks;
969 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
970 Glut.postRedisplay ()
972 | 'a' ->
973 conf.autoscroll <- not conf.autoscroll
975 | 'f' ->
976 begin match state.fullscreen with
977 | None ->
978 state.fullscreen <- Some (state.w, state.h);
979 Glut.fullScreen ()
980 | Some (w, h) ->
981 state.fullscreen <- None;
982 doreshape w h
985 | 'g' ->
986 gotoy 0
988 | 'n' ->
989 search state.searchpattern true
991 | 'p' | 'N' ->
992 search state.searchpattern false
994 | 't' ->
995 begin match state.layout with
996 | [] -> ()
997 | l :: _ ->
998 gotoy (state.y - l.pagey);
1001 | ' ' ->
1002 begin match List.rev state.layout with
1003 | [] -> ()
1004 | l :: _ ->
1005 gotoy (clamp (l.pageh - l.pagey))
1008 | '\127' ->
1009 begin match state.layout with
1010 | [] -> ()
1011 | l :: _ ->
1012 gotoy (clamp (-l.pageh));
1015 | '=' ->
1016 let f (fn, ln) l =
1017 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
1019 let fn, ln = List.fold_left f (-1, -1) state.layout in
1020 let s =
1021 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1022 let percent =
1023 if maxy <= 0
1024 then 100.
1025 else (100. *. (float state.y /. float maxy)) in
1026 if fn = ln
1027 then
1028 Printf.sprintf "Page %d of %d %.2f%%"
1029 (fn+1) state.pagecount percent
1030 else
1031 Printf.sprintf
1032 "Pages %d-%d of %d %.2f%%"
1033 (fn+1) (ln+1) state.pagecount percent
1035 showtext ' ' s;
1037 | 'w' ->
1038 begin match state.layout with
1039 | [] -> ()
1040 | l :: _ ->
1041 doreshape (l.pagew + conf.scrollw) l.pageh;
1042 Glut.postRedisplay ();
1045 | '\'' ->
1046 enterbookmarkmode ()
1048 | 'm' ->
1049 let ondone s =
1050 match state.layout with
1051 | l :: _ ->
1052 state.bookmarks <- (s, 0, l.pageno, l.pagey) :: state.bookmarks
1053 | _ -> ()
1055 enttext (Some ('~', "", None, textentry, ondone))
1057 | '~' ->
1058 quickbookmark ();
1059 showtext ' ' "Quick bookmark added";
1061 | 'z' ->
1062 begin match state.layout with
1063 | l :: _ ->
1064 let a = getpagewh l.pagedimno in
1065 let w, h =
1066 if conf.crophack
1067 then
1068 (truncate (1.8 *. (a.(1) -. a.(0))),
1069 truncate (1.2 *. (a.(3) -. a.(0))))
1070 else
1071 (truncate (a.(1) -. a.(0)),
1072 truncate (a.(3) -. a.(0)))
1074 doreshape (w + conf.scrollw) h;
1075 Glut.postRedisplay ();
1077 | [] -> ()
1080 | '<' | '>' ->
1081 rotate (state.rotate + (if c = '>' then 30 else -30));
1083 | '[' | ']' ->
1084 state.colorscale <-
1085 max 0.0
1086 (min (state.colorscale +. (if c = ']' then 0.1 else -0.1)) 1.0);
1087 Glut.postRedisplay ()
1089 | _ ->
1090 vlog "huh? %d %c" key (Char.chr key);
1093 | Some (c, text, onhist, onkey, ondone) when key = 8 ->
1094 let len = String.length text in
1095 if len = 0
1096 then (
1097 state.textentry <- None;
1098 Glut.postRedisplay ();
1100 else (
1101 let s = String.sub text 0 (len - 1) in
1102 enttext (Some (c, s, onhist, onkey, ondone))
1105 | Some (c, text, onhist, onkey, ondone) ->
1106 begin match Char.unsafe_chr key with
1107 | '\r' | '\n' ->
1108 ondone text;
1109 state.textentry <- None;
1110 Glut.postRedisplay ()
1112 | '\027' ->
1113 state.textentry <- None;
1114 Glut.postRedisplay ()
1116 | _ ->
1117 begin match onkey text key with
1118 | TEdone text ->
1119 state.textentry <- None;
1120 ondone text;
1121 Glut.postRedisplay ()
1123 | TEcont text ->
1124 enttext (Some (c, text, onhist, onkey, ondone));
1126 | TEstop ->
1127 state.textentry <- None;
1128 Glut.postRedisplay ()
1130 | TEswitch te ->
1131 state.textentry <- Some te;
1132 Glut.postRedisplay ()
1133 end;
1134 end;
1137 let narrow outlines pattern =
1138 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
1139 match reopt with
1140 | None -> None
1141 | Some re ->
1142 let rec fold accu n =
1143 if n = -1 then accu else
1144 let (s, _, _, _) as o = outlines.(n) in
1145 let accu =
1146 if (try ignore (Str.search_forward re s 0); true
1147 with Not_found -> false)
1148 then (o :: accu)
1149 else accu
1151 fold accu (n-1)
1153 let matched = fold [] (Array.length outlines - 1) in
1154 if matched = [] then None else Some (Array.of_list matched)
1157 let outlinekeyboard ~key ~x ~y (allowdel, active, first, outlines, qsearch) =
1158 let search active pattern incr =
1159 let dosearch re =
1160 let rec loop n =
1161 if n = Array.length outlines || n = -1 then None else
1162 let (s, _, _, _) = outlines.(n) in
1164 (try ignore (Str.search_forward re s 0); true
1165 with Not_found -> false)
1166 then Some n
1167 else loop (n + incr)
1169 loop active
1172 let re = Str.regexp_case_fold pattern in
1173 dosearch re
1174 with Failure s ->
1175 state.text <- s;
1176 None
1178 let firstof active = max 0 (active - maxoutlinerows () / 2) in
1179 match key with
1180 | 27 ->
1181 if String.length qsearch = 0
1182 then (
1183 state.text <- "";
1184 state.outline <- None;
1185 Glut.postRedisplay ();
1187 else (
1188 state.text <- "";
1189 state.outline <- Some (allowdel, active, first, outlines, "");
1190 Glut.postRedisplay ();
1193 | 18 | 19 ->
1194 let incr = if key = 18 then -1 else 1 in
1195 let active, first =
1196 match search (active + incr) qsearch incr with
1197 | None ->
1198 state.text <- qsearch ^ " [not found]";
1199 active, first
1200 | Some active ->
1201 state.text <- qsearch;
1202 active, firstof active
1204 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1205 Glut.postRedisplay ();
1207 | 8 ->
1208 let len = String.length qsearch in
1209 if len = 0
1210 then ()
1211 else (
1212 if len = 1
1213 then (
1214 state.text <- "";
1215 state.outline <- Some (allowdel, active, first, outlines, "");
1217 else
1218 let qsearch = String.sub qsearch 0 (len - 1) in
1219 let active, first =
1220 match search active qsearch ~-1 with
1221 | None ->
1222 state.text <- qsearch ^ " [not found]";
1223 active, first
1224 | Some active ->
1225 state.text <- qsearch;
1226 active, firstof active
1228 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1230 Glut.postRedisplay ()
1232 | 13 ->
1233 if active < Array.length outlines
1234 then (
1235 let (_, _, n, t) = outlines.(active) in
1236 gotopage n t;
1238 state.text <- "";
1239 if allowdel then state.bookmarks <- Array.to_list outlines;
1240 state.outline <- None;
1241 Glut.postRedisplay ();
1243 | _ when key >= 32 && key < 127 ->
1244 let pattern = addchar qsearch (Char.chr key) in
1245 let active, first =
1246 match search active pattern 1 with
1247 | None ->
1248 state.text <- pattern ^ " [not found]";
1249 active, first
1250 | Some active ->
1251 state.text <- pattern;
1252 active, firstof active
1254 state.outline <- Some (allowdel, active, first, outlines, pattern);
1255 Glut.postRedisplay ()
1257 | 14 when not allowdel ->
1258 let optoutlines = narrow outlines qsearch in
1259 begin match optoutlines with
1260 | None -> state.text <- "can't narrow"
1261 | Some outlines ->
1262 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1263 match state.outlines with
1264 | Olist l -> ()
1265 | Oarray a -> state.outlines <- Onarrow (outlines, a)
1266 | Onarrow (a, b) -> state.outlines <- Onarrow (outlines, b)
1267 end;
1268 Glut.postRedisplay ()
1270 | 21 when not allowdel ->
1271 let outline =
1272 match state.outlines with
1273 | Oarray a -> a
1274 | Olist l ->
1275 let a = Array.of_list (List.rev l) in
1276 state.outlines <- Oarray a;
1278 | Onarrow (a, b) ->
1279 state.outlines <- Oarray b;
1282 state.outline <- Some (allowdel, 0, 0, outline, qsearch);
1283 Glut.postRedisplay ()
1285 | 12 ->
1286 state.outline <-
1287 Some (allowdel, active, firstof active, outlines, qsearch);
1288 Glut.postRedisplay ()
1290 | 127 when allowdel ->
1291 let len = Array.length outlines - 1 in
1292 if len = 0
1293 then (
1294 state.outline <- None;
1295 state.bookmarks <- [];
1297 else (
1298 let bookmarks = Array.init len
1299 (fun i ->
1300 let i = if i >= active then i + 1 else i in
1301 outlines.(i)
1304 state.outline <-
1305 Some (allowdel,
1306 min active (len-1),
1307 min first (len-1),
1308 bookmarks, qsearch)
1311 Glut.postRedisplay ()
1313 | _ -> log "unknown key %d" key
1316 let keyboard ~key ~x ~y =
1317 if key = 7
1318 then
1319 wcmd "interrupt" []
1320 else
1321 match state.outline with
1322 | None -> viewkeyboard ~key ~x ~y
1323 | Some outline -> outlinekeyboard ~key ~x ~y outline
1326 let special ~key ~x ~y =
1327 match state.outline with
1328 | None ->
1329 begin match state.textentry with
1330 | None ->
1331 let y =
1332 match key with
1333 | Glut.KEY_F3 -> search state.searchpattern true; state.y
1334 | Glut.KEY_UP -> clamp (-conf.scrollincr)
1335 | Glut.KEY_DOWN -> clamp conf.scrollincr
1336 | Glut.KEY_PAGE_UP ->
1337 if Glut.getModifiers () land Glut.active_ctrl != 0
1338 then
1339 match state.layout with
1340 | [] -> state.y
1341 | l :: _ -> state.y - l.pagey
1342 else
1343 clamp (-state.h)
1344 | Glut.KEY_PAGE_DOWN ->
1345 if Glut.getModifiers () land Glut.active_ctrl != 0
1346 then
1347 match List.rev state.layout with
1348 | [] -> state.y
1349 | l :: _ -> getpagey l.pageno
1350 else
1351 clamp state.h
1352 | Glut.KEY_HOME -> addnav (); 0
1353 | Glut.KEY_END ->
1354 addnav ();
1355 state.maxy - (if conf.maxhfit then state.h else 0)
1356 | _ -> state.y
1358 state.text <- "";
1359 gotoy y
1361 | Some (c, s, Some onhist, onkey, ondone) ->
1362 let s =
1363 match key with
1364 | Glut.KEY_UP -> onhist HCprev
1365 | Glut.KEY_DOWN -> onhist HCnext
1366 | Glut.KEY_HOME -> onhist HCfirst
1367 | Glut.KEY_END -> onhist HClast
1368 | _ -> state.text
1370 state.textentry <- Some (c, s, Some onhist, onkey, ondone);
1371 Glut.postRedisplay ()
1373 | _ -> ()
1376 | Some (allowdel, active, first, outlines, qsearch) ->
1377 let maxrows = maxoutlinerows () in
1378 let navigate incr =
1379 let active = active + incr in
1380 let active = max 0 (min active (Array.length outlines - 1)) in
1381 let first =
1382 if active > first
1383 then
1384 let rows = active - first in
1385 if rows > maxrows then active - maxrows else first
1386 else active
1388 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1389 Glut.postRedisplay ()
1391 match key with
1392 | Glut.KEY_UP -> navigate ~-1
1393 | Glut.KEY_DOWN -> navigate 1
1394 | Glut.KEY_PAGE_UP -> navigate ~-maxrows
1395 | Glut.KEY_PAGE_DOWN -> navigate maxrows
1397 | Glut.KEY_HOME ->
1398 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1399 Glut.postRedisplay ()
1401 | Glut.KEY_END ->
1402 let active = Array.length outlines - 1 in
1403 let first = max 0 (active - maxrows) in
1404 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1405 Glut.postRedisplay ()
1407 | _ -> ()
1410 let drawplaceholder l =
1411 GlDraw.color (scalecolor 1.0);
1412 GlDraw.rect
1413 (0.0, float l.pagedispy)
1414 (float l.pagew, float (l.pagedispy + l.pagevh))
1416 let x = 0.0
1417 and y = float (l.pagedispy + 13) in
1418 let font = Glut.BITMAP_8_BY_13 in
1419 GlDraw.color (0.0, 0.0, 0.0);
1420 GlPix.raster_pos ~x ~y ();
1421 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c))
1422 ("Loading " ^ string_of_int l.pageno);
1425 let now () = Unix.gettimeofday ();;
1427 let drawpage i l =
1428 begin match getopaque l.pageno with
1429 | Some opaque when validopaque opaque ->
1430 if state.textentry = None
1431 then GlDraw.color (scalecolor 1.0)
1432 else GlDraw.color (scalecolor 0.4);
1433 let a = now () in
1434 draw l.pagedispy l.pagew l.pagevh l.pagey opaque;
1435 let b = now () in
1436 let d = b-.a in
1437 if conf.hlinks then highlightlinks opaque (l.pagedispy - l.pagey);
1438 vlog "draw %f sec" d;
1440 | _ ->
1441 drawplaceholder l;
1442 end;
1443 GlDraw.color (0.5, 0.5, 0.5);
1444 GlDraw.rect
1445 (0., float i)
1446 (float (state.w - conf.scrollw), float (i + (l.pagedispy - i)))
1448 l.pagedispy + l.pagevh;
1451 let scrollindicator () =
1452 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1453 GlDraw.color (0.64 , 0.64, 0.64);
1454 GlDraw.rect
1455 (float (state.w - conf.scrollw), 0.)
1456 (float state.w, float state.h)
1458 GlDraw.color (0.0, 0.0, 0.0);
1459 let sh = (float (maxy + state.h) /. float state.h) in
1460 let sh = float state.h /. sh in
1461 let sh = max sh (float conf.scrollh) in
1463 let percent =
1464 if state.y = state.maxy
1465 then 1.0
1466 else float state.y /. float maxy
1468 let position = (float state.h -. sh) *. percent in
1470 let position =
1471 if position +. sh > float state.h
1472 then
1473 float state.h -. sh
1474 else
1475 position
1477 GlDraw.rect
1478 (float (state.w - conf.scrollw), position)
1479 (float state.w, position +. sh)
1483 let showsel () =
1484 match state.mstate with
1485 | Mnone ->
1488 | Msel ((x0, y0), (x1, y1)) ->
1489 let rec loop = function
1490 | l :: ls ->
1491 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1492 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1493 then
1494 match getopaque l.pageno with
1495 | Some opaque when validopaque opaque ->
1496 let oy = -l.pagey + l.pagedispy in
1497 seltext opaque (x0, y0, x1, y1) oy;
1499 | _ -> ()
1500 else loop ls
1501 | [] -> ()
1503 loop state.layout
1506 let showrects () =
1507 Gl.enable `blend;
1508 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
1509 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1510 List.iter
1511 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
1512 List.iter (fun l ->
1513 if l.pageno = pageno
1514 then (
1515 let d = float (l.pagedispy - l.pagey) in
1516 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
1517 GlDraw.begins `quads;
1519 GlDraw.vertex2 (x0, y0+.d);
1520 GlDraw.vertex2 (x1, y1+.d);
1521 GlDraw.vertex2 (x2, y2+.d);
1522 GlDraw.vertex2 (x3, y3+.d);
1524 GlDraw.ends ();
1526 ) state.layout
1527 ) state.rects
1529 Gl.disable `blend;
1532 let showoutline = function
1533 | None -> ()
1534 | Some (allowdel, active, first, outlines, qsearch) ->
1535 Gl.enable `blend;
1536 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1537 GlDraw.color (0., 0., 0.) ~alpha:0.85;
1538 GlDraw.rect (0., 0.) (float state.w, float state.h);
1539 Gl.disable `blend;
1541 GlDraw.color (1., 1., 1.);
1542 let font = Glut.BITMAP_9_BY_15 in
1543 let draw_string x y s =
1544 GlPix.raster_pos ~x ~y ();
1545 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s
1547 let rec loop row =
1548 if row = Array.length outlines || (row - first) * 16 > state.h
1549 then ()
1550 else (
1551 let (s, l, _, _) = outlines.(row) in
1552 let y = (row - first) * 16 in
1553 let x = 5 + 15*l in
1554 if row = active
1555 then (
1556 Gl.enable `blend;
1557 GlDraw.polygon_mode `both `line;
1558 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1559 GlDraw.color (1., 1., 1.) ~alpha:0.9;
1560 GlDraw.rect (0., float (y + 1))
1561 (float (state.w - conf.scrollw - 1), float (y + 18));
1562 GlDraw.polygon_mode `both `fill;
1563 Gl.disable `blend;
1564 GlDraw.color (1., 1., 1.);
1566 draw_string (float x) (float (y + 16)) s;
1567 loop (row+1)
1570 loop first
1573 let display () =
1574 let lasty = List.fold_left drawpage 0 (state.layout) in
1575 GlDraw.color (scalecolor 0.5);
1576 GlDraw.rect
1577 (0., float lasty)
1578 (float (state.w - conf.scrollw), float state.h)
1580 showrects ();
1581 scrollindicator ();
1582 showsel ();
1583 showoutline state.outline;
1584 enttext ();
1585 Glut.swapBuffers ();
1588 let getunder x y =
1589 let rec f = function
1590 | l :: rest ->
1591 begin match getopaque l.pageno with
1592 | Some opaque when validopaque opaque ->
1593 let y = y - l.pagedispy in
1594 if y > 0
1595 then
1596 let y = l.pagey + y in
1597 match whatsunder opaque x y with
1598 | Unone -> f rest
1599 | under -> under
1600 else
1601 f rest
1602 | _ ->
1603 f rest
1605 | [] -> Unone
1607 f state.layout
1610 let mouse ~button ~bstate ~x ~y =
1611 match button with
1612 | Glut.OTHER_BUTTON n when n == 3 || n == 4 && bstate = Glut.UP ->
1613 let incr =
1614 if n = 3
1615 then
1616 -conf.scrollincr
1617 else
1618 conf.scrollincr
1620 let incr = incr * 2 in
1621 let y = clamp incr in
1622 gotoy y
1624 | Glut.LEFT_BUTTON when state.outline = None ->
1625 let dest = if bstate = Glut.DOWN then getunder x y else Unone in
1626 begin match dest with
1627 | Ulinkgoto (pageno, top) ->
1628 if pageno >= 0
1629 then
1630 gotopage pageno top
1632 | Ulinkuri s ->
1633 print_endline s
1635 | Unone when bstate = Glut.DOWN ->
1636 Glut.setCursor Glut.CURSOR_INHERIT;
1637 state.mstate <- Mnone
1639 | Unone | Utext _ ->
1640 if bstate = Glut.DOWN
1641 then (
1642 if state.rotate mod 360 = 0 then (
1643 state.mstate <- Msel ((x, y), (x, y));
1644 Glut.postRedisplay ()
1647 else (
1648 match state.mstate with
1649 | Mnone -> ()
1650 | Msel ((x0, y0), (x1, y1)) ->
1651 let f l =
1652 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1653 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1654 then
1655 match getopaque l.pageno with
1656 | Some opaque when validopaque opaque ->
1657 copysel opaque
1658 | _ -> ()
1660 List.iter f state.layout;
1661 copysel ""; (* ugly *)
1662 Glut.setCursor Glut.CURSOR_INHERIT;
1663 state.mstate <- Mnone;
1667 | _ ->
1670 let mouse ~button ~state ~x ~y = mouse button state x y;;
1672 let motion ~x ~y =
1673 if state.outline = None
1674 then
1675 match state.mstate with
1676 | Mnone -> ()
1677 | Msel (a, _) ->
1678 state.mstate <- Msel (a, (x, y));
1679 Glut.postRedisplay ()
1682 let pmotion ~x ~y =
1683 if state.outline = None
1684 then
1685 match state.mstate with
1686 | Mnone ->
1687 begin match getunder x y with
1688 | Unone -> Glut.setCursor Glut.CURSOR_INHERIT
1689 | Ulinkuri uri ->
1690 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
1691 Glut.setCursor Glut.CURSOR_INFO
1692 | Ulinkgoto (page, y) ->
1693 if conf.underinfo then showtext 'p' ("age: " ^ string_of_int page);
1694 Glut.setCursor Glut.CURSOR_INFO
1695 | Utext s ->
1696 if conf.underinfo then showtext 'f' ("ont: " ^ s);
1697 Glut.setCursor Glut.CURSOR_TEXT
1700 | Msel (a, _) ->
1704 let () =
1705 let statepath =
1706 let home =
1707 if Sys.os_type = "Win32"
1708 then
1709 try Sys.getenv "HOMEPATH" with Not_found -> ""
1710 else
1711 try Filename.concat (Sys.getenv "HOME") ".config" with Not_found -> ""
1713 Filename.concat home "llpp"
1715 let pstate =
1717 let ic = open_in_bin statepath in
1718 let hash = input_value ic in
1719 close_in ic;
1720 hash
1721 with exn ->
1722 if false
1723 then
1724 prerr_endline ("Error loading state " ^ Printexc.to_string exn)
1726 Hashtbl.create 1
1728 let savestate () =
1730 let w, h =
1731 match state.fullscreen with
1732 | None -> state.w, state.h
1733 | Some wh -> wh
1735 Hashtbl.replace pstate state.path (state.bookmarks, w, h);
1736 let oc = open_out_bin statepath in
1737 output_value oc pstate
1738 with exn ->
1739 if false
1740 then
1741 prerr_endline ("Error saving state " ^ Printexc.to_string exn)
1744 let setstate () =
1746 let statebookmarks, statew, stateh = Hashtbl.find pstate state.path in
1747 state.w <- statew;
1748 state.h <- stateh;
1749 state.bookmarks <- statebookmarks;
1750 with Not_found -> ()
1751 | exn ->
1752 prerr_endline ("Error setting state " ^ Printexc.to_string exn)
1755 Arg.parse [] (fun s -> state.path <- s) "options:";
1756 let name =
1757 if String.length state.path = 0
1758 then (prerr_endline "filename missing"; exit 1)
1759 else state.path
1762 setstate ();
1763 let _ = Glut.init Sys.argv in
1764 let () = Glut.initDisplayMode ~depth:false ~double_buffer:true () in
1765 let () = Glut.initWindowSize state.w state.h in
1766 let _ = Glut.createWindow ("llpp " ^ Filename.basename name) in
1768 let csock, ssock =
1769 if Sys.os_type = "Unix"
1770 then
1771 Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0
1772 else
1773 let addr = Unix.ADDR_INET (Unix.inet_addr_loopback, 1337) in
1774 let sock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1775 Unix.setsockopt sock Unix.SO_REUSEADDR true;
1776 Unix.bind sock addr;
1777 Unix.listen sock 1;
1778 let csock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1779 Unix.connect csock addr;
1780 let ssock, _ = Unix.accept sock in
1781 Unix.close sock;
1782 let opts sock =
1783 Unix.setsockopt sock Unix.TCP_NODELAY true;
1784 Unix.setsockopt_optint sock Unix.SO_LINGER None;
1786 opts ssock;
1787 opts csock;
1788 at_exit (fun () -> Unix.shutdown ssock Unix.SHUTDOWN_ALL);
1789 ssock, csock
1792 let () = Glut.displayFunc display in
1793 let () = Glut.reshapeFunc reshape in
1794 let () = Glut.keyboardFunc keyboard in
1795 let () = Glut.specialFunc special in
1796 let () = Glut.idleFunc (Some idle) in
1797 let () = Glut.mouseFunc mouse in
1798 let () = Glut.motionFunc motion in
1799 let () = Glut.passiveMotionFunc pmotion in
1801 init ssock;
1802 state.csock <- csock;
1803 state.ssock <- ssock;
1804 state.text <- "Opening " ^ name;
1805 writecmd csock ("open " ^ name ^ "\000");
1807 at_exit savestate;
1809 let rec handlelablglutbug () =
1811 Glut.mainLoop ();
1812 with Glut.BadEnum "key in special_of_int" ->
1813 showtext '!' " LablGlut bug: special key not recognized";
1814 handlelablglutbug ()
1816 handlelablglutbug ();