2023-11-08 10:03:40 +08:00
|
|
|
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
|
|
|
|
2023-11-08 10:03:40 +08:00
|
|
|
def __init__(self,*args):
|
|
|
|
super().__init__(*args)
|
2023-11-13 22:14:55 +08:00
|
|
|
self.info = self.get_info(*args)
|
2023-11-08 10:03:40 +08:00
|
|
|
|
2023-11-13 14:53:00 +08:00
|
|
|
@classmethod
|
|
|
|
def get_info(self,*arg):
|
|
|
|
return None
|