robocup_knowledge
rwc2018/challenge_help_me_carry.py
Go to the documentation of this file.
1 # HELP ME CARRY KNOWLEDGE FILE RWC2018
2 
3 from robocup_knowledge import knowledge_loader
4 common = knowledge_loader.load_knowledge("common")
5 
6 starting_point = 'help_me_carry_starting_point'
7 rotation = 0
8 
9 time_out_seconds = 60.0
10 time_out_seconds_door = 120.0
11 
12 commands = {
13  'no': ['no', 'follow me'],# 'Robot, follow me'
14  'yes': ['yes', 'remember location', # 'Remember, this location is the car'
15  'here is the car',
16  'stop following', # 'Stop following me'
17  'stop following me']}
18 
19 destinations = common.location_rooms + common.location_names
20 
21 # add or get from ~/ros/kinetic/system/src/ed_object_models/models/robotics_testlabs/model.yaml
22 waypoint_car = {'id': 'car',
23  'radius': 0.5}
24 
25 default_item = 'coke'
26 default_place = 'dining_table'
27 default_area = 'in_front_of'
28 default_target_radius = 0.2
29 backup_target_radius = 0.7
30 
31 carrying_bag_pose = 'carrying_bag_pose'
32 drop_bag_pose = 'drop_bag_pose'
33 driving_bag_pose = 'driving_bag_pose'