robocup_knowledge
src
robocup_knowledge
environments
rwc2019
rwc2019/challenge_receptionist.py
Go to the documentation of this file.
1
from
robocup_knowledge
import
knowledge_loader
2
common = knowledge_loader.load_knowledge(
"common"
)
3
4
operator_name =
"john"
5
6
starting_point =
"receptionist_start"
7
8
waypoint_door = {
'id'
:
'look_at_entry_door_wp'
,
'radius'
: 0.5}
# Somewhere facing the door to where ppl enter
9
10
waypoint_livingroom = {
'id'
:
'living_room'
,
'radius'
: 0.5}
# From where to find John
11
12
sitting_room =
'living_room'
# Where people will be guided to sit and the robot will find a seat
13
14
seats = [
'couch'
,
'armchair'
]
# List of seats to check for empty-ness. These need an 'on_top_of' volume for the person to sit in
Generated on Sat Apr 26 2025 04:36:29 for robocup_knowledge by
1.8.17