summaryrefslogtreecommitdiff
path: root/03-circus/parts/stick.ly
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2015-10-16 22:19:03 +0200
committerrekado <rekado@elephly.net>2015-10-17 23:03:34 +0200
commit86ef2a0a16898d390654d51a8a61463968fa3d38 (patch)
tree01a79cbd271b92a91b574e73c1f655eb41f4aa42 /03-circus/parts/stick.ly
parent11bbd87437865fd821c267007ef8efd83d2ab1e7 (diff)
circus: move to subdir.
Diffstat (limited to '03-circus/parts/stick.ly')
-rw-r--r--03-circus/parts/stick.ly58
1 files changed, 58 insertions, 0 deletions
diff --git a/03-circus/parts/stick.ly b/03-circus/parts/stick.ly
new file mode 100644
index 0000000..666f791
--- /dev/null
+++ b/03-circus/parts/stick.ly
@@ -0,0 +1,58 @@
+stickDance = \relative c' {
+ \time 5/8
+ r8 b cis d fis |
+ \time 5/4
+ g4. fis16 dis e4
+ \tuplet 3/2 { fis,8 c' dis } g4 |
+ fis4. e16 d b4
+ \tuplet 3/2 { f8 b d }
+ fis4
+
+ \time 3/4
+ e ais,,16 d fis8 g gis
+ d' cis ais4 r4
+}
+
+stickHalfTimeFeel = \relative c' {
+ \time 2/4
+ b8 d r b16 d |
+ \time 3/4
+ fis8-. r8*4 b,16 d
+ \time 2/4
+ fis g fis8 e16 d cis b d cis c b
+ \tuplet 3/2 { fis8 g b } |
+ ais8 r8. g16 a ais d4 r8*5
+ d,4 dis eis fis r
+}
+
+stick = {
+ \set Staff.midiInstrument = #"electric guitar (jazz)"
+ \key cis \minor
+
+ %% count-in
+ \time 2/4 { R2 }
+
+ %% intro
+ { R2*12 }
+ { R2*11 } { R2*4 }
+
+ %% TODO solo
+ \repeat unfold 2 {
+ \time 2/4 R2*3
+ \time 3/4 R2.
+ \time 2/4 R2*5
+ }
+
+ %% TODO spooky
+ \key fis \minor
+ \repeat unfold 2 {
+ \time 2/4 R2*3
+ \time 3/4 R2.
+ \time 2/4 R2*5
+ }
+
+ \key b \minor
+ \stickHalfTimeFeel
+ \stickHalfTimeFeel
+ %%\stickDance
+}