Safe Haskell | Safe-Inferred |
---|
Synopsis
- data Track = Track {}
- default_parser :: [Track] -> Skeleton.Skeleton
- note_bottom_parser :: [Track] -> Skeleton.Skeleton
Documentation
default_parser :: [Track] -> Skeleton.Skeleton Source #
A parser figures out a skeleton based on track titles and position.
Tracks starting with >
are instrument tracks, the rest are control tracks.
A track titled "tempo" scopes over all tracks to its right.
Below that, tracks scope left to right.
This should take arguments to apply to instrument and control tracks.
TODO do something special with embedded rulers and dividers
note_bottom_parser :: [Track] -> Skeleton.Skeleton Source #
The note-bottom parser puts note tracks at the bottom:
[tempo c1 i1 c2 i2] -> [tempo1 (c1 i1) (c2 i2)]
This is useful when you don't want to invoke slicing.