]> git.donarmstrong.com Git - lilypond.git/blob - scm/bass-figure.scm
release: 1.5.36
[lilypond.git] / scm / bass-figure.scm
1 ;;;; figured bass support ...
2
3 ;;;; todo: make interfaces as 1st level objects in LilyPond.
4
5 (define (brew-one-figure grob fig-music)
6   "Brew a single column for a music figure"
7   (let* (
8          (mf (ly-get-font grob '( (font-family .  music)  )))
9          (nf (ly-get-font grob '( (font-family .  number)  )))
10          (mol (ly-make-molecule  '() '(0 . 0) '(0 . 1.0)))
11          (fig  (ly-get-mus-property fig-music 'figure))
12          (acc  (ly-get-mus-property fig-music 'alteration))
13          )
14     
15     (if (number? fig)
16         (begin
17           (set! mol   (fontify-text nf (number->string fig)))
18           (ly-align-to! mol Y CENTER)
19         ))
20     
21     (if (number? acc)
22         (set! mol
23               (ly-combine-molecule-at-edge
24                mol 0 1 (ly-find-glyph-by-name mf (string-append "accidentals-" (number->string acc)))
25                0.2))
26         )
27     (if (molecule? mol)
28         (ly-align-to! mol X CENTER)
29         )
30     mol))
31
32
33
34 (define (brew-bass-figure grob)
35   "Make a molecule for a Figured Bass grob"
36   (let* (
37          (figs (ly-get-grob-property grob 'causes ))
38          (mol (ly-make-molecule '() '(0 . 0) '(0 . 0)))
39          (padding (ly-get-grob-property grob 'padding))
40          (kerning (ly-get-grob-property grob 'kern))
41          (thickness (*
42                      (ly-get-paper-variable grob 'stafflinethickness)
43                      (ly-get-grob-property grob 'thickness))
44                     )
45          )
46
47
48
49     (define (brew-complete-figure grob figs mol)
50       "recursive function: take some stuff from FIGS, and add it to MOL." 
51       (define (end-bracket? fig)
52         (eq? (ly-get-mus-property fig 'bracket-stop) #t)
53         )
54       
55       (if (null? figs)
56           mol
57           (if (eq? (ly-get-mus-property (car figs) 'bracket-start) #t)
58               (let* (
59                      (gather-todo (take-from-list-until figs '() end-bracket?))
60                      (unbr-mols
61                       (map
62                        (lambda (x) (brew-one-figure grob x))
63                        (reverse! (car gather-todo) '())))
64                      (br-mol (bracketify-molecule
65                               (stack-molecules Y UP kerning unbr-mols)
66                               Y thickness (* 2 padding) padding))
67                      )
68                 (brew-complete-figure
69                  grob (cdr gather-todo)
70                  (ly-combine-molecule-at-edge mol Y UP br-mol kerning)
71                  )
72                 )
73               (brew-complete-figure
74                grob (cdr figs)
75                (ly-combine-molecule-at-edge mol Y UP (brew-one-figure grob (car figs))
76                                             kerning))
77               )
78           ))
79
80     
81     (set! mol (brew-complete-figure grob (reverse figs) mol))
82     (ly-align-to! mol Y DOWN)
83     mol
84     ))
85