From 00d272d70aaf45e8b8a27ae40374d7650540911c Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Fri, 8 Feb 2019 15:29:19 +0100 Subject: [PATCH] Added Green Hills and When the Battle --- 3-4_marches/green_hills_of_tyrol/config.ily | 18 ++++++ .../green_hills_of_tyrol/notes.pipes.ily | 31 ++++++++++ 3-4_marches/green_hills_of_tyrol/pipes.ly | 56 +++++++++++++++++++ .../when_the_battle_is_over/config.ily | 18 ++++++ .../when_the_battle_is_over/notes.pipes.ily | 31 ++++++++++ 3-4_marches/when_the_battle_is_over/pipes.ly | 56 +++++++++++++++++++ 6 files changed, 210 insertions(+) create mode 100644 3-4_marches/green_hills_of_tyrol/config.ily create mode 100644 3-4_marches/green_hills_of_tyrol/notes.pipes.ily create mode 100644 3-4_marches/green_hills_of_tyrol/pipes.ly create mode 100644 3-4_marches/when_the_battle_is_over/config.ily create mode 100644 3-4_marches/when_the_battle_is_over/notes.pipes.ily create mode 100644 3-4_marches/when_the_battle_is_over/pipes.ly diff --git a/3-4_marches/green_hills_of_tyrol/config.ily b/3-4_marches/green_hills_of_tyrol/config.ily new file mode 100644 index 0000000..f4b187b --- /dev/null +++ b/3-4_marches/green_hills_of_tyrol/config.ily @@ -0,0 +1,18 @@ +\version "2.19.0" +%% Globals +global = { + \key d \major + \time 3/4 + } +confTempo = { + \tempo 4 = 80 + } +%% Format +part = { \partial 8 \grace{s4.} s8 } +measure = { \grace {s1} s2. | } +halfline = { \repeat unfold 4 \measure } +line = { \repeat unfold 2 { \halfline } } + +%% Headers +title = "The Green Hills of Tyrol" +meter = "Retreat" diff --git a/3-4_marches/green_hills_of_tyrol/notes.pipes.ily b/3-4_marches/green_hills_of_tyrol/notes.pipes.ily new file mode 100644 index 0000000..9f7303a --- /dev/null +++ b/3-4_marches/green_hills_of_tyrol/notes.pipes.ily @@ -0,0 +1,31 @@ +% 3/4 Green Hills of Tyrol +% Pipes +\version "2.18.2" +composerPipes = "PM J. MacLeod" +arrangerPipes = "1936" +pipeglobal = { + \bagpipeKey +} +% Music +pipesA = { + \grg a8. [ b16 ] \grip c4 \dblc c8 [ \gre a8 ] + \grg c8 [ \thrwd d8 ] \dble e4 \gra e8 [ f8 ] + \dblc c8 [ f8 ] \dble e8. [ c16 ] \grg b4 + \grip b8 [ f8 ] \dble e8. [ c16 ] \grG a4 + + \grg a8. [ b16 ] \grip c4 \dblc c8 [ \gre a8 ] + \grg c8 [ \thrwd d8 ] \dble e4 \gra e8 [ f8 ] + \dblc c8 [ f8 ] \dble e8. [ c16 ] \grg b4 + \dblb b8 [ \grG a8 ] \dblc c8. [ b16 ] \grG a4 +} +pipesB = { + \dblc c8 [ e8 ] \dblA A4 \grg A4 + \grf g8 [ f8 ] \dblf f8 [ e8 ] \gra e4 + \grg e8. [ f16 ] \dble e8 [ d8 ] \dbld d4 + \grg d8. [ e16 ] \dbld d8 [ c8 ] \grip c4 + + \dblc c8 [ e8 ] \dblA A4 \grg A4 + \grf g8 [ f8 ] \dblf f8 [ e8 ] \gra e4 + \grg e8. [ f16 ] \dble e4 \gra e8. [ d16 ] + \grg c8 [ d8 ] \dble e2 +} diff --git a/3-4_marches/green_hills_of_tyrol/pipes.ly b/3-4_marches/green_hills_of_tyrol/pipes.ly new file mode 100644 index 0000000..d52381c --- /dev/null +++ b/3-4_marches/green_hills_of_tyrol/pipes.ly @@ -0,0 +1,56 @@ +\version "2.18.2" + +\include "bagpipe.ly" + +\include "./config.ily" +\include "./notes.pipes.ily" + +\score { + \new Staff { + \global + \pipeglobal + << + \new NullVoice = "format" { + \repeat volta 2 { + \line + } + \break + \repeat volta 2 { + \line + } + }%Format + + \new Voice = "pipes" { + \pipesA + + \pipesB + } + >> + } + \header { + title = \title + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +} +\score { + \new Staff { \global \pipeglobal + \set Staff.midiInstrument = #"bagpipe" + %%Tune + \pipesA + \pipesA + + \pipesB + \pipesB + } + \midi { \confTempo } + \header { + title = \title + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +} diff --git a/3-4_marches/when_the_battle_is_over/config.ily b/3-4_marches/when_the_battle_is_over/config.ily new file mode 100644 index 0000000..57bd9fa --- /dev/null +++ b/3-4_marches/when_the_battle_is_over/config.ily @@ -0,0 +1,18 @@ +\version "2.19.0" +%% Globals +global = { + \key d \major + \time 3/4 + } +confTempo = { + \tempo 4 = 80 + } +%% Format +part = { \partial 8 \grace{s4.} s8 } +measure = { \grace {s1} s2. | } +halfline = { \repeat unfold 4 \measure } +line = { \repeat unfold 2 { \halfline } } + +%% Headers +title = "When the Battle is Over" +meter = "Retreat" diff --git a/3-4_marches/when_the_battle_is_over/notes.pipes.ily b/3-4_marches/when_the_battle_is_over/notes.pipes.ily new file mode 100644 index 0000000..b2ef2ba --- /dev/null +++ b/3-4_marches/when_the_battle_is_over/notes.pipes.ily @@ -0,0 +1,31 @@ +% 3/4 When the Battle is Over +% Pipes +\version "2.18.2" +composerPipes = "" +arrangerPipes = "1936" +pipeglobal = { + \bagpipeKey +} +% Music +pipesA = { + \grg a8. [ b16 ] \grip c4 \dblA A4 | + \hdblf f8 [ e8 ] \dblc c4 \grG a4 | + \grg a8. [ b16 ] \grip c4 \dble e8. [ c16 ] | + \dblb b8 [ \grG a8 ] \grip b2 | + + \grg a8. [ b16 ] \grip c4 \dblA A4 | + \hdblf f8 [ e8 ] \dblc c4 \grG a4 | + \grg a8. [ b16 ] \grip c4 \grg e8. [ c16 ] | + \grg b8. [ c16 ] \grG a2 +} +pipesB = { + \dble e8. [ c16 ] \dblb b4 \grG a4 | + \dblA A8. [ g16 ] \hdblf f4 \grg e4 | + \grg a8. [ b16 ] \grip c4 \grg e8. [ c16 ] | + \dblb b8 [ \grG a8 ] \grip b2 | + + \dble e8. [ c16 ] \dblb b4 \grG a4 | + \dblA A8. [ g16 ] \hdblf f4 \grg e4 | + \grg a8. [ b16 ] \grip c4 \grg e8. [ c16 ] | + \grg b8. [ c16 ] \grG a2 +} diff --git a/3-4_marches/when_the_battle_is_over/pipes.ly b/3-4_marches/when_the_battle_is_over/pipes.ly new file mode 100644 index 0000000..d52381c --- /dev/null +++ b/3-4_marches/when_the_battle_is_over/pipes.ly @@ -0,0 +1,56 @@ +\version "2.18.2" + +\include "bagpipe.ly" + +\include "./config.ily" +\include "./notes.pipes.ily" + +\score { + \new Staff { + \global + \pipeglobal + << + \new NullVoice = "format" { + \repeat volta 2 { + \line + } + \break + \repeat volta 2 { + \line + } + }%Format + + \new Voice = "pipes" { + \pipesA + + \pipesB + } + >> + } + \header { + title = \title + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +} +\score { + \new Staff { \global \pipeglobal + \set Staff.midiInstrument = #"bagpipe" + %%Tune + \pipesA + \pipesA + + \pipesB + \pipesB + } + \midi { \confTempo } + \header { + title = \title + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +}