racket/collects/slideshow/cmdline.rkt
Matthew Flatt b098ca7aa6 slideshow: run a slideshow' or main' submodule, if any
A common Slideshow pattern is to put a subset of slides in its
own module with a `run-slides' function, and then you'd
(un)comment a `(run-slides)' call at the end of the module to
work on the subset by itself. Now, you can write
`(module+ main (run-slides))' atthe end of the module and not
have to comment it out. Adding `main' support to the `slideshow'
executable makes it more consistent with using `racket' directly.
Checking first for a `slideshow' submodule makes it possible
for `slideshow' and `racket' to do different things, in case
that's useful.
2012-05-29 11:00:43 -06:00

214 lines
8.4 KiB
Racket

(module cmdline racket/base
(require mzlib/class
mzlib/unit
mzlib/file
mzlib/contract
mred
racket/cmdline
texpict/mrpict
texpict/utils
mzlib/math
"sig.rkt"
(prefix-in start: "start-param.rkt"))
(provide cmdline@)
(define-unit cmdline@
(import)
(export (prefix final: cmdline^))
(define-values (screen-w screen-h) (values 1024 768))
(define base-font-size 32)
(define-values (actual-screen-w actual-screen-h) (get-display-size #t))
(define-values (use-screen-w use-screen-h) (values actual-screen-w actual-screen-h))
(define condense? #f)
(define printing-mode #f)
(define commentary? #f)
(define commentary-on-slide? #f)
(define show-gauge? #f)
(define keep-titlebar? #f)
(define show-page-numbers? #t)
(define quad-view? #f)
(define pixel-scale (if quad-view? 1/2 1))
(define print-slide-seconds? #f)
(define use-offscreen? #t)
(define use-transitions? use-offscreen?)
(define talk-duration-minutes #f)
(define trust-me? #f)
(define no-squash? #t)
(define two-frames? #f)
(define use-prefetch? #t)
(define use-prefetch-in-preview? #f)
(define print-target #f)
(define smoothing? #t)
(define screen-number 0)
(define right-half-screen? #f)
(define init-page 0)
(define no-stretch? #f)
(define screen-set? #f)
(define (die name . args)
(eprintf "~a: ~a\n" name (apply format args))
(exit -1))
(define file-to-load
(command-line
#:program "slideshow"
#:once-each
(("-M" "--monitor") monitor "display to <monitor> (count from 0)"
(let ([n (string->number monitor)])
(unless (and n (exact-nonnegative-integer? n))
(die 'slideshow "argument to -M is not an exact non-negative integer: ~a" monitor))
(set! screen-number n)))
(("-d" "--preview") "show next-slide preview (useful on a non-mirroring display)"
(set! two-frames? #t))
(("-p" "--print") "print"
(set! printing-mode 'print))
(("-P" "--ps") "print to PostScript"
(set! printing-mode 'ps))
(("-D" "--pdf") "print to PDF"
(set! printing-mode 'pdf))
(("-o") file "set output file for PostScript or PDF printing"
(set! print-target file))
(("-c" "--condense") "condense"
(set! condense? #t))
(("-t" "--start") page "set the starting page"
(let ([n (string->number page)])
(unless (and n (exact-positive-integer? n))
(die 'slideshow "argument to -t is not a positive exact integer: ~a" page))
(set! init-page (sub1 n))))
(("-q" "--quad") "show four slides at a time"
(set! quad-view? #t)
(set! pixel-scale 1/2))
(("-n" "--no-stretch") "don't stretch the slide window to fit the screen"
(set! no-stretch? #t))
(("-s" "--size") w h "use a <w> by <h> window"
(let ([nw (string->number w)]
[nh (string->number h)])
(unless (and nw (< 0 nw 10000))
(die 'slideshow "bad width: ~e" w))
(unless (and nh (< 0 nh 10000))
(die 'slideshow "bad height: ~e" h))
(set! screen-set? #t)
(set! actual-screen-w nw)
(set! actual-screen-h nh)))
(("-a" "--squash") "scale to full window, even if not 4:3 aspect"
(set! no-squash? #f))
(("-m" "--no-smoothing")
"disable anti-aliased drawing (usually faster)"
(set! smoothing? #f))
(("-i" "--immediate") "no transitions"
(set! use-transitions? #f))
(("--trust") "allow slide program to write files and make network connections"
(set! trust-me? #t))
(("--no-prefetch") "disable next-slide prefetch"
(set! use-prefetch? #f))
(("--preview-prefetch") "use prefetch for next-slide preview"
(set! use-prefetch-in-preview? #t))
(("--keep-titlebar") "give the slide window a title bar and resize border"
(set! keep-titlebar? #t))
(("--right-half-screen") "display slides on right half of the screen"
(set! right-half-screen? #t)
(set! keep-titlebar? #t)
(set! actual-screen-w (/ actual-screen-w 2)))
(("--comment") "display commentary in window"
(set! commentary? #t))
(("--comment-on-slide") "display commentary on slide"
(set! commentary? #t)
(set! commentary-on-slide? #t))
(("--time") "time seconds per slide" (set! print-slide-seconds? #t))
#:ps
"After requiring <slide-module-file>, if a `slideshow' submodule exists,"
" it is required. Otherwise, if a `main' submodule exists, it is required."
#:args ([slide-module-file #f])
slide-module-file))
(define printing? (and printing-mode #t))
(unless (zero? screen-number)
(define-values (w h) (get-display-size #t #:monitor screen-number))
(unless screen-set?
(set!-values (actual-screen-w actual-screen-h) (values w h)))
(set!-values (use-screen-w use-screen-h) (values w h)))
(when no-stretch?
(when (> actual-screen-w screen-w)
(set! actual-screen-w screen-w)
(set! actual-screen-h screen-h)))
(when (or printing-mode condense?)
(set! use-transitions? #f))
(when printing-mode
(set! use-offscreen? #f)
(set! use-prefetch? #f)
(set! keep-titlebar? #t))
(dc-for-text-size
(if printing-mode
(let ([p (let ([pss (make-object ps-setup%)])
(send pss set-mode 'file)
(send pss set-file
(if print-target
print-target
(let ([suffix
(if (eq? printing-mode 'pdf)
"pdf"
"ps")])
(if file-to-load
(path-replace-suffix (file-name-from-path file-to-load)
(format
(if quad-view?
"-4u.~a"
".~a")
suffix))
(format "untitled.~a" suffix)))))
(send pss set-orientation 'landscape)
(parameterize ([current-ps-setup pss])
(case printing-mode
[(print)
;; Make printer-dc%
(when (can-get-page-setup-from-user?)
(let ([v (get-page-setup-from-user)])
(if v
(send pss copy-from v)
(exit))))
(make-object printer-dc% #f)]
[(ps)
(make-object post-script-dc% (not print-target) #f #t #f)]
[(pdf)
(make-object pdf-dc% (not print-target) #f #t #f)])))])
;; Init page, set "screen" size, etc.:
(unless (send p ok?) (exit))
(send p start-doc "Slides")
(send p start-page)
(set!-values (actual-screen-w actual-screen-h) (send p get-size))
p)
;; Bitmaps give same size as the screen:
(make-object bitmap-dc% (make-object bitmap% 1 1))))
(start:trust-me? trust-me?)
(start:file-to-load file-to-load)
(set!-values (use-screen-w use-screen-h)
(if no-squash?
(if (< (/ actual-screen-w screen-w)
(/ actual-screen-h screen-h))
(values actual-screen-w
(floor (* (/ actual-screen-w screen-w) screen-h)))
(values (floor (* (/ actual-screen-h screen-h) screen-w))
actual-screen-h))
(values actual-screen-w actual-screen-h)))
;; We need to copy all exported bindings into the final:
;; form. Accumulating a unit from context and then invoking
;; it is one way to do that...
(define-unit-from-context final@ cmdline^)
(define-values/invoke-unit final@ (import) (export (prefix final: cmdline^)))))