コード例 #1
0
ファイル: http.py プロジェクト: Rafeldp/nao-wanderer
 def do_actions_current(self, send_content, params):
     obj = wanderer.get_current_action(self.get_env())
     self.json_response(send_content, [ obj ])
コード例 #2
0
 def handleContinue(self, event, state):
     currentAction = get_current_action(self.env)
     set_current_action(self.env, NullAction())
     return [currentAction] + load_plan(self.env)
コード例 #3
0
ファイル: randomwalk.py プロジェクト: Rafeldp/nao-wanderer
 def handleContinue(self, event, state):
     currentAction = get_current_action(self.env)
     set_current_action(self.env, NullAction())
     return [currentAction]  + load_plan(self.env)
コード例 #4
0
ファイル: http.py プロジェクト: thuyminhtran/nao-wanderer
 def do_actions_current(self, send_content, params):
     obj = wanderer.get_current_action(self.get_env())
     self.json_response(send_content, [obj])