1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 12:29:22 +02:00

New Tunes + small fixes

Banks of the Lee
Hills of Glenorchy
The Panda

fixes:
Sands of Kuwait
When the Pipers Play side
This commit is contained in:
Eric Teunis de Boone 2019-02-14 09:59:54 +01:00
parent 65870e6ff1
commit 3613a49d89
12 changed files with 435 additions and 37 deletions

View file

@ -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 = "Banks of the Lee"
meter = "Air"

View file

@ -0,0 +1,29 @@
% 3/4 Banks of the Lee
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "D. Rickard"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\repeat volta 2 {
\grg b8 d8 |
\grg e4. f8 \grg e8 d8 |
e8 \grg a8~ a4. b8 |
\grg d8 e8~ e4 \grg d8 b8 |
\grg a8 \grd G8~ G4 \grg e8 g8 |
A4. g8 A8 g8 |
e8 \grg G8~ G4. a8 |
} \alternative {
{
\grg b4. a8 \grg b8 d8 |
\dble e2
}
{
\grg b8 \grG a8~ a4. \wbirl a8 |
\gre a2
}
}
}

View file

@ -0,0 +1,40 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
\partial 4
\pipesA
\bar "|."
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 4
%\unfoldRepeats \pipesA
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}

View file

@ -8,7 +8,6 @@ pipeglobal = {
}
% Music
pipesA = {
e8 |
a4~ a8 [ \wbirl a8 ] \grg a8 [ A8 ] e16 [ f8. ]~ f4 \grg e8 [ d8 ] |
\grg G4~ G8 [ \grd G8 ] ~ G8 [ d8 ] \grG a4 ~ a4 \grg \tuplet 3/2 { f8. [ e16 d8 ] } |
\grg a4~ a8 [ \wbirl a8 ] \grg a8 [ A8 ] e16 [ f8. ] ~ f4 \grg e8 [ d8 ] |
@ -22,9 +21,9 @@ pipesA = {
pipesBA = {
\dblA A4~ A8 [ a8 ] \grg \tuplet 3/2 { a8. [ d16 A8 ] } e16 [ f8. ]~ f4 \grg e8 [ d8 ] |
\grg G4~ G8 [ \grd G8 ]~ \tuplet 3/2 { G8. [ b16 d8 ] } \grG a4~ a8 [ f8 ] \tuplet 3/2 { f8. [ e16 d8 ] } |
\grg G4~ G8 [ \grd G8 ]~ \tuplet 3/2 { G8. [ b16 d8 ] } \grG a4~ a8 [ f8 ] \grg \tuplet 3/2 { f8. [ e16 d8 ] } |
\dblA A4~ A8 [ a8 ] \grg \tuplet 3/2 { a8. [ d16 A8 ] } e16 [ f8. ]~ f4 \grg e8 [ d8 ] |
\dble e4 %{^te %} e8 [ b8 ] \grg \tuplet 3/2 { d8. [ e16 f8 ] } \dble e4~ e8 [ f8 ] \grg \tuplet 3/2 { f8. [ e16 d8 ] } |
\dble e4~ e8 [ b8 ] \grg \tuplet 3/2 { d8. [ e16 f8 ] } \dble e4~ e8 [ f8 ] \grg \tuplet 3/2 { f8. [ e16 d8 ] } |
}
pipesBBA = {
@ -37,5 +36,5 @@ pipesBBB = {
a4~ a8 [ \wbirl a8 ] \grg a8 [ A8 ] e16 [ f8. ]~ f4 \grg e8 [ d8 ] |
\grg G4~ G8 [ \grd G8 ]~ G8 [ d8 ] \grG a4~ a4 \grg \tuplet 3/2 { a8. [ b16 c8 ] } |
\thrwd d4~ d8 [ b8 ] \grg \tuplet 3/2 { d8. [ e16 f8 ] } \dble e4~ e8 [ a8 ] \grg \tuplet 3/2 { f8. [ e16 d8 ] } |
\grg d4~ d4~ d4 \slurd d4~ d4 d4
\grg d4~ d4~ d4 \slurd d4~ d4~ d4
}

View file

@ -9,31 +9,20 @@
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\part
\repeat volta 2 {
\line
}
\break
\repeat volta 2 {
\halfline
\break
} \alternative {
{\halfline \break}
\halfline
}
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesA
\repeat volta 2 {
\pipesA
}
\break
\repeat volta 2 {
\pipesBA
\break
} \alternative {
{\pipesBBA \break}
\pipesBBB
}
\bar "|."
\pipesBA
\pipesBBA
\pipesBBB
}
>>
}
\header {
title = \title
@ -47,15 +36,20 @@
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\pipesA
\pipesA
\pipesBA
\pipesBBA
\pipesBA
\pipesBBB
\unfoldRepeats {
\repeat volta 2 {
\pipesA
}
\break
\repeat volta 2 {
\pipesBA
\break
} \alternative {
{\pipesBBA \break}
\pipesBBB
}
\bar "|."
}
}
\midi { \confTempo }

View file

@ -12,7 +12,7 @@
<<
\new NullVoice = "format" {
\partial 4 s4
\repeat volta 2 {
\repeat volta 4 {
\halfline
\measure
\measure