summaryrefslogtreecommitdiff
path: root/04-white-noise/parts/stick.ly
blob: 2ba147983c8a46a0470089e227525d34e59e6c45 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
%% TODO
stickThunder = \relative c'' {
  a8 gis16 a8 gis16 a8 gis16 a8 gis16 a8 gis |
  a8 gis16 a8 gis16 a8 gis16 a8 gis16 a8 gis |
  a8 gis16 a8 gis16 a8 gis16 a8 gis16 a8 gis |
  d-. d-. d-. d-. d-. d-. d-. d-.            |
}

%% TODO
stickTheme = \relative c {
  fis'4. cis a' cis8*7 d2 
  gis,4. e d' cis8*7 a4 gis
  fis4. d gis a8*9 r4
  fis4. d gis e8*5 gis4 a4. r8
}

stick = {
  \set Staff.midiInstrument = #"electric guitar (jazz)"
  \key fis \minor
  \time 4/4 { R1*8 }
  %% silly but I have to mimick the repeats for the other voices to
  %% make the notes line up.
  \time 5/4 \repeat volta 2 {
    r2. r2 | r2. r2 | r2. r2 | r2. r2 |
    r2. r2 | r2. r2 | r2. r2 |
  }
  \alternative {
    {r2. r2 | }
    {r2. r2 | }
  }

  \whiteNoise
  \stickThunder
  \repeat volta 2 \stickTheme
  \stickThunder
  \repeat volta 2 \stickTheme

  %% TODO: this is terrible and I would never play this
  \repeat volta 2 \relative c' {
    <d a >2 
    <cis fis, >2 <gis' fis, >2 
    <a e, >2 d,1 cis
  }
}