Reset cursor when entering selector mode
[llpp.git] / main.ml
blob4ff5525022db2cf000a05326eb2f0ac62a8be724
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;;
657 let idle () =
658 let rec loop delay =
659 let r, _, _ = Unix.select [state.csock] [] [] delay in
660 begin match r with
661 | [] ->
662 if conf.autoscroll then begin
663 let y = state.y + conf.scrollincr in
664 let y = if y >= state.maxy then 0 else y in
665 gotoy y;
666 state.text <- "";
667 end;
669 | _ ->
670 let cmd = readcmd state.csock in
671 act cmd;
672 loop 0.0
673 end;
674 in loop 0.001
677 let onhist cb = function
678 | HCprev -> cbget cb ~-1
679 | HCnext -> cbget cb 1
680 | HCfirst -> cbget cb ~-(cb.rc)
681 | HClast -> cbget cb (cb.len - 1 - cb.rc)
684 let search pattern forward =
685 if String.length pattern > 0
686 then
687 let pn, py =
688 match state.layout with
689 | [] -> 0, 0
690 | l :: _ ->
691 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
693 let cmd =
694 let b = makecmd "search"
695 [`b conf.icase; `i pn; `i py; `i (if forward then 1 else 0)]
697 Buffer.add_char b ',';
698 Buffer.add_string b pattern;
699 Buffer.add_char b '\000';
700 Buffer.contents b;
702 writecmd state.csock cmd;
705 let intentry text key =
706 let c = Char.unsafe_chr key in
707 match c with
708 | '0' .. '9' ->
709 let s = "x" in s.[0] <- c;
710 let text = text ^ s in
711 TEcont text
713 | _ ->
714 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
715 TEcont text
718 let addchar s c =
719 let b = Buffer.create (String.length s + 1) in
720 Buffer.add_string b s;
721 Buffer.add_char b c;
722 Buffer.contents b;
725 let textentry text key =
726 let c = Char.unsafe_chr key in
727 match c with
728 | _ when key >= 32 && key < 127 ->
729 let text = addchar text c in
730 TEcont text
732 | _ ->
733 log "unhandled key %d char `%c'" key (Char.unsafe_chr key);
734 TEcont text
737 let rotate angle =
738 state.rotate <- angle;
739 invalidate ();
740 wcmd "rotate" [`i angle];
743 let optentry text key =
744 let btos b = if b then "on" else "off" in
745 let c = Char.unsafe_chr key in
746 match c with
747 | 's' ->
748 let ondone s =
749 try conf.scrollincr <- int_of_string s with exc ->
750 state.text <- Printf.sprintf "bad integer `%s': %s"
751 s (Printexc.to_string exc)
753 TEswitch ('#', "", None, intentry, ondone)
755 | 'R' ->
756 let ondone s =
757 match try
758 Some (int_of_string s)
759 with exc ->
760 state.text <- Printf.sprintf "bad integer `%s': %s"
761 s (Printexc.to_string exc);
762 None
763 with
764 | Some angle -> rotate angle
765 | None -> ()
767 TEswitch ('^', "", None, intentry, ondone)
769 | 'i' ->
770 conf.icase <- not conf.icase;
771 TEdone ("case insensitive search " ^ (btos conf.icase))
773 | 'p' ->
774 conf.preload <- not conf.preload;
775 gotoy state.y;
776 TEdone ("preload " ^ (btos conf.preload))
778 | 'v' ->
779 conf.verbose <- not conf.verbose;
780 TEdone ("verbose " ^ (btos conf.verbose))
782 | 'h' ->
783 conf.maxhfit <- not conf.maxhfit;
784 state.maxy <- state.maxy + (if conf.maxhfit then -state.h else state.h);
785 TEdone ("maxhfit " ^ (btos conf.maxhfit))
787 | 'c' ->
788 conf.crophack <- not conf.crophack;
789 TEdone ("crophack " ^ btos conf.crophack)
791 | 'a' ->
792 conf.showall <- not conf.showall;
793 TEdone ("showall " ^ btos conf.showall)
795 | 'f' ->
796 conf.underinfo <- not conf.underinfo;
797 TEdone ("underinfo " ^ btos conf.underinfo)
799 | _ ->
800 state.text <- Printf.sprintf "bad option %d `%c'" key c;
801 TEstop
804 let maxoutlinerows () = (state.h - 31) / 16;;
806 let enterselector allowdel outlines errmsg =
807 if Array.length outlines = 0
808 then (
809 showtext ' ' errmsg;
811 else (
812 Glut.setCursor Glut.CURSOR_INHERIT;
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 ();
835 let enteroutlinemode () =
836 let outlines =
837 match state.outlines with
838 | Oarray a -> a
839 | Olist l ->
840 let a = Array.of_list (List.rev l) in
841 state.outlines <- Oarray a;
843 | Onarrow (a, b) -> a
845 enterselector false outlines "Document has no outline";
848 let enterbookmarkmode () =
849 let bookmarks = Array.of_list state.bookmarks in
850 enterselector true bookmarks "Document has no bookmarks (yet)";
854 let quickbookmark ?title () =
855 match state.layout with
856 | [] -> ()
857 | l :: _ ->
858 let title =
859 match title with
860 | None ->
861 let sec = Unix.gettimeofday () in
862 let tm = Unix.localtime sec in
863 Printf.sprintf "Quick %d visited (%d/%d/%d %d:%d)"
864 l.pageno
865 tm.Unix.tm_mday
866 tm.Unix.tm_mon
867 (tm.Unix.tm_year + 1900)
868 tm.Unix.tm_hour
869 tm.Unix.tm_min
870 | Some title -> title
872 state.bookmarks <-
873 (title, 0, l.pageno, l.pagey) :: state.bookmarks
876 let doreshape w h =
877 state.fullscreen <- None;
878 Glut.reshapeWindow w h;
881 let viewkeyboard ~key ~x ~y =
882 let enttext te =
883 state.textentry <- te;
884 state.text <- "";
885 enttext ();
886 Glut.postRedisplay ()
888 match state.textentry with
889 | None ->
890 let c = Char.chr key in
891 begin match c with
892 | '\027' | 'q' ->
893 exit 0
895 | '\008' ->
896 let y = getnav () in
897 gotoy y
899 | 'o' ->
900 enteroutlinemode ()
902 | 'u' ->
903 state.rects <- [];
904 state.text <- "";
905 Glut.postRedisplay ()
907 | '/' | '?' ->
908 let ondone isforw s =
909 cbput state.hists.pat s;
910 cbrfollowlen state.hists.pat;
911 state.searchpattern <- s;
912 search s isforw
914 enttext (Some (c, "", Some (onhist state.hists.pat),
915 textentry, ondone (c ='/')))
917 | '+' ->
918 let ondone s =
919 let n =
920 try int_of_string s with exc ->
921 state.text <- Printf.sprintf "bad integer `%s': %s"
922 s (Printexc.to_string exc);
923 max_int
925 if n != max_int
926 then (
927 conf.pagebias <- n;
928 state.text <- "page bias is now " ^ string_of_int n;
931 enttext (Some ('+', "", None, intentry, ondone))
933 | '-' ->
934 let ondone msg =
935 state.text <- msg;
937 enttext (Some ('-', "", None, optentry, ondone))
939 | '0' .. '9' ->
940 let ondone s =
941 let n =
942 try int_of_string s with exc ->
943 state.text <- Printf.sprintf "bad integer `%s': %s"
944 s (Printexc.to_string exc);
947 if n >= 0
948 then (
949 addnav ();
950 cbput state.hists.pag (string_of_int n);
951 cbrfollowlen state.hists.pag;
952 gotoy (getpagey (n + conf.pagebias - 1))
955 let pageentry text key =
956 match Char.unsafe_chr key with
957 | 'g' -> TEdone text
958 | _ -> intentry text key
960 let text = "x" in text.[0] <- c;
961 enttext (Some (':', text, Some (onhist state.hists.pag),
962 pageentry, ondone))
964 | 'b' ->
965 conf.scrollw <- if conf.scrollw > 0 then 0 else 5;
966 reshape state.w state.h;
968 | 'l' ->
969 conf.hlinks <- not conf.hlinks;
970 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
971 Glut.postRedisplay ()
973 | 'a' ->
974 conf.autoscroll <- not conf.autoscroll
976 | 'f' ->
977 begin match state.fullscreen with
978 | None ->
979 state.fullscreen <- Some (state.w, state.h);
980 Glut.fullScreen ()
981 | Some (w, h) ->
982 state.fullscreen <- None;
983 doreshape w h
986 | 'g' ->
987 gotoy 0
989 | 'n' ->
990 search state.searchpattern true
992 | 'p' | 'N' ->
993 search state.searchpattern false
995 | 't' ->
996 begin match state.layout with
997 | [] -> ()
998 | l :: _ ->
999 gotoy (state.y - l.pagey);
1002 | ' ' ->
1003 begin match List.rev state.layout with
1004 | [] -> ()
1005 | l :: _ ->
1006 gotoy (clamp (l.pageh - l.pagey))
1009 | '\127' ->
1010 begin match state.layout with
1011 | [] -> ()
1012 | l :: _ ->
1013 gotoy (clamp (-l.pageh));
1016 | '=' ->
1017 let f (fn, ln) l =
1018 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
1020 let fn, ln = List.fold_left f (-1, -1) state.layout in
1021 let s =
1022 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1023 let percent =
1024 if maxy <= 0
1025 then 100.
1026 else (100. *. (float state.y /. float maxy)) in
1027 if fn = ln
1028 then
1029 Printf.sprintf "Page %d of %d %.2f%%"
1030 (fn+1) state.pagecount percent
1031 else
1032 Printf.sprintf
1033 "Pages %d-%d of %d %.2f%%"
1034 (fn+1) (ln+1) state.pagecount percent
1036 showtext ' ' s;
1038 | 'w' ->
1039 begin match state.layout with
1040 | [] -> ()
1041 | l :: _ ->
1042 doreshape (l.pagew + conf.scrollw) l.pageh;
1043 Glut.postRedisplay ();
1046 | '\'' ->
1047 enterbookmarkmode ()
1049 | 'm' ->
1050 let ondone s =
1051 match state.layout with
1052 | l :: _ ->
1053 state.bookmarks <- (s, 0, l.pageno, l.pagey) :: state.bookmarks
1054 | _ -> ()
1056 enttext (Some ('~', "", None, textentry, ondone))
1058 | '~' ->
1059 quickbookmark ();
1060 showtext ' ' "Quick bookmark added";
1062 | 'z' ->
1063 begin match state.layout with
1064 | l :: _ ->
1065 let a = getpagewh l.pagedimno in
1066 let w, h =
1067 if conf.crophack
1068 then
1069 (truncate (1.8 *. (a.(1) -. a.(0))),
1070 truncate (1.2 *. (a.(3) -. a.(0))))
1071 else
1072 (truncate (a.(1) -. a.(0)),
1073 truncate (a.(3) -. a.(0)))
1075 doreshape (w + conf.scrollw) h;
1076 Glut.postRedisplay ();
1078 | [] -> ()
1081 | '<' | '>' ->
1082 rotate (state.rotate + (if c = '>' then 30 else -30));
1084 | '[' | ']' ->
1085 state.colorscale <-
1086 max 0.0
1087 (min (state.colorscale +. (if c = ']' then 0.1 else -0.1)) 1.0);
1088 Glut.postRedisplay ()
1090 | _ ->
1091 vlog "huh? %d %c" key (Char.chr key);
1094 | Some (c, text, onhist, onkey, ondone) when key = 8 ->
1095 let len = String.length text in
1096 if len = 0
1097 then (
1098 state.textentry <- None;
1099 Glut.postRedisplay ();
1101 else (
1102 let s = String.sub text 0 (len - 1) in
1103 enttext (Some (c, s, onhist, onkey, ondone))
1106 | Some (c, text, onhist, onkey, ondone) ->
1107 begin match Char.unsafe_chr key with
1108 | '\r' | '\n' ->
1109 ondone text;
1110 state.textentry <- None;
1111 Glut.postRedisplay ()
1113 | '\027' ->
1114 state.textentry <- None;
1115 Glut.postRedisplay ()
1117 | _ ->
1118 begin match onkey text key with
1119 | TEdone text ->
1120 state.textentry <- None;
1121 ondone text;
1122 Glut.postRedisplay ()
1124 | TEcont text ->
1125 enttext (Some (c, text, onhist, onkey, ondone));
1127 | TEstop ->
1128 state.textentry <- None;
1129 Glut.postRedisplay ()
1131 | TEswitch te ->
1132 state.textentry <- Some te;
1133 Glut.postRedisplay ()
1134 end;
1135 end;
1138 let narrow outlines pattern =
1139 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
1140 match reopt with
1141 | None -> None
1142 | Some re ->
1143 let rec fold accu n =
1144 if n = -1 then accu else
1145 let (s, _, _, _) as o = outlines.(n) in
1146 let accu =
1147 if (try ignore (Str.search_forward re s 0); true
1148 with Not_found -> false)
1149 then (o :: accu)
1150 else accu
1152 fold accu (n-1)
1154 let matched = fold [] (Array.length outlines - 1) in
1155 if matched = [] then None else Some (Array.of_list matched)
1158 let outlinekeyboard ~key ~x ~y (allowdel, active, first, outlines, qsearch) =
1159 let search active pattern incr =
1160 let dosearch re =
1161 let rec loop n =
1162 if n = Array.length outlines || n = -1 then None else
1163 let (s, _, _, _) = outlines.(n) in
1165 (try ignore (Str.search_forward re s 0); true
1166 with Not_found -> false)
1167 then Some n
1168 else loop (n + incr)
1170 loop active
1173 let re = Str.regexp_case_fold pattern in
1174 dosearch re
1175 with Failure s ->
1176 state.text <- s;
1177 None
1179 let firstof active = max 0 (active - maxoutlinerows () / 2) in
1180 match key with
1181 | 27 ->
1182 if String.length qsearch = 0
1183 then (
1184 state.text <- "";
1185 state.outline <- None;
1186 Glut.postRedisplay ();
1188 else (
1189 state.text <- "";
1190 state.outline <- Some (allowdel, active, first, outlines, "");
1191 Glut.postRedisplay ();
1194 | 18 | 19 ->
1195 let incr = if key = 18 then -1 else 1 in
1196 let active, first =
1197 match search (active + incr) qsearch incr with
1198 | None ->
1199 state.text <- qsearch ^ " [not found]";
1200 active, first
1201 | Some active ->
1202 state.text <- qsearch;
1203 active, firstof active
1205 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1206 Glut.postRedisplay ();
1208 | 8 ->
1209 let len = String.length qsearch in
1210 if len = 0
1211 then ()
1212 else (
1213 if len = 1
1214 then (
1215 state.text <- "";
1216 state.outline <- Some (allowdel, active, first, outlines, "");
1218 else
1219 let qsearch = String.sub qsearch 0 (len - 1) in
1220 let active, first =
1221 match search active qsearch ~-1 with
1222 | None ->
1223 state.text <- qsearch ^ " [not found]";
1224 active, first
1225 | Some active ->
1226 state.text <- qsearch;
1227 active, firstof active
1229 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1231 Glut.postRedisplay ()
1233 | 13 ->
1234 if active < Array.length outlines
1235 then (
1236 let (_, _, n, t) = outlines.(active) in
1237 gotopage n t;
1239 state.text <- "";
1240 if allowdel then state.bookmarks <- Array.to_list outlines;
1241 state.outline <- None;
1242 Glut.postRedisplay ();
1244 | _ when key >= 32 && key < 127 ->
1245 let pattern = addchar qsearch (Char.chr key) in
1246 let active, first =
1247 match search active pattern 1 with
1248 | None ->
1249 state.text <- pattern ^ " [not found]";
1250 active, first
1251 | Some active ->
1252 state.text <- pattern;
1253 active, firstof active
1255 state.outline <- Some (allowdel, active, first, outlines, pattern);
1256 Glut.postRedisplay ()
1258 | 14 when not allowdel ->
1259 let optoutlines = narrow outlines qsearch in
1260 begin match optoutlines with
1261 | None -> state.text <- "can't narrow"
1262 | Some outlines ->
1263 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1264 match state.outlines with
1265 | Olist l -> ()
1266 | Oarray a -> state.outlines <- Onarrow (outlines, a)
1267 | Onarrow (a, b) -> state.outlines <- Onarrow (outlines, b)
1268 end;
1269 Glut.postRedisplay ()
1271 | 21 when not allowdel ->
1272 let outline =
1273 match state.outlines with
1274 | Oarray a -> a
1275 | Olist l ->
1276 let a = Array.of_list (List.rev l) in
1277 state.outlines <- Oarray a;
1279 | Onarrow (a, b) ->
1280 state.outlines <- Oarray b;
1283 state.outline <- Some (allowdel, 0, 0, outline, qsearch);
1284 Glut.postRedisplay ()
1286 | 12 ->
1287 state.outline <-
1288 Some (allowdel, active, firstof active, outlines, qsearch);
1289 Glut.postRedisplay ()
1291 | 127 when allowdel ->
1292 let len = Array.length outlines - 1 in
1293 if len = 0
1294 then (
1295 state.outline <- None;
1296 state.bookmarks <- [];
1298 else (
1299 let bookmarks = Array.init len
1300 (fun i ->
1301 let i = if i >= active then i + 1 else i in
1302 outlines.(i)
1305 state.outline <-
1306 Some (allowdel,
1307 min active (len-1),
1308 min first (len-1),
1309 bookmarks, qsearch)
1312 Glut.postRedisplay ()
1314 | _ -> log "unknown key %d" key
1317 let keyboard ~key ~x ~y =
1318 if key = 7
1319 then
1320 wcmd "interrupt" []
1321 else
1322 match state.outline with
1323 | None -> viewkeyboard ~key ~x ~y
1324 | Some outline -> outlinekeyboard ~key ~x ~y outline
1327 let special ~key ~x ~y =
1328 match state.outline with
1329 | None ->
1330 begin match state.textentry with
1331 | None ->
1332 let y =
1333 match key with
1334 | Glut.KEY_F3 -> search state.searchpattern true; state.y
1335 | Glut.KEY_UP -> clamp (-conf.scrollincr)
1336 | Glut.KEY_DOWN -> clamp conf.scrollincr
1337 | Glut.KEY_PAGE_UP ->
1338 if Glut.getModifiers () land Glut.active_ctrl != 0
1339 then
1340 match state.layout with
1341 | [] -> state.y
1342 | l :: _ -> state.y - l.pagey
1343 else
1344 clamp (-state.h)
1345 | Glut.KEY_PAGE_DOWN ->
1346 if Glut.getModifiers () land Glut.active_ctrl != 0
1347 then
1348 match List.rev state.layout with
1349 | [] -> state.y
1350 | l :: _ -> getpagey l.pageno
1351 else
1352 clamp state.h
1353 | Glut.KEY_HOME -> addnav (); 0
1354 | Glut.KEY_END ->
1355 addnav ();
1356 state.maxy - (if conf.maxhfit then state.h else 0)
1357 | _ -> state.y
1359 state.text <- "";
1360 gotoy y
1362 | Some (c, s, Some onhist, onkey, ondone) ->
1363 let s =
1364 match key with
1365 | Glut.KEY_UP -> onhist HCprev
1366 | Glut.KEY_DOWN -> onhist HCnext
1367 | Glut.KEY_HOME -> onhist HCfirst
1368 | Glut.KEY_END -> onhist HClast
1369 | _ -> state.text
1371 state.textentry <- Some (c, s, Some onhist, onkey, ondone);
1372 Glut.postRedisplay ()
1374 | _ -> ()
1377 | Some (allowdel, active, first, outlines, qsearch) ->
1378 let maxrows = maxoutlinerows () in
1379 let navigate incr =
1380 let active = active + incr in
1381 let active = max 0 (min active (Array.length outlines - 1)) in
1382 let first =
1383 if active > first
1384 then
1385 let rows = active - first in
1386 if rows > maxrows then active - maxrows else first
1387 else active
1389 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1390 Glut.postRedisplay ()
1392 match key with
1393 | Glut.KEY_UP -> navigate ~-1
1394 | Glut.KEY_DOWN -> navigate 1
1395 | Glut.KEY_PAGE_UP -> navigate ~-maxrows
1396 | Glut.KEY_PAGE_DOWN -> navigate maxrows
1398 | Glut.KEY_HOME ->
1399 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1400 Glut.postRedisplay ()
1402 | Glut.KEY_END ->
1403 let active = Array.length outlines - 1 in
1404 let first = max 0 (active - maxrows) in
1405 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1406 Glut.postRedisplay ()
1408 | _ -> ()
1411 let drawplaceholder l =
1412 GlDraw.color (scalecolor 1.0);
1413 GlDraw.rect
1414 (0.0, float l.pagedispy)
1415 (float l.pagew, float (l.pagedispy + l.pagevh))
1417 let x = 0.0
1418 and y = float (l.pagedispy + 13) in
1419 let font = Glut.BITMAP_8_BY_13 in
1420 GlDraw.color (0.0, 0.0, 0.0);
1421 GlPix.raster_pos ~x ~y ();
1422 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c))
1423 ("Loading " ^ string_of_int l.pageno);
1426 let now () = Unix.gettimeofday ();;
1428 let drawpage i l =
1429 begin match getopaque l.pageno with
1430 | Some opaque when validopaque opaque ->
1431 if state.textentry = None
1432 then GlDraw.color (scalecolor 1.0)
1433 else GlDraw.color (scalecolor 0.4);
1434 let a = now () in
1435 draw l.pagedispy l.pagew l.pagevh l.pagey opaque;
1436 let b = now () in
1437 let d = b-.a in
1438 if conf.hlinks then highlightlinks opaque (l.pagedispy - l.pagey);
1439 vlog "draw %f sec" d;
1441 | _ ->
1442 drawplaceholder l;
1443 end;
1444 GlDraw.color (0.5, 0.5, 0.5);
1445 GlDraw.rect
1446 (0., float i)
1447 (float (state.w - conf.scrollw), float (i + (l.pagedispy - i)))
1449 l.pagedispy + l.pagevh;
1452 let scrollindicator () =
1453 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1454 GlDraw.color (0.64 , 0.64, 0.64);
1455 GlDraw.rect
1456 (float (state.w - conf.scrollw), 0.)
1457 (float state.w, float state.h)
1459 GlDraw.color (0.0, 0.0, 0.0);
1460 let sh = (float (maxy + state.h) /. float state.h) in
1461 let sh = float state.h /. sh in
1462 let sh = max sh (float conf.scrollh) in
1464 let percent =
1465 if state.y = state.maxy
1466 then 1.0
1467 else float state.y /. float maxy
1469 let position = (float state.h -. sh) *. percent in
1471 let position =
1472 if position +. sh > float state.h
1473 then
1474 float state.h -. sh
1475 else
1476 position
1478 GlDraw.rect
1479 (float (state.w - conf.scrollw), position)
1480 (float state.w, position +. sh)
1484 let showsel () =
1485 match state.mstate with
1486 | Mnone ->
1489 | Msel ((x0, y0), (x1, y1)) ->
1490 let rec loop = function
1491 | l :: ls ->
1492 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1493 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1494 then
1495 match getopaque l.pageno with
1496 | Some opaque when validopaque opaque ->
1497 let oy = -l.pagey + l.pagedispy in
1498 seltext opaque (x0, y0, x1, y1) oy;
1500 | _ -> ()
1501 else loop ls
1502 | [] -> ()
1504 loop state.layout
1507 let showrects () =
1508 Gl.enable `blend;
1509 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
1510 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1511 List.iter
1512 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
1513 List.iter (fun l ->
1514 if l.pageno = pageno
1515 then (
1516 let d = float (l.pagedispy - l.pagey) in
1517 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
1518 GlDraw.begins `quads;
1520 GlDraw.vertex2 (x0, y0+.d);
1521 GlDraw.vertex2 (x1, y1+.d);
1522 GlDraw.vertex2 (x2, y2+.d);
1523 GlDraw.vertex2 (x3, y3+.d);
1525 GlDraw.ends ();
1527 ) state.layout
1528 ) state.rects
1530 Gl.disable `blend;
1533 let showoutline = function
1534 | None -> ()
1535 | Some (allowdel, active, first, outlines, qsearch) ->
1536 Gl.enable `blend;
1537 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1538 GlDraw.color (0., 0., 0.) ~alpha:0.85;
1539 GlDraw.rect (0., 0.) (float state.w, float state.h);
1540 Gl.disable `blend;
1542 GlDraw.color (1., 1., 1.);
1543 let font = Glut.BITMAP_9_BY_15 in
1544 let draw_string x y s =
1545 GlPix.raster_pos ~x ~y ();
1546 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s
1548 let rec loop row =
1549 if row = Array.length outlines || (row - first) * 16 > state.h
1550 then ()
1551 else (
1552 let (s, l, _, _) = outlines.(row) in
1553 let y = (row - first) * 16 in
1554 let x = 5 + 15*l in
1555 if row = active
1556 then (
1557 Gl.enable `blend;
1558 GlDraw.polygon_mode `both `line;
1559 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1560 GlDraw.color (1., 1., 1.) ~alpha:0.9;
1561 GlDraw.rect (0., float (y + 1))
1562 (float (state.w - conf.scrollw - 1), float (y + 18));
1563 GlDraw.polygon_mode `both `fill;
1564 Gl.disable `blend;
1565 GlDraw.color (1., 1., 1.);
1567 draw_string (float x) (float (y + 16)) s;
1568 loop (row+1)
1571 loop first
1574 let display () =
1575 let lasty = List.fold_left drawpage 0 (state.layout) in
1576 GlDraw.color (scalecolor 0.5);
1577 GlDraw.rect
1578 (0., float lasty)
1579 (float (state.w - conf.scrollw), float state.h)
1581 showrects ();
1582 scrollindicator ();
1583 showsel ();
1584 showoutline state.outline;
1585 enttext ();
1586 Glut.swapBuffers ();
1589 let getunder x y =
1590 let rec f = function
1591 | l :: rest ->
1592 begin match getopaque l.pageno with
1593 | Some opaque when validopaque opaque ->
1594 let y = y - l.pagedispy in
1595 if y > 0
1596 then
1597 let y = l.pagey + y in
1598 match whatsunder opaque x y with
1599 | Unone -> f rest
1600 | under -> under
1601 else
1602 f rest
1603 | _ ->
1604 f rest
1606 | [] -> Unone
1608 f state.layout
1611 let mouse ~button ~bstate ~x ~y =
1612 match button with
1613 | Glut.OTHER_BUTTON n when n == 3 || n == 4 && bstate = Glut.UP ->
1614 let incr =
1615 if n = 3
1616 then
1617 -conf.scrollincr
1618 else
1619 conf.scrollincr
1621 let incr = incr * 2 in
1622 let y = clamp incr in
1623 gotoy y
1625 | Glut.LEFT_BUTTON when state.outline = None ->
1626 let dest = if bstate = Glut.DOWN then getunder x y else Unone in
1627 begin match dest with
1628 | Ulinkgoto (pageno, top) ->
1629 if pageno >= 0
1630 then
1631 gotopage pageno top
1633 | Ulinkuri s ->
1634 print_endline s
1636 | Unone when bstate = Glut.DOWN ->
1637 Glut.setCursor Glut.CURSOR_INHERIT;
1638 state.mstate <- Mnone
1640 | Unone | Utext _ ->
1641 if bstate = Glut.DOWN
1642 then (
1643 if state.rotate mod 360 = 0 then (
1644 state.mstate <- Msel ((x, y), (x, y));
1645 Glut.postRedisplay ()
1648 else (
1649 match state.mstate with
1650 | Mnone -> ()
1651 | Msel ((x0, y0), (x1, y1)) ->
1652 let f l =
1653 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1654 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1655 then
1656 match getopaque l.pageno with
1657 | Some opaque when validopaque opaque ->
1658 copysel opaque
1659 | _ -> ()
1661 List.iter f state.layout;
1662 copysel ""; (* ugly *)
1663 Glut.setCursor Glut.CURSOR_INHERIT;
1664 state.mstate <- Mnone;
1668 | _ ->
1671 let mouse ~button ~state ~x ~y = mouse button state x y;;
1673 let motion ~x ~y =
1674 if state.outline = None
1675 then
1676 match state.mstate with
1677 | Mnone -> ()
1678 | Msel (a, _) ->
1679 state.mstate <- Msel (a, (x, y));
1680 Glut.postRedisplay ()
1683 let pmotion ~x ~y =
1684 if state.outline = None
1685 then
1686 match state.mstate with
1687 | Mnone ->
1688 begin match getunder x y with
1689 | Unone -> Glut.setCursor Glut.CURSOR_INHERIT
1690 | Ulinkuri uri ->
1691 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
1692 Glut.setCursor Glut.CURSOR_INFO
1693 | Ulinkgoto (page, y) ->
1694 if conf.underinfo then showtext 'p' ("age: " ^ string_of_int page);
1695 Glut.setCursor Glut.CURSOR_INFO
1696 | Utext s ->
1697 if conf.underinfo then showtext 'f' ("ont: " ^ s);
1698 Glut.setCursor Glut.CURSOR_TEXT
1701 | Msel (a, _) ->
1705 let () =
1706 let statepath =
1707 let home =
1708 if Sys.os_type = "Win32"
1709 then
1710 try Sys.getenv "HOMEPATH" with Not_found -> ""
1711 else
1712 try Filename.concat (Sys.getenv "HOME") ".config" with Not_found -> ""
1714 Filename.concat home "llpp"
1716 let pstate =
1718 let ic = open_in_bin statepath in
1719 let hash = input_value ic in
1720 close_in ic;
1721 hash
1722 with exn ->
1723 if false
1724 then
1725 prerr_endline ("Error loading state " ^ Printexc.to_string exn)
1727 Hashtbl.create 1
1729 let savestate () =
1731 let w, h =
1732 match state.fullscreen with
1733 | None -> state.w, state.h
1734 | Some wh -> wh
1736 Hashtbl.replace pstate state.path (state.bookmarks, w, h);
1737 let oc = open_out_bin statepath in
1738 output_value oc pstate
1739 with exn ->
1740 if false
1741 then
1742 prerr_endline ("Error saving state " ^ Printexc.to_string exn)
1745 let setstate () =
1747 let statebookmarks, statew, stateh = Hashtbl.find pstate state.path in
1748 state.w <- statew;
1749 state.h <- stateh;
1750 state.bookmarks <- statebookmarks;
1751 with Not_found -> ()
1752 | exn ->
1753 prerr_endline ("Error setting state " ^ Printexc.to_string exn)
1756 Arg.parse [] (fun s -> state.path <- s) "options:";
1757 let name =
1758 if String.length state.path = 0
1759 then (prerr_endline "filename missing"; exit 1)
1760 else state.path
1763 setstate ();
1764 let _ = Glut.init Sys.argv in
1765 let () = Glut.initDisplayMode ~depth:false ~double_buffer:true () in
1766 let () = Glut.initWindowSize state.w state.h in
1767 let _ = Glut.createWindow ("llpp " ^ Filename.basename name) in
1769 let csock, ssock =
1770 if Sys.os_type = "Unix"
1771 then
1772 Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0
1773 else
1774 let addr = Unix.ADDR_INET (Unix.inet_addr_loopback, 1337) in
1775 let sock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1776 Unix.setsockopt sock Unix.SO_REUSEADDR true;
1777 Unix.bind sock addr;
1778 Unix.listen sock 1;
1779 let csock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1780 Unix.connect csock addr;
1781 let ssock, _ = Unix.accept sock in
1782 Unix.close sock;
1783 let opts sock =
1784 Unix.setsockopt sock Unix.TCP_NODELAY true;
1785 Unix.setsockopt_optint sock Unix.SO_LINGER None;
1787 opts ssock;
1788 opts csock;
1789 at_exit (fun () -> Unix.shutdown ssock Unix.SHUTDOWN_ALL);
1790 ssock, csock
1793 let () = Glut.displayFunc display in
1794 let () = Glut.reshapeFunc reshape in
1795 let () = Glut.keyboardFunc keyboard in
1796 let () = Glut.specialFunc special in
1797 let () = Glut.idleFunc (Some idle) in
1798 let () = Glut.mouseFunc mouse in
1799 let () = Glut.motionFunc motion in
1800 let () = Glut.passiveMotionFunc pmotion in
1802 init ssock;
1803 state.csock <- csock;
1804 state.ssock <- ssock;
1805 state.text <- "Opening " ^ name;
1806 writecmd csock ("open " ^ name ^ "\000");
1808 at_exit savestate;
1810 let rec handlelablglutbug () =
1812 Glut.mainLoop ();
1813 with Glut.BadEnum "key in special_of_int" ->
1814 showtext '!' " LablGlut bug: special key not recognized";
1815 handlelablglutbug ()
1817 handlelablglutbug ();