From 074ae13720ce7d1dfaab75138962f23948627eaf Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Mon, 6 Jul 2020 01:38:54 +0200 Subject: [PATCH] New Tune: Stumpie --- strathspeys/stumpie/config.ily | 18 +++++++++ strathspeys/stumpie/notes.pipes.ily | 31 +++++++++++++++ strathspeys/stumpie/pipes.ly | 62 +++++++++++++++++++++++++++++ 3 files changed, 111 insertions(+) create mode 100644 strathspeys/stumpie/config.ily create mode 100644 strathspeys/stumpie/notes.pipes.ily create mode 100644 strathspeys/stumpie/pipes.ly diff --git a/strathspeys/stumpie/config.ily b/strathspeys/stumpie/config.ily new file mode 100644 index 0000000..491e8fa --- /dev/null +++ b/strathspeys/stumpie/config.ily @@ -0,0 +1,18 @@ +\version "2.19.0" +%% Globals +global = { + \key a \mixolydian + \time 4/4 + } +confTempo = { + \tempo 4 = 120 + } +%% Format +part = { \partial 8 \grace{s4.} s8 } +measure = { \grace {s1} s1 | } +halfline = { \repeat unfold 4 \measure } +line = { \repeat unfold 2 { \halfline } } + +%% Headers +title = "Stumpie" +meter = "Strathspey" diff --git a/strathspeys/stumpie/notes.pipes.ily b/strathspeys/stumpie/notes.pipes.ily new file mode 100644 index 0000000..5a32188 --- /dev/null +++ b/strathspeys/stumpie/notes.pipes.ily @@ -0,0 +1,31 @@ +% 4/4 Stumpie +% Pipes +\version "2.18.2" +composerPipes = "" +arrangerPipes = "" +pipeglobal = { + \key a \mixolydian +} +% Music +pipesA = { + d8 | + c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 | + c16 [ e8. ] \dblA A8. [ e16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] | + c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 | + c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8 +} + +pipesBA = { + d8 | + \grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] | + \grg c16 [ e8. ] \dble e8. [ c16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] | + \grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] | + \grg c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8 +} +pipesBB = { + d8 | + \grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] | + \grg c16 [ e8. ] \dble e8. [ c16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] | + c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 | + c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8 +} diff --git a/strathspeys/stumpie/pipes.ly b/strathspeys/stumpie/pipes.ly new file mode 100644 index 0000000..13a868f --- /dev/null +++ b/strathspeys/stumpie/pipes.ly @@ -0,0 +1,62 @@ +\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 { + \part + \halfline + } + \break + \part + \line + \bar "|." + }%Format + \new Voice = "pipes" { + \pipesA s8 + + \pipesBA + \pipesBB + } + >> + } + \header { + title = \title + subtitle = \subtitle + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +} +\score { + \new Staff { \global \pipeglobal + \set Staff.midiInstrument = #"bagpipe" + %%Tune + \unfoldRepeats { + \repeat volta 2 { + \partial 8 + \pipesA + } + \pipesBA + \pipesBB + } + } + \midi { \confTempo } + \header { + title = \title + subtitle = \subtitle + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +}