]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-lib.scm
patch::: 1.5.19.jcn2
[lilypond.git] / scm / output-lib.scm
1 ;;;; output-lib.scm -- implement Scheme output helper functions
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c) 1998--2001 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;; Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8
9 (define (arg->string arg)
10   (cond ((number? arg) (inexact->string arg 10))
11         ((string? arg) (string-append "\"" arg "\""))
12         ((symbol? arg) (string-append "\"" (symbol->string arg) "\""))))
13
14 ;; ugh: naming.
15 (define (func name . args)
16   (string-append 
17    "(" name 
18    (if (null? args) 
19        ""
20        (apply string-append 
21               (map (lambda (x) (string-append " " (arg->string x))) args)))
22    ")\n"))
23
24
25 ;;(define (mm-to-pt x)
26 ;;  (* (/ 72.27 25.40) x))
27
28 ;; do nothing in .scm output
29 (define (comment s) "")
30
31 (define (numbers->string l)
32   (apply string-append (map ly-number->string l)))
33
34 ; (define (chop-decimal x) (if (< (abs x) 0.001) 0.0 x))
35
36 (define (number->octal-string x)
37   (let* ((n (inexact->exact x))
38          (n64 (quotient n 64))
39          (n8 (quotient (- n (* n64 64)) 8)))
40     (string-append
41      (number->string n64)
42      (number->string n8)
43      (number->string (remainder (- n (+ (* n64 64) (* n8 8))) 8)))))
44
45 (define (inexact->string x radix)
46   (let ((n (inexact->exact x)))
47     (number->string n radix)))
48
49
50 (define (control->string c)
51   (string-append (number->string (car c)) " "
52                  (number->string (cdr c)) " "))
53
54 (define (font i)
55   (string-append
56    "font"
57    (make-string 1 (integer->char (+ (char->integer #\A) i)))))
58
59 (define (scm-scm action-name)
60   1)
61
62
63 ;; silly, use alist? 
64 (define (find-notehead-symbol duration style)
65   (case style
66    ((xcircle) "2xcircle")
67    ((harmonic) "0mensural")
68    ((baroque) 
69     (string-append (number->string duration)
70                    (if (< duration 0) "mensural" "")))
71    ((mensural) (string-append (number->string duration) (symbol->string style)))
72    ((default) (number->string duration))
73    (else
74     (string-append (number->string (max 0 duration)) (symbol->string style)))))
75
76
77 (define (note-head-style->attachment-coordinates style)
78   "Return pair (X . Y), containing multipliers for the note head
79 bounding box, where to attach the stem. e.g.: X==0 means horizontally
80 centered, X==1 is at the right, X == -1 is at the left."
81
82   (case style
83     ((default) '(1.0 . 0.5))
84     ((cross) '(1.0 . 0.75))
85     ((mensural) '(0.0 . 0.6))
86     ((neo_mensural) '(0.0 . 0.6))
87     ((diamond) '(1.0 . 0.8))
88     ((transparent) '(1.0 . 1.0))
89     ((slash) '(1.0 . 1.0))
90     ((harmonic) '(1.0 0.0))
91     (else
92      '(1.0 . 0.0)
93      )))
94                      
95 (define (string-encode-integer i)
96   (cond
97    ((= i  0) "o")
98    ((< i 0)   (string-append "n" (string-encode-integer (- i))))
99    (else (string-append
100           (make-string 1 (integer->char (+ 65 (modulo i 26))))
101           (string-encode-integer (quotient i 26))))))
102
103
104 (define (tex-encoded-fontswitch name-mag)
105   (let* ((iname-mag (car name-mag))
106          (ename-mag (cdr name-mag)))
107     (cons iname-mag
108           (cons ename-mag
109                 (string-append  "magfont"
110                           (string-encode-integer
111                            (hashq (car ename-mag) 1000000))
112                           "m"
113                           (string-encode-integer
114                            (inexact->exact (* 1000 (cdr ename-mag)))))))))
115
116 (define (define-fonts internal-external-name-mag-pairs)
117   (set! font-name-alist (map tex-encoded-fontswitch
118                              internal-external-name-mag-pairs))
119   (apply string-append
120          (map (lambda (x)
121                 (font-load-command (car x) (cdr x)))
122               (map cdr font-name-alist))))
123
124 ;; urg, how can exp be #unspecified?  -- in sketch output
125 (define (xfontify name-mag-pair exp)
126   (string-append (select-font name-mag-pair)
127                  exp))
128
129 (define (fontify name-mag-pair exp)
130   (string-append (select-font name-mag-pair)
131                  (if (string? exp) exp "")))