robocup_knowledge
rgo2018/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 intermediate_1 = "registration_table1"
5 
6 initial_pose = "initial_pose"
7 starting_pose = "gpsr_meeting_point"
8 starting_point = "initial_pose"
9 
10 grasp_furniture_id1 = "couch_table"
11 grasp_furniture_id1_area = "on_top_of"
12 
13 grasp_furniture_id2 = "kitchen_cabinet"
14 grasp_furniture_id2_area = "on_top_of"
15 
16 place_furniture_id = "kitchen_table"
17 place_furniture_id_area = "on_top_of"
18 
19 # options = {
20 # "fries": ["fries", "coke", "aquarius", "fork", "spoon", "plate"],
21 # "curry": ["curry", "green_tea", "cold_brew", "chop_sticks", "spoon", "bowl"]
22 # }
23 
24 options = {
25  "apple": {"drink1": "coke", "drink2": "mixdrink", "food": "apple",
26  "difficult1": "fork", "difficult2": "spoon", "difficult3": "plate"},
27  "noodles": {"drink1": "coke", "drink2": "mixdrink", "food": "noodles",
28  "difficult1": "fork", "difficult2": "spoon", "difficult3": "plate"}
29 }
30