import mathdef load(list): print "Loading AI bindings" # binding format: # ( 'name of robot from .bot file', 'name of AI from script class', # {'optional constructor parameter':value, 'another':value} ) # constructor parameters: # nose - "front" of bot in radians (default 0) # invertible - can function upside-down (default False) # topspeed - speed in meters/second AI will attempt not to exceed (default 4.0) # throttle - maximum analog value AI will attempt not to exceed (default 100) # turnspeed - turning in radians/second AI will attempt not to exceed (default 2.5) # turn - maximum analog value AI will attempt not to exceed (default 60) # radius - bot radius to use for checking for hazards and walls (default 1.0)
Where does ^^this^^ go?