self.value = NumberDef(element.text)
def __call__(self, params, rank):
- return self.value(params, rank)
+ return (self.value(params, rank), self.type)
def __repr__(self):
return "%s(%r, type=%r)" % (
self.value = NumberDef(element.text)
def __call__(self, params, rank):
- return self.value(params, rank)
+ return (self.value(params, rank), self.type)
def __repr__(self):
- return "%s(%r, type=%r)" % (
- type(self).__name__, self.value, self.type)
+ return "%s(%r, type=%r)" % (type(self).__name__, self.value, self.type)
class ChangeSpeed(object):
"""Speed change over time."""
def __call__(self, params, rank):
frames = self.term(params, rank)
- horizontal = self.horizontal and self.horizontal(params, rank)
- vertical = self.vertical and self.vertical(params, rank)
+ horizontal = self.horizontal and (
+ self.horizontal(params, rank), self.horizontal.type)
+ vertical = self.vertical and (
+ self.vertical(params, rank), self.vertical.type)
return frames, horizontal, vertical
def __repr__(self):
def __call__(self, params, rank):
actions = []
for action in self.actions:
- try:
- actions.append((action.params(params), action.action))
- except AttributeError:
- actions.append((params, action))
- return (self.direction and self.direction(params, rank),
- self.speed and self.speed(params, rank),
- actions)
+ actions.append(action(params, rank))
+ return (
+ self.direction and self.direction(params, rank),
+ self.speed and self.speed(params, rank),
+ actions)
def __repr__(self):
return "%s(direction=%r, speed=%r, actions=%r)" % (