robocup_knowledge
impuls/challenge_receptionist.py
Go to the documentation of this file.
1 from robocup_knowledge import knowledge_loader
2 common = knowledge_loader.load_knowledge("common")
3 
4 operator_name = "john"
5 
6 operator_drink = "beer"
7 
8 default_guest_1_name = "adel"
9 default_guest_1_drink = "cola"
10 
11 default_guest_2_name = "morgan"
12 default_guest_2_drink = "orange_juice"
13 
14 
15 starting_point = "initial_pose"
16 
17 waypoint_door = {'id': 'entry_door', 'radius': 0.5}
18 
19 waypoint_livingroom = {'id': 'living_room', 'radius': 0.5}
20 
21 sitting_room = 'living_room' # Where people will be guided to sit and the robot will find a seat
22 
23 # seats = {'couch_long': ['on_top_of'], 'couch_short': ['on_top_of']}
24 seats = {'couch_long': ['on_top_of_couch_long_left','on_top_of_couch_long_right'], 'couch_short': ['on_top_of_couch_short_left','on_top_of_couch_short_right']}
25