Changes between Version 28 and Version 29 of ProtocolOne


Ignore:
Timestamp:
Jun 10, 2011 4:20:39 PM (13 years ago)
Author:
jherwitz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProtocolOne

    v28 v29  
    4242  {{{move(double dir, double speed, int obstacles, int priority)}}}
    4343   Moves indefinitely towards the ''dir''direction at speed ''speed''. ''obstacles'' is as above.
     44  {{{move(double[] point, double speed, int obstacles, int priority)}}}
     45   Moves to the specified ''point''. The ''point'' array should be in {x,y} form.
     46  {{{move(double dir, long time, double speed, int obstacles, int priority)}}}
     47   Moves in the specified direction for ''time''.
    4448  {{{jump(double dir, double speed, int priority)}}}
    4549   Jumps in the ''dir'' direction at speed ''speed''.
     
    7478  {{{facing(int priority)}}}
    7579   Returns the Quagent's current direction vector.
     80  {{{radar(double range, int priority)}}}
     81   Returns a list of all entities within ''range''.
     82  {{{whatIs(int entityid, int priority)}}}
     83   Returns a description of the entity specified by ''entityid''.
    7684 '''[[ProtocolOne]] Actions (compound functions)'''
    7785  {{{rotateMove(double rot, double azi, double dist, double speed, int obstacles, int priority)}}}