From 66eea47551baf00e2051438dddfa27b3112b6a12 Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Mon, 28 Jan 2019 00:42:00 +0100 Subject: [PATCH] Added drums Cullen Bay for the Holland Massed Pipes and Drums --- 5-4_marches/cullen_bay/bass.hmpd.ly | 24 ++++ 5-4_marches/cullen_bay/drums.hmpd.ly | 68 +++++++++++ 5-4_marches/cullen_bay/mid.hmpd.ly | 61 ++++++++++ 5-4_marches/cullen_bay/notes.bass.hmpd.ily | 11 ++ 5-4_marches/cullen_bay/notes.side.hmpd.ily | 123 ++++++++++++++++++++ 5-4_marches/cullen_bay/notes.tenor.hmpd.ily | 17 +++ 5-4_marches/cullen_bay/side.hmpd.ly | 33 ++++++ 5-4_marches/cullen_bay/tenor.hmpd.ly | 25 ++++ 8 files changed, 362 insertions(+) create mode 100644 5-4_marches/cullen_bay/bass.hmpd.ly create mode 100644 5-4_marches/cullen_bay/drums.hmpd.ly create mode 100644 5-4_marches/cullen_bay/mid.hmpd.ly create mode 100644 5-4_marches/cullen_bay/notes.bass.hmpd.ily create mode 100644 5-4_marches/cullen_bay/notes.side.hmpd.ily create mode 100644 5-4_marches/cullen_bay/notes.tenor.hmpd.ily create mode 100644 5-4_marches/cullen_bay/side.hmpd.ly create mode 100644 5-4_marches/cullen_bay/tenor.hmpd.ly diff --git a/5-4_marches/cullen_bay/bass.hmpd.ly b/5-4_marches/cullen_bay/bass.hmpd.ly new file mode 100644 index 0000000..7cb7f24 --- /dev/null +++ b/5-4_marches/cullen_bay/bass.hmpd.ly @@ -0,0 +1,24 @@ +\version "2.18.2" + +\include "lilydrum.ly" + +\include "./config.ily" +\include "./notes.bass.hmpd.ily" + +\score { + \new PipeBandDrumStaff { + \global + \repeat unfold 4 { + << + { \repeat volta 2 { \line } } + { \bassA } + >> \break + } + } + \header { + title = \markup \column { \title \smaller "Holland Massed P&D" } + meter = \meter + instrument = \instrumentBass + composer = \composerBass + } +} diff --git a/5-4_marches/cullen_bay/drums.hmpd.ly b/5-4_marches/cullen_bay/drums.hmpd.ly new file mode 100644 index 0000000..fe184df --- /dev/null +++ b/5-4_marches/cullen_bay/drums.hmpd.ly @@ -0,0 +1,68 @@ +\version "2.19.0" + +\include "lilydrum.ly" + +\include "./config.ily" +\include "./notes.bass.hmpd.ily" +\include "./notes.tenor.hmpd.ily" +\include "./notes.side.hmpd.ily" + +#(set-global-staff-size 14) +date = \markup { 16-02-2016 } +title = \markup { \title \normalsize "(HMPD)" } + +\score { + \new StaffGroup << + \new PipeBandDrumStaff = "side" \with { + instrumentName = \markup{\instrumentSide} + shortInstrumentName = \markup{\shortInstrumentSide} + } { + + \global + << + { + \repeat unfold 4 { + \repeat volta 2 { \halfline \halfline } \break + } + }%End of Format + { + \snareA + \snareB + \snareC + \snareD + } + >> + } + \new PipeBandDrumStaff = "tenor" \with { + instrumentName = \markup{ \instrumentTenor } + shortInstrumentName = \markup{ \shortInstrumentTenor } + } { + \tenorglobal + + \tenorA + \tenorB + \tenorA + \tenorB + } + \new PipeBandDrumStaff = "bass" \with { + instrumentName = \markup{ \instrumentBass } + shortInstrumentName = \markup{ \shortInstrumentBass} + } { + + \bassglobal + + \bassA + \bassA + \bassA + \bassA + } + + >> + \header { + date = \date + title = \markup \column { \title \smaller "Holland Massed P&D" } + meter = \meter + composer = \markup \tiny { \composerSide ":" "Drums" + } + } +} diff --git a/5-4_marches/cullen_bay/mid.hmpd.ly b/5-4_marches/cullen_bay/mid.hmpd.ly new file mode 100644 index 0000000..1006e8a --- /dev/null +++ b/5-4_marches/cullen_bay/mid.hmpd.ly @@ -0,0 +1,61 @@ +\version "2.19.0" + +\include "lilydrum.ly" + +\include "./config.ily" +\include "./notes.bass.hmpd.ily" +\include "./notes.tenor.hmpd.ily" + + +title = \markup { \title \normalsize "(HMPD)" } + +\score { + \new StaffGroup << + \new PipeBandDrumStaff = "tenor" \with { + instrumentName = \markup{ \instrumentTenor } + shortInstrumentName = \markup{ \shortInstrumentTenor } + } { + \tenorglobal + \global + << + { + \repeat volta 2 { \line } \break + \repeat volta 2 { \line } \break + \repeat volta 2 { \line } \break + \repeat volta 2 { \line } \break + }%Format + { + \tenorA + \tenorB + \tenorA + \tenorB + }%Music + >> + } + \new PipeBandDrumStaff = "bass" \with { + instrumentName = \markup{ \instrumentBass } + shortInstrumentName = \markup{ \shortInstrumentBass } + } { + \bassglobal + + \bassA + \bassA + \bassA + \bassA + } + >> + \header { + title = \markup \column { \title \smaller "Holland Massed P&D" } + meter = \meter + composer = \markup { + \column \right-align { + $(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} ) + $(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} ) + } + \column \right-align { + $(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} ) + $(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} ) + } + } + } +} diff --git a/5-4_marches/cullen_bay/notes.bass.hmpd.ily b/5-4_marches/cullen_bay/notes.bass.hmpd.ily new file mode 100644 index 0000000..1e6a2a3 --- /dev/null +++ b/5-4_marches/cullen_bay/notes.bass.hmpd.ily @@ -0,0 +1,11 @@ +% 5/4 Cullen Bay +% Bass +\version "2.18.2" +composerBass = "R. Gankema" +bassglobal = {} +bassA = \drummode { + \repeat unfold 3 { + d4-> d8 g d8 g d4-> r4 | + } + d4-> r4 r4 d4 g4 | +} \ No newline at end of file diff --git a/5-4_marches/cullen_bay/notes.side.hmpd.ily b/5-4_marches/cullen_bay/notes.side.hmpd.ily new file mode 100644 index 0000000..c2f6b24 --- /dev/null +++ b/5-4_marches/cullen_bay/notes.side.hmpd.ily @@ -0,0 +1,123 @@ +% 5/4 Cullen Bay +% Side +\version "2.18.2" +composerSide = "R. Gankema" +sideglobal = { + \eighthBeaming +} + +% Music +snareEnd = \drummode { + \tutti { + d8.->) g16 + d8:32( g16.) d32-> + g16. g32 \flam d8-> + g16. d32:128( d16.) g32 + d8:32( g) + | + \flam d8-> d8:32( + \triplet { g16) d g } \flam d8-> + } + g16. d32-> g16. g32 + \flam d8-> d16. g32-> + d16. d32 \flam g8-> + | + \tutti { + \flam d8.-> g16 + d8 \flam d16.-> g32 + \triplet { d16 g d } \flam g8-> + d4:32(\< d4)\! + } + | +} +snareA = \drummode { + \flam d8-> d8:32( + \triplet { g16) d g } \flam d8-> + g16. d32-> g16. g32 + \flam d8-> d16. g32-> + d16. d32 \flam g8-> + | + \tutti { + \flam d8.->) g16 + d8:32( g16.) d32-> + g16. g32 \flam d8-> + g16. d32:128( d16.) g32 + d8:32( g) + | + \flam d8-> d8:32( + \triplet { g16) d g } \flam d8-> + } + g16. d32-> g16. g32 + \flam d8-> d16. g32-> + d16. d32 \flam g8-> + | + \tutti { + \flam d8.-> g16 + d8 \flam d16.-> g32 + \triplet { d16 g d } \flam g8-> + d4:32(\< d4)\! + } + | +} + +snareB = \drummode { + d8:32( g16.) d32-> + g16. g32 d8:32( + g16.) d32-> g16. g32 + \flam d4-> + \tutti { + d4:32( + | + d8.->) g16 + d8:32( g16.) d32-> + g16. g32 \flam d8-> + g16. d32:128( d16.) g32 + d8:32( g) + | + \flam d8-> d8:32( + \triplet { g16) d g } \flam d8-> + } + g16. d32-> g16. g32 + \flam d8-> d16. g32-> + d16. d32 \flam g8-> + | + \tutti { + \flam d8.-> g16 + d8 \flam d16.-> g32 + \triplet { d16 g d } \flam g8-> + d4:32(\< d4)\! + } + | +} + +snareC = \drummode { \snareA } + +snareD = \drummode { + \flam d16.-> g32 d16. \flam g32-> + d16. g32 \flam d16.-> g32 + d16. \flam g32-> d16. g32 + \flam d4-> + \tutti { + d4:32( + | + d8.->) g16 + d8:32( g16.) d32-> + g16. g32 \flam d8-> + g16. d32:128( d16.) g32 + d8:32( g) + | + \flam d8-> d8:32( + \triplet { g16) d g } \flam d8-> + } + g16. d32-> g16. g32 + \flam d8-> d16. g32-> + d16. d32 \flam g8-> + | + \tutti { + \flam d8.-> g16 + d8 \flam d16.-> g32 + \triplet { d16 g d } \flam g8-> + d4:32(\< d4)\! + } + | +} \ No newline at end of file diff --git a/5-4_marches/cullen_bay/notes.tenor.hmpd.ily b/5-4_marches/cullen_bay/notes.tenor.hmpd.ily new file mode 100644 index 0000000..d724dd7 --- /dev/null +++ b/5-4_marches/cullen_bay/notes.tenor.hmpd.ily @@ -0,0 +1,17 @@ +% 5/4 Cullen Bay +% Tenor +\version "2.18.2" +composerTenor = "R. Gankema" +tenorglobal = {} +tenorA = \drummode { + d4-> d8 g d8 g d8-> g d8 g | + d4-> d8 g d8 g d8 g d8 g | + d4-> d8 g d8 g d8-> g d8 g | + d4-> d8 g d8 g d4 g4 | +} +tenorB = \drummode { + d8 g d8 g d8 g d4 r4 | + d4-> d8 g d8 g d8 g d8 g | + d4-> d8 g d8 g d8-> g d8 g | + d4-> d8 g d8 g d4 g4 | +} diff --git a/5-4_marches/cullen_bay/side.hmpd.ly b/5-4_marches/cullen_bay/side.hmpd.ly new file mode 100644 index 0000000..4f71a19 --- /dev/null +++ b/5-4_marches/cullen_bay/side.hmpd.ly @@ -0,0 +1,33 @@ +\version "2.18.2" + +\include "lilydrum.ly" + +\include "./config.ily" +\include "./notes.side.hmpd.ily" + + +\score { + \new PipeBandDrumStaff { + \global + \sideglobal + << + { + \repeat unfold 4 { + \repeat volta 2 { \halfline \break \halfline } \break + } + } + { + \snareA + \snareB + \snareC + \snareD + } + >> + } + \header { + title = \markup \column { \title \smaller "Holland Massed P&D" } + meter = \meter + instrument = \instrumentSide + composer = \composerSide + } +} diff --git a/5-4_marches/cullen_bay/tenor.hmpd.ly b/5-4_marches/cullen_bay/tenor.hmpd.ly new file mode 100644 index 0000000..bb2f6dc --- /dev/null +++ b/5-4_marches/cullen_bay/tenor.hmpd.ly @@ -0,0 +1,25 @@ +\version "2.18.2" + +\include "lilydrum.ly" + +\include "./config.ily" +\include "./notes.tenor.hmpd.ily" + +title = \markup { \title \normalsize "(HMPD)" } + +\score { + \new PipeBandDrumStaff { + \global + \tenorglobal + << + { \repeat unfold 4 { \repeat volta 2 { \line } \break} } + { \tenorA \tenorB \tenorA \tenorB } + >> + } + \header { + title = \markup \column { \title \smaller "Holland Massed P&D" } + meter = \meter + instrument = \instrumentTenor + composer = \composerTenor + } +}