RoboWaiter/robowaiter/behavior_lib/_base/Act.py

17 lines
541 B
Python
Raw Normal View History

from robowaiter.behavior_lib._base.Behavior import Bahavior
class Act(Bahavior):
2023-11-08 15:28:01 +08:00
print_name_prefix = "act "
2023-11-09 16:07:02 +08:00
type = 'Act'
2023-11-13 22:14:55 +08:00
all_place = {'Bar', 'WaterTable', 'CoffeeTable', 'Bar2', 'Table1', 'Table2', 'Table3'}
all_object = {'Coffee', 'Water', 'Dessert', 'Softdrink', 'BottledDrink', 'Yogurt', 'ADMilk', 'MilkDrink', 'Milk',
'VacuumCup'}
2023-11-08 15:28:01 +08:00
def __init__(self,*args):
super().__init__(*args)
2023-11-13 22:14:55 +08:00
self.info = self.get_info(*args)
@classmethod
def get_info(self,*arg):
return None