示例#1
0
文件: goalie.py 项目: alon/burst
 def __init__(self, actions):
     InitialBehavior.__init__(self, actions=actions, name=self.__class__.__name__, initial_pose=poses.SIT_POS)
     self._world.ball.shouldComputeIntersection = True
     self.targetFinder = TargetFinder(actions=self._actions, targets=[self._world.ball], start=False)
     self.targetFinder.setOnTargetFoundCB(self.targetFound)
     self.targetFinder.setOnTargetLostCB(self.targetLost)
     self.targetFinder.setOnSearchFailedCB(self.searchFailed)
示例#2
0
 def __init__(self, actions):
     InitialBehavior.__init__(self, actions=actions, name=self.__class__.__name__)
示例#3
0
文件: walkTester.py 项目: alon/burst
 def __init__(self, actions):
     InitialBehavior.__init__(self, actions=actions, name=self.__class__.__name__, initial_pose=poses.STRAIGHT_WALK_INITIAL_POSE)
示例#4
0
 def __init__(self, actions):
     InitialBehavior.__init__(self, actions=actions, name=self.__class__.__name__, initial_pose=poses.SIT_POS)
示例#5
0
 def __init__(self, actions):
     InitialBehavior.__init__(self, actions=actions, name=self.__class__.__name__, initial_pose=poses.STRAIGHT_WALK_INITIAL_POSE)
     self._ballFinder = TargetFinder(actions=actions, targets=[self._world.ball], start=False)
     self._ballFinder.setOnTargetFoundCB(self.ball_found)
     self._ballFinder.setOnTargetLostCB(self.ball_lost)