X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml%2Fimpl.py;fp=bulletml%2Fimpl.py;h=8ef78abd7f0863f65fb379f812809e9bfdfde92e;hp=836fb410c4efbaaafec9a1c60c7d90b2b7bf50e9;hb=e0a48bf90fd856cb7009eb2140187145c7d0ebaf;hpb=ed0fa877fb0b846eb6227b0e6e4b88ca6e330ef8 diff --git a/bulletml/impl.py b/bulletml/impl.py index 836fb41..8ef78ab 100644 --- a/bulletml/impl.py +++ b/bulletml/impl.py @@ -4,8 +4,6 @@ from __future__ import division from math import atan2, sin, cos -from bulletml.parser import ActionDef, ActionRef - __all__ = ["Action", "Bullet"] class Action(object): @@ -48,10 +46,6 @@ class Action(object): return "%s(pc=%r, actions=%r)" % ( type(self).__name__, self.pc, self.actions) - def Child(self, action, params, rank, repeat=1): - actions, params = action(params, rank) - return type(self)(self, actions, params, rank, repeat) - def vanish(self): """End this action and its parents.""" if self.parent: @@ -80,8 +74,8 @@ class Action(object): owner.speed += self.speed if self.direction_frames > 0: - # I'm still not sure what the aim check is supposed to do. self.direction_frames -= 1 + # I'm still not sure what the aim check is supposed to do. if self.aiming and self.direction_frames <= 0: owner.direction += owner.aim else: @@ -120,13 +114,7 @@ class Action(object): self.pc = 0 action = self.actions[self.pc] - if isinstance(action, (ActionDef, ActionRef)): - child = self.Child(action, s_params, rank) - owner.replace(self, child) - child.step(owner, created) - break - - elif action(owner, self, s_params, rank, created): + if action(owner, self, s_params, rank, created): break class Bullet(object): @@ -171,10 +159,8 @@ class Bullet(object): def FromDocument(cls, doc, x=0, y=0, direction=0, speed=0, target=None, params=(), rank=0.5, Action=Action): """Construct a new Bullet from a loaded BulletML document.""" - actions = [action(params, rank) for action in doc.actions] - # New bullets reset the parent hierarchy. - actions = [Action(None, action, params, rank) - for action, params in actions] + actions = [action(None, Action, params, rank) + for action in doc.actions] return cls(x=x, y=y, direction=direction, speed=speed, target=target, actions=actions, rank=rank)