robocup_knowledge
src
robocup_knowledge
environments
rwc2017
rwc2017/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
cupboard =
"kitchen_counter"
8
cupboard_surface =
"on_top_of"
9
10
table =
"kitchen_table"
11
table_surface =
"on_top_of"
12
13
# options = {
14
# "fries": ["fries", "coke", "aquarius", "fork", "spoon", "plate"],
15
# "curry": ["curry", "green_tea", "cold_brew", "chop_sticks", "spoon", "bowl"]
16
# }
17
18
options = {
19
"fries"
: {
"food"
:
"fries"
,
"drink1"
:
"coke"
,
"drink2"
:
"aquarius"
,
20
"difficult1"
:
"fork"
,
"difficult2"
:
"spoon"
,
"difficult3"
:
"plate"
},
21
"curry"
: {
"food"
:
"green_tea"
,
"drink1"
:
"cold_brew"
,
"drink2"
:
"green_tea"
,
22
"difficult1"
:
"chop_sticks"
,
"difficult2"
:
"spoon"
,
"difficult3"
:
"bowl"
}
23
}
Generated on Sat Apr 19 2025 04:34:53 for robocup_knowledge by
1.8.17