1 from __future__ 
import print_function
 
    3 ''' printing shortcuts ''' 
    5     print(prefix + bcolors.OKBLUE + sentence + bcolors.ENDC)
 
    8     print(prefix + bcolors.FAIL + sentence + bcolors.ENDC)
 
   11     print(prefix + bcolors.WARNING + sentence + bcolors.ENDC)
 
   13 prefix = bcolors.HEADER + 
"[Challenge Test] " + bcolors.ENDC
 
   16 ''' waypoint used to test navigation ''' 
   17 wp_test_nav = 
"wp_test_nav1" 
   20 ''' point in the center of the living room, to filter location of humans ''' 
   23 ''' entity to inspect ''' 
   24 INSPECT_ENTITY_ID = 
"cabinet" 
   25 INSPECT_ROOM_ID = 
"kitchen" 
   27 '''Object types that can be recognized''' 
   28 obj_type_human=[
'human']
 
   29 obj_type_drinks=[
'cola', 
'fanta']