next up previous
Next: The Goalkeeper Up: Multiagent Behaviors Previous: PositionsFormations, and Active

Run-time Evaluation of Collaborative Opportunities


One of CMUnited-97's main features is the robots' ability to collaborate by passing the ball. When in active mode, the robots use an evaluation function that takes into account teammate and opponent positions to determine whether to pass the ball or whether to shoot. In particular, as part of the formation definition, each position has a set of positions to which it considers passing. For example, a defender might consider passing to any forward or midfielder, while a forward would consider passing to other forwards, but not backwards to a midfielder or defender.

For each such position that is occupied by a teammate, the robot evaluates the pass to that position as well as evaluating its own shot. To evaluate each possible pass, the robot computes the obstruction-free-index of the two line segments that the ball must traverse if the receiver is to shoot the ball (lines b and c in Figure 7). In the case of a shot, only one line segment must be considered (line a). The value of each possible pass or shot is the product of the relevant obstruction-free-indices. Robots can be biased towards passing or shooting by further multiplying the values by a factor determined by the relative proximities of the active robot and the potential receivers to the goal. The robot chooses the pass or shot with the maximum value. The obstruction-free-index of line segment l is computed by the following algorithm (variable names correspond to those in Figure 7):

  1. obstruction-free-index = 1.
  2. For each opponent O:
  3. return obstruction-free-index.

Thus the obstruction-free-index reflects how easily an opponent could intercept the pass or the subsequent shot. The closer the opponent is to the line and the farther it is from the ball, the better chance it has of intercepting the ball.

   figure195
Figure 7: Run-time pass evaluation is based on position of opponents.



next up previous
Next: The Goalkeeper Up: Multiagent Behaviors Previous: PositionsFormations, and Active



Peter Stone
Sun Dec 7 06:55:46 EST 1997