]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/collisions.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / collisions.ly
index 2f1467326d3e1de7b2c4c01f29e8a2e2fa465146..c94254378b5b409d32fe929bcffb7a637b1f7826 100644 (file)
@@ -1,77 +1,52 @@
-\version "1.3.146"
+\version "2.16.0"
 \header{
-texidoc="
-Normal collisions. We have support for polyphony, where the
-middle voices are horizontally shifted.
+  texidoc="
+In addition to normal collision rules, there is support for polyphony, 
+where the collisions are avoided by shifting middle voices horizontally.
 "
-filename =      "collisions.ly"
-description =   "random counterpoint to test collisions"
-enteredby =     "HWN,JCN"
-copyright =     "public domain"
-Tested =        "test the Collision resolution "
 }
 
 
 twovoice =
-\notes \relative c' \context Staff \notes < 
-       \context Voice=i { \stemDown c4 c  d d e e f f }
-       \context Voice=ii { \stemUp g4 f f e e d d c } 
->
+\relative c' \context Staff  << 
+  {  g4 f f e e d d c } 
+  \\ {  c4 c  d d e e f f }
+>>
+
+twovoicechords = \context Staff  <<
+  \relative c' {
+    e4 d c b a g f
+  }\\
+  \relative c' {
+    <a c>4 <a c>4 <a c>4 <a c>4 <a c>
+    <a c> <a c>  
+  }
+>>
+
+
+threevoice = \context Staff  <<
+  { g4 f e f g a g2 } \\
+  {  c4 d e d c d es } \\
+  { e4 e e e e e e e  }
+>>
+
+hairyChord = \context Staff  \relative c''
+<<
+  e \\
+  fis, \\
+  cis' \\
+  \\
+  ais
+>>
+
+
+  {
+    \transpose c c' {
+      \twovoice
+      \twovoicechords
+      \threevoice
+    }
+    \hairyChord
+  }
+  
 
-twovoicechords = \context Staff \notes <
-       \context Voice = i \relative c' {
-               \stemUp e4 d c b a g f
-       }
-       \context Voice = ii \relative c' {
-               \stemDown <a4 c> <a4 c> <a4 c> <a4 c> <a c>
-               <a c> <a c>  
-       }
->
-
-
-threevoice =  \context Staff \notes <
-       \context Voice=i { \stemUp g4 f e f g a g2 }
-       \context Voice=ii { \stemUp \shiftOn
-               e4 e e e e e e e  }
-       \context Voice=iii { \stemDown c4 d e d c d es }
->
-
-hairyChord =  \context Staff \notes\relative c' <
-     \context Voice=one {
-\shiftOff
-       \stemUp 
-       e4 
-     }
-     
-     \context Voice=two {
-       \stemUp
-       \shiftOn
- \property Voice.NoteColumn \override #'horizontal-shift = #1
-       cis
-     }
-     
-     \context Voice=three {    \shiftOnn
-       \stemUp 
-       ais
-     }
-     
-     \context Voice=four {
-        \stemDown
-       \shiftOn
-
-       fis
-     }
->
-
-
-\score{
-       \notes \transpose c'' {
-          \twovoice
-          \twovoicechords
-       
-       \threevoice 
-        \hairyChord
-       }
-       
-%      \midi { \tempo 4:80 }
-}