]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-lib.scm
89d20b95509febf0f89ce443f0bd26282f9d5c29
[lilypond.git] / scm / output-lib.scm
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 1998--2012 Jan Nieuwenhuizen <janneke@gnu.org>
4 ;;;; Han-Wen Nienhuys <hanwen@xs4all.nl>
5 ;;;;
6 ;;;; LilyPond is free software: you can redistribute it and/or modify
7 ;;;; it under the terms of the GNU General Public License as published by
8 ;;;; the Free Software Foundation, either version 3 of the License, or
9 ;;;; (at your option) any later version.
10 ;;;;
11 ;;;; LilyPond is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;;; GNU General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU General Public License
17 ;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19
20 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21 ;; general
22
23 (define-public (grob::has-interface grob iface)
24   (memq iface (ly:grob-interfaces grob)))
25
26 (define-public (grob::is-live? grob)
27   (pair? (ly:grob-basic-properties grob)))
28
29 (define-public (make-stencil-boxer thickness padding callback)
30   "Return function that adds a box around the grob passed as argument."
31   (lambda (grob)
32     (box-stencil (callback grob) thickness padding)))
33
34 (define-public (make-stencil-circler thickness padding callback)
35   "Return function that adds a circle around the grob passed as argument."
36   (lambda (grob)
37     (circle-stencil (callback grob) thickness padding)))
38
39 (define-public (print-circled-text-callback grob)
40   (grob-interpret-markup grob (make-circle-markup
41                                (ly:grob-property grob 'text))))
42
43 (define-public (event-cause grob)
44   (let ((cause (ly:grob-property  grob 'cause)))
45
46     (cond
47      ((ly:stream-event? cause) cause)
48      ((ly:grob? cause) (event-cause cause))
49      (else #f))))
50
51 (define-public (grob-interpret-markup grob text)
52   (let* ((layout (ly:grob-layout grob))
53          (defs (ly:output-def-lookup layout 'text-font-defaults))
54          (props (ly:grob-alist-chain grob defs)))
55
56     (ly:text-interface::interpret-markup layout props text)))
57
58 (define-public (grob::unpure-Y-extent-from-stencil pure-function)
59   "The unpure height will come from a stencil whereas the pure
60    height will come from @code{pure-function}."
61   (ly:make-unpure-pure-container ly:grob::stencil-height pure-function))
62
63 (define-public grob::unpure-horizontal-skylines-from-stencil
64   (ly:make-unpure-pure-container
65    ly:grob::horizontal-skylines-from-stencil
66    ly:grob::pure-simple-horizontal-skylines-from-extents))
67
68 (define-public grob::always-horizontal-skylines-from-stencil
69   (ly:make-unpure-pure-container
70    ly:grob::horizontal-skylines-from-stencil))
71
72 (define-public grob::unpure-vertical-skylines-from-stencil
73   (ly:make-unpure-pure-container
74    ly:grob::vertical-skylines-from-stencil
75    ly:grob::pure-simple-vertical-skylines-from-extents))
76
77 (define-public grob::always-vertical-skylines-from-stencil
78   (ly:make-unpure-pure-container
79    ly:grob::vertical-skylines-from-stencil))
80
81 (define-public grob::always-vertical-skylines-from-element-stencils
82   (ly:make-unpure-pure-container
83    ly:grob::vertical-skylines-from-element-stencils
84    ly:grob::pure-vertical-skylines-from-element-stencils))
85
86 (define-public grob::always-horizontal-skylines-from-element-stencils
87   (ly:make-unpure-pure-container
88    ly:grob::horizontal-skylines-from-element-stencils
89    ly:grob::pure-horizontal-skylines-from-element-stencils))
90
91 ;; Using this as a callback for a grob's Y-extent promises
92 ;; that the grob's stencil does not depend on line-spacing.
93 ;; We use this promise to figure the space required by Clefs
94 ;; and such at the note-spacing stage.
95
96 (define-public grob::always-Y-extent-from-stencil
97   (ly:make-unpure-pure-container ly:grob::stencil-height))
98
99 (define-public (layout-line-thickness grob)
100   "Get the line thickness of the @var{grob}'s corresponding layout."
101   (let* ((layout (ly:grob-layout grob))
102          (line-thickness (ly:output-def-lookup layout 'line-thickness)))
103
104     line-thickness))
105
106 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
107 ;; beam slope
108
109 ;; even though kievan noteheads do not have stems, their
110 ;; invisible stems help with beam placement
111 ;; this assures that invisible stems for kievan notes are aligned
112 ;; to the center of kievan noteheads. that is thus where the beams'
113 ;; x extrema will fall
114 (define-public (stem::kievan-offset-callback grob)
115   (let* ((note-heads (ly:grob-object grob 'note-heads))
116          (note-heads-grobs (if (not (null? note-heads))
117                                (ly:grob-array->list note-heads)
118                                '()))
119          (first-note-head (if (not (null? note-heads-grobs))
120                               (car note-heads-grobs)
121                               '()))
122          (note-head-w (if (not (null? first-note-head))
123                           (ly:grob-extent first-note-head first-note-head X)
124                           '(0 . 0))))
125     (interval-center note-head-w)))
126
127
128 ;; sets position of beams for Kievan notation
129 (define-public (beam::get-kievan-positions grob)
130   (let* ((stems (ly:grob-object grob 'stems))
131          (stems-grobs (if (not (null? stems))
132                           (ly:grob-array->list stems)
133                           '()))
134          (first-stem (if (not (null? stems-grobs))
135                          (car stems-grobs)
136                          '()))
137          (note-heads (if (not (null? first-stem))
138                          (ly:grob-object first-stem 'note-heads)
139                          '()))
140          (note-heads-grobs (if (not (null? note-heads))
141                                (ly:grob-array->list note-heads)
142                                '()))
143          (first-note-head (if (not (null? note-heads-grobs))
144                               (car note-heads-grobs)
145                               '()))
146          (next-stem (if (not (null? stems))
147                         (cadr stems-grobs)
148                         '()))
149          (next-note-heads (if (not (null? next-stem))
150                               (ly:grob-object next-stem 'note-heads)
151                               '()))
152          (next-note-heads-grobs (if (not (null? next-note-heads))
153                                     (ly:grob-array->list next-note-heads)
154                                     '()))
155          (next-note-head (if (not (null? next-note-heads-grobs))
156                              (car next-note-heads-grobs)
157                              '()))
158          (left-pos (ly:grob-property first-note-head 'Y-offset))
159          (right-pos (ly:grob-property next-note-head 'Y-offset))
160          (direction (ly:grob-property grob 'direction))
161          (first-nh-height (ly:grob::stencil-height first-note-head))
162          (next-nh-height (ly:grob::stencil-height next-note-head))
163          (left-height (if (= direction DOWN)
164                           (+ (car first-nh-height) 0.75)
165                           (- (cdr first-nh-height) 0.75)))
166          (right-height (if (= direction DOWN)
167                            (+ (car next-nh-height) 0.75)
168                            (- (cdr next-nh-height) 0.75))))
169     (cons (+ left-pos left-height) (+ right-pos right-height))))
170
171 (define-public (beam::get-kievan-quantized-positions grob)
172   (let* ((pos (ly:grob-property grob 'positions))
173          (stems (ly:grob-object grob 'stems))
174          (stems-grobs (if (not (null? stems))
175                           (ly:grob-array->list stems)
176                           '())))
177     (for-each
178      (lambda (g)
179        (ly:grob-set-property! g 'stem-begin-position 0)
180        (ly:grob-set-property! g 'length 0))
181      stems-grobs)
182     pos))
183
184 ;; calculates each slope of a broken beam individually
185 (define-public (beam::place-broken-parts-individually grob)
186   (ly:beam::quanting grob '(+inf.0 . -inf.0) #f))
187
188 ;; calculates the slope of a beam as a single unit,
189 ;; even if it is broken.  this assures that the beam
190 ;; will pick up where it left off after a line break
191 (define-public (beam::align-with-broken-parts grob)
192   (ly:beam::quanting grob '(+inf.0 . -inf.0) #t))
193
194 ;; uses the broken beam style from edition peters combines the
195 ;; values of place-broken-parts-individually and align-with-broken-parts above,
196 ;; favoring place-broken-parts-individually when the beam naturally has a steeper
197 ;; incline and align-with-broken-parts when the beam is flat
198 (define-public (beam::slope-like-broken-parts grob)
199   (define (slope y x)
200     (/ (- (cdr y) (car y)) (- (cdr x) (car x))))
201   (let* ((quant1 (ly:beam::quanting grob '(+inf.0 . -inf.0) #t))
202          (original (ly:grob-original grob))
203          (siblings (if (ly:grob? original)
204                        (ly:spanner-broken-into original)
205                        '())))
206     (if (null? siblings)
207         quant1
208         (let* ((quant2 (ly:beam::quanting grob '(+inf.0 . -inf.0) #f))
209                (x-span (ly:grob-property grob 'X-positions))
210                (slope1 (slope quant1 x-span))
211                (slope2 (slope quant2 x-span))
212                (quant2 (if (not (= (sign slope1) (sign slope2)))
213                            '(0 . 0)
214                            quant2))
215                (factor (/ (atan (abs slope1)) PI-OVER-TWO))
216                (base (cons-map
217                       (lambda (x)
218                         (+ (* (x quant1) (- 1 factor))
219                            (* (x quant2) factor)))
220                       (cons car cdr))))
221           (ly:beam::quanting grob base #f)))))
222
223 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
224 ;; cross-staff stuff
225
226 (define-public (script-or-side-position-cross-staff g)
227   (or
228    (ly:script-interface::calc-cross-staff g)
229    (ly:side-position-interface::calc-cross-staff g)))
230
231
232 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
233 ;; side-position stuff
234
235 (define-public (only-if-beamed g)
236   (any (lambda (x) (ly:grob? (ly:grob-object x 'beam)))
237        (ly:grob-array->list (ly:grob-object g 'side-support-elements))))
238
239 (define-public side-position-interface::y-aligned-side
240   (ly:make-unpure-pure-container
241    ly:side-position-interface::y-aligned-side
242    ly:side-position-interface::pure-y-aligned-side))
243
244 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
245 ;; self-alignment stuff
246
247 (define-public self-alignment-interface::y-aligned-on-self
248   (ly:make-unpure-pure-container
249    ly:self-alignment-interface::y-aligned-on-self
250    ly:self-alignment-interface::pure-y-aligned-on-self))
251
252 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
253 ;; staff symbol
254
255 (define staff-symbol-referencer::callback
256   (ly:make-unpure-pure-container ly:staff-symbol-referencer::callback))
257
258 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
259 ;; note heads
260
261 (define-public (stem::calc-duration-log grob)
262   (ly:duration-log
263    (ly:event-property (event-cause grob) 'duration)))
264
265 (define (stem-stub::do-calculations grob)
266   (and (ly:grob-property (ly:grob-parent grob X) 'cross-staff)
267        (not (ly:grob-property (ly:grob-parent grob X) 'transparent))))
268
269 (define-public (stem-stub::pure-height grob beg end)
270   (if (stem-stub::do-calculations grob)
271       '(0 . 0)
272       '(+inf.0 . -inf.0)))
273
274 (define-public (stem-stub::width grob)
275   (if (stem-stub::do-calculations grob)
276       (grob::x-parent-width grob)
277       '(+inf.0 . -inf.0)))
278
279 (define-public (stem-stub::extra-spacing-height grob)
280   (if (stem-stub::do-calculations grob)
281       (let* ((dad (ly:grob-parent grob X))
282              (refp (ly:grob-common-refpoint grob dad Y))
283              (stem_ph (ly:grob-pure-height dad refp 0 INFINITY-INT))
284              (my_ph (ly:grob-pure-height grob refp 0 INFINITY-INT))
285              ;; only account for distance if stem is on different staff than stub
286              (dist (if (grob::has-interface refp 'hara-kiri-group-spanner-interface)
287                        0
288                        (- (car my_ph) (car stem_ph)))))
289         (if (interval-empty? (interval-intersection stem_ph my_ph)) #f (coord-translate stem_ph dist)))
290       #f))
291
292 (define-public (note-head::calc-kievan-duration-log grob)
293   (min 3
294        (ly:duration-log
295         (ly:event-property (event-cause grob) 'duration))))
296
297 (define-public (note-head::calc-duration-log grob)
298   (min 2
299        (ly:duration-log
300         (ly:event-property (event-cause grob) 'duration))))
301
302 (define-public (dots::calc-dot-count grob)
303   (ly:duration-dot-count
304    (ly:event-property (event-cause grob) 'duration)))
305
306 (define-public (dots::calc-staff-position grob)
307   (let* ((head (ly:grob-parent grob Y))
308          (log (ly:grob-property head 'duration-log)))
309
310     (cond
311      ((or (not (grob::has-interface head 'rest-interface))
312           (not (integer? log))) 0)
313      ((= log 7) 4)
314      ((> log 4) 3)
315      ((= log 0) -1)
316      ((= log 1) 1)
317      ((= log -1) 1)
318      (else 0))))
319
320 ;; Kept separate from note-head::calc-glyph-name to allow use by
321 ;; markup commands \note and \note-by-number
322 (define-public (select-head-glyph style log)
323   "Select a note head glyph string based on note head style @var{style}
324 and duration-log @var{log}."
325   (case style
326     ;; "default" style is directly handled in note-head.cc as a
327     ;; special case (HW says, mainly for performance reasons).
328     ;; Therefore, style "default" does not appear in this case
329     ;; statement.  -- jr
330     ((xcircle) "2xcircle")
331     ((harmonic) "0harmonic")
332     ((harmonic-black) "2harmonic")
333     ((harmonic-mixed) (if (<= log 1) "0harmonic"
334                           "2harmonic"))
335     ((baroque)
336      ;; Oops, I actually would not call this "baroque", but, for
337      ;; backwards compatibility to 1.4, this is supposed to take
338      ;; brevis, longa and maxima from the neo-mensural font and all
339      ;; other note heads from the default font.  -- jr
340      (if (< log 0)
341          (string-append (number->string log) "neomensural")
342          (number->string log)))
343     ((altdefault)
344      ;; Like default, but brevis is drawn with double vertical lines
345      (if (= log -1)
346          (string-append (number->string log) "double")
347          (number->string log)))
348     ((mensural)
349      (string-append (number->string log) (symbol->string style)))
350     ((petrucci)
351      (if (< log 0)
352          (string-append (number->string log) "mensural")
353          (string-append (number->string log) (symbol->string style))))
354     ((blackpetrucci)
355      (if (< log 0)
356          (string-append (number->string log) "blackmensural")
357          (string-append (number->string log) (symbol->string style))))
358     ((semipetrucci)
359      (if (< log 0)
360          (string-append (number->string log) "semimensural")
361          (string-append (number->string log) "petrucci")))
362     ((neomensural)
363      (string-append (number->string log) (symbol->string style)))
364     ((kievan)
365      (string-append (number->string log) "kievan"))
366     (else
367      (if (string-match "vaticana*|hufnagel*|medicaea*" (symbol->string style))
368          (symbol->string style)
369          (string-append (number->string (max 0 log))
370                         (symbol->string style))))))
371
372 (define-public (note-head::calc-glyph-name grob)
373   (let* ((style (ly:grob-property grob 'style))
374          (log (if (string-match "kievan*" (symbol->string style))
375                   (min 3 (ly:grob-property grob 'duration-log))
376                   (min 2 (ly:grob-property grob 'duration-log)))))
377     (select-head-glyph style log)))
378
379 (define-public (note-head::brew-ez-stencil grob)
380   (let* ((log (ly:grob-property grob 'duration-log))
381          (pitch (ly:event-property (event-cause grob) 'pitch))
382          (pitch-index (ly:pitch-notename pitch))
383          (note-names (ly:grob-property grob 'note-names))
384          (pitch-string (if (and (vector? note-names)
385                                 (> (vector-length note-names) pitch-index))
386                            (vector-ref note-names pitch-index)
387                            (string
388                             (integer->char
389                              (+ (modulo (+ pitch-index 2) 7)
390                                 (char->integer #\A))))))
391          (staff-space (ly:staff-symbol-staff-space grob))
392          (line-thickness (ly:staff-symbol-line-thickness grob))
393          (stem (ly:grob-object grob 'stem))
394          (stem-thickness (* (if (ly:grob? stem)
395                                 (ly:grob-property stem 'thickness)
396                                 1.3)
397                             line-thickness))
398          (radius (/ (+ staff-space line-thickness) 2))
399          (letter (markup #:center-align #:vcenter pitch-string))
400          (filled-circle (markup #:draw-circle radius 0 #t)))
401
402     (ly:stencil-translate-axis
403      (grob-interpret-markup
404       grob
405       (if (>= log 2)
406           (make-combine-markup
407            filled-circle
408            (make-with-color-markup white letter))
409           (make-combine-markup
410            (make-combine-markup
411             filled-circle
412             (make-with-color-markup white (make-draw-circle-markup
413                                            (- radius stem-thickness) 0 #t)))
414            letter)))
415      radius X)))
416
417 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
418 ;; clipping
419
420 (define-public (make-rhythmic-location bar-num num den)
421   (cons
422    bar-num (ly:make-moment num den)))
423
424 (define-public (rhythmic-location? a)
425   (and (pair? a)
426        (integer? (car a))
427        (ly:moment? (cdr a))))
428
429 (define-public (make-graceless-rhythmic-location loc)
430   (make-rhythmic-location
431    (car loc)
432    (ly:moment-main-numerator (rhythmic-location-measure-position loc))
433    (ly:moment-main-denominator (rhythmic-location-measure-position loc))))
434
435 (define-public rhythmic-location-measure-position cdr)
436 (define-public rhythmic-location-bar-number car)
437
438 (define-public (rhythmic-location<? a b)
439   (cond
440    ((< (car a) (car b)) #t)
441    ((> (car a) (car b)) #f)
442    (else
443     (ly:moment<? (cdr a) (cdr b)))))
444
445 (define-public (rhythmic-location<=? a b)
446   (not (rhythmic-location<? b a)))
447 (define-public (rhythmic-location>=? a b)
448   (not (rhythmic-location<? a b)))
449 (define-public (rhythmic-location>? a b)
450   (rhythmic-location<? b a))
451
452 (define-public (rhythmic-location=? a b)
453   (and (rhythmic-location<=? a b)
454        (rhythmic-location<=? b a)))
455
456 (define-public (rhythmic-location->file-string a)
457   (ly:format "~a.~a.~a"
458              (car a)
459              (ly:moment-main-numerator (cdr a))
460              (ly:moment-main-denominator (cdr a))))
461
462 (define-public (rhythmic-location->string a)
463   (ly:format "bar ~a ~a"
464              (car a)
465              (ly:moment->string (cdr a))))
466
467 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
468 ;; break visibility
469
470 (define-public all-visible             #(#t #t #t))
471 (define-public begin-of-line-invisible #(#t #t #f))
472 (define-public center-invisible        #(#t #f #t))
473 (define-public end-of-line-invisible   #(#f #t #t))
474 (define-public begin-of-line-visible   #(#f #f #t))
475 (define-public center-visible          #(#f #t #f))
476 (define-public end-of-line-visible     #(#t #f #f))
477 (define-public all-invisible           #(#f #f #f))
478
479 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
480 ;; neighbor-interface routines
481
482
483 (define-public (shift-right-at-line-begin g)
484   "Shift an item to the right, but only at the start of the line."
485   (if (and (ly:item? g)
486            (equal? (ly:item-break-dir g) RIGHT))
487       (ly:grob-translate-axis! g 3.5 X)))
488
489 (define-public (pure-from-neighbor-interface::extra-spacing-height-at-beginning-of-line grob)
490   (if (= 1 (ly:item-break-dir grob))
491       (pure-from-neighbor-interface::extra-spacing-height grob)
492       (cons -0.1 0.1)))
493
494 (define-public (pure-from-neighbor-interface::extra-spacing-height grob)
495   (let* ((height (ly:grob-pure-height grob grob 0 INFINITY-INT))
496          (from-neighbors (interval-union
497                           height
498                           (ly:axis-group-interface::pure-height
499                            grob
500                            0
501                            INFINITY-INT))))
502     (coord-operation - from-neighbors height)))
503
504 ;; If there are neighbors, we place the height at their midpoint
505 ;; to avoid protrusion of this pure height out of the vertical
506 ;; axis group on either side.  This will minimize the impact of the
507 ;; grob on pure minimum translations.
508
509 ;; TODO - there is a double call to axis-group-interface::pure-height
510 ;; here and then in the extra-spacing-height function above. Can/should this
511 ;; be rolled into one?
512 (define-public (pure-from-neighbor-interface::pure-height grob beg end)
513   (let* ((height (ly:axis-group-interface::pure-height
514                   grob
515                   0
516                   INFINITY-INT))
517          (c (interval-center height)))
518     (if (interval-empty? height) empty-interval (cons c c))))
519
520 ;; Minimizes the impact of the height on vertical spacing while allowing
521 ;; it to appear in horizontal skylines of paper columns if necessary.
522 (define-public pure-from-neighbor-interface::height-if-pure
523   (ly:make-unpure-pure-container #f pure-from-neighbor-interface::pure-height))
524
525 (define-public (pure-from-neighbor-interface::account-for-span-bar grob)
526   (let* ((esh (pure-from-neighbor-interface::extra-spacing-height grob))
527          (hsb (ly:grob-property grob 'has-span-bar))
528          (ii (interval-intersection esh (cons -1.01 1.01))))
529     (if (pair? hsb)
530         (cons (car (if (and (car hsb)
531                             (ly:grob-property grob 'allow-span-bar))
532                        esh ii))
533               (cdr (if (cdr hsb) esh ii)))
534         ii)))
535
536 (define-public (pure-from-neighbor-interface::extra-spacing-height-including-staff grob)
537   (let ((esh (pure-from-neighbor-interface::extra-spacing-height grob))
538         (to-staff (coord-operation -
539                                    (interval-widen
540                                     '(0 . 0)
541                                     (ly:staff-symbol-staff-radius grob))
542                                    (ly:grob::stencil-height grob))))
543     (interval-union esh to-staff)))
544
545
546 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
547 ;; Tuplets
548
549 (define-public (tuplet-number::calc-direction grob)
550   (ly:tuplet-bracket::calc-direction (ly:grob-object grob 'bracket)))
551
552 (define-public (tuplet-number::calc-denominator-text grob)
553   (number->string (ly:event-property (event-cause grob) 'denominator)))
554
555 (define-public (tuplet-number::calc-fraction-text grob)
556   (let ((ev (event-cause grob)))
557
558     (format #f "~a:~a"
559             (ly:event-property ev 'denominator)
560             (ly:event-property ev 'numerator))))
561
562 ;; a formatter function, which is simply a wrapper around an existing
563 ;; tuplet formatter function. It takes the value returned by the given
564 ;; function and appends a note of given length.
565 (define-public ((tuplet-number::append-note-wrapper function note) grob)
566   (let ((txt (if function (function grob) #f)))
567
568     (if txt
569         (markup txt #:fontsize -5 #:note note UP)
570         (markup #:fontsize -5 #:note note UP))))
571
572 ;; Print a tuplet denominator with a different number than the one derived from
573 ;; the actual tuplet fraction
574 (define-public ((tuplet-number::non-default-tuplet-denominator-text denominator)
575                 grob)
576   (number->string (if denominator
577                       denominator
578                       (ly:event-property (event-cause grob) 'denominator))))
579
580 ;; Print a tuplet fraction with different numbers than the ones derived from
581 ;; the actual tuplet fraction
582 (define-public ((tuplet-number::non-default-tuplet-fraction-text
583                  denominator numerator) grob)
584   (let* ((ev (event-cause grob))
585          (den (if denominator denominator (ly:event-property ev 'denominator)))
586          (num (if numerator numerator (ly:event-property ev 'numerator))))
587
588     (format #f "~a:~a" den num)))
589
590 ;; Print a tuplet fraction with note durations appended to the numerator and the
591 ;; denominator
592 (define-public ((tuplet-number::fraction-with-notes
593                  denominatornote numeratornote) grob)
594   (let* ((ev (event-cause grob))
595          (denominator (ly:event-property ev 'denominator))
596          (numerator (ly:event-property ev 'numerator)))
597
598     ((tuplet-number::non-default-fraction-with-notes
599       denominator denominatornote numerator numeratornote) grob)))
600
601 ;; Print a tuplet fraction with note durations appended to the numerator and the
602 ;; denominator
603 (define-public ((tuplet-number::non-default-fraction-with-notes
604                  denominator denominatornote numerator numeratornote) grob)
605   (let* ((ev (event-cause grob))
606          (den (if denominator denominator (ly:event-property ev 'denominator)))
607          (num (if numerator numerator (ly:event-property ev 'numerator))))
608
609     (make-concat-markup (list
610                          (make-simple-markup (format #f "~a" den))
611                          (markup #:fontsize -5 #:note denominatornote UP)
612                          (make-simple-markup " : ")
613                          (make-simple-markup (format #f "~a" num))
614                          (markup #:fontsize -5 #:note numeratornote UP)))))
615
616
617 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
618 ;; Color
619
620 (define-public (color? x)
621   (and (list? x)
622        (= 3 (length x))
623        (every number? x)
624        (every (lambda (y) (<= 0 y 1)) x)))
625
626 (define-public (rgb-color r g b) (list r g b))
627
628 ;; predefined colors
629 (define-public black       '(0.0 0.0 0.0))
630 (define-public white       '(1.0 1.0 1.0))
631 (define-public red         '(1.0 0.0 0.0))
632 (define-public green       '(0.0 1.0 0.0))
633 (define-public blue        '(0.0 0.0 1.0))
634 (define-public cyan        '(0.0 1.0 1.0))
635 (define-public magenta     '(1.0 0.0 1.0))
636 (define-public yellow      '(1.0 1.0 0.0))
637
638 (define-public grey        '(0.5 0.5 0.5))
639 (define-public darkred     '(0.5 0.0 0.0))
640 (define-public darkgreen   '(0.0 0.5 0.0))
641 (define-public darkblue    '(0.0 0.0 0.5))
642 (define-public darkcyan    '(0.0 0.5 0.5))
643 (define-public darkmagenta '(0.5 0.0 0.5))
644 (define-public darkyellow  '(0.5 0.5 0.0))
645
646
647 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
648 ;; key signature
649
650 (define-public (key-signature-interface::alteration-positions
651                 entry c0-position grob)
652   (let ((step (car entry))
653         (alter (cdr entry)))
654     (if (pair? step)
655         (list (+ (cdr step) (* (car step) 7) c0-position))
656         (let* ((c-position (modulo c0-position 7))
657                (positions
658                 (if (< alter 0)
659                     ;; See (flat|sharp)-positions in define-grob-properties.scm
660                     (ly:grob-property grob 'flat-positions '(3))
661                     (ly:grob-property grob 'sharp-positions '(3))))
662                (p (list-ref positions
663                             (if (< c-position (length positions))
664                                 c-position 0)))
665                (max-position (if (pair? p) (cdr p) p))
666                (min-position (if (pair? p) (car p) (- max-position 6)))
667                (first-position (+ (modulo (- (+ c-position step)
668                                              min-position)
669                                           7)
670                                   min-position)))
671           (define (prepend x l) (if (> x max-position)
672                                     l
673                                     (prepend (+ x 7) (cons x l))))
674           (prepend first-position '())))))
675
676 (define-public (key-signature-interface::alteration-position
677                 step alter c0-position)
678 ;; Deprecated.  Not a documented interface, and no longer used in LilyPond,
679 ;; but needed for a popular file, LilyJAZZ.ily for version 2.16
680   (if (pair? step)
681     (+ (cdr step) (* (car step) 7) c0-position)
682     (let* ((c-pos (modulo c0-position 7))
683            (hi (list-ref
684                  (if (< alter 0)
685                    '(2 3 4 2 1 2 1) ; position of highest flat
686                    '(4 5 4 2 3 2 3)); position of highest sharp
687                  c-pos)))
688       (- hi (modulo (- hi (+ c-pos step)) 7)))))
689
690 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
691 ;; annotations
692
693 (define-public (numbered-footnotes int)
694   (markup #:tiny (number->string (+ 1 int))))
695
696 (define-public (symbol-footnotes int)
697   (define (helper symbols out idx n)
698     (if (< n 1)
699         out
700         (helper symbols
701                 (string-append out (list-ref symbols idx))
702                 idx
703                 (- n 1))))
704   (markup #:tiny (helper '("*" "†" "‡" "§" "¶")
705                          ""
706                          (remainder int 5)
707                          (+ 1 (quotient int 5)))))
708
709 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
710 ;; accidentals
711
712 (define-public (accidental-interface::calc-alteration grob)
713   (ly:pitch-alteration (ly:event-property (event-cause grob) 'pitch)))
714
715 (define-public (accidental-interface::glyph-name grob)
716   (assoc-get (ly:grob-property grob 'alteration)
717              standard-alteration-glyph-name-alist))
718
719 (define-public accidental-interface::height
720   (ly:make-unpure-pure-container
721    ly:accidental-interface::height
722    ly:accidental-interface::pure-height))
723
724 (define-public cancellation-glyph-name-alist
725   '((0 . "accidentals.natural")))
726
727 (define-public standard-alteration-glyph-name-alist
728   '(
729     ;; ordered for optimal performance.
730     (0 . "accidentals.natural")
731     (-1/2 . "accidentals.flat")
732     (1/2 . "accidentals.sharp")
733
734     (1 . "accidentals.doublesharp")
735     (-1 . "accidentals.flatflat")
736
737     (3/4 . "accidentals.sharp.slashslash.stemstemstem")
738     (1/4 . "accidentals.sharp.slashslash.stem")
739     (-1/4 . "accidentals.mirroredflat")
740     (-3/4 . "accidentals.mirroredflat.flat")))
741
742 ;; FIXME: standard vs default, alteration-FOO vs FOO-alteration
743 (define-public alteration-default-glyph-name-alist
744   standard-alteration-glyph-name-alist)
745
746 (define-public makam-alteration-glyph-name-alist
747   '((1 . "accidentals.doublesharp")
748     (8/9 . "accidentals.sharp.slashslashslash.stemstem")
749     (5/9 . "accidentals.sharp.slashslashslash.stem")
750     (4/9 . "accidentals.sharp")
751     (1/9 . "accidentals.sharp.slashslash.stem")
752     (0 . "accidentals.natural")
753     (-1/9 . "accidentals.mirroredflat")
754     (-4/9 . "accidentals.flat.slash")
755     (-5/9 . "accidentals.flat")
756     (-8/9 . "accidentals.flat.slashslash")
757     (-1 . "accidentals.flatflat")))
758
759 (define-public alteration-hufnagel-glyph-name-alist
760   '((-1/2 . "accidentals.hufnagelM1")
761     (0 . "accidentals.vaticana0")
762     (1/2 . "accidentals.mensural1")))
763
764 (define-public alteration-medicaea-glyph-name-alist
765   '((-1/2 . "accidentals.medicaeaM1")
766     (0 . "accidentals.vaticana0")
767     (1/2 . "accidentals.mensural1")))
768
769 (define-public alteration-vaticana-glyph-name-alist
770   '((-1/2 . "accidentals.vaticanaM1")
771     (0 . "accidentals.vaticana0")
772     (1/2 . "accidentals.mensural1")))
773
774 (define-public alteration-mensural-glyph-name-alist
775   '((-1/2 . "accidentals.mensuralM1")
776     (0 . "accidentals.vaticana0")
777     (1/2 . "accidentals.mensural1")))
778
779 (define-public alteration-kievan-glyph-name-alist
780   '((-1/2 . "accidentals.kievanM1")
781     (1/2 . "accidentals.kievan1")))
782
783 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
784 ;; * Pitch Trill Heads
785 ;; * Parentheses
786
787 (define-public (parentheses-item::calc-parenthesis-stencils grob)
788   (let* ((font (ly:grob-default-font grob))
789          (lp (ly:font-get-glyph font "accidentals.leftparen"))
790          (rp (ly:font-get-glyph font "accidentals.rightparen")))
791
792     (list lp rp)))
793
794 (define-public (parentheses-item::calc-angled-bracket-stencils grob)
795   (let* ((parent (ly:grob-parent grob Y))
796          (y-extent (ly:grob-extent parent parent Y))
797          (half-thickness 0.05) ; should it be a property?
798          (width 0.5) ; should it be a property?
799          (angularity 1.5)  ; makes angle brackets
800          (white-padding 0.1) ; should it be a property?
801          (lp (ly:stencil-aligned-to
802               (ly:stencil-aligned-to
803                (make-parenthesis-stencil y-extent
804                                          half-thickness
805                                          (- width)
806                                          angularity)
807                Y CENTER)
808               X RIGHT))
809          (lp-x-extent
810           (interval-widen (ly:stencil-extent lp X) white-padding))
811          (rp (ly:stencil-aligned-to
812               (ly:stencil-aligned-to
813                (make-parenthesis-stencil y-extent
814                                          half-thickness
815                                          width
816                                          angularity)
817                Y CENTER)
818               X LEFT))
819          (rp-x-extent
820           (interval-widen (ly:stencil-extent rp X) white-padding)))
821     (set! lp (ly:make-stencil (ly:stencil-expr lp)
822                               lp-x-extent
823                               (ly:stencil-extent lp Y)))
824     (set! rp (ly:make-stencil (ly:stencil-expr rp)
825                               rp-x-extent
826                               (ly:stencil-extent rp Y)))
827     (list (stencil-whiteout lp)
828           (stencil-whiteout rp))))
829
830 (define (parenthesize-elements grob . rest)
831   (let* ((refp (if (null? rest)
832                    grob
833                    (car rest)))
834          (elts (ly:grob-object grob 'elements))
835          (x-ext (ly:relative-group-extent elts refp X))
836          (stencils (ly:grob-property grob 'stencils))
837          (lp (car stencils))
838          (rp (cadr stencils))
839          (padding (ly:grob-property grob 'padding 0.1)))
840
841     (ly:stencil-add
842      (ly:stencil-translate-axis lp (- (car x-ext) padding) X)
843      (ly:stencil-translate-axis rp (+ (cdr x-ext) padding) X))))
844
845
846 (define-public (parentheses-item::print me)
847   (let* ((elts (ly:grob-object me 'elements))
848          (y-ref (ly:grob-common-refpoint-of-array me elts Y))
849          (x-ref (ly:grob-common-refpoint-of-array me elts X))
850          (stencil (parenthesize-elements me x-ref))
851          (elt-y-ext (ly:relative-group-extent elts y-ref Y))
852          (y-center (interval-center elt-y-ext)))
853
854     (ly:stencil-translate
855      stencil
856      (cons
857       (- (ly:grob-relative-coordinate me x-ref X))
858       (- y-center (ly:grob-relative-coordinate me y-ref Y))))))
859
860
861 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
862 ;; offset callbacks
863
864 (define-public (pure-chain-offset-callback grob start end prev-offset)
865   "Sometimes, a chained offset callback is unpure and there is
866    no way to write a pure function that estimates its behavior.
867    In this case, we use a pure equivalent that will simply pass
868    the previous calculated offset value."
869   prev-offset)
870
871 (define-public (scale-by-font-size x)
872   (ly:make-unpure-pure-container
873     (lambda (grob)
874       (* x (magstep (ly:grob-property grob 'font-size 0))))))
875
876 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
877 ;;
878
879 (define-public (chain-grob-member-functions grob value . funcs)
880   (for-each
881    (lambda (func)
882      (set! value (func grob value)))
883    funcs)
884
885   value)
886
887
888 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
889 ;; falls/doits
890
891 (define-public (bend::print spanner)
892   (define (close  a b)
893     (< (abs (- a b)) 0.01))
894
895   (let* ((delta-y (* 0.5 (ly:grob-property spanner 'delta-position)))
896          (left-span (ly:spanner-bound spanner LEFT))
897          (dots (if (and (grob::has-interface left-span 'note-head-interface)
898                         (ly:grob? (ly:grob-object left-span 'dot)))
899                    (ly:grob-object left-span 'dot) #f))
900
901          (right-span (ly:spanner-bound spanner RIGHT))
902          (thickness (* (ly:grob-property spanner 'thickness)
903                        (ly:output-def-lookup (ly:grob-layout spanner)
904                                              'line-thickness)))
905          (padding (ly:grob-property spanner 'padding 0.5))
906          (common (ly:grob-common-refpoint right-span
907                                           (ly:grob-common-refpoint spanner
908                                                                    left-span X)
909                                           X))
910          (common-y (ly:grob-common-refpoint spanner left-span Y))
911          (minimum-length (ly:grob-property spanner 'minimum-length 0.5))
912
913          (left-x (+ padding
914                     (max
915                      (interval-end (ly:generic-bound-extent
916                                     left-span common))
917                      (if
918                       (and dots
919                            (close
920                             (ly:grob-relative-coordinate dots common-y Y)
921                             (ly:grob-relative-coordinate spanner common-y Y)))
922                       (interval-end
923                        (ly:grob-robust-relative-extent dots common X))
924                       (- INFINITY-INT)))))
925          (right-x (max (- (interval-start
926                            (ly:generic-bound-extent right-span common))
927                           padding)
928                        (+ left-x minimum-length)))
929          (self-x (ly:grob-relative-coordinate spanner common X))
930          (dx (- right-x left-x))
931          (exp (list 'path thickness
932                     `(quote
933                       (rmoveto
934                        ,(- left-x self-x) 0
935
936                        rcurveto
937                        ,(/ dx 3)
938                        0
939                        ,dx ,(* 0.66 delta-y)
940                        ,dx ,delta-y)))))
941
942     (ly:make-stencil
943      exp
944      (cons (- left-x self-x) (- right-x self-x))
945      (cons (min 0 delta-y)
946            (max 0 delta-y)))))
947
948
949 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
950 ;; grace spacing
951
952 (define-public (grace-spacing::calc-shortest-duration grob)
953   (let* ((cols (ly:grob-object grob 'columns))
954          (get-difference
955           (lambda (idx)
956             (ly:moment-sub (ly:grob-property
957                             (ly:grob-array-ref cols (1+ idx)) 'when)
958                            (ly:grob-property
959                             (ly:grob-array-ref cols idx) 'when))))
960
961          (moment-min (lambda (x y)
962                        (cond
963                         ((and x y)
964                          (if (ly:moment<? x y)
965                              x
966                              y))
967                         (x x)
968                         (y y)))))
969
970     (fold moment-min #f (map get-difference
971                              (iota (1- (ly:grob-array-length cols)))))))
972
973
974 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
975 ;; fingering
976
977 (define-public (fingering::calc-text grob)
978   (let ((event (event-cause grob)))
979     (or (ly:event-property event 'text #f)
980         (number->string (ly:event-property event 'digit) 10))))
981
982 (define-public (string-number::calc-text grob)
983   (let ((event (event-cause grob)))
984     (or (ly:event-property event 'text #f)
985         (number->string (ly:event-property event 'string-number) 10))))
986
987 (define-public (stroke-finger::calc-text grob)
988   (let ((event (event-cause grob)))
989     (or (ly:event-property event 'text #f)
990         (vector-ref (ly:grob-property grob 'digit-names)
991                     (1- (max 1
992                              (min 5 (ly:event-property event 'digit))))))))
993
994
995 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
996 ;; dynamics
997
998 (define-public (hairpin::calc-grow-direction grob)
999   (if (ly:in-event-class? (event-cause grob) 'decrescendo-event)
1000       START
1001       STOP))
1002
1003 (define-public (dynamic-text-spanner::before-line-breaking grob)
1004   "Monitor left bound of @code{DynamicTextSpanner} for absolute dynamics.
1005 If found, ensure @code{DynamicText} does not collide with spanner text by
1006 changing @code{'attach-dir} and @code{'padding}.  Reads the
1007 @code{'right-padding} property of @code{DynamicText} to fine tune space
1008 between the two text elements."
1009   (let ((left-bound (ly:spanner-bound grob LEFT)))
1010     (if (grob::has-interface left-bound 'dynamic-text-interface)
1011         (let* ((details (ly:grob-property grob 'bound-details))
1012                (left-details (ly:assoc-get 'left details))
1013                (my-padding (ly:assoc-get 'padding left-details))
1014                (script-padding (ly:grob-property left-bound 'right-padding 0)))
1015
1016           (and (number? my-padding)
1017                (ly:grob-set-nested-property! grob
1018                                              '(bound-details left attach-dir)
1019                                              RIGHT)
1020                (ly:grob-set-nested-property! grob
1021                                              '(bound-details left padding)
1022                                              (+ my-padding script-padding)))))))
1023
1024 (define-public ((elbowed-hairpin coords mirrored?) grob)
1025   "Create hairpin based on a list of @var{coords} in @code{(cons x y)}
1026 form.  @code{x} is the portion of the width consumed for a given line
1027 and @code{y} is the portion of the height.  For example,
1028 @code{'((0.3 . 0.7) (0.8 . 0.9) (1.0 . 1.0))} means that at the point
1029 where the hairpin has consumed 30% of its width, it must
1030 be at 70% of its height.  Once it is to 80% width, it
1031 must be at 90% height.  It finishes at
1032 100% width and 100% height.  @var{mirrored?} indicates if the hairpin
1033 is mirrored over the Y-axis or if just the upper part is drawn.
1034 Returns a function that accepts a hairpin grob as an argument
1035 and draws the stencil based on its coordinates.
1036 @lilypond[verbatim,quote]
1037 #(define simple-hairpin
1038   (elbowed-hairpin '((1.0 . 1.0)) #t))
1039
1040 \\relative c' {
1041   \\override Hairpin #'stencil = #simple-hairpin
1042   a\\p\\< a a a\\f
1043 }
1044 @end lilypond
1045 "
1046   (define (pair-to-list pair)
1047     (list (car pair) (cdr pair)))
1048   (define (normalize-coords goods x y)
1049     (map
1050      (lambda (coord)
1051        (cons (* x (car coord)) (* y (cdr coord))))
1052      goods))
1053   (define (my-c-p-s points thick decresc?)
1054     (make-connected-path-stencil
1055      points
1056      thick
1057      (if decresc? -1.0 1.0)
1058      1.0
1059      #f
1060      #f))
1061   ;; outer let to trigger suicide
1062   (let ((sten (ly:hairpin::print grob)))
1063     (if (grob::is-live? grob)
1064         (let* ((decresc? (eq? (ly:grob-property grob 'grow-direction) LEFT))
1065                (thick (ly:grob-property grob 'thickness 0.1))
1066                (thick (* thick (layout-line-thickness grob)))
1067                (xex (ly:stencil-extent sten X))
1068                (lenx (interval-length xex))
1069                (yex (ly:stencil-extent sten Y))
1070                (leny (interval-length yex))
1071                (xtrans (+ (car xex) (if decresc? lenx 0)))
1072                (ytrans (car yex))
1073                (uplist (map pair-to-list
1074                             (normalize-coords coords lenx (/ leny 2))))
1075                (downlist (map pair-to-list
1076                               (normalize-coords coords lenx (/ leny -2)))))
1077           (ly:stencil-translate
1078            (ly:stencil-add
1079             (my-c-p-s uplist thick decresc?)
1080             (if mirrored? (my-c-p-s downlist thick decresc?) empty-stencil))
1081            (cons xtrans ytrans)))
1082         '())))
1083
1084 (define-public flared-hairpin
1085   (elbowed-hairpin '((0.95 . 0.4) (1.0 . 1.0)) #t))
1086
1087 (define-public constante-hairpin
1088   (elbowed-hairpin '((1.0 . 0.0) (1.0 . 1.0)) #f))
1089
1090 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1091 ;; lyrics
1092
1093 (define-public (lyric-text::print grob)
1094   "Allow interpretation of tildes as lyric tieing marks."
1095
1096   (let ((text (ly:grob-property grob 'text)))
1097
1098     (grob-interpret-markup grob (if (string? text)
1099                                     (make-tied-lyric-markup text)
1100                                     text))))
1101
1102 (define-public ((grob::calc-property-by-copy prop) grob)
1103   (ly:event-property (event-cause grob) prop))
1104
1105 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1106 ;; general inheritance
1107
1108 (define-public ((grob::inherit-parent-property axis property . default) grob)
1109   "@var{grob} callback generator for inheriting a @var{property} from
1110 an @var{axis} parent, defaulting to @var{default} if there is no
1111 parent or the parent has no setting."
1112   (let ((parent (ly:grob-parent grob axis)))
1113     (cond
1114      ((ly:grob? parent)
1115       (apply ly:grob-property parent property default))
1116      ((pair? default) (car default))
1117      (else '()))))
1118
1119 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1120 ;; fret boards
1121
1122 (define-public (fret-board::calc-stencil grob)
1123   (grob-interpret-markup
1124    grob
1125    (make-fret-diagram-verbose-markup
1126     (ly:grob-property grob 'dot-placement-list))))
1127
1128
1129 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1130 ;; slurs
1131
1132 (define-public slur::height
1133   (ly:make-unpure-pure-container
1134    ly:slur::height
1135    ly:slur::pure-height))
1136
1137 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1138 ;; scripts
1139
1140 (define-public (script-interface::calc-x-offset grob)
1141   (ly:grob-property grob 'positioning-done)
1142   (let* ((shift (ly:grob-property grob 'toward-stem-shift 0.0))
1143          (note-head-location
1144           (ly:self-alignment-interface::centered-on-x-parent grob))
1145          (note-head-grob (ly:grob-parent grob X))
1146          (stem-grob (ly:grob-object note-head-grob 'stem)))
1147
1148     (+ note-head-location
1149        ;; If the property 'toward-stem-shift is defined and the script
1150        ;; has the same direction as the stem, move the script accordingly.
1151        ;; Since scripts can also be over skips, we need to check whether
1152        ;; the grob has a stem at all.
1153        (if (ly:grob? stem-grob)
1154            (let ((dir1 (ly:grob-property grob 'direction))
1155                  (dir2 (ly:grob-property stem-grob 'direction)))
1156              (if (equal? dir1 dir2)
1157                  (let* ((common-refp (ly:grob-common-refpoint grob stem-grob X))
1158                         (stem-location
1159                          (ly:grob-relative-coordinate stem-grob common-refp X)))
1160                    (* shift (- stem-location note-head-location)))
1161                  0.0))
1162            0.0))))
1163
1164
1165 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1166 ;; instrument names
1167
1168 (define-public (system-start-text::print grob)
1169   (let* ((left-bound (ly:spanner-bound grob LEFT))
1170          (left-mom (ly:grob-property left-bound 'when))
1171          (name (if (moment<=? left-mom ZERO-MOMENT)
1172                    (ly:grob-property grob 'long-text)
1173                    (ly:grob-property grob 'text))))
1174
1175     (if (and (markup? name)
1176              (!= (ly:item-break-dir left-bound) CENTER))
1177
1178         (grob-interpret-markup grob name)
1179         (ly:grob-suicide! grob))))
1180
1181 (define-public (system-start-text::calc-x-offset grob)
1182   (let* ((left-bound (ly:spanner-bound grob LEFT))
1183          (left-mom (ly:grob-property left-bound 'when))
1184          (layout (ly:grob-layout grob))
1185          (indent (ly:output-def-lookup layout
1186                                        (if (moment<=? left-mom ZERO-MOMENT)
1187                                            'indent
1188                                            'short-indent)
1189                                        0.0))
1190          (system (ly:grob-system grob))
1191          (my-extent (ly:grob-extent grob system X))
1192          (elements (ly:grob-object system 'elements))
1193          (common (ly:grob-common-refpoint-of-array system elements X))
1194          (total-ext empty-interval)
1195          (align-x (ly:grob-property grob 'self-alignment-X 0))
1196          (padding (min 0 (- (interval-length my-extent) indent)))
1197          (right-padding (- padding
1198                            (/ (* padding (1+ align-x)) 2))))
1199
1200     ;; compensate for the variation in delimiter extents by
1201     ;; calculating an X-offset correction based on united extents
1202     ;; of all delimiters in this system
1203     (let unite-delims ((l (ly:grob-array-length elements)))
1204       (if (> l 0)
1205           (let ((elt (ly:grob-array-ref elements (1- l))))
1206
1207             (if (grob::has-interface elt 'system-start-delimiter-interface)
1208                 (let ((dims (ly:grob-extent elt common X)))
1209                   (if (interval-sane? dims)
1210                       (set! total-ext (interval-union total-ext dims)))))
1211             (unite-delims (1- l)))))
1212
1213     (+
1214      (ly:side-position-interface::x-aligned-side grob)
1215      right-padding
1216      (- (interval-length total-ext)))))
1217
1218 (define-public (system-start-text::calc-y-offset grob)
1219
1220   (define (live-elements-list me)
1221     (let ((elements (ly:grob-object me 'elements)))
1222
1223       (filter! grob::is-live?
1224                (ly:grob-array->list elements))))
1225
1226   (let* ((left-bound (ly:spanner-bound grob LEFT))
1227          (live-elts (live-elements-list grob))
1228          (system (ly:grob-system grob))
1229          (extent empty-interval))
1230
1231     (if (and (pair? live-elts)
1232              (interval-sane? (ly:grob-extent grob system Y)))
1233         (let get-extent ((lst live-elts))
1234           (if (pair? lst)
1235               (let ((axis-group (car lst)))
1236
1237                 (if (and (ly:spanner? axis-group)
1238                          (equal? (ly:spanner-bound axis-group LEFT)
1239                                  left-bound))
1240                     (set! extent (add-point extent
1241                                             (ly:grob-relative-coordinate
1242                                              axis-group system Y))))
1243                 (get-extent (cdr lst)))))
1244         ;; no live axis group(s) for this instrument name -> remove from system
1245         (ly:grob-suicide! grob))
1246
1247     (+
1248      (ly:self-alignment-interface::y-aligned-on-self grob)
1249      (interval-center extent))))
1250
1251
1252 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1253 ;; axis group interface
1254
1255 (define-public axis-group-interface::height
1256   (ly:make-unpure-pure-container
1257    ly:axis-group-interface::height
1258    ly:axis-group-interface::pure-height))
1259
1260 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1261 ;; ambitus
1262
1263 ;; Calculate the gaps between ambitus heads and ends of ambitus line.
1264 ;; Start by determining desired length of the ambitus line (based on
1265 ;; length-fraction property), calc gap from that and make sure that
1266 ;; it doesn't exceed maximum allowed value.
1267
1268 (define-public (ambitus-line::calc-gap grob)
1269   (let ((heads (ly:grob-object grob 'note-heads)))
1270
1271   (if (and (ly:grob-array? heads)
1272              (= (ly:grob-array-length heads) 2))
1273       (let* ((common (ly:grob-common-refpoint-of-array grob heads Y))
1274               (head-down (ly:grob-array-ref heads 0))
1275               (head-up (ly:grob-array-ref heads 1))
1276               (fraction (ly:grob-property grob 'length-fraction 0.7))
1277               (max-gap (ly:grob-property grob 'maximum-gap 0.45))
1278               ;; distance between noteheads:
1279               (distance (- (interval-start (ly:grob-extent head-up common Y))
1280                           (interval-end (ly:grob-extent head-down common Y))))
1281               (gap (* 0.5 distance (- 1 fraction))))
1282
1283          (min gap max-gap))
1284       0)))
1285
1286 ;; Print a line connecting ambitus heads:
1287
1288 (define-public (ambitus::print grob)
1289   (let ((heads (ly:grob-object grob 'note-heads)))
1290
1291     (if (and (ly:grob-array? heads)
1292              (= (ly:grob-array-length heads) 2))
1293         (let* ((common (ly:grob-common-refpoint-of-array grob heads Y))
1294                (head-down (ly:grob-array-ref heads 0))
1295                (head-up (ly:grob-array-ref heads 1))
1296                ;; The value used when 'gap' property cannot be read is small
1297                ;; to make sure that ambitus of a fifth will have a visible line.
1298                (gap (ly:grob-property grob 'gap 0.25))
1299                (point-min (+ (interval-end (ly:grob-extent head-down common Y))
1300                              gap))
1301                (point-max (- (interval-start (ly:grob-extent head-up common Y))
1302                              gap)))
1303
1304           (if (< (+ point-min 0.1) point-max) ; don't print lines shorter than 0.1ss
1305               (let* ((layout (ly:grob-layout grob))
1306                      (line-thick (ly:output-def-lookup layout 'line-thickness))
1307                      (blot (ly:output-def-lookup layout 'blot-diameter))
1308                      (grob-thick (ly:grob-property grob 'thickness 2))
1309                      (width (* line-thick grob-thick))
1310                      (x-ext (symmetric-interval (/ width 2)))
1311                      (y-ext (cons point-min point-max))
1312                      (line (ly:round-filled-box x-ext y-ext blot))
1313                      (y-coord (ly:grob-relative-coordinate grob common Y)))
1314
1315                 (ly:stencil-translate-axis line (- y-coord) Y))
1316               empty-stencil))
1317         (begin
1318           (ly:grob-suicide! grob)
1319           (list)))))
1320
1321 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1322 ;;  laissez-vibrer tie
1323 ;;
1324 ;;  needed so we can make laissez-vibrer a pure print
1325 ;;
1326 (define-public (laissez-vibrer::print grob)
1327   (ly:tie::print grob))
1328
1329 (define-public (semi-tie::calc-cross-staff grob)
1330   (let* ((note-head (ly:grob-object grob 'note-head))
1331          (stem (ly:grob-object note-head 'stem)))
1332     (and (ly:grob? stem)
1333          (ly:grob-property stem 'cross-staff #f))))
1334
1335 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1336 ;; volta-bracket
1337
1338 (define-public (volta-bracket-interface::pure-height grob start end)
1339   (let ((edge-height (ly:grob-property grob 'edge-height)))
1340     (if (number-pair? edge-height)
1341         (let ((smaller (min (car edge-height) (cdr edge-height)))
1342               (larger (max (car edge-height) (cdr edge-height))))
1343           (interval-union '(0 . 0) (cons smaller larger)))
1344         '(0 . 0))))