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