You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.5 KiB
Racket
89 lines
2.5 KiB
Racket
#lang debug racket/base
|
|
(require "layout.rkt"
|
|
"quad.rkt"
|
|
"pipeline.rkt"
|
|
"linearize.rkt"
|
|
"layout.rkt"
|
|
"draw.rkt"
|
|
"attr.rkt"
|
|
"attr-passes.rkt"
|
|
"font.rkt"
|
|
"constants.rkt"
|
|
"param.rkt"
|
|
"page.rkt"
|
|
racket/list
|
|
racket/match
|
|
racket/file)
|
|
|
|
(define quad-compile
|
|
(make-pipeline
|
|
;; each pass in the pipeline is at least
|
|
;; (list-of quad?) -> (list-of quad?)
|
|
|
|
;; attribute prep =============
|
|
;; all attrs start out as symbol-string pairs.
|
|
;; we convert keys & values to corresponding higher-level types.
|
|
upgrade-attr-keys
|
|
downcase-string-attr-values
|
|
convert-boolean-attr-values
|
|
convert-numeric-attr-values
|
|
convert-set-attr-values
|
|
convert-path-attr-values
|
|
|
|
;; wrap default values around top level
|
|
set-top-level-attr-values
|
|
|
|
;; pre-linearization resolutions & parsings =============
|
|
;; these need the tree shape
|
|
parse-dimension-strings
|
|
resolve-font-sizes
|
|
resolve-font-features
|
|
parse-page-sizes
|
|
resolve-font-paths
|
|
complete-attr-paths
|
|
|
|
;; linearization =============
|
|
;; we postpone this step until we're certain any
|
|
;; information encoded from the hierarchy of quads
|
|
;; has been absorbed into the attrs
|
|
;; (e.g., cascading font sizes)
|
|
;; because once we linearize, that information is gone.
|
|
linearize
|
|
|
|
;; post-linearization resolutions & parsings =============
|
|
mark-text-runs
|
|
merge-adjacent-strings
|
|
split-whitespace
|
|
split-into-single-char-quads
|
|
fill-missing-font-path
|
|
remove-font-without-char
|
|
insert-fallback-font
|
|
append-bop-and-eop
|
|
append-boq-and-eoq
|
|
layout
|
|
make-drawing-insts
|
|
stackify))
|
|
|
|
(module+ main
|
|
(require "render.rkt")
|
|
(define (test-compile x)
|
|
(define characters-in-line 13)
|
|
(define monospaced-em-width 0.6)
|
|
(parameterize ([current-wrap-width (* characters-in-line monospaced-em-width default-font-size)]
|
|
[current-attr-keys all-attr-keys]
|
|
[current-strict-attrs? #t]
|
|
[current-show-timing? #f]
|
|
[current-use-preconditions? #t]
|
|
[current-use-postconditions? #t])
|
|
(quad-compile (bootstrap-input x))))
|
|
|
|
(match (test-compile "WHO")
|
|
[(? string? insts)
|
|
(displayln insts)
|
|
#;(render insts #:using text-renderer)
|
|
#;(render insts #:using drr-renderer)
|
|
(render insts #:using (html-renderer (build-path (find-system-path 'desk-dir) "test.html")))
|
|
#;(render-to-pdf drawing-insts)
|
|
]))
|
|
|