robocup_knowledge
rwc2023/challenge_receptionist.py
Go to the documentation of this file.
1 from robocup_knowledge import knowledge_loader
2 
3 common = knowledge_loader.load_knowledge("common")
4 
5 operator_name = "john"
6 
7 operator_drink = "milk"
8 
9 default_guest_1_name = "adel"
10 default_guest_1_drink = "cola"
11 
12 default_guest_2_name = "morgan"
13 default_guest_2_drink = "orange_juice"
14 
15 starting_point = "initial_pose_receptionist"
16 
17 waypoint_door = {'id': 'entrance', 'radius': 0.2}
18 
19 waypoint_livingroom = {"id": "receptionist_living_room", "radius": 0.2}
20 
21 sitting_room = "living_room" # Where people will be guided to sit and the robot will find a seat
22 
23 seats = {"sofa": ["on_top_of_sofa_left", "on_top_of_sofa_right"], "chair1": ["on_top_of"], "chair2": ["on_top_of"]}