Make compatpdims static
[llpp.git] / main.ml
blob4f4bdce86acf0187a17342d13808b0a3af89d262
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 * bool) -> 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 getpagewh : int -> float array = "ml_getpagewh";;
17 external whatsunder : string -> int -> int -> under = "ml_whatsunder";;
19 type mstate = Msel of ((int * int) * (int * int)) | Mnone;;
21 type 'a circbuf =
22 { store : 'a array
23 ; mutable rc : int
24 ; mutable wc : int
25 ; mutable len : int
29 type textentry = (char * string * onhist option * onkey * ondone)
30 and onkey = string -> int -> te
31 and ondone = string -> unit
32 and onhist = histcmd -> string
33 and histcmd = HCnext | HCprev | HCfirst | HClast
34 and te =
35 | TEstop
36 | TEdone of string
37 | TEcont of string
38 | TEswitch of textentry
41 let cbnew n v =
42 { store = Array.create n v
43 ; rc = 0
44 ; wc = 0
45 ; len = 0
49 let cblen b = Array.length b.store;;
51 let cbput b v =
52 let len = cblen b in
53 b.store.(b.wc) <- v;
54 b.wc <- (b.wc + 1) mod len;
55 b.len <- min (b.len + 1) len;
58 let cbpeekw b = b.store.(b.wc);;
60 let cbget b dir =
61 if b.len = 0 then b.store.(0) else
62 let rc = b.rc + dir in
63 let rc = if rc = -1 then b.len - 1 else rc in
64 let rc = if rc = b.len then 0 else rc in
65 b.rc <- rc;
66 b.store.(rc);
69 let cbrfollowlen b =
70 b.rc <- b.len;
73 type layout =
74 { pageno : int
75 ; pagedimno : int
76 ; pagew : int
77 ; pageh : int
78 ; pagedispy : int
79 ; pagey : int
80 ; pagevh : int
84 type conf =
85 { mutable scrollw : int
86 ; mutable scrollh : int
87 ; mutable icase : bool
88 ; mutable preload : bool
89 ; mutable pagebias : int
90 ; mutable verbose : bool
91 ; mutable scrollincr : int
92 ; mutable maxhfit : bool
93 ; mutable crophack : bool
94 ; mutable autoscroll : bool
95 ; mutable showall : bool
96 ; mutable hlinks : bool
97 ; mutable underinfo : bool
101 type outline = string * int * int * float;;
102 type outlines =
103 | Oarray of outline array
104 | Olist of outline list
105 | Onarrow of outline array * outline array
108 type rect = (float * float * float * float * float * float * float * float);;
110 type state =
111 { mutable csock : Unix.file_descr
112 ; mutable ssock : Unix.file_descr
113 ; mutable w : int
114 ; mutable h : int
115 ; mutable rotate : int
116 ; mutable y : int
117 ; mutable ty : float
118 ; mutable maxy : int
119 ; mutable layout : layout list
120 ; pagemap : ((int * int * int), string) Hashtbl.t
121 ; mutable pages : (int * int * int) list
122 ; mutable pagecount : int
123 ; pagecache : string circbuf
124 ; mutable rendering : bool
125 ; mutable mstate : mstate
126 ; mutable searchpattern : string
127 ; mutable rects : (int * int * rect) list
128 ; mutable rects1 : (int * int * rect) list
129 ; mutable text : string
130 ; mutable fullscreen : (int * int) option
131 ; mutable textentry : textentry option
132 ; mutable outlines : outlines
133 ; mutable outline : (bool * int * int * outline array * string) option
134 ; mutable bookmarks : outline list
135 ; mutable path : string
136 ; mutable invalidated : int
137 ; mutable colorscale : float
138 ; hists : hists
140 and hists =
141 { pat : string circbuf
142 ; pag : string circbuf
143 ; nav : float circbuf
147 let conf =
148 { scrollw = 5
149 ; scrollh = 12
150 ; icase = true
151 ; preload = true
152 ; pagebias = 0
153 ; verbose = false
154 ; scrollincr = 24
155 ; maxhfit = true
156 ; crophack = false
157 ; autoscroll = false
158 ; showall = false
159 ; hlinks = false
160 ; underinfo = false
164 let state =
165 { csock = Unix.stdin
166 ; ssock = Unix.stdin
167 ; w = 900
168 ; h = 900
169 ; rotate = 0
170 ; y = 0
171 ; ty = 0.0
172 ; layout = []
173 ; maxy = max_int
174 ; pagemap = Hashtbl.create 10
175 ; pagecache = cbnew 10 ""
176 ; pages = []
177 ; pagecount = 0
178 ; rendering = false
179 ; mstate = Mnone
180 ; rects = []
181 ; rects1 = []
182 ; text = ""
183 ; fullscreen = None
184 ; textentry = None
185 ; searchpattern = ""
186 ; outlines = Olist []
187 ; outline = None
188 ; bookmarks = []
189 ; path = ""
190 ; invalidated = 0
191 ; hists =
192 { nav = cbnew 100 0.0
193 ; pat = cbnew 20 ""
194 ; pag = cbnew 10 ""
196 ; colorscale = 1.0
200 let vlog fmt =
201 if conf.verbose
202 then
203 Printf.kprintf prerr_endline fmt
204 else
205 Printf.kprintf ignore fmt
208 let writecmd fd s =
209 let len = String.length s in
210 let n = 4 + len in
211 let b = Buffer.create n in
212 Buffer.add_char b (Char.chr ((len lsr 24) land 0xff));
213 Buffer.add_char b (Char.chr ((len lsr 16) land 0xff));
214 Buffer.add_char b (Char.chr ((len lsr 8) land 0xff));
215 Buffer.add_char b (Char.chr ((len lsr 0) land 0xff));
216 Buffer.add_string b s;
217 let s' = Buffer.contents b in
218 let n' = Unix.write fd s' 0 n in
219 if n' != n then failwith "write failed";
222 let readcmd fd =
223 let s = "xxxx" in
224 let n = Unix.read fd s 0 4 in
225 if n != 4 then failwith "incomplete read(len)";
226 let len = 0
227 lor (Char.code s.[0] lsl 24)
228 lor (Char.code s.[1] lsl 16)
229 lor (Char.code s.[2] lsl 8)
230 lor (Char.code s.[3] lsl 0)
232 let s = String.create len in
233 let n = Unix.read fd s 0 len in
234 if n != len then failwith "incomplete read(data)";
238 let yratio y =
239 if y = state.maxy then 1.0
240 else float y /. float state.maxy
243 let makecmd s l =
244 let b = Buffer.create 10 in
245 Buffer.add_string b s;
246 let rec combine = function
247 | [] -> b
248 | x :: xs ->
249 Buffer.add_char b ' ';
250 let s =
251 match x with
252 | `b b -> if b then "1" else "0"
253 | `s s -> s
254 | `i i -> string_of_int i
255 | `f f -> string_of_float f
256 | `I f -> string_of_int (truncate f)
258 Buffer.add_string b s;
259 combine xs;
261 combine l;
264 let wcmd s l =
265 let cmd = Buffer.contents (makecmd s l) in
266 writecmd state.csock cmd;
269 let calcheight () =
270 let rec f pn ph fh l =
271 match l with
272 | (n, _, h) :: rest ->
273 let fh = fh + (n - pn) * ph in
274 f n h fh rest
276 | [] ->
277 let fh = fh + (ph * (state.pagecount - pn)) in
278 max 0 fh
280 let fh = f 0 0 0 state.pages in
284 let getpageyh pageno =
285 let rec f pn ph y l =
286 match l with
287 | (n, _, h) :: rest ->
288 if n >= pageno
289 then
290 y + (pageno - pn) * ph, h
291 else
292 let y = y + (n - pn) * ph in
293 f n h y rest
295 | [] ->
296 y + (pageno - pn) * ph, ph
298 f 0 0 0 state.pages;
301 let getpagey pageno = fst (getpageyh pageno);;
303 let layout y sh =
304 let rec f pageno pdimno prev vy py dy l cacheleft accu =
305 if pageno = state.pagecount || cacheleft = 0
306 then accu
307 else
308 let ((_, w, h) as curr), rest, pdimno =
309 match l with
310 | ((pageno', _, _) as curr) :: rest when pageno' = pageno ->
311 curr, rest, pdimno + 1
312 | _ ->
313 prev, l, pdimno
315 let pageno' = pageno + 1 in
316 if py + h > vy
317 then
318 let py' = vy - py in
319 let vh = h - py' in
320 if dy + vh > sh
321 then
322 let vh = sh - dy in
323 if vh <= 0
324 then
325 accu
326 else
327 let e =
328 { pageno = pageno
329 ; pagedimno = pdimno
330 ; pagew = w
331 ; pageh = h
332 ; pagedispy = dy
333 ; pagey = py'
334 ; pagevh = vh
337 e :: accu
338 else
339 let e =
340 { pageno = pageno
341 ; pagedimno = pdimno
342 ; pagew = w
343 ; pageh = h
344 ; pagedispy = dy
345 ; pagey = py'
346 ; pagevh = vh
349 let accu = e :: accu in
350 f pageno' pdimno curr
351 (vy + vh) (py + h) (dy + vh + 2) rest
352 (pred cacheleft) accu
353 else
354 f pageno' pdimno curr vy (py + h) dy rest cacheleft accu
356 if state.invalidated = 0
357 then
358 let accu = f 0 ~-1 (0,0,0) y 0 0 state.pages (cblen state.pagecache) [] in
359 state.maxy <- calcheight ();
360 List.rev accu
361 else
365 let clamp incr =
366 let y = state.y + incr in
367 let y = max 0 y in
368 let y = min y (state.maxy - (if conf.maxhfit then state.h else 0)) in
372 let getopaque pageno =
373 try Some (Hashtbl.find state.pagemap (pageno + 1, state.w - conf.scrollw,
374 state.rotate))
375 with Not_found -> None
378 let cache pageno opaque =
379 Hashtbl.replace state.pagemap (pageno + 1, state.w - conf.scrollw,
380 state.rotate) opaque
383 let validopaque opaque = String.length opaque > 0;;
385 let render l =
386 match getopaque l.pageno with
387 | None when not state.rendering ->
388 state.rendering <- true;
389 cache l.pageno "";
390 wcmd "render" [`i (l.pageno + 1)
391 ;`i l.pagedimno
392 ;`i l.pagew
393 ;`i l.pageh];
395 | _ -> ()
398 let loadlayout layout =
399 let rec f all = function
400 | l :: ls ->
401 begin match getopaque l.pageno with
402 | None -> render l; f false ls
403 | Some opaque -> f (all && validopaque opaque) ls
405 | [] -> all
407 f (layout <> []) layout;
410 let preload () =
411 if conf.preload then
412 let evictedvisible =
413 let evictedopaque = cbpeekw state.pagecache in
414 List.exists (fun l ->
415 match getopaque l.pageno with
416 | Some opaque when validopaque opaque ->
417 evictedopaque = opaque
418 | otherwise -> false
419 ) state.layout
421 if not evictedvisible then
422 let y = if state.y < state.h then 0 else state.y - state.h in
423 let pages = layout y (state.h*3) in
424 List.iter render pages;
427 let gotoy y =
428 let y = max 0 y in
429 let y = min state.maxy y in
430 let pages = layout y state.h in
431 let ready = loadlayout pages in
432 state.ty <- yratio y;
433 if conf.showall then (
434 if ready then (
435 state.layout <- pages;
436 state.y <- y;
437 Glut.postRedisplay ();
440 else (
441 state.layout <- pages;
442 state.y <- y;
443 Glut.postRedisplay ();
445 preload ();
448 let addnav () =
449 cbput state.hists.nav (yratio state.y);
450 cbrfollowlen state.hists.nav;
453 let getnav () =
454 let y = cbget state.hists.nav ~-1 in
455 truncate (y *. float state.maxy)
458 let gotopage n top =
459 let y, h = getpageyh n in
460 addnav ();
461 gotoy (y + (truncate (top *. float h)));
464 let gotopage1 n top =
465 let y = getpagey n in
466 addnav ();
467 gotoy (y + top);
470 let invalidate () =
471 state.layout <- [];
472 state.pages <- [];
473 state.rects <- [];
474 state.rects1 <- [];
475 state.invalidated <- state.invalidated + 1;
478 let scalecolor c =
479 let c = c *. state.colorscale in
480 (c, c, c);
483 let reshape ~w ~h =
484 state.w <- w;
485 state.h <- h;
486 GlDraw.viewport 0 0 w h;
487 GlMat.mode `modelview;
488 GlMat.load_identity ();
489 GlMat.mode `projection;
490 GlMat.load_identity ();
491 GlMat.rotate ~x:1.0 ~angle:180.0 ();
492 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
493 GlMat.scale3 (2.0 /. float w, 2.0 /. float state.h, 1.0);
494 GlClear.color (scalecolor 1.0);
495 GlClear.clear [`color];
497 invalidate ();
498 wcmd "geometry" [`i (state.w - conf.scrollw); `i h];
501 let showtext c s =
502 GlDraw.color (0.0, 0.0, 0.0);
503 GlDraw.rect
504 (0.0, float (state.h - 18))
505 (float (state.w - conf.scrollw - 1), float state.h)
507 let font = Glut.BITMAP_8_BY_13 in
508 GlDraw.color (1.0, 1.0, 1.0);
509 GlPix.raster_pos ~x:0.0 ~y:(float (state.h - 5)) ();
510 Glut.bitmapCharacter ~font ~c:(Char.code c);
511 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s;
514 let enttext () =
515 let len = String.length state.text in
516 match state.textentry with
517 | None ->
518 if len > 0 then showtext ' ' state.text
520 | Some (c, text, _, _, _) ->
521 let s =
522 if len > 0
523 then
524 text ^ " [" ^ state.text ^ "]"
525 else
526 text
528 showtext c s;
531 let showtext c s =
532 if true
533 then (
534 state.text <- Printf.sprintf "%c%s" c s;
535 Glut.postRedisplay ();
537 else (
538 showtext c s;
539 Glut.swapBuffers ();
543 let act cmd =
544 match cmd.[0] with
545 | 'c' ->
546 state.pages <- [];
548 | 'D' ->
549 state.rects <- state.rects1;
550 Glut.postRedisplay ()
552 | 'C' ->
553 let n = Scanf.sscanf cmd "C %d" (fun n -> n) in
554 state.pagecount <- n;
555 state.invalidated <- state.invalidated - 1;
556 if state.invalidated = 0
557 then (
558 let rely = yratio state.y in
559 state.maxy <- calcheight ();
560 gotoy (truncate (float state.maxy *. rely));
563 | 't' ->
564 let s = Scanf.sscanf cmd "t %n"
565 (fun n -> String.sub cmd n (String.length cmd - n))
567 Glut.setWindowTitle s
569 | 'T' ->
570 let s = Scanf.sscanf cmd "T %n"
571 (fun n -> String.sub cmd n (String.length cmd - n))
573 if state.textentry = None
574 then (
575 state.text <- s;
576 showtext ' ' s;
578 else (
579 state.text <- s;
580 Glut.postRedisplay ();
583 | 'V' ->
584 if conf.verbose
585 then
586 let s = Scanf.sscanf cmd "V %n"
587 (fun n -> String.sub cmd n (String.length cmd - n))
589 state.text <- s;
590 showtext ' ' s;
592 | 'F' ->
593 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
594 Scanf.sscanf cmd "F %d %d %f %f %f %f %f %f %f %f"
595 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
596 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
598 let y = (getpagey pageno) + truncate y0 in
599 addnav ();
600 gotoy y;
601 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
603 | 'R' ->
604 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
605 Scanf.sscanf cmd "R %d %d %f %f %f %f %f %f %f %f"
606 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
607 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
609 state.rects1 <-
610 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
612 | 'r' ->
613 let n, w, h, r, p =
614 Scanf.sscanf cmd "r %d %d %d %d %s"
615 (fun n w h r p -> (n, w, h, r, p))
617 Hashtbl.replace state.pagemap (n, w, r) p;
618 let opaque = cbpeekw state.pagecache in
619 if validopaque opaque
620 then (
621 let k =
622 Hashtbl.fold
623 (fun k v a -> if v = opaque then k else a)
624 state.pagemap (-1, -1, -1)
626 wcmd "free" [`s opaque];
627 Hashtbl.remove state.pagemap k
629 cbput state.pagecache p;
630 state.rendering <- false;
631 if conf.showall
632 then gotoy (truncate (ceil (state.ty *. float state.maxy)))
633 else (
634 let visible = List.exists (fun l -> l.pageno + 1 = n) state.layout in
635 if visible then gotoy state.y
636 else (ignore (loadlayout state.layout); preload ())
639 | 'l' ->
640 let (n, w, h) as pagelayout =
641 Scanf.sscanf cmd "l %d %d %d" (fun n w h -> n, w, h)
643 state.pages <- pagelayout :: state.pages
645 | 'o' ->
646 let (l, n, t, h, pos) =
647 Scanf.sscanf cmd "o %d %d %d %d %n" (fun l n t h pos -> l, n, t, h, pos)
649 let s = String.sub cmd pos (String.length cmd - pos) in
650 let outline = (s, l, n, float t /. float h) in
651 let outlines =
652 match state.outlines with
653 | Olist outlines -> Olist (outline :: outlines)
654 | Oarray _ -> Olist [outline]
655 | Onarrow _ -> Olist [outline]
657 state.outlines <- outlines
659 | _ ->
660 log "unknown cmd `%S'" cmd
663 let now = Unix.gettimeofday;;
665 let idle () =
666 let rec loop delay =
667 let r, _, _ = Unix.select [state.csock] [] [] delay in
668 begin match r with
669 | [] ->
670 if conf.autoscroll then begin
671 let y = state.y + conf.scrollincr in
672 let y = if y >= state.maxy then 0 else y in
673 gotoy y;
674 state.text <- "";
675 end;
677 | _ ->
678 let cmd = readcmd state.csock in
679 act cmd;
680 loop 0.0
681 end;
682 in loop 0.001
685 let onhist cb = function
686 | HCprev -> cbget cb ~-1
687 | HCnext -> cbget cb 1
688 | HCfirst -> cbget cb ~-(cb.rc)
689 | HClast -> cbget cb (cb.len - 1 - cb.rc)
692 let search pattern forward =
693 if String.length pattern > 0
694 then
695 let pn, py =
696 match state.layout with
697 | [] -> 0, 0
698 | l :: _ ->
699 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
701 let cmd =
702 let b = makecmd "search"
703 [`b conf.icase; `i pn; `i py; `i (if forward then 1 else 0)]
705 Buffer.add_char b ',';
706 Buffer.add_string b pattern;
707 Buffer.add_char b '\000';
708 Buffer.contents b;
710 writecmd state.csock cmd;
713 let intentry text key =
714 let c = Char.unsafe_chr key in
715 match c with
716 | '0' .. '9' ->
717 let s = "x" in s.[0] <- c;
718 let text = text ^ s in
719 TEcont text
721 | _ ->
722 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
723 TEcont text
726 let addchar s c =
727 let b = Buffer.create (String.length s + 1) in
728 Buffer.add_string b s;
729 Buffer.add_char b c;
730 Buffer.contents b;
733 let textentry text key =
734 let c = Char.unsafe_chr key in
735 match c with
736 | _ when key >= 32 && key < 127 ->
737 let text = addchar text c in
738 TEcont text
740 | _ ->
741 log "unhandled key %d char `%c'" key (Char.unsafe_chr key);
742 TEcont text
745 let rotate angle =
746 state.rotate <- angle;
747 invalidate ();
748 wcmd "rotate" [`i angle];
751 let optentry text key =
752 let btos b = if b then "on" else "off" in
753 let c = Char.unsafe_chr key in
754 match c with
755 | 's' ->
756 let ondone s =
757 try conf.scrollincr <- int_of_string s with exc ->
758 state.text <- Printf.sprintf "bad integer `%s': %s"
759 s (Printexc.to_string exc)
761 TEswitch ('#', "", None, intentry, ondone)
763 | 'R' ->
764 let ondone s =
765 match try
766 Some (int_of_string s)
767 with exc ->
768 state.text <- Printf.sprintf "bad integer `%s': %s"
769 s (Printexc.to_string exc);
770 None
771 with
772 | Some angle -> rotate angle
773 | None -> ()
775 TEswitch ('^', "", None, intentry, ondone)
777 | 'i' ->
778 conf.icase <- not conf.icase;
779 TEdone ("case insensitive search " ^ (btos conf.icase))
781 | 'p' ->
782 conf.preload <- not conf.preload;
783 gotoy state.y;
784 TEdone ("preload " ^ (btos conf.preload))
786 | 'v' ->
787 conf.verbose <- not conf.verbose;
788 TEdone ("verbose " ^ (btos conf.verbose))
790 | 'h' ->
791 conf.maxhfit <- not conf.maxhfit;
792 state.maxy <- state.maxy + (if conf.maxhfit then -state.h else state.h);
793 TEdone ("maxhfit " ^ (btos conf.maxhfit))
795 | 'c' ->
796 conf.crophack <- not conf.crophack;
797 TEdone ("crophack " ^ btos conf.crophack)
799 | 'a' ->
800 conf.showall <- not conf.showall;
801 TEdone ("showall " ^ btos conf.showall)
803 | 'f' ->
804 conf.underinfo <- not conf.underinfo;
805 TEdone ("underinfo " ^ btos conf.underinfo)
807 | _ ->
808 state.text <- Printf.sprintf "bad option %d `%c'" key c;
809 TEstop
812 let maxoutlinerows () = (state.h - 31) / 16;;
814 let enterselector allowdel outlines errmsg =
815 if Array.length outlines = 0
816 then (
817 showtext ' ' errmsg;
819 else (
820 Glut.setCursor Glut.CURSOR_INHERIT;
821 let pageno =
822 match state.layout with
823 | [] -> -1
824 | {pageno=pageno} :: rest -> pageno
826 let active =
827 let rec loop n =
828 if n = Array.length outlines
829 then 0
830 else
831 let (_, _, outlinepageno, _) = outlines.(n) in
832 if outlinepageno >= pageno then n else loop (n+1)
834 loop 0
836 state.outline <-
837 Some (allowdel, active,
838 max 0 ((active - maxoutlinerows () / 2)), outlines, "");
839 Glut.postRedisplay ();
843 let enteroutlinemode () =
844 let outlines =
845 match state.outlines with
846 | Oarray a -> a
847 | Olist l ->
848 let a = Array.of_list (List.rev l) in
849 state.outlines <- Oarray a;
851 | Onarrow (a, b) -> a
853 enterselector false outlines "Document has no outline";
856 let enterbookmarkmode () =
857 let bookmarks = Array.of_list state.bookmarks in
858 enterselector true bookmarks "Document has no bookmarks (yet)";
862 let quickbookmark ?title () =
863 match state.layout with
864 | [] -> ()
865 | l :: _ ->
866 let title =
867 match title with
868 | None ->
869 let sec = Unix.gettimeofday () in
870 let tm = Unix.localtime sec in
871 Printf.sprintf "Quick %d visited (%d/%d/%d %d:%d)"
872 l.pageno
873 tm.Unix.tm_mday
874 tm.Unix.tm_mon
875 (tm.Unix.tm_year + 1900)
876 tm.Unix.tm_hour
877 tm.Unix.tm_min
878 | Some title -> title
880 state.bookmarks <-
881 (title, 0, l.pageno, float l.pagey /. float l.pageh) :: state.bookmarks
884 let doreshape w h =
885 state.fullscreen <- None;
886 Glut.reshapeWindow w h;
889 let viewkeyboard ~key ~x ~y =
890 let enttext te =
891 state.textentry <- te;
892 state.text <- "";
893 enttext ();
894 Glut.postRedisplay ()
896 match state.textentry with
897 | None ->
898 let c = Char.chr key in
899 begin match c with
900 | '\027' | 'q' ->
901 exit 0
903 | '\008' ->
904 let y = getnav () in
905 gotoy y
907 | 'o' ->
908 enteroutlinemode ()
910 | 'u' ->
911 state.rects <- [];
912 state.text <- "";
913 Glut.postRedisplay ()
915 | '/' | '?' ->
916 let ondone isforw s =
917 cbput state.hists.pat s;
918 cbrfollowlen state.hists.pat;
919 state.searchpattern <- s;
920 search s isforw
922 enttext (Some (c, "", Some (onhist state.hists.pat),
923 textentry, ondone (c ='/')))
925 | '+' ->
926 let ondone s =
927 let n =
928 try int_of_string s with exc ->
929 state.text <- Printf.sprintf "bad integer `%s': %s"
930 s (Printexc.to_string exc);
931 max_int
933 if n != max_int
934 then (
935 conf.pagebias <- n;
936 state.text <- "page bias is now " ^ string_of_int n;
939 enttext (Some ('+', "", None, intentry, ondone))
941 | '-' ->
942 let ondone msg =
943 state.text <- msg;
945 enttext (Some ('-', "", None, optentry, ondone))
947 | '0' .. '9' ->
948 let ondone s =
949 let n =
950 try int_of_string s with exc ->
951 state.text <- Printf.sprintf "bad integer `%s': %s"
952 s (Printexc.to_string exc);
955 if n >= 0
956 then (
957 addnav ();
958 cbput state.hists.pag (string_of_int n);
959 cbrfollowlen state.hists.pag;
960 gotoy (getpagey (n + conf.pagebias - 1))
963 let pageentry text key =
964 match Char.unsafe_chr key with
965 | 'g' -> TEdone text
966 | _ -> intentry text key
968 let text = "x" in text.[0] <- c;
969 enttext (Some (':', text, Some (onhist state.hists.pag),
970 pageentry, ondone))
972 | 'b' ->
973 conf.scrollw <- if conf.scrollw > 0 then 0 else 5;
974 reshape state.w state.h;
976 | 'l' ->
977 conf.hlinks <- not conf.hlinks;
978 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
979 Glut.postRedisplay ()
981 | 'a' ->
982 conf.autoscroll <- not conf.autoscroll
984 | 'f' ->
985 begin match state.fullscreen with
986 | None ->
987 state.fullscreen <- Some (state.w, state.h);
988 Glut.fullScreen ()
989 | Some (w, h) ->
990 state.fullscreen <- None;
991 doreshape w h
994 | 'g' ->
995 gotoy 0
997 | 'n' ->
998 search state.searchpattern true
1000 | 'p' | 'N' ->
1001 search state.searchpattern false
1003 | 't' ->
1004 begin match state.layout with
1005 | [] -> ()
1006 | l :: _ ->
1007 gotoy (state.y - l.pagey);
1010 | ' ' ->
1011 begin match List.rev state.layout with
1012 | [] -> ()
1013 | l :: _ ->
1014 gotoy (clamp (l.pageh - l.pagey))
1017 | '\127' ->
1018 begin match state.layout with
1019 | [] -> ()
1020 | l :: _ ->
1021 gotoy (clamp (-l.pageh));
1024 | '=' ->
1025 let f (fn, ln) l =
1026 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
1028 let fn, ln = List.fold_left f (-1, -1) state.layout in
1029 let s =
1030 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1031 let percent =
1032 if maxy <= 0
1033 then 100.
1034 else (100. *. (float state.y /. float maxy)) in
1035 if fn = ln
1036 then
1037 Printf.sprintf "Page %d of %d %.2f%%"
1038 (fn+1) state.pagecount percent
1039 else
1040 Printf.sprintf
1041 "Pages %d-%d of %d %.2f%%"
1042 (fn+1) (ln+1) state.pagecount percent
1044 showtext ' ' s;
1046 | 'w' ->
1047 begin match state.layout with
1048 | [] -> ()
1049 | l :: _ ->
1050 doreshape (l.pagew + conf.scrollw) l.pageh;
1051 Glut.postRedisplay ();
1054 | '\'' ->
1055 enterbookmarkmode ()
1057 | 'm' ->
1058 let ondone s =
1059 match state.layout with
1060 | l :: _ ->
1061 state.bookmarks <-
1062 (s, 0, l.pageno, float l.pagey /. float l.pageh)
1063 :: state.bookmarks
1064 | _ -> ()
1066 enttext (Some ('~', "", None, textentry, ondone))
1068 | '~' ->
1069 quickbookmark ();
1070 showtext ' ' "Quick bookmark added";
1072 | 'z' ->
1073 begin match state.layout with
1074 | l :: _ ->
1075 let a = getpagewh l.pagedimno in
1076 let w, h =
1077 if conf.crophack
1078 then
1079 (truncate (1.8 *. (a.(1) -. a.(0))),
1080 truncate (1.2 *. (a.(3) -. a.(0))))
1081 else
1082 (truncate (a.(1) -. a.(0)),
1083 truncate (a.(3) -. a.(0)))
1085 doreshape (w + conf.scrollw) h;
1086 Glut.postRedisplay ();
1088 | [] -> ()
1091 | '<' | '>' ->
1092 rotate (state.rotate + (if c = '>' then 30 else -30));
1094 | '[' | ']' ->
1095 state.colorscale <-
1096 max 0.0
1097 (min (state.colorscale +. (if c = ']' then 0.1 else -0.1)) 1.0);
1098 Glut.postRedisplay ()
1100 | 'k' -> gotoy (clamp (-conf.scrollincr))
1101 | 'j' -> gotoy (clamp conf.scrollincr)
1103 | _ ->
1104 vlog "huh? %d %c" key (Char.chr key);
1107 | Some (c, text, onhist, onkey, ondone) when key = 8 ->
1108 let len = String.length text in
1109 if len = 0
1110 then (
1111 state.textentry <- None;
1112 Glut.postRedisplay ();
1114 else (
1115 let s = String.sub text 0 (len - 1) in
1116 enttext (Some (c, s, onhist, onkey, ondone))
1119 | Some (c, text, onhist, onkey, ondone) ->
1120 begin match Char.unsafe_chr key with
1121 | '\r' | '\n' ->
1122 ondone text;
1123 state.textentry <- None;
1124 Glut.postRedisplay ()
1126 | '\027' ->
1127 state.textentry <- None;
1128 Glut.postRedisplay ()
1130 | _ ->
1131 begin match onkey text key with
1132 | TEdone text ->
1133 state.textentry <- None;
1134 ondone text;
1135 Glut.postRedisplay ()
1137 | TEcont text ->
1138 enttext (Some (c, text, onhist, onkey, ondone));
1140 | TEstop ->
1141 state.textentry <- None;
1142 Glut.postRedisplay ()
1144 | TEswitch te ->
1145 state.textentry <- Some te;
1146 Glut.postRedisplay ()
1147 end;
1148 end;
1151 let narrow outlines pattern =
1152 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
1153 match reopt with
1154 | None -> None
1155 | Some re ->
1156 let rec fold accu n =
1157 if n = -1 then accu else
1158 let (s, _, _, _) as o = outlines.(n) in
1159 let accu =
1160 if (try ignore (Str.search_forward re s 0); true
1161 with Not_found -> false)
1162 then (o :: accu)
1163 else accu
1165 fold accu (n-1)
1167 let matched = fold [] (Array.length outlines - 1) in
1168 if matched = [] then None else Some (Array.of_list matched)
1171 let outlinekeyboard ~key ~x ~y (allowdel, active, first, outlines, qsearch) =
1172 let search active pattern incr =
1173 let dosearch re =
1174 let rec loop n =
1175 if n = Array.length outlines || n = -1 then None else
1176 let (s, _, _, _) = outlines.(n) in
1178 (try ignore (Str.search_forward re s 0); true
1179 with Not_found -> false)
1180 then Some n
1181 else loop (n + incr)
1183 loop active
1186 let re = Str.regexp_case_fold pattern in
1187 dosearch re
1188 with Failure s ->
1189 state.text <- s;
1190 None
1192 let firstof active = max 0 (active - maxoutlinerows () / 2) in
1193 match key with
1194 | 27 ->
1195 if String.length qsearch = 0
1196 then (
1197 state.text <- "";
1198 state.outline <- None;
1199 Glut.postRedisplay ();
1201 else (
1202 state.text <- "";
1203 state.outline <- Some (allowdel, active, first, outlines, "");
1204 Glut.postRedisplay ();
1207 | 18 | 19 ->
1208 let incr = if key = 18 then -1 else 1 in
1209 let active, first =
1210 match search (active + incr) qsearch incr with
1211 | None ->
1212 state.text <- qsearch ^ " [not found]";
1213 active, first
1214 | Some active ->
1215 state.text <- qsearch;
1216 active, firstof active
1218 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1219 Glut.postRedisplay ();
1221 | 8 ->
1222 let len = String.length qsearch in
1223 if len = 0
1224 then ()
1225 else (
1226 if len = 1
1227 then (
1228 state.text <- "";
1229 state.outline <- Some (allowdel, active, first, outlines, "");
1231 else
1232 let qsearch = String.sub qsearch 0 (len - 1) in
1233 let active, first =
1234 match search active qsearch ~-1 with
1235 | None ->
1236 state.text <- qsearch ^ " [not found]";
1237 active, first
1238 | Some active ->
1239 state.text <- qsearch;
1240 active, firstof active
1242 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1244 Glut.postRedisplay ()
1246 | 13 ->
1247 if active < Array.length outlines
1248 then (
1249 let (_, _, n, t) = outlines.(active) in
1250 gotopage n t;
1252 state.text <- "";
1253 if allowdel then state.bookmarks <- Array.to_list outlines;
1254 state.outline <- None;
1255 Glut.postRedisplay ();
1257 | _ when key >= 32 && key < 127 ->
1258 let pattern = addchar qsearch (Char.chr key) in
1259 let active, first =
1260 match search active pattern 1 with
1261 | None ->
1262 state.text <- pattern ^ " [not found]";
1263 active, first
1264 | Some active ->
1265 state.text <- pattern;
1266 active, firstof active
1268 state.outline <- Some (allowdel, active, first, outlines, pattern);
1269 Glut.postRedisplay ()
1271 | 14 when not allowdel ->
1272 let optoutlines = narrow outlines qsearch in
1273 begin match optoutlines with
1274 | None -> state.text <- "can't narrow"
1275 | Some outlines ->
1276 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1277 match state.outlines with
1278 | Olist l -> ()
1279 | Oarray a -> state.outlines <- Onarrow (outlines, a)
1280 | Onarrow (a, b) -> state.outlines <- Onarrow (outlines, b)
1281 end;
1282 Glut.postRedisplay ()
1284 | 21 when not allowdel ->
1285 let outline =
1286 match state.outlines with
1287 | Oarray a -> a
1288 | Olist l ->
1289 let a = Array.of_list (List.rev l) in
1290 state.outlines <- Oarray a;
1292 | Onarrow (a, b) ->
1293 state.outlines <- Oarray b;
1296 state.outline <- Some (allowdel, 0, 0, outline, qsearch);
1297 Glut.postRedisplay ()
1299 | 12 ->
1300 state.outline <-
1301 Some (allowdel, active, firstof active, outlines, qsearch);
1302 Glut.postRedisplay ()
1304 | 127 when allowdel ->
1305 let len = Array.length outlines - 1 in
1306 if len = 0
1307 then (
1308 state.outline <- None;
1309 state.bookmarks <- [];
1311 else (
1312 let bookmarks = Array.init len
1313 (fun i ->
1314 let i = if i >= active then i + 1 else i in
1315 outlines.(i)
1318 state.outline <-
1319 Some (allowdel,
1320 min active (len-1),
1321 min first (len-1),
1322 bookmarks, qsearch)
1325 Glut.postRedisplay ()
1327 | _ -> log "unknown key %d" key
1330 let keyboard ~key ~x ~y =
1331 if key = 7
1332 then
1333 wcmd "interrupt" []
1334 else
1335 match state.outline with
1336 | None -> viewkeyboard ~key ~x ~y
1337 | Some outline -> outlinekeyboard ~key ~x ~y outline
1340 let special ~key ~x ~y =
1341 match state.outline with
1342 | None ->
1343 begin match state.textentry with
1344 | None ->
1345 let y =
1346 match key with
1347 | Glut.KEY_F3 -> search state.searchpattern true; state.y
1348 | Glut.KEY_UP -> clamp (-conf.scrollincr)
1349 | Glut.KEY_DOWN -> clamp conf.scrollincr
1350 | Glut.KEY_PAGE_UP ->
1351 if Glut.getModifiers () land Glut.active_ctrl != 0
1352 then
1353 match state.layout with
1354 | [] -> state.y
1355 | l :: _ -> state.y - l.pagey
1356 else
1357 clamp (-state.h)
1358 | Glut.KEY_PAGE_DOWN ->
1359 if Glut.getModifiers () land Glut.active_ctrl != 0
1360 then
1361 match List.rev state.layout with
1362 | [] -> state.y
1363 | l :: _ -> getpagey l.pageno
1364 else
1365 clamp state.h
1366 | Glut.KEY_HOME -> addnav (); 0
1367 | Glut.KEY_END ->
1368 addnav ();
1369 state.maxy - (if conf.maxhfit then state.h else 0)
1370 | _ -> state.y
1372 state.text <- "";
1373 gotoy y
1375 | Some (c, s, Some onhist, onkey, ondone) ->
1376 let s =
1377 match key with
1378 | Glut.KEY_UP -> onhist HCprev
1379 | Glut.KEY_DOWN -> onhist HCnext
1380 | Glut.KEY_HOME -> onhist HCfirst
1381 | Glut.KEY_END -> onhist HClast
1382 | _ -> state.text
1384 state.textentry <- Some (c, s, Some onhist, onkey, ondone);
1385 Glut.postRedisplay ()
1387 | _ -> ()
1390 | Some (allowdel, active, first, outlines, qsearch) ->
1391 let maxrows = maxoutlinerows () in
1392 let navigate incr =
1393 let active = active + incr in
1394 let active = max 0 (min active (Array.length outlines - 1)) in
1395 let first =
1396 if active > first
1397 then
1398 let rows = active - first in
1399 if rows > maxrows then active - maxrows else first
1400 else active
1402 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1403 Glut.postRedisplay ()
1405 match key with
1406 | Glut.KEY_UP -> navigate ~-1
1407 | Glut.KEY_DOWN -> navigate 1
1408 | Glut.KEY_PAGE_UP -> navigate ~-maxrows
1409 | Glut.KEY_PAGE_DOWN -> navigate maxrows
1411 | Glut.KEY_HOME ->
1412 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1413 Glut.postRedisplay ()
1415 | Glut.KEY_END ->
1416 let active = Array.length outlines - 1 in
1417 let first = max 0 (active - maxrows) in
1418 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1419 Glut.postRedisplay ()
1421 | _ -> ()
1424 let drawplaceholder l =
1425 GlDraw.color (scalecolor 1.0);
1426 GlDraw.rect
1427 (0.0, float l.pagedispy)
1428 (float l.pagew, float (l.pagedispy + l.pagevh))
1430 let x = 0.0
1431 and y = float (l.pagedispy + 13) in
1432 let font = Glut.BITMAP_8_BY_13 in
1433 GlDraw.color (0.0, 0.0, 0.0);
1434 GlPix.raster_pos ~x ~y ();
1435 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c))
1436 ("Loading " ^ string_of_int l.pageno);
1439 let now () = Unix.gettimeofday ();;
1441 let drawpage i l =
1442 begin match getopaque l.pageno with
1443 | Some opaque when validopaque opaque ->
1444 if state.textentry = None
1445 then GlDraw.color (scalecolor 1.0)
1446 else GlDraw.color (scalecolor 0.4);
1447 let a = now () in
1448 draw (l.pagedispy, l.pagew, l.pagevh, l.pagey, conf.hlinks) opaque;
1449 let b = now () in
1450 let d = b-.a in
1451 vlog "draw %f sec" d;
1453 | _ ->
1454 drawplaceholder l;
1455 end;
1456 GlDraw.color (0.5, 0.5, 0.5);
1457 GlDraw.rect
1458 (0., float i)
1459 (float (state.w - conf.scrollw), float (i + (l.pagedispy - i)))
1461 l.pagedispy + l.pagevh;
1464 let scrollindicator () =
1465 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1466 GlDraw.color (0.64 , 0.64, 0.64);
1467 GlDraw.rect
1468 (float (state.w - conf.scrollw), 0.)
1469 (float state.w, float state.h)
1471 GlDraw.color (0.0, 0.0, 0.0);
1472 let sh = (float (maxy + state.h) /. float state.h) in
1473 let sh = float state.h /. sh in
1474 let sh = max sh (float conf.scrollh) in
1476 let percent =
1477 if state.y = state.maxy
1478 then 1.0
1479 else float state.y /. float maxy
1481 let position = (float state.h -. sh) *. percent in
1483 let position =
1484 if position +. sh > float state.h
1485 then
1486 float state.h -. sh
1487 else
1488 position
1490 GlDraw.rect
1491 (float (state.w - conf.scrollw), position)
1492 (float state.w, position +. sh)
1496 let showsel () =
1497 match state.mstate with
1498 | Mnone ->
1501 | Msel ((x0, y0), (x1, y1)) ->
1502 let rec loop = function
1503 | l :: ls ->
1504 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1505 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1506 then
1507 match getopaque l.pageno with
1508 | Some opaque when validopaque opaque ->
1509 let oy = -l.pagey + l.pagedispy in
1510 seltext opaque (x0, y0, x1, y1) oy;
1512 | _ -> ()
1513 else loop ls
1514 | [] -> ()
1516 loop state.layout
1519 let showrects () =
1520 Gl.enable `blend;
1521 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
1522 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1523 List.iter
1524 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
1525 List.iter (fun l ->
1526 if l.pageno = pageno
1527 then (
1528 let d = float (l.pagedispy - l.pagey) in
1529 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
1530 GlDraw.begins `quads;
1532 GlDraw.vertex2 (x0, y0+.d);
1533 GlDraw.vertex2 (x1, y1+.d);
1534 GlDraw.vertex2 (x2, y2+.d);
1535 GlDraw.vertex2 (x3, y3+.d);
1537 GlDraw.ends ();
1539 ) state.layout
1540 ) state.rects
1542 Gl.disable `blend;
1545 let showoutline = function
1546 | None -> ()
1547 | Some (allowdel, active, first, outlines, qsearch) ->
1548 Gl.enable `blend;
1549 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1550 GlDraw.color (0., 0., 0.) ~alpha:0.85;
1551 GlDraw.rect (0., 0.) (float state.w, float state.h);
1552 Gl.disable `blend;
1554 GlDraw.color (1., 1., 1.);
1555 let font = Glut.BITMAP_9_BY_15 in
1556 let draw_string x y s =
1557 GlPix.raster_pos ~x ~y ();
1558 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s
1560 let rec loop row =
1561 if row = Array.length outlines || (row - first) * 16 > state.h
1562 then ()
1563 else (
1564 let (s, l, _, _) = outlines.(row) in
1565 let y = (row - first) * 16 in
1566 let x = 5 + 15*l in
1567 if row = active
1568 then (
1569 Gl.enable `blend;
1570 GlDraw.polygon_mode `both `line;
1571 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1572 GlDraw.color (1., 1., 1.) ~alpha:0.9;
1573 GlDraw.rect (0., float (y + 1))
1574 (float (state.w - conf.scrollw - 1), float (y + 18));
1575 GlDraw.polygon_mode `both `fill;
1576 Gl.disable `blend;
1577 GlDraw.color (1., 1., 1.);
1579 draw_string (float x) (float (y + 16)) s;
1580 loop (row+1)
1583 loop first
1586 let display () =
1587 let lasty = List.fold_left drawpage 0 (state.layout) in
1588 GlDraw.color (scalecolor 0.5);
1589 GlDraw.rect
1590 (0., float lasty)
1591 (float (state.w - conf.scrollw), float state.h)
1593 showrects ();
1594 scrollindicator ();
1595 showsel ();
1596 showoutline state.outline;
1597 enttext ();
1598 Glut.swapBuffers ();
1601 let getunder x y =
1602 let rec f = function
1603 | l :: rest ->
1604 begin match getopaque l.pageno with
1605 | Some opaque when validopaque opaque ->
1606 let y = y - l.pagedispy in
1607 if y > 0
1608 then
1609 let y = l.pagey + y in
1610 match whatsunder opaque x y with
1611 | Unone -> f rest
1612 | under -> under
1613 else
1614 f rest
1615 | _ ->
1616 f rest
1618 | [] -> Unone
1620 f state.layout
1623 let mouse ~button ~bstate ~x ~y =
1624 match button with
1625 | Glut.OTHER_BUTTON n when n == 3 || n == 4 && bstate = Glut.UP ->
1626 let incr =
1627 if n = 3
1628 then
1629 -conf.scrollincr
1630 else
1631 conf.scrollincr
1633 let incr = incr * 2 in
1634 let y = clamp incr in
1635 gotoy y
1637 | Glut.LEFT_BUTTON when state.outline = None ->
1638 let dest = if bstate = Glut.DOWN then getunder x y else Unone in
1639 begin match dest with
1640 | Ulinkgoto (pageno, top) ->
1641 if pageno >= 0
1642 then
1643 gotopage1 pageno top
1645 | Ulinkuri s ->
1646 print_endline s
1648 | Unone when bstate = Glut.DOWN ->
1649 Glut.setCursor Glut.CURSOR_INHERIT;
1650 state.mstate <- Mnone
1652 | Unone | Utext _ ->
1653 if bstate = Glut.DOWN
1654 then (
1655 if state.rotate mod 360 = 0 then (
1656 state.mstate <- Msel ((x, y), (x, y));
1657 Glut.postRedisplay ()
1660 else (
1661 match state.mstate with
1662 | Mnone -> ()
1663 | Msel ((x0, y0), (x1, y1)) ->
1664 let f l =
1665 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1666 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1667 then
1668 match getopaque l.pageno with
1669 | Some opaque when validopaque opaque ->
1670 copysel opaque
1671 | _ -> ()
1673 List.iter f state.layout;
1674 copysel ""; (* ugly *)
1675 Glut.setCursor Glut.CURSOR_INHERIT;
1676 state.mstate <- Mnone;
1680 | _ ->
1683 let mouse ~button ~state ~x ~y = mouse button state x y;;
1685 let motion ~x ~y =
1686 if state.outline = None
1687 then
1688 match state.mstate with
1689 | Mnone -> ()
1690 | Msel (a, _) ->
1691 state.mstate <- Msel (a, (x, y));
1692 Glut.postRedisplay ()
1695 let pmotion ~x ~y =
1696 if state.outline = None
1697 then
1698 match state.mstate with
1699 | Mnone ->
1700 begin match getunder x y with
1701 | Unone -> Glut.setCursor Glut.CURSOR_INHERIT
1702 | Ulinkuri uri ->
1703 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
1704 Glut.setCursor Glut.CURSOR_INFO
1705 | Ulinkgoto (page, y) ->
1706 if conf.underinfo then showtext 'p' ("age: " ^ string_of_int page);
1707 Glut.setCursor Glut.CURSOR_INFO
1708 | Utext s ->
1709 if conf.underinfo then showtext 'f' ("ont: " ^ s);
1710 Glut.setCursor Glut.CURSOR_TEXT
1713 | Msel (a, _) ->
1717 let () =
1718 let statepath =
1719 let home =
1720 if Sys.os_type = "Win32"
1721 then
1722 try Sys.getenv "HOMEPATH" with Not_found -> ""
1723 else
1724 try Filename.concat (Sys.getenv "HOME") ".config" with Not_found -> ""
1726 Filename.concat home "llpp"
1728 let pstate =
1730 let ic = open_in_bin statepath in
1731 let hash = input_value ic in
1732 close_in ic;
1733 hash
1734 with exn ->
1735 if false
1736 then
1737 prerr_endline ("Error loading state " ^ Printexc.to_string exn)
1739 Hashtbl.create 1
1741 let savestate () =
1743 let w, h =
1744 match state.fullscreen with
1745 | None -> state.w, state.h
1746 | Some wh -> wh
1748 Hashtbl.replace pstate state.path (state.bookmarks, w, h);
1749 let oc = open_out_bin statepath in
1750 output_value oc pstate
1751 with exn ->
1752 if false
1753 then
1754 prerr_endline ("Error saving state " ^ Printexc.to_string exn)
1757 let setstate () =
1759 let statebookmarks, statew, stateh = Hashtbl.find pstate state.path in
1760 state.w <- statew;
1761 state.h <- stateh;
1762 state.bookmarks <- statebookmarks;
1763 with Not_found -> ()
1764 | exn ->
1765 prerr_endline ("Error setting state " ^ Printexc.to_string exn)
1768 Arg.parse [] (fun s -> state.path <- s) "options:";
1769 let name =
1770 if String.length state.path = 0
1771 then (prerr_endline "filename missing"; exit 1)
1772 else state.path
1775 setstate ();
1776 let _ = Glut.init Sys.argv in
1777 let () = Glut.initDisplayMode ~depth:false ~double_buffer:true () in
1778 let () = Glut.initWindowSize state.w state.h in
1779 let _ = Glut.createWindow ("llpp " ^ Filename.basename name) in
1781 let csock, ssock =
1782 if Sys.os_type = "Unix"
1783 then
1784 Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0
1785 else
1786 let addr = Unix.ADDR_INET (Unix.inet_addr_loopback, 1337) in
1787 let sock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1788 Unix.setsockopt sock Unix.SO_REUSEADDR true;
1789 Unix.bind sock addr;
1790 Unix.listen sock 1;
1791 let csock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1792 Unix.connect csock addr;
1793 let ssock, _ = Unix.accept sock in
1794 Unix.close sock;
1795 let opts sock =
1796 Unix.setsockopt sock Unix.TCP_NODELAY true;
1797 Unix.setsockopt_optint sock Unix.SO_LINGER None;
1799 opts ssock;
1800 opts csock;
1801 at_exit (fun () -> Unix.shutdown ssock Unix.SHUTDOWN_ALL);
1802 ssock, csock
1805 let () = Glut.displayFunc display in
1806 let () = Glut.reshapeFunc reshape in
1807 let () = Glut.keyboardFunc keyboard in
1808 let () = Glut.specialFunc special in
1809 let () = Glut.idleFunc (Some idle) in
1810 let () = Glut.mouseFunc mouse in
1811 let () = Glut.motionFunc motion in
1812 let () = Glut.passiveMotionFunc pmotion in
1814 init ssock;
1815 state.csock <- csock;
1816 state.ssock <- ssock;
1817 state.text <- "Opening " ^ name;
1818 writecmd csock ("open " ^ name ^ "\000");
1820 at_exit savestate;
1822 let rec handlelablglutbug () =
1824 Glut.mainLoop ();
1825 with Glut.BadEnum "key in special_of_int" ->
1826 showtext '!' " LablGlut bug: special key not recognized";
1827 handlelablglutbug ()
1829 handlelablglutbug ();