From: Joe Wreschnig Date: Wed, 21 Apr 2010 05:21:09 +0000 (-0700) Subject: If: Conditional actions. X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=commitdiff_plain;h=2af7a59592e4774c3fc9be7202285c44ba9a5c6f If: Conditional actions. --- diff --git a/bulletml/parser.py b/bulletml/parser.py index 653b90f..2075ac9 100644 --- a/bulletml/parser.py +++ b/bulletml/parser.py @@ -377,6 +377,58 @@ class Repeat(object): def __repr__(self): return "%s(%r, %r)" % (type(self).__name__, self.times, self.action) +class If(object): + """Conditional actions.""" + + def __init__(self, cond, then, else_=None): + self.cond = cond + self.then = then + self.else_ = else_ + + def __getstate__(self): + if self.else_: + return [('cond', self.cond.expr), + ('then', self.then), + ('else', self.else_)] + else: + return [('cond', self.cond.expr), ('then', self.then)] + + def __setstate__(self, state): + state = dict(state) + state["else_"] = state.pop("else", None) + state["cond"] = INumberDef(state["cond"]) + self.__init__(**state) + + @classmethod + def FromXML(cls, doc, element): + """Construct using an ElementTree-style element.""" + else_ = None + for subelem in element.getchildren(): + tag = realtag(subelem) + if tag == "cond": + cond = INumberDef(subelem.text) + elif tag == "then": + then = ActionDef.FromXML(doc, subelem) + elif tag == "else": + else_ = ActionDef.FromXML(doc, subelem) + try: + return cls(cond, then, else_) + except UnboundLocalError as exc: + raise ParseError(str(exc)) + + def __call__(self, owner, action, params, rank, created): + if self.cond(params, rank): + branch = self.then + else: + branch = self.else_ + + if branch: + actions, params = branch(params, rank) + child = action.__class__(owner, action, actions, params, rank) + owner.replace(action, child) + child.step(owner, created) + return True + class Accel(object): """Accelerate over some time.""" @@ -976,3 +1028,4 @@ ActionDef.CONSTRUCTORS = dict( untag=Untag, action=ActionDef, actionRef=ActionRef) +ActionDef.CONSTRUCTORS["if"] = If diff --git a/examples/normal/twofire-if.xml b/examples/normal/twofire-if.xml new file mode 100644 index 0000000..ddc1b8f --- /dev/null +++ b/examples/normal/twofire-if.xml @@ -0,0 +1,75 @@ + + + + + + + + 10 + 20 * $rank * $rand + + + + + + + $1 + 0 + + 0 + + + $rand > 0.5 + + + + $1 + -90 + + -90 + + + + + + $1 + 90 + + 90 + + + + + + + 1 + + 3 + + 1 + 0 + + + 1 + -$2 + + 1 + + $1 + + + + 0 + 1 + + + 4 + + + + 1 + 1 + + + +