Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scoop implementation #4

Open
kastdeur opened this issue Nov 28, 2017 · 2 comments
Open

Scoop implementation #4

kastdeur opened this issue Nov 28, 2017 · 2 comments

Comments

@kastdeur
Copy link
Owner

Instead of a horizontal grouping, an arrow (going up and down) should be over the notes.

scoop = #(define-music-function (music) (ly:music?)

@kastdeur
Copy link
Owner Author

kastdeur commented Nov 9, 2021

Using a PhrasingSlur and modifying the shape might be an idea to implement this.

https://lilypond.org/doc/v2.23/Documentation/notation/modifying-shapes

@kastdeur
Copy link
Owner Author

Using TextSpanEvent:

scoop preview

\version "2.22.2"

\include "../lib/lilydrum/lilydrum.ly"

#(define (text-spanner-start-stop mus spanid)
    (let ((elts (ly:music-property mus 'elements)))
    (make-music 'SequentialMusic 'elements
       (append
          (list (make-music 'TextSpanEvent 'span-direction -1 'spanner-id spanid ))
          (reverse (cdr (reverse elts)))
          (list (make-music 'TextSpanEvent 'span-direction 1 'spanner-id spanid))
          (list (last elts))))))

scoop = #(define-music-function (music) (ly:music?)
    "Add a TextSpanner over music representing a scoop.
    This is notated with a bent arrow."
    #{
        \temporary \override TextSpanner.style = #'line
        \temporary \override TextSpanner.bound-details.right.arrow = ##t
        \temporary \override TextSpanner.bound-details.left.text = \markup {
            \fontsize #5
            \override #'(thickness . 2)
                \draw-line #'(-3 . -2) % draw stick
            }
        \temporary \override TextSpanner.bound-details.left.Y = #2
        \temporary \override TextSpanner.bound-details.right.Y = #-1
        \temporary \override TextSpanner.bound-details.left.padding = #3.5
        \temporary \override TextSpanner.bound-details.right.padding = #-0.5

        $(text-spanner-start-stop music scoop)
    #})

\new PipeBandDrumStaff {
    \displayMusic \drummode {
        \scoop { d8 g d4 }
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant