lilydrum/lib/musical_functions.ily

115 lines
3.6 KiB
Plaintext
Raw Normal View History

% ================================================= %
% Musical Functions %
% ================================================= %
% Part of lilydrum
2015-11-05 03:28:25 +01:00
eighthBeaming = {
2017-05-29 17:09:06 +02:00
\set baseMoment = #(ly:make-moment 1/8)
\set beatStructure = #'( 2 2 2 2)
2015-11-05 03:28:25 +01:00
}
2016-04-27 02:57:44 +02:00
eighthReelBeaming = {
2017-05-29 17:09:06 +02:00
\set baseMoment = #(ly:make-moment 1/8)
\set beatStructure = #'( 4 4 4 4)
2016-04-27 02:57:44 +02:00
}
eighthCompoundBeaming = {
2017-05-29 17:09:06 +02:00
\set baseMoment = #(ly:make-moment 1/8)
\set beatStructure = #'( 3 3 3 3)
2015-11-05 03:28:25 +01:00
}
sixteenthBeaming = {
2017-05-29 17:09:06 +02:00
\set baseMoment = #(ly:make-moment 1/16)
\set beatStructure = #'( 4 4 4 4)
}
sixteenthReelBeaming = {
2017-05-29 17:09:06 +02:00
\set baseMoment = #(ly:make-moment 1/16)
\set beatStructure = #'( 8 8 8 8)
}
sixteenthCompoundBeaming = {
2017-05-29 17:09:06 +02:00
\set baseMoment = #(ly:make-moment 1/16)
\set beatStructure = #'( 6 6 6 6)
}
% triplet
triplet = #(define-music-function (parser location music) (ly:music?) #{ \tuplet 3/2 { $music } #})
2020-08-06 16:43:37 +02:00
quintuplet = #(define-music-function (parser location music) (ly:music?) #{ \tuplet 5/2 { $music } #})
sextuplet = #(define-music-function (parser location music) (ly:music?) #{ \tuplet 6/4 { $music } #})
% dynamics
v = #(define-event-function (parser location) () #{ \upbow #})
2017-05-29 17:09:06 +02:00
#(define (text-spanner-start-stop mus)
(let ((elts (ly:music-property mus 'elements)))
(make-music 'SequentialMusic 'elements
(append
2017-05-29 17:09:06 +02:00
(list (make-music 'TextSpanEvent 'span-direction -1))
(reverse (cdr (reverse elts)))
(list (make-music 'TextSpanEvent 'span-direction 1))
(list (last elts))
)
)
)
)
% dynamics with extended lines
dynLine = #(define-music-function
(parser location text)
(markup?)
#{
\once \override TextSpanner.style = #'line
\once \override TextSpanner.bound-details.left.text = \markup {
\combine
\draw-line #'(0 . -1)
\draw-line #'(1 . 0)
\dynamic #text
}
\once \override TextSpanner.bound-details.right.text = \markup { \draw-line #'(0 . -1) }
#})
2016-10-26 11:21:41 +02:00
% unison brackets
% TODO: a little 'u'
% TODO: open ended brackets(\odr,\ofr)
2017-05-29 17:09:06 +02:00
%unisonbracket = {
% \once \override TextSpanner.style = #'line
% \once \override TextSpanner #'to-barline = ##t
% \once \override TextSpanner.bound-details.left.text = \markup {
% \combine
% \combine
% \draw-line #'(0 . -1)
% \draw-line #'(1 . 0)
% \translate #'(1 . -0.5 ) \whiteout \box "u"
% }
% \once \override TextSpanner.bound-details.right.text = \markup { \draw-line #'(0 . -1) }
% \once \override TextSpanner.bound-details.right.attach-dir = #RIGHT
%}
%dr = { \unisonbracket <>\="unison"\startTextSpan }
%fr = { <>\="unison"\stopTextSpan }
%odr = { \unisonbracket <>\="unison"\startTextSpan }
%ofr = { <>\="unison"\stopTextSpan }
dr = #(define-event-function (parser location) () #{ -\tag #'tutti \startGroup #})
fr = #(define-event-function (parser location) () #{ -\tag #'tutti \stopGroup #})
odr = #(define-event-function (parser location) () #{ -\tag #'tutti \startGroup #})
ofr = #(define-event-function (parser location) () #{ -\tag #'tutti \stopGroup #})
2017-05-29 17:09:06 +02:00
#(define (allbutlastnote mus)
"Reverse the elements, Pop of (cdr) the first element, Reverse again, put it in a SequentialMusic"
2017-05-29 17:09:06 +02:00
(let ((elts (ly:music-property mus 'elements)))
(make-music 'SequentialMusic 'elements (reverse (cdr (reverse elts))))
)
)
#(define (lastnote mus)
"Get the last element, make it a list, put it in a SequentialMusic"
2017-05-29 17:09:06 +02:00
(let ((elts (ly:music-property mus 'elements)))
(make-music 'SequentialMusic 'elements (list (last elts)))
)
)
% TODO: check whether on one note
tutti = #(define-music-function (music) (ly:music?)
2017-05-03 13:16:58 +02:00
#{
\override HorizontalBracket.connect-to-neighbor = #'(#t #t)
<>\dr
#(allbutlastnote music)
<>\fr
#(lastnote music)
\revert HorizontalBracket.connect-to-neighbor
2017-05-29 17:09:06 +02:00
#})