robocup_knowledge
rwc2017/challenge_help_me_carry.py
Go to the documentation of this file.
1 commands = {
2  'follow': ["follow"], # 'Robot, follow me'
3  'follow_or_remember': ["follow", # 'Robot, follow me'
4  "remember", # 'Remember, this location is the car'
5  "car",
6  "stop"],
7  'carry': ["carry",
8  "bag",
9  "bring"]} # 'Carry this bag'
10 
11 # add or get from ~/ros/kinetic/system/src/ed_object_models/models/rwc2017/model.yaml
12 waypoints = {
13  'bedroom': {'id': "bedroom",
14  'radius': 1},
15  'livingroom': {'id': "living_room",
16  'radius': 1},
17  'kitchen': {'id': "kitchen",
18  'radius': 1},
19  'balcony': {'id': "balcony",
20  'radius': 1},
21  'corridor': {'id': "corridor",
22  'radius': 1},
23  'entrance': {'id': "entrance",
24  'radius': 1},
25  }
26 
27 waypoint_car = {'id': "car",
28  'radius': 1}
29 
30 default_item = "coke"
31 default_place = "kitchen_counter"
32 default_area = "on_top_of"
33 
34 starting_point = "help_me_carry_start"
35 rotation = 0
36 
37 time_out_seconds = 60.0
38 time_out_seconds_door = 120.0
39