robocup_knowledge
rwc2019/challenge_serving_drinks.py
Go to the documentation of this file.
1 # SERVING DRINKS KNOWLEDGE FILE ROBOTICS_TESTLABS
2 
3 # Bar where the drinks are located
4 #TODO:Check
5 bar_id = "display_cabinet"
6 
7 # Room where the party takes place, i.e., where the robot should look for people
8 #TODO:Check
9 room_id = "living_room"
10 
11 # Default guest
12 operator_name = "default_guest"
13 
14 # Starting location
15 starting_point = "serving_drinks_initial"
16 
17 # Number of drinks to be served
18 NR_DRINKS = 3
19 
20 # Maximum number of unavailable drinks at the start of the challenge
21 MAX_UNAVAILABLE_DRINKS = 1