mirror of
https://github.com/kastdeur/bwwtolily.git
synced 2024-12-04 08:53:33 +01:00
Parse note ties of the form '^t[abcdef]'
This commit is contained in:
parent
b29a4fd5d9
commit
b9bfeed838
1 changed files with 10 additions and 2 deletions
12
bwwtolily.py
12
bwwtolily.py
|
@ -52,6 +52,8 @@ class bwwtolily :
|
|||
self.regex_strike = re.compile("str([h|l]*[abcdefg])")
|
||||
#a regex to find dots
|
||||
self.regex_dot = re.compile("'[h|l]*[abcdefg]")
|
||||
#a regex to find note ties
|
||||
self.regex_tie = re.compile("\^t[h|l]?[abcdefg]")
|
||||
#a regex to find sub repeats
|
||||
self.regex_sub_repeat = re.compile("'([0-9]+)")
|
||||
#a regex to find note slurs, not slur embellishments
|
||||
|
@ -162,7 +164,7 @@ class bwwtolily :
|
|||
self.transpose(element)
|
||||
|
||||
def lilynote(self,bwwname):
|
||||
#convert a bww notename to a lilypond notename
|
||||
'''convert a bww notename to a lilypond notename'''
|
||||
#make the notename lowercase
|
||||
notename = bwwname.lower()
|
||||
|
||||
|
@ -179,7 +181,7 @@ class bwwtolily :
|
|||
return lilynote
|
||||
|
||||
def transpose(self,element):
|
||||
#receive a bww element and return a lilypond equivalent
|
||||
'''receive a bww element and return a lilypond equivalent'''
|
||||
|
||||
#is the element a note?
|
||||
note_result = self.regex_note_info.search(element)
|
||||
|
@ -286,6 +288,12 @@ class bwwtolily :
|
|||
self.tune_elements[self.most_recent_note]+="."
|
||||
return
|
||||
|
||||
#is the element a note tie
|
||||
tie_result = self.regex_tie.search(element)
|
||||
if tie_result:
|
||||
self.tune_elements[self.most_recent_note]+="~"
|
||||
return
|
||||
|
||||
#is the element a slur?
|
||||
slur_result = self.regex_slur.search(element)
|
||||
if slur_result:
|
||||
|
|
Loading…
Reference in a new issue