X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml%2Fimpl.py;fp=bulletml%2Fimpl.py;h=6e8138a042bec6374d2a21de47a3c5efb9456e88;hp=9a1aa56adda6b9fc69727a34bdd72668f63e16eb;hb=6e7423671150b704dd2accbf4b8d544744271b81;hpb=978a7d7372a25f5d2e5d4401151e20fd913bdae0 diff --git a/bulletml/impl.py b/bulletml/impl.py index 9a1aa56..6e8138a 100644 --- a/bulletml/impl.py +++ b/bulletml/impl.py @@ -134,7 +134,7 @@ class Action(object): break elif isinstance(action, (parser.FireDef, parser.FireRef)): - direction, speed, actions, offset = action(s_params, rank) + direction, speed, offset, tags, actions = action(s_params, rank) if direction: direction, type = direction if type == "aim" or type is None: @@ -175,7 +175,9 @@ class Action(object): y += off_y bullet = owner.__class__( - x, y, direction, speed, owner.target, actions, rank) + x=x, y=y, direction=direction, speed=speed, + target=owner.target, actions=actions, rank=rank, + tags=tags, Action=self.__class__) created.append(bullet) elif isinstance(action, parser.ChangeSpeed): @@ -290,7 +292,7 @@ class Bullet(object): """ def __init__(self, x=0, y=0, direction=0, speed=0, target=None, - actions=(), rank=0.5, Action=Action): + actions=(), rank=0.5, tags=(), Action=Action): self.x = self.px = x self.y = self.py = y self.mx = 0 @@ -300,7 +302,7 @@ class Bullet(object): self.vanished = False self.target = target self.rank = rank - self.tags = set() + self.tags = set(tags) # New bullets reset the parent hierarchy. self._actions = [Action(self, None, action, params, rank) for action, params in actions] @@ -310,7 +312,8 @@ class Bullet(object): params=(), rank=0.5, Action=Action): """Construct a new Bullet from a loaded BulletML document.""" actions = [a(params, rank) for a in doc.actions] - return cls(x, y, direction, speed, target, actions, rank, Action) + return cls(x=x, y=y, direction=direction, speed=speed, + target=target, actions=actions, rank=rank, Action=Action) def __repr__(self): return ("%s(%r, %r, accel=%r, direction=%r, speed=%r, "