]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-lib.scm
release: 1.3.153
[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     ((diamond) '(1.0 . 0.8))
87     ((transparent) '(1.0 . 1.0))
88     ((slash) '(1.0 . 1.0))
89     ((harmonic) '(1.0 0.0))
90     (else
91      '(1.0 . 0.0)
92      )))
93                      
94 (define (string-encode-integer i)
95   (cond
96    ((= i  0) "o")
97    ((< i 0)   (string-append "n" (string-encode-integer (- i))))
98    (else (string-append
99           (make-string 1 (integer->char (+ 65 (modulo i 26))))
100           (string-encode-integer (quotient i 26))))))
101
102
103 (define (tex-encoded-fontswitch name-mag)
104   (let* ((iname-mag (car name-mag))
105          (ename-mag (cdr name-mag)))
106     (cons iname-mag
107           (cons ename-mag
108                 (string-append  "magfont"
109                           (string-encode-integer
110                            (hashq (car ename-mag) 1000000))
111                           "m"
112                           (string-encode-integer
113                            (inexact->exact (* 1000 (cdr ename-mag)))))))))
114
115 (define (define-fonts internal-external-name-mag-pairs)
116   (set! font-name-alist (map tex-encoded-fontswitch
117                              internal-external-name-mag-pairs))
118   (apply string-append
119          (map (lambda (x)
120                 (font-load-command (car x) (cdr x)))
121               (map cdr font-name-alist))))
122
123 (define (fontify name-mag-pair exp)
124   (string-append (select-font name-mag-pair)
125                  exp))
126