X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=ly%2Fspanners-init.ly;h=6ebb6fbdbecf7d29c14a63d75fe4b3df46be1a78;hb=7bb304912f9b9752591abc4216d764a99012b90a;hp=3f24cf04ea09417313d1f39b412d1595d0200305;hpb=899a5926b98860f3d5db399616d9211927fbfa3c;p=lilypond.git diff --git a/ly/spanners-init.ly b/ly/spanners-init.ly index 3f24cf04ea..6ebb6fbdbe 100644 --- a/ly/spanners-init.ly +++ b/ly/spanners-init.ly @@ -1,67 +1,108 @@ -\version "1.7.3" +\version "2.12.0" - -#(define (make-span-event type spandir) - (let* ((m (make-music-by-name type))) - (ly:set-mus-property! m 'span-direction spandir) - m - )) - -groupOpen = #(make-span-event 'NoteGroupingEvent START) -groupClose = #(make-span-event 'NoteGroupingEvent STOP) +startGroup = #(make-span-event 'NoteGroupingEvent START) +stopGroup = #(make-span-event 'NoteGroupingEvent STOP) cr = #(make-span-event 'CrescendoEvent START) -rc = #(make-span-event 'CrescendoEvent STOP) decr = #(make-span-event 'DecrescendoEvent START) -rced = #(make-span-event 'DecrescendoEvent STOP) +enddecr = #(make-span-event 'DecrescendoEvent STOP) +endcr = #(make-span-event 'CrescendoEvent STOP) + startTextSpan = #(make-span-event 'TextSpanEvent START) stopTextSpan = #(make-span-event 'TextSpanEvent STOP) -cresc = \notes { + +startTrillSpan = #(make-span-event 'TrillSpanEvent START) +stopTrillSpan = #(make-span-event 'TrillSpanEvent STOP) + + +episemInitium = #(make-span-event 'EpisemaEvent START) +episemFinis = #(make-span-event 'EpisemaEvent STOP) + + +cresc = #(make-music 'CrescendoEvent 'span-direction START 'span-type 'text 'span-text "cresc.") +endcresc = #(make-span-event 'CrescendoEvent STOP) +dim = #(make-music 'DecrescendoEvent 'span-direction START 'span-type 'text 'span-text "dim.") +enddim = #(make-span-event 'DecrescendoEvent STOP) +decresc = #(make-music 'DecrescendoEvent 'span-direction START 'span-type 'text 'span-text "decresc.") +enddecresc = #(make-span-event 'DecrescendoEvent STOP) + +% Deprecated functions: +% TODO: DEPRECATED_2_13_19 +deprecatedcresc = { #(ly:export (make-event-chord (list cr))) - \property Voice.crescendoText = #'((font-shape . italic) "cresc.") - \property Voice.crescendoSpanner = #'dashed-line + \once \set crescendoText = \markup { \italic "cresc." } + \once \set crescendoSpanner = #'text } -% ah, this is handy: maybe drop resetting of properties in -% dynamic-engraver ? -endcresc = \notes { - #(ly:export (make-event-chord (list rc))) - \property Voice.crescendoText \unset - \property Voice.crescendoSpanner \unset -} -dim = \notes { +deprecateddim = { #(ly:export (make-event-chord (list decr))) + \once \set decrescendoText = \markup { \italic "dim." } + \once \set decrescendoSpanner = #'text +} - \property Voice.decrescendoText = #"dim." - \property Voice.decrescendoSpanner = #'dashed-line +deprecatedenddim = { + #(ly:export (make-event-chord (list enddecr))) +% \unset decrescendoText +% \unset decrescendoSpanner } -enddim = \notes { - #(ly:export (make-event-chord (list rced))) - \property Voice.decrescendoText \unset - \property Voice.decrescendoSpanner \unset +deprecatedendcresc = { + #(ly:export (make-event-chord (list endcr))) +% \unset crescendoText +% \unset crescendoSpanner } -%{ -cresc = \spanevent \start "crescendo" -endcresc = \spanevent \stop "crescendo" +%%%%%%%%%%%%%%%% -%} +crescTextCresc = { + \set crescendoText = \markup { \italic "cresc." } + \set crescendoSpanner = #'text +} -% better name sustainstart/stop? -sustainUp = #(make-span-event 'SustainPedalEvent STOP) +dimTextDecresc = { + \set decrescendoText = \markup { \italic "decresc." } + \set decrescendoSpanner = #'text +} + +dimTextDecr = { + \set decrescendoText = \markup { \italic "decr." } + \set decrescendoSpanner = #'text +} + +dimTextDim = { + \set decrescendoText = \markup { \italic "dim." } + \set decrescendoSpanner = #'text +} + +crescHairpin = { + \unset crescendoText + \unset crescendoSpanner +} + +dimHairpin = { + \unset decrescendoText + \unset decrescendoSpanner +} + + +sustainOff = #(make-span-event 'SustainEvent STOP) +sustainOn = #(make-span-event 'SustainEvent START) unaCorda = #(make-span-event 'UnaCordaEvent START) treCorde = #(make-span-event 'UnaCordaEvent STOP) -sostenutoDown = #(make-span-event 'SostenutoEvent START) -sostenutoUp = #(make-span-event 'SostenutoEvent STOP) +sostenutoOn = #(make-span-event 'SostenutoEvent START) +sostenutoOff = #(make-span-event 'SostenutoEvent STOP) + +%crescpoco = \set crescendoText = "cresc. poco a poco" +%decresc = \set crescendoText = "decr." +%dim = \set crescendoText = "dim." + +newSpacingSection = #(make-event-chord (list (make-music 'SpacingSectionEvent))) -%crescpoco = \property Voice.crescendoText = "cresc. poco a poco" -%decresc = \property Voice.crescendoText = "decr." -%dim = \property Voice.crescendoText = "dim." +breakDynamicSpan = #(make-music 'BreakDynamicSpanEvent)