RoboWaiter/robowaiter/behavior_lib/cond/CustomerServed.py

25 lines
649 B
Python
Raw Normal View History

2023-11-18 12:07:30 +08:00
import py_trees as ptree
from typing import Any
from robowaiter.behavior_lib._base.Cond import Cond
import itertools
class CustomerServed(Cond):
can_be_expanded = True
def __init__(self,*args):
super().__init__(*args)
def _update(self) -> ptree.common.Status:
# if self.scene.status?
if self.name in self.scene.state["condition_set"]:
return ptree.common.Status.SUCCESS
else:
return ptree.common.Status.FAILURE
# if self.scene.state['chat_list'] == []:
# return ptree.common.Status.FAILURE
# else:
# return ptree.common.Status.SUCCESS