Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(194)

Unified Diff: python/musicxml.py

Issue 286480043: Musicxml: Fix musicxml.py for Reg Test 42a (Closed)
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: python/musicxml.py
diff --git a/python/musicxml.py b/python/musicxml.py
index 6eb3b45aba21ca1aa89a0fc7fdf96373b649d4aa..a061b6ea6eee0ba2deec281554413a061e978242 100644
--- a/python/musicxml.py
+++ b/python/musicxml.py
@@ -143,6 +143,7 @@ class Music_xml_node (Xml_node):
Xml_node.__init__ (self)
self.duration = Rational (0)
self.start = Rational (0)
+ self.voice_id = None;
class Work (Xml_node):
def get_work_information (self, tag):
@@ -282,11 +283,11 @@ class Unpitched (Music_xml_node):
class Measure_element (Music_xml_node):
def get_voice_id (self):
- voice_id = self.get_maybe_exist_named_child ('voice')
- if voice_id:
- return voice_id.get_text ()
+ voice = self.get_maybe_exist_named_child ('voice')
+ if voice:
+ return voice.get_text ()
else:
- return None
+ return self.voice_id;
def is_first (self):
# Look at all measure elements (previously we had self.__class__, which
@@ -657,7 +658,25 @@ class Part (Music_xml_node):
measure_start_moment = now
measure_position = Rational (0)
+ voice_id = None;
+ assign_to_next_voice = []
for n in m.get_all_children ():
+ # assign a voice to all measure elements
+ if (n.get_name() == 'backup'):
+ voice_id = None;
+
+ if isinstance(n, Measure_element):
+ if n.get_voice_id ():
+ voice_id = n.get_voice_id ()
+ for i in assign_to_next_voice:
+ i.voice_id = voice_id
+ assign_to_next_voice = []
+ else:
+ if voice_id:
+ n.voice_id = voice_id
+ else:
+ assign_to_next_voice.append (n)
+
# figured bass has a duration, but applies to the next note
# and should not change the current measure position!
if isinstance (n, FiguredBass):
@@ -862,15 +881,10 @@ class Part (Music_xml_node):
continue
if isinstance (n, Direction):
- staff_id = n.get_maybe_exist_named_child (u'staff')
- if staff_id:
- staff_id = staff_id.get_text ()
- if staff_id:
- dir_voices = staff_to_voice_dict.get (staff_id, voices.keys ())
+ if (n.voice_id):
+ voices[n.voice_id].add_element (n)
else:
- dir_voices = voices.keys ()
- for v in dir_voices:
- voices[v].add_element (n)
+ assign_to_next_note.append (n)
continue
if isinstance (n, Harmony) or isinstance (n, FiguredBass):
@@ -1069,7 +1083,7 @@ class Grace (Music_xml_node):
class Staff (Music_xml_node):
pass
-class Direction (Music_xml_node):
+class Direction (Measure_element):
pass
class DirType (Music_xml_node):
pass
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b