]> git.donarmstrong.com Git - lilypond.git/commitdiff
convertrules.py: tempoWholesPerMinute -> \tempo
authorDavid Kastrup <dak@gnu.org>
Wed, 29 Feb 2012 17:02:50 +0000 (18:02 +0100)
committerDavid Kastrup <dak@gnu.org>
Fri, 2 Mar 2012 11:39:56 +0000 (12:39 +0100)
python/convertrules.py

index 3ed1d18e00d3ab4756620aab7d43d3b3189a9bc5..5c94c59e1f7a88a42aa4cad91598cff460f37965 100644 (file)
@@ -3320,6 +3320,33 @@ def conv (str):
     str = re.sub (r"\\autoFootnote",
                   r"\\footnote", str)
     return str
+
+@rule((2, 15, 32), r"tempoWholesPerMinute -> \tempo")
+def conv (str):
+    def sub_tempo (m):
+        num = int (m.group (1))
+        den = int (m.group (2))
+
+        if (den & (den - 1)) != 0 :
+            return m.group (0)
+
+        # Don't try dotted forms if they result in less than 30 bpm.
+        # It is not actually relevant to get this right since this
+        # only occurs in non-printing situations
+        if den >= 16 and (num % 7) == 0 and num >= 210 :
+            return r"\tempo %d.. = %d" % (den/4, num/7)
+
+        if den >= 8 and (num % 3) == 0 and num >= 90 :
+            return r"\tempo %d. = %d" % (den/2, num/3)
+
+        return r"\tempo %d = %d" % (den, num)
+
+    str = re.sub (r"\\context\s*@?\{\s*\\Score\s+tempoWholesPerMinute\s*=\s*" +
+                  r"#\(ly:make-moment\s+([0-9]+)\s+([0-9]+)\)\s*@?\}",
+                  sub_tempo, str)
+    return str
+
+
 # Guidelines to write rules (please keep this at the end of this file)
 #
 # - keep at most one rule per version; if several conversions should be done,