]> git.donarmstrong.com Git - lilypond.git/blob - scm/define-music-types.scm
Part-combine: Add a way to override the part-combination decision
[lilypond.git] / scm / define-music-types.scm
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 1998--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 ;;;;                 Jan Nieuwenhuizen <janneke@gnu.org>
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 ;; TODO: should link back into user manual.
20
21 (define-public music-descriptions
22   `(
23     (AbsoluteDynamicEvent
24      . ((description . "Create a dynamic mark.
25
26 Syntax: @var{note}@code{\\x}, where @code{\\x} is a dynamic mark like
27 @code{\\ppp} or @code{\\sfz}.  A complete list is in file
28 @file{ly/@/dynamic-scripts-init.ly}.")
29         (types . (general-music event dynamic-event absolute-dynamic-event))
30         ))
31
32     (AnnotateOutputEvent
33      . ((description . "Print an annotation of an output element.")
34         (types . (general-music event annotate-output-event))
35         ))
36
37     (ApplyContext
38      . ((description . "Call the argument with the current context during
39 interpreting phase.")
40         (types . (general-music apply-context))
41         (iterator-ctor . ,ly:apply-context-iterator::constructor)
42         ))
43
44     (ApplyOutputEvent
45      . ((description . "Call the argument with all current grobs during
46 interpreting phase.
47
48 Syntax: @code{\\applyOutput #'@var{context} @var{func}}
49
50 Arguments to @var{func} are 1.@tie{}the grob, 2.@tie{}the originating
51 context, and 3.@tie{}the context where @var{func} is called.")
52         (types . (general-music event apply-output-event))
53         ))
54
55     (ArpeggioEvent
56      . ((description . "Make an arpeggio on this note.
57
58 Syntax: @var{note}@code{-\\arpeggio}")
59         (types . (general-music arpeggio-event event))
60         ))
61
62     ;; todo: use articulation-event for slur as well.
63     ;; separate non articulation scripts
64     (ArticulationEvent
65      . ((description . "Add an articulation marking to a note.
66
67 Syntax: @var{note}@code{x}@code{y}, where @code{x} is a direction
68 (@code{^} for up or @code{_} for down), or LilyPond's choice
69 (no direction specified), and where @code{y} is an articulation
70 (such as @code{-.}, @code{->}, @code{\\tenuto}, @code{\\downbow}).
71 See the Notation Reference for details.")
72         (types . (general-music event articulation-event script-event))
73         ))
74
75     (AutoChangeMusic
76      . ((description . "Used for making voices that switch between
77 piano staves automatically.")
78         (iterator-ctor . ,ly:auto-change-iterator::constructor)
79         (start-callback . ,ly:music-wrapper::start-callback)
80         (length-callback . ,ly:music-wrapper::length-callback)
81         (types . (general-music music-wrapper-music auto-change-instruction))
82         ))
83
84     (BarCheck
85      . ((description . "Check whether this music coincides with
86 the start of the measure.")
87         (types . (general-music bar-check))
88         (iterator-ctor . ,ly:bar-check-iterator::constructor)
89         ))
90
91     (BassFigureEvent
92      . ((description . "Print a bass-figure text.")
93         (types . (general-music event rhythmic-event bass-figure-event))
94         ))
95
96     (BeamEvent
97      . ((description . "Start or stop a beam.
98
99 Syntax for manual control: @code{c8-[ c c-] c8}")
100         (types . (general-music event beam-event span-event))
101         ))
102
103     (BeamForbidEvent
104      . ((description . "Specify that a note may not auto-beamed.")
105         (types . (general-music event beam-forbid-event))
106         ))
107
108     (BreakDynamicSpanEvent
109      . ((description . "End an alignment spanner for dynamics here.")
110         (types . (general-music break-span-event break-dynamic-span-event event))
111         ))
112
113     (BendAfterEvent
114      . ((description . "A drop/fall/doit jazz articulation.")
115         (types . (general-music bend-after-event event))))
116
117     (BreathingEvent
118      . ((description . "Create a @q{breath mark} or @q{comma}.
119
120 Syntax: @var{note}@code{\\breathe}")
121
122         (types . (general-music event breathing-event))
123         ))
124
125     (ClusterNoteEvent
126      . ((description . "A note that is part of a cluster.")
127         ;; not a note-event, to ensure that Note_heads_engraver doesn't eat it.
128         (types . (general-music cluster-note-event melodic-event
129                   rhythmic-event event))
130         ))
131
132     (CompletizeExtenderEvent
133      . ((description . "Used internally to signal the end of a lyrics block to
134 ensure extenders are completed correctly when a @code{Lyrics} context ends
135 before its associated @code{Voice} context.")
136         (types . (general-music completize-extender-event event))
137         ))
138
139     (ContextChange
140      . ((description . "Change staves in Piano staff.
141
142 Syntax: @code{\\change Staff = @var{new-id}}")
143         (iterator-ctor . ,ly:change-iterator::constructor)
144         (types . (general-music translator-change-instruction))
145         ))
146
147     (ContextSpeccedMusic
148      . ((description . "Interpret the argument music within a
149 specific context.")
150         (iterator-ctor . ,ly:context-specced-music-iterator::constructor)
151         (length-callback . ,ly:music-wrapper::length-callback)
152         (start-callback . ,ly:music-wrapper::start-callback)
153         (types . (context-specification general-music music-wrapper-music))
154         ))
155
156     (CrescendoEvent
157      . ((description . "Begin or end a crescendo.
158
159 Syntax: @var{note}@code{\\<} @dots{} @var{note}@code{\\!}
160
161 An alternative syntax is @var{note}@code{\\cr} @dots{}
162 @var{note}@code{\\endcr}.")
163         (types . (general-music span-event span-dynamic-event crescendo-event
164                   event))
165         ))
166
167     (DecrescendoEvent
168      . ((description . "Begin or end a decrescendo.
169
170 Syntax: @var{note}@code{\\>} @dots{} @var{note}@code{\\!}
171
172 An alternative syntax is @var{note}@code{\\decr} @dots{}
173 @var{note}@code{\\enddecr}.")
174         (types . (general-music span-event span-dynamic-event decrescendo-event
175                   event))
176         ))
177
178     (EpisemaEvent
179      . ((description . "Begin or end an episema.")
180         (types . (general-music span-event event episema-event))
181         ))
182
183     (Event
184      . ((description . "Atomic music event.")
185         (types . (general-music event))
186         ))
187
188     (EventChord
189      . ((description . "Internally used to group a set of events.")
190         (iterator-ctor . ,ly:event-chord-iterator::constructor)
191         (length-callback . ,ly:music-sequence::maximum-length-callback)
192         (to-relative-callback .
193          ,ly:music-sequence::event-chord-relative-callback)
194         (types . (general-music event-chord simultaneous-music))
195         ))
196
197     (ExtenderEvent
198      . ((description . "Extend lyrics.")
199         (types . (general-music extender-event event))
200         ))
201
202     (FingeringEvent
203      . ((description . "Specify what finger to use for this note.")
204         (types . (general-music fingering-event event))
205         ))
206
207     (GlissandoEvent
208      . ((description . "Start a glissando on this note.")
209         (types . (general-music glissando-event event))
210         ))
211
212     (GraceMusic
213      . ((description . "Interpret the argument as grace notes.")
214         (start-callback . ,ly:grace-music::start-callback)
215         (length . ,ZERO-MOMENT)
216         (iterator-ctor . ,ly:grace-iterator::constructor)
217         (types . (grace-music music-wrapper-music general-music))
218         ))
219
220     (HarmonicEvent
221      . ((description . "Mark a note as harmonic.")
222         (types . (general-music event harmonic-event))
223         ))
224
225     (HyphenEvent
226      . ((description . "A hyphen between lyric syllables.")
227         (types . (general-music hyphen-event event))
228         ))
229
230     (KeyChangeEvent
231      . ((description . "Change the key signature.
232
233 Syntax: @code{\\key} @var{name} @var{scale}")
234         (to-relative-callback . ,(lambda (x p) p))
235         (types . (general-music key-change-event event))
236         ))
237
238     (LabelEvent
239      . ((description . "Place a bookmarking label.")
240         (types . (general-music label-event event))
241         ))
242
243     (LaissezVibrerEvent
244      . ((description . "Don't damp this chord.
245
246 Syntax: @var{note}@code{\\laissezVibrer}")
247         (types . (general-music event laissez-vibrer-event))
248         ))
249
250     (LigatureEvent
251      . ((description . "Start or end a ligature.")
252         (types . (general-music span-event ligature-event event))
253         ))
254
255     (LineBreakEvent
256      . ((description . "Allow, forbid or force a line break.")
257         (types . (general-music line-break-event break-event event))
258         ))
259
260     (LyricCombineMusic
261      . ((description . "Align lyrics to the start of notes.
262
263 Syntax: @code{\\lyricsto} @var{voicename} @var{lyrics}")
264         (length . ,ZERO-MOMENT)
265         (types . (general-music lyric-combine-music))
266         (iterator-ctor . ,ly:lyric-combine-music-iterator::constructor)
267         ))
268
269     (LyricEvent
270      . ((description . "A lyric syllable.  Must be entered in lyrics mode,
271 i.e., @code{\\lyrics @{ twinkle4 twinkle4 @} }.")
272         (types . (general-music rhythmic-event lyric-event event))
273         ))
274
275     (MarkEvent
276      . ((description . "Insert a rehearsal mark.
277
278 Syntax: @code{\\mark} @var{marker}
279
280 Example: @code{\\mark \"A\"}")
281         (types . (general-music mark-event event))
282         ))
283
284     (MultiMeasureRestEvent
285      . ((description . "Used internally by @code{MultiMeasureRestMusic}
286 to signal rests.")
287         (types . (general-music event rhythmic-event
288                   multi-measure-rest-event))
289         ))
290
291     (MultiMeasureRestMusic
292      . ((description . "Rests that may be compressed into Multi rests.
293
294 Syntax: @code{R2.*4} for 4 measures in 3/4 time.")
295         (iterator-ctor . ,ly:sequential-iterator::constructor)
296         (elements-callback . ,mm-rest-child-list)
297         (types . (general-music multi-measure-rest))
298         ))
299
300     (MultiMeasureTextEvent
301      . ((description . "Texts on multi measure rests.
302
303 Syntax: @code{R-\\markup @{ \\roman \"bla\" @}}
304
305 Note the explicit font switch.")
306         (types . (general-music event multi-measure-text-event))
307         ))
308
309     (Music
310      . ((description . "Generic type for music expressions.")
311         (types . (general-music))
312         ))
313
314     (NoteEvent
315      . ((description . "A note.")
316         (types . (general-music event note-event rhythmic-event
317                   melodic-event))
318         ))
319
320     (NoteGroupingEvent
321      . ((description . "Start or stop grouping brackets.")
322         (types . (general-music event note-grouping-event))
323         ))
324
325     (OttavaMusic
326      . ((description . "Start or stop an ottava bracket.")
327         (iterator-ctor . ,ly:sequential-iterator::constructor)
328         (elements-callback . ,make-ottava-set)
329         (types . (general-music ottava-music))
330         ))
331
332     (OverrideProperty
333      . ((description . "Extend the definition of a graphical object.
334
335 Syntax: @code{\\override} [ @var{context} @code{.} ]
336 @var{object} @var{property} @code{=} @var{value}")
337         (types . (general-music layout-instruction-event
338                   override-property-event))
339         (iterator-ctor . ,ly:push-property-iterator::constructor)
340         ))
341
342     (PageBreakEvent
343      . ((description . "Allow, forbid or force a page break.")
344         (types . (general-music break-event page-break-event event))
345         ))
346
347     (PageTurnEvent
348      . ((description . "Allow, forbid or force a page turn.")
349         (types . (general-music break-event page-turn-event event))
350         ))
351
352     (PartCombineForceEvent
353      . ((description . "Override the part-combiner's strategy.")
354         (types . (general-music part-combine-force-event event))
355         ))
356
357     (PartialSet
358      . ((description . "Create an anacrusis or upbeat (partial measure).")
359         (iterator-ctor . ,ly:partial-iterator::constructor)
360         (types . (general-music partial-set))
361         ))
362
363     (PartCombineMusic
364      . ((description . "Combine two parts on a staff, either merged or
365 as separate voices.")
366         (length-callback . ,ly:music-sequence::maximum-length-callback)
367         (start-callback . ,ly:music-sequence::minimum-start-callback)
368         (types . (general-music part-combine-music))
369         (iterator-ctor . ,ly:part-combine-iterator::constructor)
370         ))
371
372     (PercentEvent
373      . ((description . "Used internally to signal percent repeats.")
374         (types . (general-music event percent-event rhythmic-event))
375         ))
376
377     (PercentRepeatedMusic
378      . ((description . "Repeats encoded by percents.")
379         (iterator-ctor . ,ly:percent-repeat-iterator::constructor)
380         (start-callback .  ,ly:repeated-music::first-start)
381         (length-callback . ,ly:repeated-music::unfolded-music-length)
382         (types . (general-music repeated-music percent-repeated-music))
383         ))
384
385     (PesOrFlexaEvent
386      . ((description . "Within a ligature, mark the previous and the
387 following note to form a pes (if melody goes up) or a flexa (if melody
388 goes down).")
389         (types . (general-music pes-or-flexa-event event))
390         ))
391
392     (PhrasingSlurEvent
393      . ((description . "Start or end phrasing slur.
394
395 Syntax: @var{note}@code{\\(} and @var{note}@code{\\)}")
396         (types . (general-music span-event event phrasing-slur-event))
397         ))
398
399     (PropertySet
400      . ((description . "Set a context property.
401
402 Syntax: @code{\\set @var{context}.@var{prop} = @var{scheme-val}}")
403         (types . (layout-instruction-event general-music))
404         (iterator-ctor . ,ly:property-iterator::constructor)
405         ))
406
407     (PropertyUnset
408      . ((description . "Restore the default setting for a context
409 property.  See @ref{PropertySet}.
410
411 Syntax: @code{\\unset @var{context}.@var{prop}}")
412         (types . (layout-instruction-event general-music))
413         (iterator-ctor . ,ly:property-unset-iterator::constructor)
414         ))
415
416     (QuoteMusic
417      . ((description . "Quote preprocessed snippets of music.")
418         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
419         (length-callback . ,ly:music-wrapper::length-callback)
420         (start-callback . ,ly:music-wrapper::start-callback)
421         (types . (general-music music-wrapper-music))
422         ))
423
424     (RelativeOctaveCheck
425      . ((description . "Check if a pitch is in the correct octave.")
426         (to-relative-callback . ,ly:relative-octave-check::relative-callback)
427         (types . (general-music relative-octave-check))
428         ))
429
430     (RelativeOctaveMusic
431      . ((description . "Music that was entered in relative octave notation.")
432         (to-relative-callback . ,ly:relative-octave-music::relative-callback)
433         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
434         (length-callback . ,ly:music-wrapper::length-callback)
435         (start-callback . ,ly:music-wrapper::start-callback)
436         (types . (music-wrapper-music general-music relative-octave-music))
437         ))
438
439     (RepeatedChord
440      . ((description . "A chord repetition")
441         (to-relative-callback . ,ly:music-sequence::repeated-chord-relative-callback)
442         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
443         (start-callback . ,ly:music-wrapper::start-callback)
444         (length-callback . ,ly:music-wrapper::length-callback)
445         (types . (general-music music-wrapper-music))
446         ))
447
448     (RepeatedMusic
449      . ((description . "Repeat music in different ways.")
450         (types . (general-music repeated-music))
451         ))
452
453     (RepeatTieEvent
454      . ((description . "Ties for starting a second volta bracket.")
455         (types . (general-music event repeat-tie-event))
456         ))
457
458     (RestEvent
459      . ((description . "A Rest.
460
461 Syntax: @code{r4} for a quarter rest.")
462         (types . (general-music event rhythmic-event rest-event))
463         ))
464
465     (RevertProperty
466      . ((description . "The opposite of @ref{OverrideProperty}: remove a
467 previously added property from a graphical object definition.")
468         (types . (general-music layout-instruction-event))
469         (iterator-ctor . ,ly:pop-property-iterator::constructor)
470         ))
471
472     (ScriptEvent
473      . ((description . "Add an articulation mark to a note.")
474         (types . (general-music event))
475         ))
476
477     (SequentialMusic
478      . ((description . "Music expressions concatenated.
479
480 Syntax: @code{\\sequential @{ @dots{} @}} or simply @code{@{ @dots{} @}}")
481         (length-callback . ,ly:music-sequence::cumulative-length-callback)
482         (start-callback . ,ly:music-sequence::first-start-callback)
483         (elements-callback . ,(lambda (m) (ly:music-property m 'elements)))
484         (iterator-ctor . ,ly:sequential-iterator::constructor)
485         (types . (general-music sequential-music))
486         ))
487
488     (SimultaneousMusic
489      . ((description . "Music playing together.
490
491 Syntax: @code{\\simultaneous @{ @dots{} @}} or @code{<< @dots{} >>}")
492         (iterator-ctor . ,ly:simultaneous-music-iterator::constructor)
493         (start-callback . ,ly:music-sequence::minimum-start-callback)
494         (length-callback . ,ly:music-sequence::maximum-length-callback)
495         (to-relative-callback .
496          ,ly:music-sequence::simultaneous-relative-callback)
497         (types . (general-music simultaneous-music))
498         ))
499
500     (SkipEvent
501      . ((description . "Filler that takes up duration, but does not
502 print anything.
503
504 Syntax: @code{s4} for a skip equivalent to a quarter rest.")
505         (types . (general-music event rhythmic-event skip-event))
506         ))
507
508     (SkipMusic
509      . ((description . "Filler that takes up duration, does not
510 print anything, and also does not create staves or voices implicitly.
511
512 Syntax: @code{\\skip} @var{duration}")
513         (length-callback . ,ly:music-duration-length)
514         (iterator-ctor . ,ly:simple-music-iterator::constructor)
515         (types . (general-music event rhythmic-event skip-event))
516         ))
517
518     (SlurEvent
519      . ((description . "Start or end slur.
520
521 Syntax: @var{note}@code{(} and @var{note}@code{)}")
522         (types . (general-music span-event event slur-event))
523         ))
524
525     (SoloOneEvent
526      . ((description . "Print @q{Solo@tie{}1}.")
527         (part-combine-status . solo1)
528         (types . (general-music event part-combine-event solo-one-event))
529         ))
530
531     (SoloTwoEvent
532      . ((description . "Print @q{Solo@tie{}2}.")
533         (part-combine-status . solo2)
534         (types . (general-music event part-combine-event solo-two-event))
535         ))
536
537     (SostenutoEvent
538      . ((description . "Depress or release sostenuto pedal.")
539         (types . (general-music event pedal-event sostenuto-event))
540         ))
541
542     (SpacingSectionEvent
543      . ((description . "Start a new spacing section.")
544         (types . (general-music event spacing-section-event))))
545
546     (SpanEvent
547      . ((description . "Event for anything that is started at a
548 different time than stopped.")
549         (types . (general-music event))
550         ))
551
552     (StaffSpanEvent
553      . ((description . "Start or stop a staff symbol.")
554         (types . (general-music event span-event staff-span-event))
555      ))
556
557     (StringNumberEvent
558      . ((description . "Specify on which string to play this note.
559
560 Syntax: @code{\\@var{number}}")
561         (types . (general-music string-number-event event))
562         ))
563
564     (StrokeFingerEvent
565      . ((description . "Specify with which finger to pluck a string.
566
567 Syntax: @code{\\rightHandFinger @var{text}}")
568         (types . (general-music stroke-finger-event event))
569         ))
570
571     (SustainEvent
572      . ((description . "Depress or release sustain pedal.")
573         (types . (general-music event pedal-event sustain-event))
574         ))
575
576     (TextScriptEvent
577      . ((description . "Print text.")
578         (types . (general-music script-event text-script-event event))
579         ))
580
581     (TextSpanEvent
582      . ((description . "Start a text spanner, for example, an
583 octavation.")
584         (types . (general-music span-event event text-span-event))
585         ))
586
587     (TieEvent
588      . ((description . "A tie.
589
590 Syntax: @var{note}@code{-~}")
591         (types . (general-music tie-event event))
592         ))
593
594     (TimeScaledMusic
595      . ((description . "Multiply durations, as in tuplets.
596
597 Syntax: @code{\\times @var{fraction} @var{music}}, e.g.,
598 @code{\\times 2/3 @{ @dots{} @}} for triplets.")
599         (length-callback . ,ly:music-wrapper::length-callback)
600         (start-callback . ,ly:music-wrapper::start-callback)
601         (iterator-ctor . ,ly:tuplet-iterator::constructor)
602         (types . (time-scaled-music music-wrapper-music general-music))
603         ))
604
605     (TimeSignatureMusic
606      . ((description . "Set a new time signature")
607         (iterator-ctor . ,ly:sequential-iterator::constructor)
608         (elements-callback . ,make-time-signature-set)
609         (types . (general-music time-signature-music))
610         ))
611
612     (TransposedMusic
613      . ((description . "Music that has been transposed.")
614         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
615         (start-callback . ,ly:music-wrapper::start-callback)
616         (length-callback . ,ly:music-wrapper::length-callback)
617         (to-relative-callback .
618          ,ly:relative-octave-music::no-relative-callback)
619         (types . (music-wrapper-music general-music transposed-music))
620         ))
621
622     (TremoloEvent
623      . ((description . "Unmeasured tremolo.")
624         (types . (general-music event tremolo-event))
625         ))
626
627     (TremoloRepeatedMusic
628      . ((description . "Repeated notes denoted by tremolo beams.")
629         (iterator-ctor . ,ly:chord-tremolo-iterator::constructor)
630         (start-callback .  ,ly:repeated-music::first-start)
631         ;; the length of the repeat is handled by shifting the note logs
632         (length-callback . ,ly:repeated-music::folded-music-length)
633         (types . (general-music repeated-music tremolo-repeated-music))
634         ))
635
636     (TremoloSpanEvent
637      . ((description . "Tremolo over two stems.")
638         (types . (general-music event span-event tremolo-span-event))
639         ))
640
641     (TrillSpanEvent
642      . ((description . "Start a trill spanner.")
643         (types . (general-music span-event event trill-span-event))
644         ))
645
646     (TupletSpanEvent
647      . ((description . "Used internally to signal where tuplet
648 brackets start and stop.")
649         (types . (tuplet-span-event span-event event general-music))
650        ))
651
652     (UnaCordaEvent
653      . ((description . "Depress or release una-corda pedal.")
654         (types . (general-music event pedal-event una-corda-event))
655         ))
656
657     (UnfoldedRepeatedMusic
658      . ((description . "Repeated music which is fully written
659 (and played) out.")
660         (iterator-ctor . ,ly:unfolded-repeat-iterator::constructor)
661         (start-callback .  ,ly:repeated-music::first-start)
662         (types . (general-music repeated-music unfolded-repeated-music))
663         (length-callback . ,ly:repeated-music::unfolded-music-length)
664         ))
665
666     (UnisonoEvent
667      . ((description . "Print @q{a@tie{}2}.")
668         (part-combine-status . unisono)
669         (types . (general-music event part-combine-event unisono-event))))
670
671     (UnrelativableMusic
672      . ((description . "Music that cannot be converted from relative
673 to absolute notation.  For example, transposed music.")
674         (to-relative-callback . ,ly:relative-octave-music::no-relative-callback)
675         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
676         (length-callback . ,ly:music-wrapper::length-callback)
677         (types . (music-wrapper-music general-music unrelativable-music))
678         ))
679
680     (VoiceSeparator
681      . ((description . "Separate polyphonic voices in simultaneous music.
682
683 Syntax: @code{\\\\}")
684         (types . (separator general-music))
685         ))
686
687     (VoltaRepeatedMusic
688      . ((description . "Repeats with alternatives placed sequentially.")
689         (iterator-ctor . ,ly:volta-repeat-iterator::constructor)
690         (start-callback .  ,ly:repeated-music::first-start)
691         (length-callback . ,ly:repeated-music::volta-music-length)
692         (types . (general-music repeated-music volta-repeated-music))
693         ))
694     ))
695
696 (set! music-descriptions
697       (sort music-descriptions alist<?))
698
699 (define-public music-name-to-property-table (make-vector 59 '()))
700
701 ;; init hash table,
702 ;; transport description to an object property.
703 (set!
704  music-descriptions
705  (map (lambda (x)
706         (set-object-property! (car x)
707                               'music-description
708                               (cdr (assq 'description (cdr x))))
709         (let ((lst (cdr x)))
710           (set! lst (assoc-set! lst 'name (car x)))
711           (set! lst (assq-remove! lst 'description))
712           (hashq-set! music-name-to-property-table (car x) lst)
713           (cons (car x) lst)))
714       music-descriptions))
715
716 (define-safe-public (make-music name . music-properties)
717   "Create a music object of given name, and set its properties
718 according to @code{music-properties}, a list of alternating property symbols
719 and values. E.g:
720   (make-music 'OverrideProperty
721               'symbol 'Stem
722               'grob-property 'thickness
723               'grob-value (* 2 1.5))"
724   (if (not (symbol? name))
725       (ly:error (_ "symbol expected: ~S") name))
726   (let ((props (hashq-ref music-name-to-property-table name '())))
727     (if (not (pair? props))
728         (ly:error (_ "cannot find music object: ~S") name))
729     (let ((m (ly:make-music props)))
730       (define (set-props mus-props)
731         (if (and (not (null? mus-props))
732                  (not (null? (cdr mus-props))))
733             (begin
734               (set! (ly:music-property m (car mus-props)) (cadr mus-props))
735               (set-props (cddr mus-props)))))
736       (set-props music-properties)
737       m)))
738
739 (define-public (make-repeated-music name)
740   (let* ((repeated-music (assoc-get name '(("volta" . VoltaRepeatedMusic)
741                                            ("unfold" . UnfoldedRepeatedMusic)
742                                            ("percent" . PercentRepeatedMusic)
743                                            ("tremolo" . TremoloRepeatedMusic))))
744          (repeated-music-name (if repeated-music
745                                   repeated-music
746                                   (begin
747                                     (ly:warning (_ "unknown repeat type `~S'") name)
748                                     (ly:warning (_ "See define-music-types.scm for supported repeats"))
749                                     'VoltaRepeatedMusic))))
750     (make-music repeated-music-name)))