view Syncopation models/text_bnf_syntax.txt @ 28:5de1cb45c145

Parameters setting implemented.
author csong <csong@eecs.qmul.ac.uk>
date Sun, 12 Apr 2015 22:34:35 +0100
parents 2c5df6a4a22f
children 7a1730bbf15a
line wrap: on
line source

<piece> ::=   <timesig> <line> | <piece> <line>

<tempo> ::= "QPM{" <digits> "}"

<ticks per quarter> ::= "TPQ{" <digits> "}"

<line> ::= [<barlist>] ["#" <comment-text>] "\n"

<barlist> ::= <time-info> | [<time-info>] <bar> | <barlist> <bar>

<time-info> ::= [<timesig>] [<ticks per quarter>] [<tempo>] 

<timesig> ::= "t{" <digit> "/" <digit> "}"

<bar> ::= "v{" <velocity-sequence> "}" | "y{" <note-sequence> "}"

<note-sequence> ::= <note> | <note-sequence> "," <note>

<note> ::= "(" <digits> "," <digits> "," <digits> ")"

<velocity-sequence> ::= <decimal> | <velocity-sequence> "," <decimal>

<decimal> ::= "0" | "1" | "0." <digits>

<digits> ::= <digit> | <digits> <digit>

<digit> ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"