Fix handling of links where destination is not an array
[llpp.git] / main.ml
blobf417db813c3f8b8923c05680fb5d250f04332c14
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 let pageno =
813 match state.layout with
814 | [] -> -1
815 | {pageno=pageno} :: rest -> pageno
817 let active =
818 let rec loop n =
819 if n = Array.length outlines
820 then 0
821 else
822 let (_, _, outlinepageno, _) = outlines.(n) in
823 if outlinepageno >= pageno then n else loop (n+1)
825 loop 0
827 state.outline <-
828 Some (allowdel, active,
829 max 0 ((active - maxoutlinerows () / 2)), outlines, "");
830 Glut.postRedisplay ();
833 let enteroutlinemode () =
834 let outlines =
835 match state.outlines with
836 | Oarray a -> a
837 | Olist l ->
838 let a = Array.of_list (List.rev l) in
839 state.outlines <- Oarray a;
841 | Onarrow (a, b) -> a
843 enterselector false outlines "Document has no outline";
846 let enterbookmarkmode () =
847 let bookmarks = Array.of_list state.bookmarks in
848 enterselector true bookmarks "Document has no bookmarks (yet)";
852 let quickbookmark ?title () =
853 match state.layout with
854 | [] -> ()
855 | l :: _ ->
856 let title =
857 match title with
858 | None ->
859 let sec = Unix.gettimeofday () in
860 let tm = Unix.localtime sec in
861 Printf.sprintf "Quick %d visited (%d/%d/%d %d:%d)"
862 l.pageno
863 tm.Unix.tm_mday
864 tm.Unix.tm_mon
865 (tm.Unix.tm_year + 1900)
866 tm.Unix.tm_hour
867 tm.Unix.tm_min
868 | Some title -> title
870 state.bookmarks <-
871 (title, 0, l.pageno, l.pagey) :: state.bookmarks
874 let doreshape w h =
875 state.fullscreen <- None;
876 Glut.reshapeWindow w h;
879 let viewkeyboard ~key ~x ~y =
880 let enttext te =
881 state.textentry <- te;
882 state.text <- "";
883 enttext ();
884 Glut.postRedisplay ()
886 match state.textentry with
887 | None ->
888 let c = Char.chr key in
889 begin match c with
890 | '\027' | 'q' ->
891 exit 0
893 | '\008' ->
894 let y = getnav () in
895 gotoy y
897 | 'o' ->
898 enteroutlinemode ()
900 | 'u' ->
901 state.rects <- [];
902 state.text <- "";
903 Glut.postRedisplay ()
905 | '/' | '?' ->
906 let ondone isforw s =
907 cbput state.hists.pat s;
908 cbrfollowlen state.hists.pat;
909 state.searchpattern <- s;
910 search s isforw
912 enttext (Some (c, "", Some (onhist state.hists.pat),
913 textentry, ondone (c ='/')))
915 | '+' ->
916 let ondone s =
917 let n =
918 try int_of_string s with exc ->
919 state.text <- Printf.sprintf "bad integer `%s': %s"
920 s (Printexc.to_string exc);
921 max_int
923 if n != max_int
924 then (
925 conf.pagebias <- n;
926 state.text <- "page bias is now " ^ string_of_int n;
929 enttext (Some ('+', "", None, intentry, ondone))
931 | '-' ->
932 let ondone msg =
933 state.text <- msg;
935 enttext (Some ('-', "", None, optentry, ondone))
937 | '0' .. '9' ->
938 let ondone s =
939 let n =
940 try int_of_string s with exc ->
941 state.text <- Printf.sprintf "bad integer `%s': %s"
942 s (Printexc.to_string exc);
945 if n >= 0
946 then (
947 addnav ();
948 cbput state.hists.pag (string_of_int n);
949 cbrfollowlen state.hists.pag;
950 gotoy (getpagey (n + conf.pagebias - 1))
953 let pageentry text key =
954 match Char.unsafe_chr key with
955 | 'g' -> TEdone text
956 | _ -> intentry text key
958 let text = "x" in text.[0] <- c;
959 enttext (Some (':', text, Some (onhist state.hists.pag),
960 pageentry, ondone))
962 | 'b' ->
963 conf.scrollw <- if conf.scrollw > 0 then 0 else 5;
964 reshape state.w state.h;
966 | 'l' ->
967 conf.hlinks <- not conf.hlinks;
968 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
969 Glut.postRedisplay ()
971 | 'a' ->
972 conf.autoscroll <- not conf.autoscroll
974 | 'f' ->
975 begin match state.fullscreen with
976 | None ->
977 state.fullscreen <- Some (state.w, state.h);
978 Glut.fullScreen ()
979 | Some (w, h) ->
980 state.fullscreen <- None;
981 doreshape w h
984 | 'g' ->
985 gotoy 0
987 | 'n' ->
988 search state.searchpattern true
990 | 'p' | 'N' ->
991 search state.searchpattern false
993 | 't' ->
994 begin match state.layout with
995 | [] -> ()
996 | l :: _ ->
997 gotoy (state.y - l.pagey);
1000 | ' ' ->
1001 begin match List.rev state.layout with
1002 | [] -> ()
1003 | l :: _ ->
1004 gotoy (clamp (l.pageh - l.pagey))
1007 | '\127' ->
1008 begin match state.layout with
1009 | [] -> ()
1010 | l :: _ ->
1011 gotoy (clamp (-l.pageh));
1014 | '=' ->
1015 let f (fn, ln) l =
1016 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
1018 let fn, ln = List.fold_left f (-1, -1) state.layout in
1019 let s =
1020 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1021 let percent =
1022 if maxy <= 0
1023 then 100.
1024 else (100. *. (float state.y /. float maxy)) in
1025 if fn = ln
1026 then
1027 Printf.sprintf "Page %d of %d %.2f%%"
1028 (fn+1) state.pagecount percent
1029 else
1030 Printf.sprintf
1031 "Pages %d-%d of %d %.2f%%"
1032 (fn+1) (ln+1) state.pagecount percent
1034 showtext ' ' s;
1036 | 'w' ->
1037 begin match state.layout with
1038 | [] -> ()
1039 | l :: _ ->
1040 doreshape (l.pagew + conf.scrollw) l.pageh;
1041 Glut.postRedisplay ();
1044 | '\'' ->
1045 enterbookmarkmode ()
1047 | 'm' ->
1048 let ondone s =
1049 match state.layout with
1050 | l :: _ ->
1051 state.bookmarks <- (s, 0, l.pageno, l.pagey) :: state.bookmarks
1052 | _ -> ()
1054 enttext (Some ('~', "", None, textentry, ondone))
1056 | '~' ->
1057 quickbookmark ();
1058 showtext ' ' "Quick bookmark added";
1060 | 'z' ->
1061 begin match state.layout with
1062 | l :: _ ->
1063 let a = getpagewh l.pagedimno in
1064 let w, h =
1065 if conf.crophack
1066 then
1067 (truncate (1.8 *. (a.(1) -. a.(0))),
1068 truncate (1.2 *. (a.(3) -. a.(0))))
1069 else
1070 (truncate (a.(1) -. a.(0)),
1071 truncate (a.(3) -. a.(0)))
1073 doreshape (w + conf.scrollw) h;
1074 Glut.postRedisplay ();
1076 | [] -> ()
1079 | '<' | '>' ->
1080 rotate (state.rotate + (if c = '>' then 30 else -30));
1082 | '[' | ']' ->
1083 state.colorscale <-
1084 max 0.0
1085 (min (state.colorscale +. (if c = ']' then 0.1 else -0.1)) 1.0);
1086 Glut.postRedisplay ()
1088 | _ ->
1089 vlog "huh? %d %c" key (Char.chr key);
1092 | Some (c, text, onhist, onkey, ondone) when key = 8 ->
1093 let len = String.length text in
1094 if len = 0
1095 then (
1096 state.textentry <- None;
1097 Glut.postRedisplay ();
1099 else (
1100 let s = String.sub text 0 (len - 1) in
1101 enttext (Some (c, s, onhist, onkey, ondone))
1104 | Some (c, text, onhist, onkey, ondone) ->
1105 begin match Char.unsafe_chr key with
1106 | '\r' | '\n' ->
1107 ondone text;
1108 state.textentry <- None;
1109 Glut.postRedisplay ()
1111 | '\027' ->
1112 state.textentry <- None;
1113 Glut.postRedisplay ()
1115 | _ ->
1116 begin match onkey text key with
1117 | TEdone text ->
1118 state.textentry <- None;
1119 ondone text;
1120 Glut.postRedisplay ()
1122 | TEcont text ->
1123 enttext (Some (c, text, onhist, onkey, ondone));
1125 | TEstop ->
1126 state.textentry <- None;
1127 Glut.postRedisplay ()
1129 | TEswitch te ->
1130 state.textentry <- Some te;
1131 Glut.postRedisplay ()
1132 end;
1133 end;
1136 let narrow outlines pattern =
1137 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
1138 match reopt with
1139 | None -> None
1140 | Some re ->
1141 let rec fold accu n =
1142 if n = -1 then accu else
1143 let (s, _, _, _) as o = outlines.(n) in
1144 let accu =
1145 if (try ignore (Str.search_forward re s 0); true
1146 with Not_found -> false)
1147 then (o :: accu)
1148 else accu
1150 fold accu (n-1)
1152 let matched = fold [] (Array.length outlines - 1) in
1153 if matched = [] then None else Some (Array.of_list matched)
1156 let outlinekeyboard ~key ~x ~y (allowdel, active, first, outlines, qsearch) =
1157 let search active pattern incr =
1158 let dosearch re =
1159 let rec loop n =
1160 if n = Array.length outlines || n = -1 then None else
1161 let (s, _, _, _) = outlines.(n) in
1163 (try ignore (Str.search_forward re s 0); true
1164 with Not_found -> false)
1165 then Some n
1166 else loop (n + incr)
1168 loop active
1171 let re = Str.regexp_case_fold pattern in
1172 dosearch re
1173 with Failure s ->
1174 state.text <- s;
1175 None
1177 let firstof active = max 0 (active - maxoutlinerows () / 2) in
1178 match key with
1179 | 27 ->
1180 if String.length qsearch = 0
1181 then (
1182 state.text <- "";
1183 state.outline <- None;
1184 Glut.postRedisplay ();
1186 else (
1187 state.text <- "";
1188 state.outline <- Some (allowdel, active, first, outlines, "");
1189 Glut.postRedisplay ();
1192 | 18 | 19 ->
1193 let incr = if key = 18 then -1 else 1 in
1194 let active, first =
1195 match search (active + incr) qsearch incr with
1196 | None ->
1197 state.text <- qsearch ^ " [not found]";
1198 active, first
1199 | Some active ->
1200 state.text <- qsearch;
1201 active, firstof active
1203 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1204 Glut.postRedisplay ();
1206 | 8 ->
1207 let len = String.length qsearch in
1208 if len = 0
1209 then ()
1210 else (
1211 if len = 1
1212 then (
1213 state.text <- "";
1214 state.outline <- Some (allowdel, active, first, outlines, "");
1216 else
1217 let qsearch = String.sub qsearch 0 (len - 1) in
1218 let active, first =
1219 match search active qsearch ~-1 with
1220 | None ->
1221 state.text <- qsearch ^ " [not found]";
1222 active, first
1223 | Some active ->
1224 state.text <- qsearch;
1225 active, firstof active
1227 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1229 Glut.postRedisplay ()
1231 | 13 ->
1232 if active < Array.length outlines
1233 then (
1234 let (_, _, n, t) = outlines.(active) in
1235 gotopage n t;
1237 state.text <- "";
1238 if allowdel then state.bookmarks <- Array.to_list outlines;
1239 state.outline <- None;
1240 Glut.postRedisplay ();
1242 | _ when key >= 32 && key < 127 ->
1243 let pattern = addchar qsearch (Char.chr key) in
1244 let active, first =
1245 match search active pattern 1 with
1246 | None ->
1247 state.text <- pattern ^ " [not found]";
1248 active, first
1249 | Some active ->
1250 state.text <- pattern;
1251 active, firstof active
1253 state.outline <- Some (allowdel, active, first, outlines, pattern);
1254 Glut.postRedisplay ()
1256 | 14 when not allowdel ->
1257 let optoutlines = narrow outlines qsearch in
1258 begin match optoutlines with
1259 | None -> state.text <- "can't narrow"
1260 | Some outlines ->
1261 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1262 match state.outlines with
1263 | Olist l -> ()
1264 | Oarray a -> state.outlines <- Onarrow (outlines, a)
1265 | Onarrow (a, b) -> state.outlines <- Onarrow (outlines, b)
1266 end;
1267 Glut.postRedisplay ()
1269 | 21 when not allowdel ->
1270 let outline =
1271 match state.outlines with
1272 | Oarray a -> a
1273 | Olist l ->
1274 let a = Array.of_list (List.rev l) in
1275 state.outlines <- Oarray a;
1277 | Onarrow (a, b) ->
1278 state.outlines <- Oarray b;
1281 state.outline <- Some (allowdel, 0, 0, outline, qsearch);
1282 Glut.postRedisplay ()
1284 | 12 ->
1285 state.outline <-
1286 Some (allowdel, active, firstof active, outlines, qsearch);
1287 Glut.postRedisplay ()
1289 | 127 when allowdel ->
1290 let len = Array.length outlines - 1 in
1291 if len = 0
1292 then (
1293 state.outline <- None;
1294 state.bookmarks <- [];
1296 else (
1297 let bookmarks = Array.init len
1298 (fun i ->
1299 let i = if i >= active then i + 1 else i in
1300 outlines.(i)
1303 state.outline <-
1304 Some (allowdel,
1305 min active (len-1),
1306 min first (len-1),
1307 bookmarks, qsearch)
1310 Glut.postRedisplay ()
1312 | _ -> log "unknown key %d" key
1315 let keyboard ~key ~x ~y =
1316 if key = 7
1317 then
1318 wcmd "interrupt" []
1319 else
1320 match state.outline with
1321 | None -> viewkeyboard ~key ~x ~y
1322 | Some outline -> outlinekeyboard ~key ~x ~y outline
1325 let special ~key ~x ~y =
1326 match state.outline with
1327 | None ->
1328 begin match state.textentry with
1329 | None ->
1330 let y =
1331 match key with
1332 | Glut.KEY_F3 -> search state.searchpattern true; state.y
1333 | Glut.KEY_UP -> clamp (-conf.scrollincr)
1334 | Glut.KEY_DOWN -> clamp conf.scrollincr
1335 | Glut.KEY_PAGE_UP ->
1336 if Glut.getModifiers () land Glut.active_ctrl != 0
1337 then
1338 match state.layout with
1339 | [] -> state.y
1340 | l :: _ -> state.y - l.pagey
1341 else
1342 clamp (-state.h)
1343 | Glut.KEY_PAGE_DOWN ->
1344 if Glut.getModifiers () land Glut.active_ctrl != 0
1345 then
1346 match List.rev state.layout with
1347 | [] -> state.y
1348 | l :: _ -> getpagey l.pageno
1349 else
1350 clamp state.h
1351 | Glut.KEY_HOME -> addnav (); 0
1352 | Glut.KEY_END ->
1353 addnav ();
1354 state.maxy - (if conf.maxhfit then state.h else 0)
1355 | _ -> state.y
1357 state.text <- "";
1358 gotoy y
1360 | Some (c, s, Some onhist, onkey, ondone) ->
1361 let s =
1362 match key with
1363 | Glut.KEY_UP -> onhist HCprev
1364 | Glut.KEY_DOWN -> onhist HCnext
1365 | Glut.KEY_HOME -> onhist HCfirst
1366 | Glut.KEY_END -> onhist HClast
1367 | _ -> state.text
1369 state.textentry <- Some (c, s, Some onhist, onkey, ondone);
1370 Glut.postRedisplay ()
1372 | _ -> ()
1375 | Some (allowdel, active, first, outlines, qsearch) ->
1376 let maxrows = maxoutlinerows () in
1377 let navigate incr =
1378 let active = active + incr in
1379 let active = max 0 (min active (Array.length outlines - 1)) in
1380 let first =
1381 if active > first
1382 then
1383 let rows = active - first in
1384 if rows > maxrows then active - maxrows else first
1385 else active
1387 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1388 Glut.postRedisplay ()
1390 match key with
1391 | Glut.KEY_UP -> navigate ~-1
1392 | Glut.KEY_DOWN -> navigate 1
1393 | Glut.KEY_PAGE_UP -> navigate ~-maxrows
1394 | Glut.KEY_PAGE_DOWN -> navigate maxrows
1396 | Glut.KEY_HOME ->
1397 state.outline <- Some (allowdel, 0, 0, outlines, qsearch);
1398 Glut.postRedisplay ()
1400 | Glut.KEY_END ->
1401 let active = Array.length outlines - 1 in
1402 let first = max 0 (active - maxrows) in
1403 state.outline <- Some (allowdel, active, first, outlines, qsearch);
1404 Glut.postRedisplay ()
1406 | _ -> ()
1409 let drawplaceholder l =
1410 GlDraw.color (scalecolor 1.0);
1411 GlDraw.rect
1412 (0.0, float l.pagedispy)
1413 (float l.pagew, float (l.pagedispy + l.pagevh))
1415 let x = 0.0
1416 and y = float (l.pagedispy + 13) in
1417 let font = Glut.BITMAP_8_BY_13 in
1418 GlDraw.color (0.0, 0.0, 0.0);
1419 GlPix.raster_pos ~x ~y ();
1420 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c))
1421 ("Loading " ^ string_of_int l.pageno);
1424 let now () = Unix.gettimeofday ();;
1426 let drawpage i l =
1427 begin match getopaque l.pageno with
1428 | Some opaque when validopaque opaque ->
1429 if state.textentry = None
1430 then GlDraw.color (scalecolor 1.0)
1431 else GlDraw.color (scalecolor 0.4);
1432 let a = now () in
1433 draw l.pagedispy l.pagew l.pagevh l.pagey opaque;
1434 let b = now () in
1435 let d = b-.a in
1436 if conf.hlinks then highlightlinks opaque (l.pagedispy - l.pagey);
1437 vlog "draw %f sec" d;
1439 | _ ->
1440 drawplaceholder l;
1441 end;
1442 GlDraw.color (0.5, 0.5, 0.5);
1443 GlDraw.rect
1444 (0., float i)
1445 (float (state.w - conf.scrollw), float (i + (l.pagedispy - i)))
1447 l.pagedispy + l.pagevh;
1450 let scrollindicator () =
1451 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1452 GlDraw.color (0.64 , 0.64, 0.64);
1453 GlDraw.rect
1454 (float (state.w - conf.scrollw), 0.)
1455 (float state.w, float state.h)
1457 GlDraw.color (0.0, 0.0, 0.0);
1458 let sh = (float (maxy + state.h) /. float state.h) in
1459 let sh = float state.h /. sh in
1460 let sh = max sh (float conf.scrollh) in
1462 let percent =
1463 if state.y = state.maxy
1464 then 1.0
1465 else float state.y /. float maxy
1467 let position = (float state.h -. sh) *. percent in
1469 let position =
1470 if position +. sh > float state.h
1471 then
1472 float state.h -. sh
1473 else
1474 position
1476 GlDraw.rect
1477 (float (state.w - conf.scrollw), position)
1478 (float state.w, position +. sh)
1482 let showsel () =
1483 match state.mstate with
1484 | Mnone ->
1487 | Msel ((x0, y0), (x1, y1)) ->
1488 let rec loop = function
1489 | l :: ls ->
1490 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1491 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1492 then
1493 match getopaque l.pageno with
1494 | Some opaque when validopaque opaque ->
1495 let oy = -l.pagey + l.pagedispy in
1496 seltext opaque (x0, y0, x1, y1) oy;
1498 | _ -> ()
1499 else loop ls
1500 | [] -> ()
1502 loop state.layout
1505 let showrects () =
1506 Gl.enable `blend;
1507 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
1508 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1509 List.iter
1510 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
1511 List.iter (fun l ->
1512 if l.pageno = pageno
1513 then (
1514 let d = float (l.pagedispy - l.pagey) in
1515 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
1516 GlDraw.begins `quads;
1518 GlDraw.vertex2 (x0, y0+.d);
1519 GlDraw.vertex2 (x1, y1+.d);
1520 GlDraw.vertex2 (x2, y2+.d);
1521 GlDraw.vertex2 (x3, y3+.d);
1523 GlDraw.ends ();
1525 ) state.layout
1526 ) state.rects
1528 Gl.disable `blend;
1531 let showoutline = function
1532 | None -> ()
1533 | Some (allowdel, active, first, outlines, qsearch) ->
1534 Gl.enable `blend;
1535 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1536 GlDraw.color (0., 0., 0.) ~alpha:0.85;
1537 GlDraw.rect (0., 0.) (float state.w, float state.h);
1538 Gl.disable `blend;
1540 GlDraw.color (1., 1., 1.);
1541 let font = Glut.BITMAP_9_BY_15 in
1542 let draw_string x y s =
1543 GlPix.raster_pos ~x ~y ();
1544 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s
1546 let rec loop row =
1547 if row = Array.length outlines || (row - first) * 16 > state.h
1548 then ()
1549 else (
1550 let (s, l, _, _) = outlines.(row) in
1551 let y = (row - first) * 16 in
1552 let x = 5 + 15*l in
1553 if row = active
1554 then (
1555 Gl.enable `blend;
1556 GlDraw.polygon_mode `both `line;
1557 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1558 GlDraw.color (1., 1., 1.) ~alpha:0.9;
1559 GlDraw.rect (0., float (y + 1))
1560 (float (state.w - conf.scrollw - 1), float (y + 18));
1561 GlDraw.polygon_mode `both `fill;
1562 Gl.disable `blend;
1563 GlDraw.color (1., 1., 1.);
1565 draw_string (float x) (float (y + 16)) s;
1566 loop (row+1)
1569 loop first
1572 let display () =
1573 let lasty = List.fold_left drawpage 0 (state.layout) in
1574 GlDraw.color (scalecolor 0.5);
1575 GlDraw.rect
1576 (0., float lasty)
1577 (float (state.w - conf.scrollw), float state.h)
1579 showrects ();
1580 scrollindicator ();
1581 showsel ();
1582 showoutline state.outline;
1583 enttext ();
1584 Glut.swapBuffers ();
1587 let getunder x y =
1588 let rec f = function
1589 | l :: rest ->
1590 begin match getopaque l.pageno with
1591 | Some opaque when validopaque opaque ->
1592 let y = y - l.pagedispy in
1593 if y > 0
1594 then
1595 let y = l.pagey + y in
1596 match whatsunder opaque x y with
1597 | Unone -> f rest
1598 | under -> under
1599 else
1600 f rest
1601 | _ ->
1602 f rest
1604 | [] -> Unone
1606 f state.layout
1609 let mouse ~button ~bstate ~x ~y =
1610 match button with
1611 | Glut.OTHER_BUTTON n when n == 3 || n == 4 && bstate = Glut.UP ->
1612 let incr =
1613 if n = 3
1614 then
1615 -conf.scrollincr
1616 else
1617 conf.scrollincr
1619 let incr = incr * 2 in
1620 let y = clamp incr in
1621 gotoy y
1623 | Glut.LEFT_BUTTON when state.outline = None ->
1624 let dest = if bstate = Glut.DOWN then getunder x y else Unone in
1625 begin match dest with
1626 | Ulinkgoto (pageno, top) ->
1627 if pageno >= 0
1628 then
1629 gotopage pageno top
1631 | Ulinkuri s ->
1632 print_endline s
1634 | Unone when bstate = Glut.DOWN ->
1635 Glut.setCursor Glut.CURSOR_INHERIT;
1636 state.mstate <- Mnone
1638 | Unone | Utext _ ->
1639 if bstate = Glut.DOWN
1640 then (
1641 if state.rotate mod 360 = 0 then (
1642 state.mstate <- Msel ((x, y), (x, y));
1643 Glut.postRedisplay ()
1646 else (
1647 match state.mstate with
1648 | Mnone -> ()
1649 | Msel ((x0, y0), (x1, y1)) ->
1650 let f l =
1651 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1652 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
1653 then
1654 match getopaque l.pageno with
1655 | Some opaque when validopaque opaque ->
1656 copysel opaque
1657 | _ -> ()
1659 List.iter f state.layout;
1660 copysel ""; (* ugly *)
1661 Glut.setCursor Glut.CURSOR_INHERIT;
1662 state.mstate <- Mnone;
1666 | _ ->
1669 let mouse ~button ~state ~x ~y = mouse button state x y;;
1671 let motion ~x ~y =
1672 if state.outline = None
1673 then
1674 match state.mstate with
1675 | Mnone -> ()
1676 | Msel (a, _) ->
1677 state.mstate <- Msel (a, (x, y));
1678 Glut.postRedisplay ()
1681 let pmotion ~x ~y =
1682 if state.outline = None
1683 then
1684 match state.mstate with
1685 | Mnone ->
1686 begin match getunder x y with
1687 | Unone -> Glut.setCursor Glut.CURSOR_INHERIT
1688 | Ulinkuri uri ->
1689 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
1690 Glut.setCursor Glut.CURSOR_INFO
1691 | Ulinkgoto (page, y) ->
1692 if conf.underinfo then showtext 'p' ("age: " ^ string_of_int page);
1693 Glut.setCursor Glut.CURSOR_INFO
1694 | Utext s ->
1695 if conf.underinfo then showtext 'f' ("ont: " ^ s);
1696 Glut.setCursor Glut.CURSOR_TEXT
1699 | Msel (a, _) ->
1703 let () =
1704 let statepath =
1705 let home =
1706 if Sys.os_type = "Win32"
1707 then
1708 try Sys.getenv "HOMEPATH" with Not_found -> ""
1709 else
1710 try Filename.concat (Sys.getenv "HOME") ".config" with Not_found -> ""
1712 Filename.concat home "llpp"
1714 let pstate =
1716 let ic = open_in_bin statepath in
1717 let hash = input_value ic in
1718 close_in ic;
1719 hash
1720 with exn ->
1721 if false
1722 then
1723 prerr_endline ("Error loading state " ^ Printexc.to_string exn)
1725 Hashtbl.create 1
1727 let savestate () =
1729 let w, h =
1730 match state.fullscreen with
1731 | None -> state.w, state.h
1732 | Some wh -> wh
1734 Hashtbl.replace pstate state.path (state.bookmarks, w, h);
1735 let oc = open_out_bin statepath in
1736 output_value oc pstate
1737 with exn ->
1738 if false
1739 then
1740 prerr_endline ("Error saving state " ^ Printexc.to_string exn)
1743 let setstate () =
1745 let statebookmarks, statew, stateh = Hashtbl.find pstate state.path in
1746 state.w <- statew;
1747 state.h <- stateh;
1748 state.bookmarks <- statebookmarks;
1749 with Not_found -> ()
1750 | exn ->
1751 prerr_endline ("Error setting state " ^ Printexc.to_string exn)
1754 Arg.parse [] (fun s -> state.path <- s) "options:";
1755 let name =
1756 if String.length state.path = 0
1757 then (prerr_endline "filename missing"; exit 1)
1758 else state.path
1761 setstate ();
1762 let _ = Glut.init Sys.argv in
1763 let () = Glut.initDisplayMode ~depth:false ~double_buffer:true () in
1764 let () = Glut.initWindowSize state.w state.h in
1765 let _ = Glut.createWindow ("llpp " ^ Filename.basename name) in
1767 let csock, ssock =
1768 if Sys.os_type = "Unix"
1769 then
1770 Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0
1771 else
1772 let addr = Unix.ADDR_INET (Unix.inet_addr_loopback, 1337) in
1773 let sock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1774 Unix.setsockopt sock Unix.SO_REUSEADDR true;
1775 Unix.bind sock addr;
1776 Unix.listen sock 1;
1777 let csock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
1778 Unix.connect csock addr;
1779 let ssock, _ = Unix.accept sock in
1780 Unix.close sock;
1781 let opts sock =
1782 Unix.setsockopt sock Unix.TCP_NODELAY true;
1783 Unix.setsockopt_optint sock Unix.SO_LINGER None;
1785 opts ssock;
1786 opts csock;
1787 at_exit (fun () -> Unix.shutdown ssock Unix.SHUTDOWN_ALL);
1788 ssock, csock
1791 let () = Glut.displayFunc display in
1792 let () = Glut.reshapeFunc reshape in
1793 let () = Glut.keyboardFunc keyboard in
1794 let () = Glut.specialFunc special in
1795 let () = Glut.idleFunc (Some idle) in
1796 let () = Glut.mouseFunc mouse in
1797 let () = Glut.motionFunc motion in
1798 let () = Glut.passiveMotionFunc pmotion in
1800 init ssock;
1801 state.csock <- csock;
1802 state.ssock <- ssock;
1803 state.text <- "Opening " ^ name;
1804 writecmd csock ("open " ^ name ^ "\000");
1806 at_exit savestate;
1808 let rec handlelablglutbug () =
1810 Glut.mainLoop ();
1811 with Glut.BadEnum "key in special_of_int" ->
1812 showtext '!' " LablGlut bug: special key not recognized";
1813 handlelablglutbug ()
1815 handlelablglutbug ();