X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml-runner;h=de0fa5a30f37cea8ab95f6884186f04265a35d1d;hp=21ba80e0f5da332f6b2e7b2c4bcc3eff89e7a6a0;hb=ba81e7d74da58dc8dfa47949502d2a2759c84309;hpb=573df3f5c6e2840af647994e458c9965f7594ee0;ds=sidebyside diff --git a/bulletml-runner b/bulletml-runner index 21ba80e..de0fa5a 100755 --- a/bulletml-runner +++ b/bulletml-runner @@ -23,9 +23,10 @@ def main(argv): while True: filename = argv[file_idx % len(argv)] - doc = bulletml.BulletML(open(filename, "rU")) - source = bulletml.Bullet.FromDoc( - doc, x=150, y=150, target=target, rank=0.5) + doc = bulletml.BulletML.FromDocument(open(filename, "rU")) + actions = [act([], 0.5) for act in doc.top] + source = bulletml.Bullet( + x=150, y=150, target=target, actions=actions, rank=0.5) active = set([source]) source.vanished = True @@ -58,8 +59,10 @@ def main(argv): elif event.key == pygame.K_RETURN: newfile = True elif event.key == pygame.K_s: - source = bulletml.Bullet.FromDoc( - doc, x=150, y=150, target=target, rank=0.5) + actions = [act([], 0.5) for act in doc.top] + source = bulletml.Bullet( + x=150, y=150, target=target, + actions=actions, rank=0.5) source.vanished = True active.add(source) target.x, target.y = pygame.mouse.get_pos()