1
0
Fork 0
mirror of https://github.com/kastdeur/lilydrum.git synced 2024-12-22 17:23:32 +01:00
Removable tutti's can be pulled off using the tag in the \dr and \fr variables
This commit is contained in:
Eric Teunis de Boone 2018-02-27 23:33:31 +01:00
parent 44c4d3ae99
commit ee97c53178

View file

@ -83,10 +83,10 @@ dynLine = #(define-music-function
%fr = { <>\="unison"\stopTextSpan } %fr = { <>\="unison"\stopTextSpan }
%odr = { \unisonbracket <>\="unison"\startTextSpan } %odr = { \unisonbracket <>\="unison"\startTextSpan }
%ofr = { <>\="unison"\stopTextSpan } %ofr = { <>\="unison"\stopTextSpan }
dr = #(define-event-function (parser location) () #{ \startGroup #}) dr = #(define-event-function (parser location) () #{ -\tag #'tutti \startGroup #})
fr = #(define-event-function (parser location) () #{ \stopGroup #}) fr = #(define-event-function (parser location) () #{ -\tag #'tutti \stopGroup #})
odr = #(define-event-function (parser location) () #{ \startGroup #}) odr = #(define-event-function (parser location) () #{ -\tag #'tutti \startGroup #})
ofr = #(define-event-function (parser location) () #{ \stopGroup #}) ofr = #(define-event-function (parser location) () #{ -\tag #'tutti \stopGroup #})
#(define (allbutlastnote mus) #(define (allbutlastnote mus)
(let ((elts (ly:music-property mus 'elements))) (let ((elts (ly:music-property mus 'elements)))
@ -101,17 +101,10 @@ ofr = #(define-event-function (parser location) () #{ \stopGroup #})
% TODO: check whether on one note % TODO: check whether on one note
tutti = #(define-music-function (music) (ly:music?) tutti = #(define-music-function (music) (ly:music?)
#{ #{
<<
\tag #'tutti {
\override HorizontalBracket.connect-to-neighbor = #'(#t #t) \override HorizontalBracket.connect-to-neighbor = #'(#t #t)
<>\dr <>\dr
#(skip-of-length (allbutlastnote music)) #(allbutlastnote music)
<>\fr <>\fr
#(skip-of-length (lastnote music)) #(lastnote music)
\revert HorizontalBracket.connect-to-neighbor \revert HorizontalBracket.connect-to-neighbor
}
{
$music
}
>>
#}) #})