From e101250f2ecc491c4f8fa4d880529f65bce20f2d Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Mon, 18 Oct 2021 21:55:16 +0200 Subject: [PATCH] New Tune: Orange and Blue --- strathspeys/orange_and_blue/config.ily | 18 +++++++ strathspeys/orange_and_blue/notes.pipes.ily | 43 +++++++++++++++++ strathspeys/orange_and_blue/pipes.ly | 53 +++++++++++++++++++++ 3 files changed, 114 insertions(+) create mode 100644 strathspeys/orange_and_blue/config.ily create mode 100644 strathspeys/orange_and_blue/notes.pipes.ily create mode 100644 strathspeys/orange_and_blue/pipes.ly diff --git a/strathspeys/orange_and_blue/config.ily b/strathspeys/orange_and_blue/config.ily new file mode 100644 index 0000000..80156a7 --- /dev/null +++ b/strathspeys/orange_and_blue/config.ily @@ -0,0 +1,18 @@ +\version "2.19.0" +%% Globals +global = { + \key d \major + \time 4/4 + } +confTempo = { + \tempo 4 = 80 + } +%% Format +part = { \partial 16 \grace{s4.} s16 } +measure = { \grace {s1} s1 | } +halfline = { \repeat unfold 4 \measure } +line = { \repeat unfold 2 { \halfline } } + +%% Headers +title = "Orange and Blue" +meter = "Strathspey" diff --git a/strathspeys/orange_and_blue/notes.pipes.ily b/strathspeys/orange_and_blue/notes.pipes.ily new file mode 100644 index 0000000..d98b057 --- /dev/null +++ b/strathspeys/orange_and_blue/notes.pipes.ily @@ -0,0 +1,43 @@ +% 4/4 Orange and Blue +% Pipes +\version "2.18.2" +composerPipes = "" +arrangerPipes = "" +pipeglobal = { + \key d \major +} +% Music +pipesA = { + A16 | + f16 d8. \slurd d4 \grg a8. d16 \slurd d4 | + \grg f8. g16 \dblA A8. f16 \thrwd d4 + + \slurd d4 | + \grg c16 e8. \gra e4 \grg c16 \grd a8. \dble e8. c16 | + \grg c4 \grip e8. c16 \grg a4 \wbirl a8. + + A16 | + f16 d8. \slurd d4 \grg a8. d16 \slurd d4 | + \grg f8. g16 \dblA A8. f16 \thrwd d4 + + \grg f8. g16 | + \dblA A8. f16 \dblg g8. e16 \grg f8. d16 \dble e8. d16 | + \grg c16 \grd a8. \grg b8. c16 \thrwd d4 \slurd d4 | +} + +pipesB = { + \grg f16 A8. \grg A4 f16 A8. \grg A4 | + \hdblf f8. g16 \dblA A8. f16 \thrwd d4 + + \slurd d4 | + \grg c16 e8. \gra e4 \grg c16 \grd a8. \dble e8. c16 | + \grg c4 \grip e8. c16 \grg a4 \wbirl a8. + + g16 | + \grg f16 A8. \grg A4 f16 A8. \grg A4 | + \hdblf f8. g16 \dblA A8. f16 \thrwd d4 + + \grg f8. g16 | + \dblA A8. f16 \dblg g8. e16 \grg f8. d16 \dble e8. d16 | + \grg c16 \grd a8. \grg b8. c16 \thrwd d4 \slurd d4 | +} diff --git a/strathspeys/orange_and_blue/pipes.ly b/strathspeys/orange_and_blue/pipes.ly new file mode 100644 index 0000000..a8e7721 --- /dev/null +++ b/strathspeys/orange_and_blue/pipes.ly @@ -0,0 +1,53 @@ +\version "2.18.2" + +\include "bagpipe.ly" + +\include "./config.ily" +\include "./notes.pipes.ily" + +\score { + \new Staff { + \global + \pipeglobal + << + \new NullVoice = "format" { + \part | + \line + \bar "||" \break + \line + \bar "|." + }%Format + \new Voice = "pipes" { + \pipesA + + \pipesB + } + >> + } + \header { + title = \title + subtitle = \subtitle + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +} +\score { + \new Staff { \global \pipeglobal + \set Staff.midiInstrument = #"bagpipe" + %%Tune + \partial 16 + \pipesA + \pipesB + } + \midi { \confTempo } + \header { + title = \title + subtitle = \subtitle + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +}