robocup_knowledge
robotics_testlabs/challenge_set_a_table.py
Go to the documentation of this file.
1 from robocup_knowledge import knowledge_loader
2 common = knowledge_loader.load_knowledge("common")
3 
4 initial_pose = "initial_pose"
5 starting_pose = "gpsr_meeting_point"
6 
7 grasp_furniture_id1 = "cabinet"
8 grasp_furniture_id1_area = "on_top_of"
9 
10 grasp_furniture_id2 = "cabinet"
11 grasp_furniture_id2_area = "on_top_of"
12 
13 place_furniture_id = "dinner_table"
14 place_furniture_id_area = "on_top_of"
15 
16 
17 options = {
18  "orange": {"food": "orange", "drink1": "bifrutas", "drink2": "coke",
19  "difficult1": "fork", "difficult2": "spoon", "difficult3": "plate"},
20  "cereal": {"food": "cereal", "drink1": "fanta", "drink2": "ice_tea",
21  "difficult1": "chop_sticks", "difficult2": "spoon", "difficult3": "bowl"}
22 }