]> git.donarmstrong.com Git - lilypond.git/blob - ly/music-functions-init.ly
Add \override and \revert music functions usable from Scheme
[lilypond.git] / ly / music-functions-init.ly
1 %%%% -*- Mode: Scheme -*-
2
3 %%%% This file is part of LilyPond, the GNU music typesetter.
4 %%%%
5 %%%% Copyright (C) 2003--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 %%%%                          Jan Nieuwenhuizen <janneke@gnu.org>
7 %%%%
8 %%%% LilyPond is free software: you can redistribute it and/or modify
9 %%%% it under the terms of the GNU General Public License as published by
10 %%%% the Free Software Foundation, either version 3 of the License, or
11 %%%% (at your option) any later version.
12 %%%%
13 %%%% LilyPond is distributed in the hope that it will be useful,
14 %%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
15 %%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 %%%% GNU General Public License for more details.
17 %%%%
18 %%%% You should have received a copy of the GNU General Public License
19 %%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
20
21 \version "2.19.22"
22
23
24 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
25 %% this file is alphabetically sorted.
26 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
27
28 %% need SRFI-1 for filter; optargs for lambda*
29 #(use-modules (srfi srfi-1)
30               (ice-9 optargs))
31
32 %% TODO: using define-music-function in a .scm causes crash.
33
34 absolute =
35 #(define-music-function (music)
36    (ly:music?)
37    (_i "Make @var{music} absolute.  This does not actually change the
38 music itself but rather hides it from surrounding @code{\\relative}
39 and @code{\\fixed} commands.")
40    (make-music 'RelativeOctaveMusic 'element music))
41
42 acciaccatura =
43 #(def-grace-function startAcciaccaturaMusic stopAcciaccaturaMusic
44    (_i "Create an acciaccatura from the following music expression"))
45
46 %% keep these two together
47 instrument-definitions = #'()
48 addInstrumentDefinition =
49 #(define-void-function
50    (name lst) (string? list?)
51    (_i "Create instrument @var{name} with properties @var{list}.")
52    (set! instrument-definitions (acons name lst instrument-definitions)))
53
54 addQuote =
55 #(define-void-function (name music) (string? ly:music?)
56    (_i "Define @var{music} as a quotable music expression named
57 @var{name}")
58    (add-quotable name music))
59
60 %% keep these two together
61 afterGraceFraction = #(cons 6 8)
62 afterGrace =
63 #(define-music-function (main grace) (ly:music? ly:music?)
64    (_i "Create @var{grace} note(s) after a @var{main} music expression.")
65    (let ((main-length (ly:music-length main))
66          (fraction  (ly:parser-lookup 'afterGraceFraction)))
67      (make-simultaneous-music
68       (list
69        main
70        (make-sequential-music
71         (list
72
73          (make-music 'SkipMusic
74                      'duration (ly:make-duration
75                                 0 0
76                                 (* (ly:moment-main-numerator main-length)
77                                    (car fraction))
78                                 (* (ly:moment-main-denominator main-length)
79                                    (cdr fraction))))
80          (make-music 'GraceMusic
81                      'element grace)))))))
82
83
84 %% music identifiers not allowed at top-level,
85 %% so this is a music-function instead.
86 allowPageTurn =
87 #(define-music-function () ()
88    (_i "Allow a page turn. May be used at toplevel (ie between scores or
89 markups), or inside a score.")
90    (make-music 'EventChord
91                'page-marker #t
92                'page-turn-permission 'allow
93                'elements (list (make-music 'PageTurnEvent
94                                            'break-permission 'allow))))
95
96 alterBroken =
97 #(define-music-function (property arg item)
98   (symbol-list-or-symbol? list? symbol-list-or-music?)
99   (_i "Override @var{property} for pieces of broken spanner @var{item}
100 with values @var{arg}.  @var{item} may either be music in the form of
101 a starting spanner event, or a symbol list in the form
102 @samp{Context.Grob} or just @samp{Grob}.  Iff @var{item} is in the
103 form of a spanner event, @var{property} may also have the form
104 @samp{Grob.property} for specifying a directed tweak.")
105   (if (ly:music? item)
106       (if (eq? (ly:music-property item 'span-direction) START)
107           (tweak property (value-for-spanner-piece arg) item)
108           (begin
109             (ly:music-warning item (_ "not a spanner"))
110             item))
111       (let* ((p (check-grob-path item (*location*)
112                                  #:default 'Bottom
113                                  #:min 2
114                                  #:max 2))
115              (name (and p (second p)))
116              (description
117               (and name (assoc-get name all-grob-descriptions))))
118         (if (and description
119                  (member 'spanner-interface
120                          (assoc-get 'interfaces
121                                     (assoc-get 'meta description))))
122             #{
123               \override #item . #property =
124               #(value-for-spanner-piece arg)
125             #}
126             (begin
127               (ly:input-warning (*location*) (_ "not a spanner name, `~a'") name)
128               (make-music 'Music))))))
129
130 appendToTag =
131 #(define-music-function (tag more music)
132    (symbol? ly:music? ly:music?)
133    (_i "Append @var{more} to the @code{elements} of all music
134 expressions in @var{music} that are tagged with @var{tag}.")
135    (music-map (lambda (m)
136                 (if (memq tag (ly:music-property m 'tags))
137                     (set! (ly:music-property m 'elements)
138                           (append (ly:music-property m 'elements)
139                                   (list more))))
140                 m)
141               music))
142
143 applyContext =
144 #(define-music-function (proc) (procedure?)
145    (_i "Modify context properties with Scheme procedure @var{proc}.")
146    (make-music 'ApplyContext
147                'procedure proc))
148
149 applyMusic =
150 #(define-music-function (func music) (procedure? ly:music?)
151    (_i"Apply procedure @var{func} to @var{music}.")
152    (func music))
153
154 applyOutput =
155 #(define-music-function (ctx proc) (symbol? procedure?)
156    (_i "Apply function @code{proc} to every layout object in context @code{ctx}")
157    (make-music 'ApplyOutputEvent
158                'procedure proc
159                'context-type ctx))
160
161 appoggiatura =
162 #(def-grace-function startAppoggiaturaMusic stopAppoggiaturaMusic
163    (_i "Create an appoggiatura from @var{music}"))
164
165 % for regression testing purposes.
166 assertBeamQuant =
167 #(define-music-function (l r) (pair? pair?)
168    (_i "Testing function: check whether the beam quants @var{l} and @var{r} are correct")
169    (make-grob-property-override 'Beam 'positions (check-quant-callbacks l r)))
170
171 % for regression testing purposes.
172 assertBeamSlope =
173 #(define-music-function (comp) (procedure?)
174    (_i "Testing function: check whether the slope of the beam is the same as @code{comp}")
175    (make-grob-property-override 'Beam 'positions (check-slope-callbacks comp)))
176
177 autochange =
178 #(define-music-function (music) (ly:music?)
179    (_i "Make voices that switch between staves automatically")
180    (make-autochange-music music))
181
182
183
184 balloonGrobText =
185 #(define-music-function (grob-name offset text)
186    (symbol? number-pair? markup?)
187    (_i "Attach @var{text} to @var{grob-name} at offset @var{offset}
188  (use like @code{\\once})")
189    (make-event-chord
190     (list
191      (make-music 'AnnotateOutputEvent
192                  'symbol grob-name
193                  'X-offset (car offset)
194                  'Y-offset (cdr offset)
195                  'text text))))
196
197 balloonText =
198 #(define-event-function (offset text) (number-pair? markup?)
199    (_i "Attach @var{text} at @var{offset} (use like @code{\\tweak})")
200    (make-music 'AnnotateOutputEvent
201                'X-offset (car offset)
202                'Y-offset (cdr offset)
203                'text text))
204
205 bar =
206 #(define-music-function (type) (string?)
207    (_i "Insert a bar line of type @var{type}")
208    (context-spec-music
209     (make-property-set 'whichBar type)
210     'Timing))
211
212 barNumberCheck =
213 #(define-music-function (n) (integer?)
214    (_i "Print a warning if the current bar number is not @var{n}.")
215    (make-music 'ApplyContext
216                'procedure
217                (lambda (c)
218                  (let ((cbn (ly:context-property c 'currentBarNumber)))
219                    (if (and  (number? cbn) (not (= cbn n)))
220                        (ly:input-warning (*location*)
221                                          "Barcheck failed got ~a expect ~a"
222                                          cbn n))))))
223
224 beamExceptions =
225 #(define-scheme-function (music) (ly:music?)
226    (_i "Extract a value suitable for setting
227 @code{Timing.beamExceptions} from the given pattern with explicit
228 beams in @var{music}.  A bar check @code{|} has to be used between
229 bars of patterns in order to reset the timing.")
230    (extract-beam-exceptions music))
231
232 bendAfter =
233 #(define-event-function (delta) (real?)
234    (_i "Create a fall or doit of pitch interval @var{delta}.")
235    (make-music 'BendAfterEvent
236                'delta-step delta))
237
238 bookOutputName =
239 #(define-void-function (newfilename) (string?)
240    (_i "Direct output for the current book block to @var{newfilename}.")
241    (set! (paper-variable #f 'output-filename) newfilename))
242
243 bookOutputSuffix =
244 #(define-void-function (newsuffix) (string?)
245    (_i "Set the output filename suffix for the current book block to
246 @var{newsuffix}.")
247    (set! (paper-variable #f 'output-suffix) newsuffix))
248
249 %% \breathe is defined as a music function rather than an event identifier to
250 %% ensure it gets useful input location information: as an event identifier,
251 %% it would have to be wrapped in an EventChord to prevent it from being
252 %% treated as a post_event by the parser
253 breathe =
254 #(define-music-function () ()
255    (_i "Insert a breath mark.")
256    (make-music 'BreathingEvent))
257
258 clef =
259 #(define-music-function (type) (string?)
260    (_i "Set the current clef to @var{type}.")
261    (make-clef-set type))
262
263
264 compoundMeter =
265 #(define-music-function (args) (pair?)
266   (_i "Create compound time signatures. The argument is a Scheme list of
267 lists. Each list describes one fraction, with the last entry being the
268 denominator, while the first entries describe the summands in the
269 enumerator. If the time signature consists of just one fraction,
270 the list can be given directly, i.e. not as a list containing a single list.
271 For example, a time signature of (3+1)/8 + 2/4 would be created as
272 @code{\\compoundMeter #'((3 1 8) (2 4))}, and a time signature of (3+2)/8
273 as @code{\\compoundMeter #'((3 2 8))} or shorter
274 @code{\\compoundMeter #'(3 2 8)}.")
275   (let* ((mlen (calculate-compound-measure-length args))
276          (beat (calculate-compound-base-beat args))
277          (beatGrouping (calculate-compound-beat-grouping args))
278          (timesig (cons (ly:moment-main-numerator mlen)
279                         (ly:moment-main-denominator mlen))))
280   #{
281     \once \override Timing.TimeSignature.stencil = #(lambda (grob)
282       (grob-interpret-markup grob (make-compound-meter-markup args)))
283     \set Timing.timeSignatureFraction = #timesig
284     \set Timing.baseMoment = #beat
285     \set Timing.beatStructure = #beatGrouping
286     \set Timing.beamExceptions = #'()
287     \set Timing.measureLength = #mlen
288   #} ))
289
290 compressMMRests =
291 #(define-music-function (music) (ly:music?)
292   (_i "Remove the empty bars created by multi-measure rests,
293 leaving just the first bar containing the MM rest itself.")
294    (music-map
295     (lambda (m)
296       (if (eq? 'MultiMeasureRestMusic (ly:music-property m 'name))
297           #{ \once \set Score.skipBars = ##t #m #}
298           #{ #m #} ))
299     music))
300
301 crossStaff =
302 #(define-music-function (notes) (ly:music?)
303   (_i "Create cross-staff stems")
304   #{
305   \temporary \override Stem.cross-staff = #cross-staff-connect
306   \temporary \override Flag.style = #'no-flag
307   #notes
308   \revert Stem.cross-staff
309   \revert Flag.style
310 #})
311
312 cueClef =
313 #(define-music-function (type) (string?)
314   (_i "Set the current cue clef to @var{type}.")
315   (make-cue-clef-set type))
316
317 cueClefUnset =
318 #(define-music-function () ()
319   (_i "Unset the current cue clef.")
320   (make-cue-clef-unset))
321
322 cueDuring =
323 #(define-music-function
324    (what dir main-music) (string? ly:dir? ly:music?)
325    (_i "Insert contents of quote @var{what} corresponding to @var{main-music},
326 in a CueVoice oriented by @var{dir}.")
327    (make-music 'QuoteMusic
328                'element main-music
329                'quoted-context-type 'CueVoice
330                'quoted-context-id "cue"
331                'quoted-music-name what
332                'quoted-voice-direction dir))
333
334 cueDuringWithClef =
335 #(define-music-function
336    (what dir clef main-music) (string? ly:dir? string? ly:music?)
337    (_i "Insert contents of quote @var{what} corresponding to @var{main-music},
338 in a CueVoice oriented by @var{dir}.")
339    (make-music 'QuoteMusic
340                'element main-music
341                'quoted-context-type 'CueVoice
342                'quoted-context-id "cue"
343                'quoted-music-name what
344                'quoted-music-clef clef
345                'quoted-voice-direction dir))
346
347
348
349 displayLilyMusic =
350 #(define-music-function (port music) ((output-port?) ly:music?)
351    (_i "Display the LilyPond input representation of @var{music}
352 to @var{port}, defaulting to the console.")
353    (let ((port (or port (current-output-port))))
354      (newline port)
355      (display-lily-music music port))
356    music)
357
358 displayMusic =
359 #(define-music-function (port music) ((output-port?) ly:music?)
360    (_i "Display the internal representation of @var{music} to
361 @var{port}, default to the console.")
362    (let ((port (or port (current-output-port))))
363      (newline port)
364      (display-scheme-music music port))
365    music)
366
367 displayScheme =
368 #(define-scheme-function (port expr) ((output-port?) scheme?)
369    (_i "Display the internal representation of @var{expr} to
370 @var{port}, default to the console.")
371    (let ((port (or port (current-output-port))))
372      (newline port)
373      (display-scheme-music expr port))
374    expr)
375
376
377
378 endSpanners =
379 #(define-music-function (music) (ly:music?)
380    (_i "Terminate the next spanner prematurely after exactly one note
381 without the need of a specific end spanner.")
382    (let* ((start-span-evs (filter (lambda (ev)
383                                     (equal? (ly:music-property ev 'span-direction)
384                                             START))
385                                   (extract-typed-music music 'span-event)))
386           (stop-span-evs
387            (map (lambda (m)
388                   (music-clone m 'span-direction STOP))
389                 start-span-evs))
390           (end-ev-chord (make-music 'EventChord
391                                     'elements stop-span-evs))
392           (total (make-music 'SequentialMusic
393                              'elements (list music
394                                              end-ev-chord))))
395      total))
396
397 eventChords =
398 #(define-music-function (music) (ly:music?)
399    (_i "Compatibility function wrapping @code{EventChord} around
400 isolated rhythmic events occuring since version 2.15.28, after
401 expanding repeat chords @samp{q}.")
402    (event-chord-wrap! music))
403
404 featherDurations=
405 #(define-music-function (factor argument) (ly:moment? ly:music?)
406    (_i "Adjust durations of music in @var{argument} by rational @var{factor}.")
407    (let ((orig-duration (ly:music-length argument))
408          (multiplier (ly:make-moment 1 1)))
409
410      (for-each
411       (lambda (mus)
412         (if (< 0 (ly:moment-main-denominator (ly:music-length mus)))
413             (begin
414               (ly:music-compress mus multiplier)
415               (set! multiplier (ly:moment-mul factor multiplier)))))
416       (extract-named-music argument '(EventChord NoteEvent RestEvent SkipEvent)))
417      (ly:music-compress
418       argument
419       (ly:moment-div orig-duration (ly:music-length argument)))
420
421      argument))
422
423 finger =
424 #(define-event-function (finger) (number-or-markup?)
425    (_i "Apply @var{finger} as a fingering indication.")
426
427    (make-music
428             'FingeringEvent
429             (if (number? finger) 'digit 'text)
430             finger))
431
432 fixed =
433 #(define-music-function (pitch music)
434    (ly:pitch? ly:music?)
435    (_i "Use the octave of @var{pitch} as the default octave for @var{music}.")
436    (let ((octave-marks (1+ (ly:pitch-octave pitch))))
437      (cond ((not (= 0 octave-marks))
438             (ly:music-transpose music (ly:make-pitch octave-marks 0 0))
439             ;;In order to leave unchanged the notes in any enclosed
440             ;; \absolute or \fixed or \relative, make a cancelling shift
441             (map (lambda (m)
442                    (ly:music-transpose m (ly:make-pitch (- octave-marks) 0 0)))
443                  (extract-named-music music 'RelativeOctaveMusic)))))
444    (make-music 'RelativeOctaveMusic 'element music))
445
446 footnote =
447 #(define-music-function (mark offset footnote item)
448    ((markup?) number-pair? markup? symbol-list-or-music?)
449    (_i "Make the markup @var{footnote} a footnote on @var{item}.  The
450 footnote is marked with a markup @var{mark} moved by @var{offset} with
451 respect to the marked music.
452
453 If @var{mark} is not given or specified as @var{\\default}, it is
454 replaced by an automatically generated sequence number.  If @var{item}
455 is a symbol list of form @samp{Grob} or @samp{Context.Grob}, then
456 grobs of that type will be marked at the current time step in the
457 given context (default @code{Bottom}).
458
459 If @var{item} is music, the music will get a footnote attached to a
460 grob immediately attached to the event, like @var{\\tweak} does.  For
461 attaching a footnote to an @emph{indirectly} caused grob, write
462 @code{\\single\\footnote}, use @var{item} to specify the grob, and
463 follow it with the music to annotate.
464
465 Like with @code{\\tweak}, if you use a footnote on a following
466 post-event, the @code{\\footnote} command itself needs to be attached
467 to the preceding note or rest as a post-event with @code{-}.")
468    (let ((mus (make-music
469                'FootnoteEvent
470                'X-offset (car offset)
471                'Y-offset (cdr offset)
472                'automatically-numbered (not mark)
473                'text (or mark (make-null-markup))
474                'footnote-text footnote)))
475      (once (tweak 'footnote-music mus item))))
476
477 grace =
478 #(def-grace-function startGraceMusic stopGraceMusic
479    (_i "Insert @var{music} as grace notes."))
480
481 grobdescriptions =
482 #(define-scheme-function (descriptions) (list?)
483    (_i "Create a context modification from @var{descriptions}, a list
484 in the format of @code{all-grob-descriptions}.")
485    (ly:make-context-mod
486     (map (lambda (p)
487            (list 'assign (car p) (ly:make-grob-properties (cdr p))))
488          descriptions)))
489
490 harmonicByFret = #(define-music-function (fret music) (number? ly:music?)
491   (_i "Convert @var{music} into mixed harmonics; the resulting notes resemble
492 harmonics played on a fretted instrument by touching the strings at @var{fret}.")
493   #{
494     \set harmonicDots = ##t
495     \temporary \override TabNoteHead.stencil = #(tab-note-head::print-custom-fret-label (number->string fret))
496     \temporary \override NoteHead.Y-extent = #grob::always-Y-extent-from-stencil
497     \temporary \override NoteHead.stencil = #(lambda (grob) (ly:grob-set-property! grob 'style 'harmonic-mixed)
498                                             (ly:note-head::print grob))
499     #(make-harmonic
500        (calc-harmonic-pitch (fret->pitch (number->string fret)) music))
501     \unset harmonicDots
502     \revert TabNoteHead.stencil
503     \revert NoteHead.Y-extent
504     \revert NoteHead.stencil
505   #})
506
507 harmonicByRatio = #(define-music-function (ratio music) (number? ly:music?)
508     (_i "Convert @var{music} into mixed harmonics; the resulting notes resemble
509 harmonics played on a fretted instrument by touching the strings at the point
510 given through @var{ratio}.")
511   #{
512     \set harmonicDots = ##t
513     \temporary \override TabNoteHead.stencil = #(tab-note-head::print-custom-fret-label (ratio->fret ratio))
514     \temporary \override NoteHead.Y-extent = #(ly:make-unpure-pure-container ly:grob::stencil-height)
515     \temporary \override NoteHead.stencil = #(lambda (grob) (ly:grob-set-property! grob 'style 'harmonic-mixed)
516                                             (ly:note-head::print grob))
517     #(make-harmonic
518       (calc-harmonic-pitch (ratio->pitch ratio) music))
519     \unset harmonicDots
520     \revert TabNoteHead.stencil
521     \revert NoteHead.Y-extent
522     \revert NoteHead.stencil
523   #})
524
525 hide =
526 #(define-music-function (item) (symbol-list-or-music?)
527    (_i "Set @var{item}'s @samp{transparent} property to @code{#t},
528 making it invisible while still retaining its dimensions.
529
530 If @var{item} is a symbol list of form @code{GrobName} or
531 @code{Context.GrobName}, the result is an override for the grob name
532 specified by it.  If @var{item} is a music expression, the result is
533 the same music expression with an appropriate tweak applied to it.")
534    (tweak 'transparent #t item))
535
536 inStaffSegno =
537 #(define-music-function () ()
538    (_i "Put the segno variant 'varsegno' at this position into the staff,
539 compatible with the repeat command.")
540    (make-music 'ApplyContext
541                'procedure
542                (lambda (ctx)
543                  (let ((score-ctx (ly:context-find ctx 'Score)))
544                    (if (ly:context? score-ctx)
545                      (let ((old-rc (ly:context-property score-ctx 'repeatCommands '())))
546                        (if (eq? (memq 'segno-display old-rc) #f)
547                          (ly:context-set-property! score-ctx 'repeatCommands (cons 'segno-display old-rc)))))))))
548
549 instrumentSwitch =
550 #(define-music-function
551    (name) (string?)
552    (_i "Switch instrument to @var{name}, which must be predefined with
553 @code{\\addInstrumentDefinition}.")
554    (let* ((handle (assoc name instrument-definitions))
555           (instrument-def (if handle (cdr handle) '())))
556
557      (if (not handle)
558          (ly:input-warning (*location*) "No such instrument: ~a" name))
559      (context-spec-music
560       (make-music 'SimultaneousMusic
561                   'elements
562                   (map (lambda (kv)
563                          (make-property-set
564                           (car kv)
565                           (cdr kv)))
566                        instrument-def))
567       'Staff)))
568
569
570
571 keepWithTag =
572 #(define-music-function (tags music)
573    (symbol-list-or-symbol? ly:music?)
574    (_i "Include only elements of @var{music} that are tagged with one
575 of the tags in @var{tags}.  @var{tags} may be either a single symbol
576 or a list of symbols.
577
578 Each tag may be declared as a member of at most one tag group (defined
579 with @code{\\tagGroup}).  If none of a @var{music} element's tags
580 share a tag group with one of the specified @var{tags}, the element is
581 retained.")
582    (music-filter
583     (tags-keep-predicate tags)
584     music))
585
586 key =
587 #(define-music-function (tonic pitch-alist)
588    ((ly:pitch? '()) (list? '()))
589    (_i "Set key to @var{tonic} and scale @var{pitch-alist}.
590 If both are null, just generate @code{KeyChangeEvent}.")
591    (cond ((null? tonic) (make-music 'KeyChangeEvent))
592          ((null? pitch-alist)
593           (ly:parser-error (_ "second argument must be pitch list")
594                            (*location*))
595           (make-music 'SequentialMusic 'void #t))
596          (else
597           (ly:music-transpose
598            (make-music 'KeyChangeEvent
599                 'tonic (ly:make-pitch 0 0 0)
600                 'pitch-alist pitch-alist)
601            tonic))))
602
603 killCues =
604 #(define-music-function (music) (ly:music?)
605    (_i "Remove cue notes from @var{music}.")
606    (music-map
607     (lambda (mus)
608       (if (and (string? (ly:music-property mus 'quoted-music-name))
609                (string=? (ly:music-property mus 'quoted-context-id "") "cue"))
610           (ly:music-property mus 'element)
611           mus))
612     music))
613
614
615
616 label =
617 #(define-music-function (label) (symbol?)
618    (_i "Create @var{label} as a bookmarking label.")
619    (make-music 'EventChord
620                'page-marker #t
621                'page-label label
622                'elements (list (make-music 'LabelEvent
623                                            'page-label label))))
624
625
626 language =
627 #(define-void-function (language) (string?)
628    (_i "Set note names for language @var{language}.")
629    (note-names-language language))
630
631 languageSaveAndChange =
632 #(define-void-function (language) (string?)
633   (_i "Store the previous pitchnames alist, and set a new one.")
634   (set! previous-pitchnames pitchnames)
635   (note-names-language language))
636
637 languageRestore =
638 #(define-void-function () ()
639    (_i "Restore a previously-saved pitchnames alist.")
640    (if previous-pitchnames
641        (begin
642         (set! pitchnames previous-pitchnames)
643         (ly:parser-set-note-names pitchnames))
644       (ly:input-warning (*location*) (_ "No other language was defined previously. Ignoring."))))
645
646
647 magnifyMusic =
648 #(define-music-function (mag music) (positive? ly:music?)
649    (_i "Magnify the notation of @var{music} without changing the
650 staff-size, using @var{mag} as a size factor.  Stems, beams,
651 slurs, ties, and horizontal spacing are adjusted automatically.")
652
653    ;; these props are NOT allowed to shrink below default size
654    (define unshrinkable-props
655      '(
656        ;; stems
657        (Stem thickness)
658
659        ;; slurs
660        (Slur line-thickness)
661        (Slur thickness)
662        (PhrasingSlur line-thickness)
663        (PhrasingSlur thickness)
664
665        ;; ties
666        (Tie line-thickness)
667        (Tie thickness)
668        (LaissezVibrerTie line-thickness)
669        (LaissezVibrerTie thickness)
670        (RepeatTie line-thickness)
671        (RepeatTie thickness)
672        ))
673
674    ;; these props ARE allowed to shrink below default size
675    (define shrinkable-props
676      (let ((baseline-skip-props
677              (find-named-props 'baseline-skip all-grob-descriptions))
678            (word-space-props
679              (find-named-props 'word-space all-grob-descriptions)))
680        (append
681          baseline-skip-props
682          word-space-props
683          '(
684            ;; TODO: uncomment spacing-increment here once Issue 3987 is fixed
685            ;; override at the 'Score level
686            ;(SpacingSpanner spacing-increment)
687
688            ;; lengths and heights
689            (Beam length-fraction)
690            (Stem length-fraction)
691            (Stem beamlet-default-length)
692            (Stem double-stem-separation)
693            (Slur height-limit)
694            (Slur minimum-length)
695            (PhrasingSlur height-limit)
696            (PhrasingSlur minimum-length)
697
698            ;; Beam.beam-thickness is dealt with separately below
699            ))))
700    #{
701      \context Bottom {
702        %% TODO: uncomment \newSpacingSection once Issue 3990 is fixed
703        %\newSpacingSection
704        #(scale-fontSize 'magnifyMusic mag)
705        #(scale-props    'magnifyMusic mag #f unshrinkable-props)
706        #(scale-props    'magnifyMusic mag #t shrinkable-props)
707        #(scale-beam-thickness mag)
708
709        #music
710
711        %% TODO: uncomment \newSpacingSection once Issue 3990 is fixed
712        %\newSpacingSection
713        %% reverse engineer the former fontSize value instead of using \unset
714        #(revert-fontSize 'magnifyMusic mag)
715        #(revert-props    'magnifyMusic mag (append unshrinkable-props
716                                                    shrinkable-props
717                                                    '((Beam beam-thickness))))
718      }
719    #})
720
721 magnifyStaff =
722 #(define-music-function (mag) (positive?)
723    (_i "Change the size of the staff, adjusting notation size and
724 horizontal spacing automatically, using @var{mag} as a size factor.")
725
726    ;; these props are NOT allowed to shrink below default size
727    (define unshrinkable-props
728      '((StaffSymbol thickness)))
729
730    ;; these props ARE allowed to shrink below default size
731    (define shrinkable-props
732      (let* ((baseline-skip-props
733               (find-named-props 'baseline-skip all-grob-descriptions))
734             (word-space-props
735               (find-named-props 'word-space all-grob-descriptions))
736             (space-alist-props
737               (find-named-props 'space-alist all-grob-descriptions)))
738        (append
739          baseline-skip-props
740          word-space-props
741          space-alist-props
742          '(
743            ;; override at the 'Score level
744            (SpacingSpanner spacing-increment)
745
746            (StaffSymbol staff-space)
747            (BarLine kern)
748            (BarLine segno-kern)
749            (BarLine hair-thickness)
750            (BarLine thick-thickness)
751            (Stem beamlet-default-length)
752            (Stem double-stem-separation)
753            ))))
754
755    #{
756      \stopStaff
757
758      %% revert settings from last time
759      %% (but only if \magnifyStaff has already been used
760      %% and the staff magnification is changing)
761      #(revert-fontSize 'magnifyStaff mag)
762      #(revert-props    'magnifyStaff mag (append unshrinkable-props
763                                                  shrinkable-props))
764
765      %% scale settings
766      %% (but only if staff magnification is changing
767      %% and does not equal 1)
768      #(scale-fontSize 'magnifyStaff mag)
769      #(scale-props    'magnifyStaff mag #f unshrinkable-props)
770      #(scale-props    'magnifyStaff mag #t shrinkable-props)
771
772      %% this might cause problems until Issue 3990 is fixed
773      \newSpacingSection
774
775      \startStaff
776      \set Staff.magnifyStaffValue = #mag
777    #})
778
779 makeClusters =
780 #(define-music-function (arg) (ly:music?)
781    (_i "Display chords in @var{arg} as clusters.")
782    (music-map note-to-cluster arg))
783
784 modalInversion =
785 #(define-music-function (around to scale music)
786     (ly:pitch? ly:pitch? ly:music? ly:music?)
787     (_i "Invert @var{music} about @var{around} using @var{scale} and
788 transpose from @var{around} to @var{to}.")
789     (let ((inverter (make-modal-inverter around to scale)))
790       (change-pitches music inverter)
791       music))
792
793 modalTranspose =
794 #(define-music-function (from to scale music)
795     (ly:pitch? ly:pitch? ly:music? ly:music?)
796     (_i "Transpose @var{music} from pitch @var{from} to pitch @var{to}
797 using @var{scale}.")
798     (let ((transposer (make-modal-transposer from to scale)))
799       (change-pitches music transposer)
800       music))
801
802 inversion =
803 #(define-music-function
804    (around to music) (ly:pitch? ly:pitch? ly:music?)
805    (_i "Invert @var{music} about @var{around} and
806 transpose from @var{around} to @var{to}.")
807    (music-invert around to music))
808
809 mark =
810 #(define-music-function
811    (label) ((scheme? '()))
812   "Make the music for the \\mark command."
813   (let* ((set (and (integer? label)
814                    (context-spec-music (make-property-set 'rehearsalMark label)
815                                       'Score)))
816          (ev (make-music 'MarkEvent
817                          'origin (*location*))))
818
819     (if set
820         (make-sequential-music (list set ev))
821         (begin
822           (set! (ly:music-property ev 'label) label)
823           ev))))
824
825 musicMap =
826 #(define-music-function (proc mus) (procedure? ly:music?)
827    (_i "Apply @var{proc} to @var{mus} and all of the music it contains.")
828    (music-map proc mus))
829
830 %% noPageBreak and noPageTurn are music functions (not music indentifiers),
831 %% because music identifiers are not allowed at top-level.
832 noPageBreak =
833 #(define-music-function () ()
834    (_i "Forbid a page break.  May be used at toplevel (i.e., between scores or
835 markups), or inside a score.")
836    (make-music 'EventChord
837                'page-marker #t
838                'page-break-permission 'forbid
839                'elements (list (make-music 'PageBreakEvent
840                                            'break-permission '()))))
841
842 noPageTurn =
843 #(define-music-function () ()
844    (_i "Forbid a page turn.  May be used at toplevel (i.e., between scores or
845 markups), or inside a score.")
846    (make-music 'EventChord
847                'page-marker #t
848                'page-turn-permission 'forbid
849                'elements (list (make-music 'PageTurnEvent
850                                            'break-permission '()))))
851
852
853
854 octaveCheck =
855 #(define-music-function (pitch) (ly:pitch?)
856    (_i "Octave check.")
857    (make-music 'RelativeOctaveCheck
858                'pitch pitch))
859
860 offset =
861 #(define-music-function (property offsets item)
862   (symbol-list-or-symbol? scheme? symbol-list-or-music?)
863    (_i "Offset the default value of @var{property} of @var{item} by
864 @var{offsets}.  If @var{item} is a string, the result is
865 @code{\\override} for the specified grob type.  If @var{item} is
866 a music expression, the result is the same music expression with an
867 appropriate tweak applied.")
868   (if (ly:music? item)
869       ; In case of a tweak, grob property path is Grob.property
870       (let ((prop-path (check-grob-path
871                          (if (symbol? property)
872                              (list property)
873                              property) (*location*)
874                          #:start 1 #:default #t #:min 2 #:max 2)))
875         (if prop-path
876             ; If the head of the grob property path is a symbol--i.e.,
877             ; a grob name, produce a directed tweak.  Otherwise, create
878             ; an ordinary tweak.
879             (if (symbol? (car prop-path))
880                 (tweak prop-path (offsetter (second prop-path) offsets) item)
881                 (tweak (second prop-path)
882                        (offsetter (second prop-path) offsets)
883                        item))
884             item))
885       ; In case of an override, grob property path is Context.Grob.property.
886       (let ((prop-path (check-grob-path
887                          (append item
888                                  (if (symbol? property)
889                                      (list property)
890                                      property)) (*location*)
891                          #:default 'Bottom #:min 3 #:max 3)))
892         (if prop-path
893             #{
894               \override #prop-path = #(offsetter (third prop-path) offsets)
895             #}
896             (make-music 'Music)))))
897
898 omit =
899 #(define-music-function (item) (symbol-list-or-music?)
900    (_i "Set @var{item}'s @samp{stencil} property to @code{#f},
901 effectively omitting it without taking up space.
902
903 If @var{item} is a symbol list of form @code{GrobName} or
904 @code{Context.GrobName}, the result is an override for the grob name
905 specified by it.  If @var{item} is a music expression, the result is
906 the same music expression with an appropriate tweak applied to it.")
907    (tweak 'stencil #f item))
908
909 once =
910 #(define-music-function (music) (ly:music?)
911    (_i "Set @code{once} to @code{#t} on all layout instruction events
912 in @var{music}.  This will complain about music with an actual
913 duration.  As a special exception, if @var{music} contains
914 @samp{tweaks} it will be silently ignored in order to allow for
915 @code{\\once \\tweak} to work as both one-time override and proper
916 tweak.")
917    (if (not (pair? (ly:music-property music 'tweaks)))
918        (for-some-music
919         (lambda (m)
920           (cond ((music-is-of-type? m 'layout-instruction-event)
921                  (set! (ly:music-property m 'once) #t)
922                  #t)
923                 ((ly:duration? (ly:music-property m 'duration))
924                  (ly:music-warning m (_ "Cannot apply \\once to timed music"))
925                  #t)
926                 (else #f)))
927         music))
928    music)
929
930 ottava =
931 #(define-music-function (octave) (integer?)
932    (_i "Set the octavation.")
933    (make-music 'OttavaMusic
934                'ottava-number octave))
935
936 #(ly:expect-warning
937   (ly:translate-cpp-warning-scheme "identifier name is a keyword: `%s'")
938   "override")
939 override =
940 #(define-music-function (grob-property-path value)
941    (symbol-list? scheme?)
942    (_i "Set the grob property specified by @var{grob-property-path} to
943 @var{value}.  @var{grob-property-path} is a symbol list of the form
944 @code{Context.GrobName.property} or @code{GrobName.property}, possibly
945 with subproperties given as well.  Because @code{\\override} is a
946 reserved word with special syntax in LilyPond input, this music
947 function will generally only be accessible from Scheme.")
948    (let ((p (check-grob-path grob-property-path (*parser*) (*location*)
949                              #:default 'Bottom
950                              #:min 3)))
951      (if p
952          (context-spec-music
953           (make-music 'OverrideProperty
954                       'symbol (cadr p)
955                       'origin (*location*)
956                       'grob-value value
957                       'grob-property-path (cddr p)
958                       'pop-first #t)
959           (car p))
960          (make-music 'Music))))
961
962
963 overrideTimeSignatureSettings =
964 #(define-music-function
965    (time-signature base-moment beat-structure beam-exceptions)
966    (fraction? fraction? list? list?)
967
968    (_i "Override @code{timeSignatureSettings}
969 for time signatures of @var{time-signature} to have settings
970 of @var{base-moment}, @var{beat-structure}, and @var{beam-exceptions}.")
971
972    ;; TODO -- add warning if largest value of grouping is
973    ;;       greater than time-signature.
974   (let ((setting (make-setting base-moment beat-structure beam-exceptions)))
975     (override-time-signature-setting time-signature setting)))
976
977 overrideProperty =
978 #(define-music-function (grob-property-path value)
979    (symbol-list? scheme?)
980
981    (_i "Set the grob property specified by @var{grob-property-path} to
982 @var{value}.  @var{grob-property-path} is a symbol list of the form
983 @code{Context.GrobName.property} or @code{GrobName.property}, possibly
984 with subproperties given as well.
985
986 As opposed to @code{\\override} which overrides the context-dependent
987 defaults with which a grob is created, this command uses
988 @code{Output_property_engraver} at the grob acknowledge stage.  This
989 may be necessary for overriding values set after the initial grob
990 creation.")
991    (let ((p (check-grob-path grob-property-path (*location*)
992                              #:default 'Bottom
993                              #:min 3)))
994      (if p
995          (make-music 'ApplyOutputEvent
996                      'context-type (first p)
997                      'procedure
998                      (lambda (grob orig-context context)
999                        (if (equal?
1000                             (cdr (assoc 'name (ly:grob-property grob 'meta)))
1001                             (second p))
1002                            (ly:grob-set-nested-property!
1003                             grob (cddr p) value))))
1004          (make-music 'Music))))
1005
1006
1007
1008
1009
1010
1011 %% pageBreak and pageTurn are music functions (iso music indentifiers),
1012 %% because music identifiers are not allowed at top-level.
1013 pageBreak =
1014 #(define-music-function () ()
1015    (_i "Force a page break.  May be used at toplevel (i.e., between scores or
1016 markups), or inside a score.")
1017    (make-music 'EventChord
1018                'page-marker #t
1019                'line-break-permission 'force
1020                'page-break-permission 'force
1021                'elements (list (make-music 'LineBreakEvent
1022                                            'break-permission 'force)
1023                                (make-music 'PageBreakEvent
1024                                            'break-permission 'force))))
1025
1026 pageTurn =
1027 #(define-music-function () ()
1028    (_i "Force a page turn between two scores or top-level markups.")
1029    (make-music 'EventChord
1030                'page-marker #t
1031                'line-break-permission 'force
1032                'page-break-permission 'force
1033                'page-turn-permission 'force
1034                'elements (list (make-music 'LineBreakEvent
1035                                            'break-permission 'force)
1036                                (make-music 'PageBreakEvent
1037                                            'break-permission 'force)
1038                                (make-music 'PageTurnEvent
1039                                            'break-permission 'force))))
1040
1041 parallelMusic =
1042 #(define-void-function (voice-ids music) (list? ly:music?)
1043    (_i "Define parallel music sequences, separated by '|' (bar check signs),
1044 and assign them to the identifiers provided in @var{voice-ids}.
1045
1046 @var{voice-ids}: a list of music identifiers (symbols containing only letters)
1047
1048 @var{music}: a music sequence, containing BarChecks as limiting expressions.
1049
1050 Example:
1051
1052 @verbatim
1053   \\parallelMusic #'(A B C) {
1054     c c | d d | e e |
1055     d d | e e | f f |
1056   }
1057 <==>
1058   A = { c c | d d | }
1059   B = { d d | e e | }
1060   C = { e e | f f | }
1061 @end verbatim
1062
1063 The last bar checks in a sequence are not copied to the result in
1064 order to facilitate ending the last entry at non-bar boundaries.
1065 ")
1066    (define voice-count (length voice-ids))
1067    (define (bar-check? m)
1068      "Checks whether m is a bar check."
1069      (eq? (ly:music-property m 'name) 'BarCheck))
1070    (define (recurse-and-split-list lst)
1071      "Return either a list of music lists split along barchecks, or @code{#f}."
1072      (if (any bar-check? lst)
1073          (let* ((voices (apply circular-list (make-list voice-count '())))
1074                 (current-voices voices)
1075                 (current-sequence '()))
1076            ;;
1077            ;; utilities
1078            (define (push-music m)
1079              "Push the music expression into the current sequence"
1080              (set! current-sequence (cons m current-sequence)))
1081            (define (change-voice)
1082              "Store the previously built sequence into the current voice and
1083 change to the following voice."
1084              (set-car! current-voices
1085                        (cons current-sequence
1086                              (car current-voices)))
1087              (set! current-sequence '())
1088              (set! current-voices (cdr current-voices)))
1089            (for-each (lambda (m)
1090                        (let ((split? (recurse-and-split m)))
1091                          (if split?
1092                              (for-each
1093                               (lambda (m)
1094                                 (push-music m)
1095                                 (change-voice))
1096                               split?)
1097                              (begin
1098                                (push-music m)
1099                                (if (bar-check? m) (change-voice))))))
1100                      lst)
1101            (if (pair? current-sequence) (change-voice))
1102            ;; Un-circularize voices
1103            (set! voices (list-head voices voice-count))
1104
1105            ;; Remove trailing bar checks to facilitate ending a
1106            ;; sequence on a non-bar, reverse partial sequences and sequences
1107            (set! voices (map!
1108                          (lambda (l)
1109                            (map! reverse!
1110                                  (reverse!
1111                                   (if (and (pair? l) (pair? (car l))
1112                                            (bar-check? (caar l)))
1113                                       (cons (cdar l) (cdr l))
1114                                       l))))
1115                          voices))
1116
1117            ;; check sequence length
1118            (apply for-each (lambda seqs
1119                              (define (seq-len seq)
1120                                (reduce ly:moment-add
1121                                        (ly:make-moment 0)
1122                                        (map ly:music-length seq)))
1123                              (let ((moment-reference (seq-len (car seqs))))
1124                                (for-each (lambda (seq)
1125                                            (if (not (equal? (seq-len seq)
1126                                                             moment-reference))
1127                                                (ly:music-warning
1128                                                 (if (pair? seq)
1129                                                     (last seq)
1130                                                     (caar seqs))
1131                                                 (_ "Bars in parallel music don't have the same length"))))
1132                                          seqs)))
1133                   voices)
1134            (map concatenate! voices))
1135          (let ((deeper (map recurse-and-split lst)))
1136            (and (any pair? deeper)
1137                 (apply zip (map
1138                             (lambda (m split)
1139                               (or split
1140                                   (ly:music-deep-copy (make-list voice-count m))))
1141                             lst deeper))))))
1142    (define (recurse-and-split music)
1143      "This returns either a list of music split along barchecks, or
1144 @code{#f}."
1145      (let* ((elt (ly:music-property music 'element))
1146             (elts (ly:music-property music 'elements))
1147             (split-elt (and (ly:music? elt) (recurse-and-split elt)))
1148             (split-elts (and (pair? elts) (recurse-and-split-list elts))))
1149        (and (or split-elt split-elts)
1150             (map
1151              (lambda (e es)
1152                (apply music-clone music
1153                       (append
1154                        ;; reassigning the origin of the parent only
1155                        ;; makes sense if the first expression in the
1156                        ;; result is from a distributed origin
1157                        (let ((origin
1158                               (if (ly:music? elt)
1159                                   (and (ly:music? e) (ly:music-property e 'origin #f))
1160                                   (and (pair? es) (ly:music-property (car es) 'origin #f)))))
1161                          (if origin (list 'origin origin) '()))
1162                        (if (ly:music? e) (list 'element e) '())
1163                        (if (pair? es) (list 'elements es) '()))))
1164              (or split-elt (circular-list #f))
1165              (or split-elts (circular-list #f))))))
1166    (let ((voices (recurse-and-split music)))
1167      (if voices
1168          ;;
1169          ;; bind voice identifiers to the voices
1170          (for-each (lambda (voice-id voice)
1171                      (ly:parser-define! voice-id voice))
1172                    voice-ids voices)
1173          (ly:music-warning music
1174                            (_ "ignoring parallel music without barchecks")))))
1175
1176 parenthesize =
1177 #(define-music-function (arg) (ly:music?)
1178    (_i "Tag @var{arg} to be parenthesized.")
1179
1180    (if (memq 'event-chord (ly:music-property arg 'types))
1181        ;; arg is an EventChord -> set the parenthesize property
1182        ;; on all child notes and rests
1183        (for-each
1184         (lambda (ev)
1185           (if (or (memq 'note-event (ly:music-property ev 'types))
1186                   (memq 'rest-event (ly:music-property ev 'types)))
1187               (set! (ly:music-property ev 'parenthesize) #t)))
1188         (ly:music-property arg 'elements))
1189        ;; No chord, simply set property for this expression:
1190        (set! (ly:music-property arg 'parenthesize) #t))
1191    arg)
1192
1193 #(define (make-directed-part-combine-music direction chord-range part1 part2
1194           one-context-settings
1195           two-context-settings
1196           shared-context-settings)
1197
1198    (let* ((pc-music (make-part-combine-music (list part1 part2) direction chord-range))
1199           (L1 (ly:music-length part1))
1200           (L2 (ly:music-length part2))
1201           ;; keep the contexts alive for the full duration
1202           (skip (make-skip-music (make-duration-of-length
1203                                   (if (ly:moment<? L1 L2) L2 L1)))))
1204      #{ \context Staff <<
1205           \context Voice = "one" \with #one-context-settings { #skip }
1206           \context Voice = "two" \with #two-context-settings { #skip }
1207           \context Voice = "shared" \with #shared-context-settings { #skip }
1208           \context Voice = "solo" { #skip }
1209           \context NullVoice = "null" { #skip }
1210           #pc-music
1211           #(make-part-combine-marks
1212             default-part-combine-mark-state-machine
1213             (ly:music-property pc-music 'split-list))
1214         >> #} ))
1215
1216 partcombine =
1217 #(define-music-function (chord-range part1 part2)
1218    ((number-pair? '(0 . 8)) ly:music? ly:music?)
1219    (_i "Take the music in @var{part1} and @var{part2} and return
1220 a music expression containing simultaneous voices, where @var{part1}
1221 and @var{part2} are combined into one voice where appropriate.
1222 Optional @var{chord-range} sets the distance in steps between notes
1223 that may be combined into a chord or unison.")
1224    (make-directed-part-combine-music #f chord-range part1 part2
1225     #{ \with { \voiceOne \override DynamicLineSpanner.direction = #UP } #}
1226     #{ \with { \voiceTwo \override DynamicLineSpanner.direction = #DOWN } #}
1227     #{ #} ))
1228
1229 partcombineUp =
1230 #(define-music-function (chord-range part1 part2)
1231    ((number-pair? '(0 . 8)) ly:music? ly:music?)
1232    (_i "Take the music in @var{part1} and @var{part2} and typeset so
1233 that they share a staff with stems directed upward.")
1234    (make-directed-part-combine-music UP chord-range part1 part2
1235     #{ \with { \voiceOne \override DynamicLineSpanner.direction = #UP } #}
1236     #{ \with { \voiceThree \override DynamicLineSpanner.direction = #UP } #}
1237     #{ \with { \voiceOne \override DynamicLineSpanner.direction = #UP } #} ))
1238
1239 partcombineDown =
1240 #(define-music-function (chord-range part1 part2)
1241    ((number-pair? '(0 . 8)) ly:music? ly:music?)
1242    (_i "Take the music in @var{part1} and @var{part2} and typeset so
1243 that they share a staff with stems directed downward.")
1244    (make-directed-part-combine-music DOWN chord-range part1 part2
1245     #{ \with { \voiceFour \override DynamicLineSpanner.direction = #DOWN } #}
1246     #{ \with { \voiceTwo \override DynamicLineSpanner.direction = #DOWN } #}
1247     #{ \with { \voiceTwo \override DynamicLineSpanner.direction = #DOWN } #} ))
1248
1249 partcombineForce =
1250 #(define-music-function (type once) (boolean-or-symbol? boolean?)
1251    (_i "Override the part-combiner.")
1252    (make-music 'EventChord
1253                'elements (list (make-music 'PartCombineForceEvent
1254                                            'forced-type type
1255                                            'once once))))
1256 partcombineApart = \partcombineForce #'apart ##f
1257 partcombineApartOnce = \partcombineForce #'apart ##t
1258 partcombineChords = \partcombineForce #'chords ##f
1259 partcombineChordsOnce = \partcombineForce #'chords ##t
1260 partcombineUnisono = \partcombineForce #'unisono ##f
1261 partcombineUnisonoOnce = \partcombineForce #'unisono ##t
1262 partcombineSoloI = \partcombineForce #'solo1 ##f
1263 partcombineSoloIOnce = \partcombineForce #'solo1 ##t
1264 partcombineSoloII = \partcombineForce #'solo2 ##f
1265 partcombineSoloIIOnce = \partcombineForce #'solo2 ##t
1266 partcombineAutomatic = \partcombineForce ##f ##f
1267 partcombineAutomaticOnce = \partcombineForce ##f ##t
1268
1269 partial =
1270 #(define-music-function (dur) (ly:duration?)
1271   (_i "Make a partial measure.")
1272
1273   ;; We use `descend-to-context' here instead of `context-spec-music' to
1274   ;; ensure \partial still works if the Timing_translator is moved
1275     (descend-to-context
1276      (context-spec-music (make-music 'PartialSet
1277                                      'origin (*location*)
1278                                      'duration dur)
1279                          'Timing)
1280      'Score))
1281
1282 pitchedTrill =
1283 #(define-music-function
1284    (main-note secondary-note)
1285    (ly:music? ly:music?)
1286    (_i "Print a trill with @var{main-note} as the main note of the trill and
1287 print @var{secondary-note} as a stemless note head in parentheses.")
1288    (let* ((get-notes (lambda (ev-chord)
1289                        (extract-named-music ev-chord 'NoteEvent)))
1290           (sec-note-events (get-notes secondary-note))
1291           (trill-events (extract-named-music main-note 'TrillSpanEvent)))
1292      (if (pair? sec-note-events)
1293          (begin
1294            (let* ((trill-pitch (ly:music-property (car sec-note-events) 'pitch))
1295                   (forced (ly:music-property (car sec-note-events) 'force-accidental)))
1296
1297              (if (ly:pitch? trill-pitch)
1298                  (for-each (lambda (m)
1299                              (ly:music-set-property! m 'pitch trill-pitch)) trill-events)
1300                  (begin
1301                    (ly:input-warning (*location*) (_ "Second argument of \\pitchedTrill should be single note: "))
1302                    (display sec-note-events)))
1303
1304              (if (eq? forced #t)
1305                  (for-each (lambda (m)
1306                              (ly:music-set-property! m 'force-accidental forced))
1307                            trill-events)))))
1308      main-note))
1309
1310 pushToTag =
1311 #(define-music-function (tag more music)
1312    (symbol? ly:music? ly:music?)
1313    (_i "Add @var{more} to the front of @code{elements} of all music
1314 expressions in @var{music} that are tagged with @var{tag}.")
1315    (music-map (lambda (m)
1316                 (if (memq tag (ly:music-property m 'tags))
1317                     (set! (ly:music-property m 'elements)
1318                           (cons more (ly:music-property m 'elements))))
1319                 m)
1320               music))
1321
1322 quoteDuring =
1323 #(define-music-function (what main-music) (string? ly:music?)
1324    (_i "Indicate a section of music to be quoted.  @var{what} indicates the name
1325 of the quoted voice, as specified in an @code{\\addQuote} command.
1326 @var{main-music} is used to indicate the length of music to be quoted;
1327 usually contains spacers or multi-measure rests.")
1328    (make-music 'QuoteMusic
1329                'element main-music
1330                'quoted-music-name what))
1331
1332 #(ly:expect-warning
1333   (ly:translate-cpp-warning-scheme "identifier name is a keyword: `%s'")
1334   "revert")
1335 revert =
1336 #(define-music-function (grob-property-path)
1337    (symbol-list?)
1338    (_i "Revert the grob property specified by @var{grob-property-path} to
1339 its previous value.  @var{grob-property-path} is a symbol list of the form
1340 @code{Context.GrobName.property} or @code{GrobName.property}, possibly
1341 with subproperties given as well.  Because @code{\\revert} is a
1342 reserved word with special syntax in LilyPond input, this music
1343 function will generally only be accessible from Scheme.")
1344    (let ((p (check-grob-path grob-property-path (*parser*) (*location*)
1345                              #:default 'Bottom
1346                              #:min 3)))
1347      (if p
1348          (context-spec-music
1349           (make-music 'RevertProperty
1350                       'symbol (cadr p)
1351                       'origin (*location*)
1352                       'grob-property-path (cddr p))
1353           (car p))
1354          (make-music 'Music))))
1355
1356
1357 relative =
1358 #(define-music-function (pitch music)
1359    ((ly:pitch?) ly:music?)
1360    (_i "Make @var{music} relative to @var{pitch}.  If @var{pitch} is
1361 omitted, the first note in @var{music} is given in absolute pitch.")
1362    ;; When \relative has no clear decision (can only happen with
1363    ;; scales with an even number of steps), it goes down (see
1364    ;; pitch.cc).  The following formula puts out f for both the normal
1365    ;; 7-step scale as well as for a "shortened" scale missing the
1366    ;; final b.  In either case, a first note of c will end up as c,
1367    ;; namely pitch (-1, 0, 0).
1368    (ly:make-music-relative! music
1369                             (or pitch
1370                                 (ly:make-pitch
1371                                  -1
1372                                  (quotient
1373                                   ;; size of current scale:
1374                                   (ly:pitch-steps (ly:make-pitch 1 0))
1375                                   2))))
1376    (make-music 'RelativeOctaveMusic
1377                'element music))
1378
1379 removeWithTag =
1380 #(define-music-function (tags music)
1381    (symbol-list-or-symbol? ly:music?)
1382    (_i "Remove elements of @var{music} that are tagged with one of the
1383 tags in @var{tags}.  @var{tags} may be either a single symbol or a list
1384 of symbols.")
1385    (music-filter
1386     (tags-remove-predicate tags)
1387     music))
1388
1389 resetRelativeOctave =
1390 #(define-music-function (pitch) (ly:pitch?)
1391    (_i "Set the octave inside a \\relative section.")
1392
1393    (make-music 'SequentialMusic
1394                'to-relative-callback
1395                (lambda (music last-pitch) pitch)))
1396
1397 retrograde =
1398 #(define-music-function (music)
1399     (ly:music?)
1400     (_i "Return @var{music} in reverse order.")
1401     (retrograde-music music))
1402
1403 revertTimeSignatureSettings =
1404 #(define-music-function
1405    (time-signature)
1406    (pair?)
1407
1408    (_i "Revert @code{timeSignatureSettings}
1409 for time signatures of @var{time-signature}.")
1410    (revert-time-signature-setting time-signature))
1411
1412 rightHandFinger =
1413 #(define-event-function (finger) (number-or-markup?)
1414    (_i "Apply @var{finger} as a fingering indication.")
1415
1416    (make-music
1417             'StrokeFingerEvent
1418             (if (number? finger) 'digit 'text)
1419             finger))
1420
1421 scaleDurations =
1422 #(define-music-function (fraction music)
1423    (fraction? ly:music?)
1424    (_i "Multiply the duration of events in @var{music} by @var{fraction}.")
1425    (ly:music-compress music
1426                       (ly:make-moment (car fraction) (cdr fraction))))
1427
1428 settingsFrom =
1429 #(define-scheme-function (ctx music)
1430    ((symbol?) ly:music?)
1431    (_i "Take the layout instruction events from @var{music}, optionally
1432 restricted to those applying to context type @var{ctx}, and return
1433 a context modification duplicating their effect.")
1434    (let ((mods (ly:make-context-mod)))
1435      (define (musicop m)
1436        (if (music-is-of-type? m 'layout-instruction-event)
1437            (ly:add-context-mod
1438             mods
1439             (case (ly:music-property m 'name)
1440               ((PropertySet)
1441                (list 'assign
1442                      (ly:music-property m 'symbol)
1443                      (ly:music-property m 'value)))
1444               ((PropertyUnset)
1445                (list 'unset
1446                      (ly:music-property m 'symbol)))
1447               ((OverrideProperty)
1448                (cons* 'push
1449                       (ly:music-property m 'symbol)
1450                       (ly:music-property m 'grob-value)
1451                       (cond
1452                        ((ly:music-property m 'grob-property #f) => list)
1453                        (else
1454                         (ly:music-property m 'grob-property-path)))))
1455               ((RevertProperty)
1456                (cons* 'pop
1457                       (ly:music-property m 'symbol)
1458                       (cond
1459                        ((ly:music-property m 'grob-property #f) => list)
1460                        (else
1461                         (ly:music-property m 'grob-property-path)))))))
1462            (case (ly:music-property m 'name)
1463              ((ApplyContext)
1464               (ly:add-context-mod mods
1465                                   (list 'apply
1466                                         (ly:music-property m 'procedure))))
1467              ((ContextSpeccedMusic)
1468               (if (or (not ctx)
1469                       (eq? ctx (ly:music-property m 'context-type)))
1470                   (musicop (ly:music-property m 'element))))
1471              (else
1472               (let ((callback (ly:music-property m 'elements-callback)))
1473                 (if (procedure? callback)
1474                     (for-each musicop (callback m))))))))
1475      (musicop music)
1476      mods))
1477
1478 shape =
1479 #(define-music-function (offsets item)
1480    (list? symbol-list-or-music?)
1481    (_i "Offset control-points of @var{item} by @var{offsets}.  The
1482 argument is a list of number pairs or list of such lists.  Each
1483 element of a pair represents an offset to one of the coordinates of a
1484 control-point.  If @var{item} is a string, the result is
1485 @code{\\once\\override} for the specified grob type.  If @var{item} is
1486 a music expression, the result is the same music expression with an
1487 appropriate tweak applied.")
1488    (define (shape-curve grob)
1489      (let* ((orig (ly:grob-original grob))
1490             (siblings (if (ly:spanner? grob)
1491                           (ly:spanner-broken-into orig) '()))
1492             (total-found (length siblings))
1493             (function (assoc-get 'control-points
1494                                  (reverse (ly:grob-basic-properties grob))))
1495             (coords (function grob)))
1496
1497        (define (offset-control-points offsets)
1498          (if (null? offsets)
1499              coords
1500              (map
1501                (lambda (x y) (coord-translate x y))
1502                coords offsets)))
1503
1504        (define (helper sibs offs)
1505          (if (pair? offs)
1506              (if (eq? (car sibs) grob)
1507                  (offset-control-points (car offs))
1508                  (helper (cdr sibs) (cdr offs)))
1509              coords))
1510
1511        ;; we work with lists of lists
1512        (if (or (null? offsets)
1513                (not (list? (car offsets))))
1514            (set! offsets (list offsets)))
1515
1516        (if (>= total-found 2)
1517            (helper siblings offsets)
1518            (offset-control-points (car offsets)))))
1519    (once (tweak 'control-points shape-curve item)))
1520
1521 shiftDurations =
1522 #(define-music-function (dur dots arg)
1523    (integer? integer? ly:music?)
1524    (_i "Change the duration of @var{arg} by adding @var{dur} to the
1525 @code{durlog} of @var{arg} and @var{dots} to the @code{dots} of @var{arg}.")
1526
1527    (shift-duration-log arg dur dots))
1528
1529 single =
1530 #(define-music-function (overrides music)
1531    (ly:music? ly:music?)
1532    (_i "Convert @var{overrides} to tweaks and apply them to @var{music}.
1533 This does not convert @code{\\revert}, @code{\\set} or @code{\\unset}.")
1534    (set! (ly:music-property music 'tweaks)
1535          (fold-some-music
1536           (lambda (m) (eq? (ly:music-property m 'name)
1537                            'OverrideProperty))
1538           (lambda (m tweaks)
1539             (let ((p (cond
1540                       ((ly:music-property m 'grob-property #f) => list)
1541                       (else
1542                        (ly:music-property m 'grob-property-path)))))
1543               (acons (cons (ly:music-property m 'symbol) ;grob name
1544                            (if (pair? (cdr p))
1545                                p ;grob property path
1546                                (car p))) ;grob property
1547                      (ly:music-property m 'grob-value)
1548                      tweaks)))
1549           (ly:music-property music 'tweaks)
1550           overrides))
1551    music)
1552
1553 skip =
1554 #(define-music-function (dur) (ly:duration?)
1555   (_i "Skip forward by @var{dur}.")
1556   (make-music 'SkipMusic
1557               'duration dur))
1558
1559
1560 slashedGrace =
1561 #(def-grace-function startSlashedGraceMusic stopSlashedGraceMusic
1562    (_i "Create slashed graces (slashes through stems, but no slur) from
1563 the following music expression"))
1564
1565 spacingTweaks =
1566 #(define-music-function (parameters) (list?)
1567    (_i "Set the system stretch, by reading the 'system-stretch property of
1568 the `parameters' assoc list.")
1569    (overrideProperty
1570     '(Score NonMusicalPaperColumn line-break-system-details)
1571     (list (cons 'alignment-extra-space (cdr (assoc 'system-stretch parameters)))
1572           (cons 'system-Y-extent (cdr (assoc 'system-Y-extent parameters))))))
1573
1574 styledNoteHeads =
1575 #(define-music-function (style heads music)
1576    (symbol? symbol-list-or-symbol? ly:music?)
1577    (_i "Set @var{heads} in @var{music} to @var{style}.")
1578    (style-note-heads heads style music))
1579
1580 tag =
1581 #(define-music-function (tags music) (symbol-list-or-symbol? ly:music?)
1582    (_i "Tag the following @var{music} with @var{tags} and return the
1583 result, by adding the single symbol or symbol list @var{tags} to the
1584 @code{tags} property of @var{music}.")
1585
1586    (set!
1587     (ly:music-property music 'tags)
1588     ((if (symbol? tags) cons append)
1589      tags
1590      (ly:music-property music 'tags)))
1591    music)
1592
1593 tagGroup =
1594 #(define-void-function (tags) (symbol-list?)
1595    (_i "Define a tag group comprising the symbols in the symbol list
1596 @var{tags}.  Tag groups must not overlap.")
1597    (let ((err (define-tag-group tags)))
1598      (if err (ly:parser-error err (*location*)))))
1599
1600 temporary =
1601 #(define-music-function (music)
1602    (ly:music?)
1603    (_i "Make any @code{\\override} in @var{music} replace an existing
1604 grob property value only temporarily, restoring the old value when a
1605 corresponding @code{\\revert} is executed.  This is achieved by
1606 clearing the @samp{pop-first} property normally set on
1607 @code{\\override}s.
1608
1609 An @code{\\override}/@/@code{\\revert} sequence created by using
1610 @code{\\temporary} and @code{\\undo} on the same music containing
1611 overrides will cancel out perfectly or cause a@tie{}warning.
1612
1613 Non-property-related music is ignored, warnings are generated for any
1614 property-changing music that isn't an @code{\\override}.")
1615    (define warned #f)
1616    (for-some-music
1617     (lambda (m)
1618       (and (or (music-is-of-type? m 'layout-instruction-event)
1619                (music-is-of-type? m 'context-specification)
1620                (music-is-of-type? m 'apply-context)
1621                (music-is-of-type? m 'time-signature-music))
1622            (case (ly:music-property m 'name)
1623              ((OverrideProperty)
1624               (if (ly:music-property m 'pop-first #f)
1625                   (set! (ly:music-property m 'pop-first) '()))
1626               (if (ly:music-property m 'once #f)
1627                   (set! (ly:music-property m 'once) '()))
1628               #t)
1629              ((ContextSpeccedMusic)
1630               #f)
1631              (else
1632               (if (not warned)
1633                   (begin
1634                     (ly:input-warning (*location*) (_ "Cannot make ~a revertible")
1635                                       (ly:music-property m 'name))
1636                     (set! warned #t)))
1637               #t))))
1638     music)
1639    music)
1640
1641 time =
1642 #(define-music-function (beat-structure fraction)
1643    ((number-list? '()) fraction?)
1644    (_i "Set @var{fraction} as time signature, with optional
1645 number list @var{beat-structure} before it.")
1646   (make-music 'TimeSignatureMusic
1647               'numerator (car fraction)
1648               'denominator (cdr fraction)
1649               'beat-structure beat-structure))
1650
1651 times =
1652 #(define-music-function (fraction music)
1653    (fraction? ly:music?)
1654    (_i "Scale @var{music} in time by @var{fraction}.")
1655   (make-music 'TimeScaledMusic
1656               'element (ly:music-compress music (ly:make-moment (car fraction) (cdr fraction)))
1657               'numerator (car fraction)
1658               'denominator (cdr fraction)))
1659
1660 transpose =
1661 #(define-music-function
1662    (from to music)
1663    (ly:pitch? ly:pitch? ly:music?)
1664
1665    (_i "Transpose @var{music} from pitch @var{from} to pitch @var{to}.")
1666    (make-music 'TransposedMusic
1667                'element (ly:music-transpose music (ly:pitch-diff to from))))
1668
1669 transposedCueDuring =
1670 #(define-music-function
1671    (what dir pitch main-music)
1672    (string? ly:dir? ly:pitch? ly:music?)
1673
1674    (_i "Insert notes from the part @var{what} into a voice called @code{cue},
1675 using the transposition defined by @var{pitch}.  This happens
1676 simultaneously with @var{main-music}, which is usually a rest.  The
1677 argument @var{dir} determines whether the cue notes should be notated
1678 as a first or second voice.")
1679
1680    (make-music 'QuoteMusic
1681                'element main-music
1682                'quoted-context-type 'CueVoice
1683                'quoted-context-id "cue"
1684                'quoted-music-name what
1685                'quoted-voice-direction dir
1686                ;; following is inverse of instrumentTransposition for
1687                ;; historical reasons
1688                'quoted-transposition pitch))
1689
1690 transposition =
1691 #(define-music-function (pitch) (ly:pitch?)
1692    (_i "Set instrument transposition")
1693
1694    (context-spec-music
1695     (make-property-set 'instrumentTransposition pitch)
1696     'Staff))
1697
1698 tuplet =
1699 #(define-music-function (ratio tuplet-span music)
1700    (fraction? (ly:duration? '()) ly:music?)
1701    (_i "Scale the given @var{music} to tuplets.  @var{ratio} is a
1702 fraction that specifies how many notes are played in place of the
1703 nominal value: it will be @samp{3/2} for triplets, namely three notes
1704 being played in place of two.  If the optional duration
1705 @var{tuplet-span} is specified, it is used instead of
1706 @code{tupletSpannerDuration} for grouping the tuplets.
1707 For example,
1708 @example
1709 \\tuplet 3/2 4 @{ c8 c c c c c @}
1710 @end example
1711 will result in two groups of three tuplets, each group lasting for a
1712 quarter note.")
1713    (make-music 'TimeScaledMusic
1714                'element (ly:music-compress
1715                          music
1716                          (ly:make-moment (cdr ratio) (car ratio)))
1717                'numerator (cdr ratio)
1718                'denominator (car ratio)
1719                'duration tuplet-span))
1720
1721 tupletSpan =
1722 #(define-music-function (tuplet-span)
1723    ((ly:duration?))
1724    (_i "Set @code{tupletSpannerDuration}, the length into which
1725 @code{\\tuplet} without an explicit @samp{tuplet-span} argument of its
1726 own will group its tuplets, to the duration @var{tuplet-span}.  To
1727 revert to the default of not subdividing the contents of a @code{\\tuplet}
1728 command without explicit @samp{tuplet-span}, use
1729 @example
1730 \\tupletSpan \\default
1731 @end example
1732 ")
1733    (if tuplet-span
1734        #{ \set tupletSpannerDuration = #(ly:duration-length tuplet-span) #}
1735        #{ \unset tupletSpannerDuration #}))
1736
1737 tweak =
1738 #(define-music-function (prop value item)
1739    (symbol-list-or-symbol? scheme? symbol-list-or-music?)
1740    (_i "Add a tweak to the following @var{item}, usually music.
1741 Layout objects created by @var{item} get their property @var{prop}
1742 set to @var{value}.  If @var{prop} has the form @samp{Grob.property}, like with
1743 @example
1744 \\tweak Accidental.color #red cis'
1745 @end example
1746 an indirectly created grob (@samp{Accidental} is caused by
1747 @samp{NoteHead}) can be tweaked; otherwise only directly created grobs
1748 are affected.
1749
1750 As a special case, @var{item} may be a symbol list specifying a grob
1751 path, in which case @code{\\override} is called on it instead of
1752 creating tweaked music.  This is mainly useful when using
1753 @code{\\tweak} as as a component for building other functions.
1754
1755 If this use case would call for @code{\\once \\override} rather than a
1756 plain @code{\\override}, writing @code{\\once \\tweak @dots{}} can be
1757 convenient.
1758
1759 @var{prop} can contain additional elements in which case a nested
1760 property (inside of an alist) is tweaked.")
1761    (if (ly:music? item)
1762        (let ((p (check-grob-path prop (*location*)
1763                                  #:start 1
1764                                  #:default #t
1765                                  #:min 2)))
1766          (if p
1767              (set! (ly:music-property item 'tweaks)
1768                    (acons (cond ((pair? (cddr p)) p)
1769                                 ((symbol? (car p))
1770                                  (cons (car p) (cadr p)))
1771                                 (else (cadr p)))
1772                           value
1773                           (ly:music-property item 'tweaks))))
1774          item)
1775        ;; We could just throw this at \override and let it sort this
1776        ;; out on its own, but this way we should get better error
1777        ;; diagnostics.
1778        (let ((p (check-grob-path
1779                  (append item (if (symbol? prop) (list prop) prop)) (*location*)
1780                  #:default 'Bottom #:min 3)))
1781          (if p
1782              #{ \override #p = #value #}
1783              (make-music 'Music)))))
1784
1785 undo =
1786 #(define-music-function (music)
1787    (ly:music?)
1788    (_i "Convert @code{\\override} and @code{\\set} in @var{music} to
1789 @code{\\revert} and @code{\\unset}, respectively.  Any reverts and
1790 unsets already in @var{music} cause a warning.  Non-property-related music is ignored.")
1791    (define warned #f)
1792    (let loop
1793        ((music music))
1794      (let
1795          ((lst
1796            (fold-some-music
1797             (lambda (m) (or (music-is-of-type? m 'layout-instruction-event)
1798                             (music-is-of-type? m 'context-specification)
1799                             (music-is-of-type? m 'apply-context)
1800                             (music-is-of-type? m 'time-signature-music)))
1801             (lambda (m overrides)
1802               (case (ly:music-property m 'name)
1803                 ((OverrideProperty)
1804                  (cons
1805                   (make-music 'RevertProperty
1806                               'symbol (ly:music-property m 'symbol)
1807                               'grob-property-path
1808                               (cond
1809                                ((ly:music-property m 'grob-property #f) => list)
1810                                (else
1811                                 (ly:music-property m 'grob-property-path))))
1812                   overrides))
1813                 ((PropertySet)
1814                  (cons
1815                   (make-music 'PropertyUnset
1816                               'symbol (ly:music-property m 'symbol))
1817                   overrides))
1818                 ((ContextSpeccedMusic)
1819                  (cons
1820                   (make-music 'ContextSpeccedMusic
1821                               'element (loop (ly:music-property m 'element))
1822                               'context-type (ly:music-property m 'context-type))
1823                   overrides))
1824                 (else
1825                  (if (not warned)
1826                      (begin
1827                        (ly:input-warning (*location*) (_ "Cannot revert ~a")
1828                                          (ly:music-property m 'name))
1829                        (set! warned #t)))
1830                  overrides)))
1831             '()
1832             music)))
1833        (cond
1834         ((null? lst) (make-music 'Music))
1835         ((null? (cdr lst)) (car lst))
1836         (else (make-sequential-music lst))))))
1837
1838 unfoldRepeats =
1839 #(define-music-function (music) (ly:music?)
1840    (_i "Force any @code{\\repeat volta}, @code{\\repeat tremolo} or
1841 @code{\\repeat percent} commands in @var{music} to be interpreted
1842 as @code{\\repeat unfold}.")
1843    (unfold-repeats music))
1844
1845 void =
1846 #(define-void-function (arg) (scheme?)
1847    (_i "Accept a scheme argument, return a void expression.
1848 Use this if you want to have a scheme expression evaluated
1849 because of its side-effects, but its value ignored."))
1850
1851 withMusicProperty =
1852 #(define-music-function (sym val music)
1853    (symbol? scheme? ly:music?)
1854    (_i "Set @var{sym} to @var{val} in @var{music}.")
1855
1856    (set! (ly:music-property music sym) val)
1857    music)