robocup_knowledge
rpo2023/challenge_receptionist.py
Go to the documentation of this file.
1 from robocup_knowledge import knowledge_loader
2 
3 
4 common = knowledge_loader.load_knowledge("common")
5 
6 operator_name = "charlie"
7 
8 operator_drink = "iced tea"
9 
10 starting_point = "initial_pose_receptionist"
11 
12 waypoint_door = {'id': 'entry_door', 'radius': 0.5}
13 
14 waypoint_livingroom = {'id': 'receptionist_living_room', 'radius': 0.5}
15 
16 sitting_room = 'living_room' # Where people will be guided to sit and the robot will find a seat
17 
18 seats = {'arm_chair': ['on_top_of'], 'easy_chair': ['on_top_of'], 'sofa': ['on_top_of']}