X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml-runner;h=9136f2133ff7090cf09800970df47374ae4c7e13;hp=ec6007b5738f8e570be849629cbe6406df53943f;hb=8186eda32d3764ceb7b75fac65bd968f598c4ac8;hpb=ad4a740bd87e520bc0b13c0db2c332aba54cf68f diff --git a/bulletml-runner b/bulletml-runner index ec6007b..9136f21 100755 --- a/bulletml-runner +++ b/bulletml-runner @@ -7,6 +7,19 @@ import time import pygame import bulletml +import bulletml.bulletyaml + +try: + import yaml +except ImportError: + yaml = None + +try: + import psyco +except ImportError: + pass +else: + psyco.full() def main(argv): if not argv: @@ -24,7 +37,7 @@ def main(argv): while True: filename = argv[file_idx % len(argv)] doc = bulletml.BulletML.FromDocument(open(filename, "rU")) - actions = [act([], 0.5) for act in doc.top] + actions = [act([], 0.5) for act in doc.actions] source = bulletml.Bullet( x=150, y=150, target=target, actions=actions, rank=0.5) @@ -59,7 +72,7 @@ def main(argv): elif event.key == pygame.K_RETURN: newfile = True elif event.key == pygame.K_s: - actions = [act([], 0.5) for act in doc.top] + actions = [act([], 0.5) for act in doc.actions] source = bulletml.Bullet( x=150, y=150, target=target, actions=actions, rank=0.5) @@ -88,9 +101,9 @@ def main(argv): print " Processing: %04d: %d bullets, %d active." % ( frames, total, count) if elapsed: + seconds_per_bullet = elapsed / count + bullets_per_second = count / elapsed print " %g seconds per bullet (60Hz max: %g)." % ( - seconds_per_bullet = elapsed / count - bullets_per_second = count / elapsed seconds_per_bullet, bullets_per_second / 60) screen.fill([0, 0, 0])