Simplify reloading
[llpp.git] / main.ml
blob80cdabfa2e4c75cf32bdd7859ce71afb2737eea6
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 opendoc path =
890 invalidate ();
891 state.path <- path;
892 Hashtbl.clear state.pagemap;
894 writecmd state.csock ("open " ^ path ^ "\000");
895 Glut.setWindowTitle ("llpp " ^ Filename.basename path);
896 wcmd "geometry" [`i (state.w - conf.scrollw); `i state.h];
899 let viewkeyboard ~key ~x ~y =
900 let enttext te =
901 state.textentry <- te;
902 state.text <- "";
903 enttext ();
904 Glut.postRedisplay ()
906 match state.textentry with
907 | None ->
908 let c = Char.chr key in
909 begin match c with
910 | '\027' | 'q' ->
911 exit 0
913 | '\008' ->
914 let y = getnav () in
915 gotoy y
917 | 'o' ->
918 enteroutlinemode ()
920 | 'u' ->
921 state.rects <- [];
922 state.text <- "";
923 Glut.postRedisplay ()
925 | '/' | '?' ->
926 let ondone isforw s =
927 cbput state.hists.pat s;
928 cbrfollowlen state.hists.pat;
929 state.searchpattern <- s;
930 search s isforw
932 enttext (Some (c, "", Some (onhist state.hists.pat),
933 textentry, ondone (c ='/')))
935 | '+' ->
936 let ondone s =
937 let n =
938 try int_of_string s with exc ->
939 state.text <- Printf.sprintf "bad integer `%s': %s"
940 s (Printexc.to_string exc);
941 max_int
943 if n != max_int
944 then (
945 conf.pagebias <- n;
946 state.text <- "page bias is now " ^ string_of_int n;
949 enttext (Some ('+', "", None, intentry, ondone))
951 | '-' ->
952 let ondone msg =
953 state.text <- msg;
955 enttext (Some ('-', "", None, optentry, ondone))
957 | '0' .. '9' ->
958 let ondone s =
959 let n =
960 try int_of_string s with exc ->
961 state.text <- Printf.sprintf "bad integer `%s': %s"
962 s (Printexc.to_string exc);
965 if n >= 0
966 then (
967 addnav ();
968 cbput state.hists.pag (string_of_int n);
969 cbrfollowlen state.hists.pag;
970 gotoy (getpagey (n + conf.pagebias - 1))
973 let pageentry text key =
974 match Char.unsafe_chr key with
975 | 'g' -> TEdone text
976 | _ -> intentry text key
978 let text = "x" in text.[0] <- c;
979 enttext (Some (':', text, Some (onhist state.hists.pag),
980 pageentry, ondone))
982 | 'b' ->
983 conf.scrollw <- if conf.scrollw > 0 then 0 else 5;
984 reshape state.w state.h;
986 | 'l' ->
987 conf.hlinks <- not conf.hlinks;
988 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
989 Glut.postRedisplay ()
991 | 'a' ->
992 conf.autoscroll <- not conf.autoscroll
994 | 'f' ->
995 begin match state.fullscreen with
996 | None ->
997 state.fullscreen <- Some (state.w, state.h);
998 Glut.fullScreen ()
999 | Some (w, h) ->
1000 state.fullscreen <- None;
1001 doreshape w h
1004 | 'g' ->
1005 gotoy 0
1007 | 'n' ->
1008 search state.searchpattern true
1010 | 'p' | 'N' ->
1011 search state.searchpattern false
1013 | 't' ->
1014 begin match state.layout with
1015 | [] -> ()
1016 | l :: _ ->
1017 gotoy (state.y - l.pagey);
1020 | ' ' ->
1021 begin match List.rev state.layout with
1022 | [] -> ()
1023 | l :: _ ->
1024 gotoy (clamp (l.pageh - l.pagey))
1027 | '\127' ->
1028 begin match state.layout with
1029 | [] -> ()
1030 | l :: _ ->
1031 gotoy (clamp (-l.pageh));
1034 | '=' ->
1035 let f (fn, ln) l =
1036 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
1038 let fn, ln = List.fold_left f (-1, -1) state.layout in
1039 let s =
1040 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1041 let percent =
1042 if maxy <= 0
1043 then 100.
1044 else (100. *. (float state.y /. float maxy)) in
1045 if fn = ln
1046 then
1047 Printf.sprintf "Page %d of %d %.2f%%"
1048 (fn+1) state.pagecount percent
1049 else
1050 Printf.sprintf
1051 "Pages %d-%d of %d %.2f%%"
1052 (fn+1) (ln+1) state.pagecount percent
1054 showtext ' ' s;
1056 | 'w' ->
1057 begin match state.layout with
1058 | [] -> ()
1059 | l :: _ ->
1060 doreshape (l.pagew + conf.scrollw) l.pageh;
1061 Glut.postRedisplay ();
1064 | '\'' ->
1065 enterbookmarkmode ()
1067 | 'm' ->
1068 let ondone s =
1069 match state.layout with
1070 | l :: _ ->
1071 state.bookmarks <-
1072 (s, 0, l.pageno, float l.pagey /. float l.pageh)
1073 :: state.bookmarks
1074 | _ -> ()
1076 enttext (Some ('~', "", None, textentry, ondone))
1078 | '~' ->
1079 quickbookmark ();
1080 showtext ' ' "Quick bookmark added";
1082 | 'z' ->
1083 begin match state.layout with
1084 | l :: _ ->
1085 let a = getpagewh l.pagedimno in
1086 let w, h =
1087 if conf.crophack
1088 then
1089 (truncate (1.8 *. (a.(1) -. a.(0))),
1090 truncate (1.2 *. (a.(3) -. a.(0))))
1091 else
1092 (truncate (a.(1) -. a.(0)),
1093 truncate (a.(3) -. a.(0)))
1095 doreshape (w + conf.scrollw) h;
1096 Glut.postRedisplay ();
1098 | [] -> ()
1101 | '<' | '>' ->
1102 rotate (state.rotate + (if c = '>' then 30 else -30));
1104 | '[' | ']' ->
1105 state.colorscale <-
1106 max 0.0
1107 (min (state.colorscale +. (if c = ']' then 0.1 else -0.1)) 1.0);
1108 Glut.postRedisplay ()
1110 | 'k' -> gotoy (clamp (-conf.scrollincr))
1111 | 'j' -> gotoy (clamp conf.scrollincr)
1113 | 'r' -> opendoc state.path
1114 | 'R' -> opendoc "article.pdf"
1116 | _ ->
1117 vlog "huh? %d %c" key (Char.chr key);
1120 | Some (c, text, onhist, onkey, ondone) when key = 8 ->
1121 let len = String.length text in
1122 if len = 0
1123 then (
1124 state.textentry <- None;
1125 Glut.postRedisplay ();
1127 else (
1128 let s = String.sub text 0 (len - 1) in
1129 enttext (Some (c, s, onhist, onkey, ondone))
1132 | Some (c, text, onhist, onkey, ondone) ->
1133 begin match Char.unsafe_chr key with
1134 | '\r' | '\n' ->
1135 ondone text;
1136 state.textentry <- None;
1137 Glut.postRedisplay ()
1139 | '\027' ->
1140 state.textentry <- None;
1141 Glut.postRedisplay ()
1143 | _ ->
1144 begin match onkey text key with
1145 | TEdone text ->
1146 state.textentry <- None;
1147 ondone text;
1148 Glut.postRedisplay ()
1150 | TEcont text ->
1151 enttext (Some (c, text, onhist, onkey, ondone));
1153 | TEstop ->
1154 state.textentry <- None;
1155 Glut.postRedisplay ()
1157 | TEswitch te ->
1158 state.textentry <- Some te;
1159 Glut.postRedisplay ()
1160 end;
1161 end;
1164 let narrow outlines pattern =
1165 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
1166 match reopt with
1167 | None -> None
1168 | Some re ->
1169 let rec fold accu n =
1170 if n = -1 then accu else
1171 let (s, _, _, _) as o = outlines.(n) in
1172 let accu =
1173 if (try ignore (Str.search_forward re s 0); true
1174 with Not_found -> false)
1175 then (o :: accu)
1176 else accu
1178 fold accu (n-1)
1180 let matched = fold [] (Array.length outlines - 1) in
1181 if matched = [] then None else Some (Array.of_list matched)
1184 let outlinekeyboard ~key ~x ~y (allowdel, active, first, outlines, qsearch) =
1185 let search active pattern incr =
1186 let dosearch re =
1187 let rec loop n =
1188 if n = Array.length outlines || n = -1 then None else
1189 let (s, _, _, _) = outlines.(n) in
1191 (try ignore (Str.search_forward re s 0); true
1192 with Not_found -> false)
1193 then Some n
1194 else loop (n + incr)
1196 loop active
1199 let re = Str.regexp_case_fold pattern in
1200 dosearch re
1201 with Failure s ->
1202 state.text <- s;
1203 None
1205 let firstof active = max 0 (active - maxoutlinerows () / 2) in
1206 match key with
1207 | 27 ->
1208 if String.length qsearch = 0
1209 then (
1210 state.text <- "";
1211 state.outline <- None;
1212 Glut.postRedisplay ();
1214 else (
1215 state.text <- "";
1216 state.outline <- Some (allowdel, active, first, outlines, "");
1217 Glut.postRedisplay ();
1220 | 18 | 19 ->
1221 let incr = if key = 18 then -1 else 1 in
1222 let active, first =
1223 match search (active + incr) qsearch incr with
1224 | None ->
1225 state.text <- qsearch ^ " [not found]";
1226 active, first
1227 | Some active ->
1228 state.text <- qsearch;
1229 active, firstof active
1231 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1232 Glut.postRedisplay ();
1234 | 8 ->
1235 let len = String.length qsearch in
1236 if len = 0
1237 then ()
1238 else (
1239 if len = 1
1240 then (
1241 state.text <- "";
1242 state.outline <- Some (allowdel, active, first, outlines, "");
1244 else
1245 let qsearch = String.sub qsearch 0 (len - 1) in
1246 let active, first =
1247 match search active qsearch ~-1 with
1248 | None ->
1249 state.text <- qsearch ^ " [not found]";
1250 active, first
1251 | Some active ->
1252 state.text <- qsearch;
1253 active, firstof active
1255 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1257 Glut.postRedisplay ()
1259 | 13 ->
1260 if active < Array.length outlines
1261 then (
1262 let (_, _, n, t) = outlines.(active) in
1263 gotopage n t;
1265 state.text <- "";
1266 if allowdel then state.bookmarks <- Array.to_list outlines;
1267 state.outline <- None;
1268 Glut.postRedisplay ();
1270 | _ when key >= 32 && key < 127 ->
1271 let pattern = addchar qsearch (Char.chr key) in
1272 let active, first =
1273 match search active pattern 1 with
1274 | None ->
1275 state.text <- pattern ^ " [not found]";
1276 active, first
1277 | Some active ->
1278 state.text <- pattern;
1279 active, firstof active
1281 state.outline <- Some (allowdel, active, first, outlines, pattern);
1282 Glut.postRedisplay ()
1284 | 14 when not allowdel ->
1285 let optoutlines = narrow outlines qsearch in
1286 begin match optoutlines with
1287 | None -> state.text <- "can't narrow"
1288 | Some outlines ->
1289 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1290 match state.outlines with
1291 | Olist l -> ()
1292 | Oarray a -> state.outlines <- Onarrow (outlines, a)
1293 | Onarrow (a, b) -> state.outlines <- Onarrow (outlines, b)
1294 end;
1295 Glut.postRedisplay ()
1297 | 21 when not allowdel ->
1298 let outline =
1299 match state.outlines with
1300 | Oarray a -> a
1301 | Olist l ->
1302 let a = Array.of_list (List.rev l) in
1303 state.outlines <- Oarray a;
1305 | Onarrow (a, b) ->
1306 state.outlines <- Oarray b;
1309 state.outline <- Some (allowdel, 0, 0, outline, qsearch);
1310 Glut.postRedisplay ()
1312 | 12 ->
1313 state.outline <-
1314 Some (allowdel, active, firstof active, outlines, qsearch);
1315 Glut.postRedisplay ()
1317 | 127 when allowdel ->
1318 let len = Array.length outlines - 1 in
1319 if len = 0
1320 then (
1321 state.outline <- None;
1322 state.bookmarks <- [];
1324 else (
1325 let bookmarks = Array.init len
1326 (fun i ->
1327 let i = if i >= active then i + 1 else i in
1328 outlines.(i)
1331 state.outline <-
1332 Some (allowdel,
1333 min active (len-1),
1334 min first (len-1),
1335 bookmarks, qsearch)
1338 Glut.postRedisplay ()
1340 | _ -> log "unknown key %d" key
1343 let keyboard ~key ~x ~y =
1344 if key = 7
1345 then
1346 wcmd "interrupt" []
1347 else
1348 match state.outline with
1349 | None -> viewkeyboard ~key ~x ~y
1350 | Some outline -> outlinekeyboard ~key ~x ~y outline
1353 let special ~key ~x ~y =
1354 match state.outline with
1355 | None ->
1356 begin match state.textentry with
1357 | None ->
1358 let y =
1359 match key with
1360 | Glut.KEY_F3 -> search state.searchpattern true; state.y
1361 | Glut.KEY_UP -> clamp (-conf.scrollincr)
1362 | Glut.KEY_DOWN -> clamp conf.scrollincr
1363 | Glut.KEY_PAGE_UP ->
1364 if Glut.getModifiers () land Glut.active_ctrl != 0
1365 then
1366 match state.layout with
1367 | [] -> state.y
1368 | l :: _ -> state.y - l.pagey
1369 else
1370 clamp (-state.h)
1371 | Glut.KEY_PAGE_DOWN ->
1372 if Glut.getModifiers () land Glut.active_ctrl != 0
1373 then
1374 match List.rev state.layout with
1375 | [] -> state.y
1376 | l :: _ -> getpagey l.pageno
1377 else
1378 clamp state.h
1379 | Glut.KEY_HOME -> addnav (); 0
1380 | Glut.KEY_END ->
1381 addnav ();
1382 state.maxy - (if conf.maxhfit then state.h else 0)
1383 | _ -> state.y
1385 state.text <- "";
1386 gotoy y
1388 | Some (c, s, Some onhist, onkey, ondone) ->
1389 let s =
1390 match key with
1391 | Glut.KEY_UP -> onhist HCprev
1392 | Glut.KEY_DOWN -> onhist HCnext
1393 | Glut.KEY_HOME -> onhist HCfirst
1394 | Glut.KEY_END -> onhist HClast
1395 | _ -> state.text
1397 state.textentry <- Some (c, s, Some onhist, onkey, ondone);
1398 Glut.postRedisplay ()
1400 | _ -> ()
1403 | Some (allowdel, active, first, outlines, qsearch) ->
1404 let maxrows = maxoutlinerows () in
1405 let navigate incr =
1406 let active = active + incr in
1407 let active = max 0 (min active (Array.length outlines - 1)) in
1408 let first =
1409 if active > first
1410 then
1411 let rows = active - first in
1412 if rows > maxrows then active - maxrows else first
1413 else active
1415 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1416 Glut.postRedisplay ()
1418 match key with
1419 | Glut.KEY_UP -> navigate ~-1
1420 | Glut.KEY_DOWN -> navigate 1
1421 | Glut.KEY_PAGE_UP -> navigate ~-maxrows
1422 | Glut.KEY_PAGE_DOWN -> navigate maxrows
1424 | Glut.KEY_HOME ->
1425 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1426 Glut.postRedisplay ()
1428 | Glut.KEY_END ->
1429 let active = Array.length outlines - 1 in
1430 let first = max 0 (active - maxrows) in
1431 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1432 Glut.postRedisplay ()
1434 | _ -> ()
1437 let drawplaceholder l =
1438 GlDraw.color (scalecolor 1.0);
1439 GlDraw.rect
1440 (0.0, float l.pagedispy)
1441 (float l.pagew, float (l.pagedispy + l.pagevh))
1443 let x = 0.0
1444 and y = float (l.pagedispy + 13) in
1445 let font = Glut.BITMAP_8_BY_13 in
1446 GlDraw.color (0.0, 0.0, 0.0);
1447 GlPix.raster_pos ~x ~y ();
1448 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c))
1449 ("Loading " ^ string_of_int l.pageno);
1452 let now () = Unix.gettimeofday ();;
1454 let drawpage i l =
1455 begin match getopaque l.pageno with
1456 | Some opaque when validopaque opaque ->
1457 if state.textentry = None
1458 then GlDraw.color (scalecolor 1.0)
1459 else GlDraw.color (scalecolor 0.4);
1460 let a = now () in
1461 draw (l.pagedispy, l.pagew, l.pagevh, l.pagey, conf.hlinks) opaque;
1462 let b = now () in
1463 let d = b-.a in
1464 vlog "draw %f sec" d;
1466 | _ ->
1467 drawplaceholder l;
1468 end;
1469 GlDraw.color (0.5, 0.5, 0.5);
1470 GlDraw.rect
1471 (0., float i)
1472 (float (state.w - conf.scrollw), float (i + (l.pagedispy - i)))
1474 l.pagedispy + l.pagevh;
1477 let scrollindicator () =
1478 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1479 GlDraw.color (0.64 , 0.64, 0.64);
1480 GlDraw.rect
1481 (float (state.w - conf.scrollw), 0.)
1482 (float state.w, float state.h)
1484 GlDraw.color (0.0, 0.0, 0.0);
1485 let sh = (float (maxy + state.h) /. float state.h) in
1486 let sh = float state.h /. sh in
1487 let sh = max sh (float conf.scrollh) in
1489 let percent =
1490 if state.y = state.maxy
1491 then 1.0
1492 else float state.y /. float maxy
1494 let position = (float state.h -. sh) *. percent in
1496 let position =
1497 if position +. sh > float state.h
1498 then
1499 float state.h -. sh
1500 else
1501 position
1503 GlDraw.rect
1504 (float (state.w - conf.scrollw), position)
1505 (float state.w, position +. sh)
1509 let showsel () =
1510 match state.mstate with
1511 | Mnone ->
1514 | Msel ((x0, y0), (x1, y1)) ->
1515 let rec loop = function
1516 | l :: ls ->
1517 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1518 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1519 then
1520 match getopaque l.pageno with
1521 | Some opaque when validopaque opaque ->
1522 let oy = -l.pagey + l.pagedispy in
1523 seltext opaque (x0, y0, x1, y1) oy;
1525 | _ -> ()
1526 else loop ls
1527 | [] -> ()
1529 loop state.layout
1532 let showrects () =
1533 Gl.enable `blend;
1534 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
1535 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1536 List.iter
1537 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
1538 List.iter (fun l ->
1539 if l.pageno = pageno
1540 then (
1541 let d = float (l.pagedispy - l.pagey) in
1542 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
1543 GlDraw.begins `quads;
1545 GlDraw.vertex2 (x0, y0+.d);
1546 GlDraw.vertex2 (x1, y1+.d);
1547 GlDraw.vertex2 (x2, y2+.d);
1548 GlDraw.vertex2 (x3, y3+.d);
1550 GlDraw.ends ();
1552 ) state.layout
1553 ) state.rects
1555 Gl.disable `blend;
1558 let showoutline = function
1559 | None -> ()
1560 | Some (allowdel, active, first, outlines, qsearch) ->
1561 Gl.enable `blend;
1562 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1563 GlDraw.color (0., 0., 0.) ~alpha:0.85;
1564 GlDraw.rect (0., 0.) (float state.w, float state.h);
1565 Gl.disable `blend;
1567 GlDraw.color (1., 1., 1.);
1568 let font = Glut.BITMAP_9_BY_15 in
1569 let draw_string x y s =
1570 GlPix.raster_pos ~x ~y ();
1571 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s
1573 let rec loop row =
1574 if row = Array.length outlines || (row - first) * 16 > state.h
1575 then ()
1576 else (
1577 let (s, l, _, _) = outlines.(row) in
1578 let y = (row - first) * 16 in
1579 let x = 5 + 15*l in
1580 if row = active
1581 then (
1582 Gl.enable `blend;
1583 GlDraw.polygon_mode `both `line;
1584 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1585 GlDraw.color (1., 1., 1.) ~alpha:0.9;
1586 GlDraw.rect (0., float (y + 1))
1587 (float (state.w - conf.scrollw - 1), float (y + 18));
1588 GlDraw.polygon_mode `both `fill;
1589 Gl.disable `blend;
1590 GlDraw.color (1., 1., 1.);
1592 draw_string (float x) (float (y + 16)) s;
1593 loop (row+1)
1596 loop first
1599 let display () =
1600 let lasty = List.fold_left drawpage 0 (state.layout) in
1601 GlDraw.color (scalecolor 0.5);
1602 GlDraw.rect
1603 (0., float lasty)
1604 (float (state.w - conf.scrollw), float state.h)
1606 showrects ();
1607 scrollindicator ();
1608 showsel ();
1609 showoutline state.outline;
1610 enttext ();
1611 Glut.swapBuffers ();
1614 let getunder x y =
1615 let rec f = function
1616 | l :: rest ->
1617 begin match getopaque l.pageno with
1618 | Some opaque when validopaque opaque ->
1619 let y = y - l.pagedispy in
1620 if y > 0
1621 then
1622 let y = l.pagey + y in
1623 match whatsunder opaque x y with
1624 | Unone -> f rest
1625 | under -> under
1626 else
1627 f rest
1628 | _ ->
1629 f rest
1631 | [] -> Unone
1633 f state.layout
1636 let mouse ~button ~bstate ~x ~y =
1637 match button with
1638 | Glut.OTHER_BUTTON n when n == 3 || n == 4 && bstate = Glut.UP ->
1639 let incr =
1640 if n = 3
1641 then
1642 -conf.scrollincr
1643 else
1644 conf.scrollincr
1646 let incr = incr * 2 in
1647 let y = clamp incr in
1648 gotoy y
1650 | Glut.LEFT_BUTTON when state.outline = None ->
1651 let dest = if bstate = Glut.DOWN then getunder x y else Unone in
1652 begin match dest with
1653 | Ulinkgoto (pageno, top) ->
1654 if pageno >= 0
1655 then
1656 gotopage1 pageno top
1658 | Ulinkuri s ->
1659 print_endline s
1661 | Unone when bstate = Glut.DOWN ->
1662 Glut.setCursor Glut.CURSOR_INHERIT;
1663 state.mstate <- Mnone
1665 | Unone | Utext _ ->
1666 if bstate = Glut.DOWN
1667 then (
1668 if state.rotate mod 360 = 0 then (
1669 state.mstate <- Msel ((x, y), (x, y));
1670 Glut.postRedisplay ()
1673 else (
1674 match state.mstate with
1675 | Mnone -> ()
1676 | Msel ((x0, y0), (x1, y1)) ->
1677 let f l =
1678 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1679 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1680 then
1681 match getopaque l.pageno with
1682 | Some opaque when validopaque opaque ->
1683 copysel opaque
1684 | _ -> ()
1686 List.iter f state.layout;
1687 copysel ""; (* ugly *)
1688 Glut.setCursor Glut.CURSOR_INHERIT;
1689 state.mstate <- Mnone;
1693 | _ ->
1696 let mouse ~button ~state ~x ~y = mouse button state x y;;
1698 let motion ~x ~y =
1699 if state.outline = None
1700 then
1701 match state.mstate with
1702 | Mnone -> ()
1703 | Msel (a, _) ->
1704 state.mstate <- Msel (a, (x, y));
1705 Glut.postRedisplay ()
1708 let pmotion ~x ~y =
1709 if state.outline = None
1710 then
1711 match state.mstate with
1712 | Mnone ->
1713 begin match getunder x y with
1714 | Unone -> Glut.setCursor Glut.CURSOR_INHERIT
1715 | Ulinkuri uri ->
1716 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
1717 Glut.setCursor Glut.CURSOR_INFO
1718 | Ulinkgoto (page, y) ->
1719 if conf.underinfo then showtext 'p' ("age: " ^ string_of_int page);
1720 Glut.setCursor Glut.CURSOR_INFO
1721 | Utext s ->
1722 if conf.underinfo then showtext 'f' ("ont: " ^ s);
1723 Glut.setCursor Glut.CURSOR_TEXT
1726 | Msel (a, _) ->
1730 let () =
1731 let statepath =
1732 let home =
1733 if Sys.os_type = "Win32"
1734 then
1735 try Sys.getenv "HOMEPATH" with Not_found -> ""
1736 else
1737 try Filename.concat (Sys.getenv "HOME") ".config" with Not_found -> ""
1739 Filename.concat home "llpp"
1741 let pstate =
1743 let ic = open_in_bin statepath in
1744 let hash = input_value ic in
1745 close_in ic;
1746 hash
1747 with exn ->
1748 if false
1749 then
1750 prerr_endline ("Error loading state " ^ Printexc.to_string exn)
1752 Hashtbl.create 1
1754 let savestate () =
1756 let w, h =
1757 match state.fullscreen with
1758 | None -> state.w, state.h
1759 | Some wh -> wh
1761 Hashtbl.replace pstate state.path (state.bookmarks, w, h);
1762 let oc = open_out_bin statepath in
1763 output_value oc pstate
1764 with exn ->
1765 if false
1766 then
1767 prerr_endline ("Error saving state " ^ Printexc.to_string exn)
1770 let setstate () =
1772 let statebookmarks, statew, stateh = Hashtbl.find pstate state.path in
1773 state.w <- statew;
1774 state.h <- stateh;
1775 state.bookmarks <- statebookmarks;
1776 with Not_found -> ()
1777 | exn ->
1778 prerr_endline ("Error setting state " ^ Printexc.to_string exn)
1781 Arg.parse [] (fun s -> state.path <- s) "options:";
1782 let name =
1783 if String.length state.path = 0
1784 then (prerr_endline "filename missing"; exit 1)
1785 else state.path
1788 setstate ();
1789 let _ = Glut.init Sys.argv in
1790 let () = Glut.initDisplayMode ~depth:false ~double_buffer:true () in
1791 let () = Glut.initWindowSize state.w state.h in
1792 let _ = Glut.createWindow ("llpp " ^ Filename.basename name) in
1794 let csock, ssock =
1795 if Sys.os_type = "Unix"
1796 then
1797 Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0
1798 else
1799 let addr = Unix.ADDR_INET (Unix.inet_addr_loopback, 1337) in
1800 let sock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1801 Unix.setsockopt sock Unix.SO_REUSEADDR true;
1802 Unix.bind sock addr;
1803 Unix.listen sock 1;
1804 let csock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1805 Unix.connect csock addr;
1806 let ssock, _ = Unix.accept sock in
1807 Unix.close sock;
1808 let opts sock =
1809 Unix.setsockopt sock Unix.TCP_NODELAY true;
1810 Unix.setsockopt_optint sock Unix.SO_LINGER None;
1812 opts ssock;
1813 opts csock;
1814 at_exit (fun () -> Unix.shutdown ssock Unix.SHUTDOWN_ALL);
1815 ssock, csock
1818 let () = Glut.displayFunc display in
1819 let () = Glut.reshapeFunc reshape in
1820 let () = Glut.keyboardFunc keyboard in
1821 let () = Glut.specialFunc special in
1822 let () = Glut.idleFunc (Some idle) in
1823 let () = Glut.mouseFunc mouse in
1824 let () = Glut.motionFunc motion in
1825 let () = Glut.passiveMotionFunc pmotion in
1827 init ssock;
1828 state.csock <- csock;
1829 state.ssock <- ssock;
1830 state.text <- "Opening " ^ name;
1831 writecmd csock ("open " ^ name ^ "\000");
1833 at_exit savestate;
1835 let rec handlelablglutbug () =
1837 Glut.mainLoop ();
1838 with Glut.BadEnum "key in special_of_int" ->
1839 showtext '!' " LablGlut bug: special key not recognized";
1840 handlelablglutbug ()
1842 handlelablglutbug ();