]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-lib.scm
release: 1.3.131
[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    ((cross) "2cross")
67    ((harmonic) "0mensural")
68    ((baroque) 
69     (string-append (number->string duration)
70                    (if (< duration 0) "mensural" "")))
71    ((default) (number->string duration))
72    (else
73     (string-append (number->string duration) (symbol->string style)))))
74
75
76 (define (string-encode-integer i)
77   (cond
78    ((= i  0) "o")
79    ((< i 0)   (string-append "n" (string-encode-integer (- i))))
80    (else (string-append
81           (make-string 1 (integer->char (+ 65 (modulo i 26))))
82           (string-encode-integer (quotient i 26))))))
83
84
85 (define (tex-encoded-fontswitch name-mag)
86   (let* ((iname-mag (car name-mag))
87          (ename-mag (cdr name-mag)))
88     (cons iname-mag
89           (cons ename-mag
90                 (string-append  "magfont"
91                           (string-encode-integer
92                            (hashq (car ename-mag) 1000000))
93                           "m"
94                           (string-encode-integer
95                            (inexact->exact (* 1000 (cdr ename-mag)))))))))
96
97 (define (define-fonts internal-external-name-mag-pairs)
98   (set! font-name-alist (map tex-encoded-fontswitch
99                              internal-external-name-mag-pairs))
100   (apply string-append
101          (map (lambda (x)
102                 (font-load-command (car x) (cdr x)))
103               (map cdr font-name-alist))))
104
105 (define (fontify name-mag-pair exp)
106   (string-append (select-font name-mag-pair)
107                  exp))
108