Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import Distribution.Simple
  2. import Euterpea
  3.  
  4. helm_output_id = 1
  5. simple_synth_output_id = 2
  6.  
  7.  
  8.  
  9. -- MOTYW 1
  10.  
  11. m1Hook = instrument AcousticGuitarNylon (tempo 0.8 (line ([e 1 qn, e 2 qn, e 1 hn, e 2 hn, g 1 qn, g 2 qn, g 1 hn, g 2 hn])))
  12. m1 = playDev simple_synth_output_id $ m1Hook :+: m1Hook :+: m1Hook
  13.  
  14. -- MOTYW 2
  15.  
  16. m2Intro = instrument Glockenspiel (tempo 2 (line [e 1 qn, e 2 qn, g 1 hn, e 1 qn, e 2 qn]))
  17. m2MainMelody = instrument Glockenspiel (tempo 2 (line [e 2 qn, g 2 hn, g 2 hn, e 1 qn, e 2 qn, e 1 qn, e 1 hn, e 2 qn, g 1 qn, e 1 qn, e 1 hn]))
  18. m2Outro = instrument Glockenspiel (tempo 1 (line [e 1 qn, e 2 qn, g 1 hn, e 1 qn, e 1 hn]))
  19.  
  20.  
  21. m2 = playDev simple_synth_output_id $  m2Intro :+: m2MainMelody :+: m2Outro
  22.  
  23. -- MOTYW 3
  24.  
  25. m3Hook = line [e 1 hn, e 2 hn, e 1 hn]
  26. m3Interlude = line [g 2 qn, e 1 qn, e 1 hn]
  27. m3Outro = tempo 2 (line [e 2 qn, e 2 hn, e 1 qn])
  28.  
  29. m3 = playDev helm_output_id $ m3Hook :+: m3Interlude :+: (m3Hook :=: m3Interlude) :+: m3Hook :+: (m3Hook :=: m3Interlude) :+: m3Outro
  30.  
  31. --
  32. m0 = playDev simple_synth_output_id $ instrument ElectricBassPicked (line [b 4 wn, rest wn, rest wn, rest wn, rest wn, rest wn, rest wn, rest wn, e 3 wn, e 3 dwn] )
  33.  
  34. m4 = playDev simple_synth_output_id $ instrument Percussion (line [e 3 qn, rest qn, e 3 en, rest en, e 3 en, rest en, rest wn, e 2 qn, rest qn, e 2 en, rest en, e 2 en, rest en, rest wn, rest wn, e 3 qn, rest qn, e 3 en, rest en, e 3 en, rest en, e 2 qn, rest qn, e 2 en, rest en, e 2 en, rest en])
  35.  
  36. koniec = playDev simple_synth_output_id $ instrument Celesta (line [b 3 wn, cff 5 wn ,cff 5 wn, e 4 wn, b 3 wn, e 3 wn, cff 5 wn, cff 5 wn,cff 5 wn, b 3 dwn] )
  37.  
  38.  
  39.  
  40. main = defaultMain
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement