Example #1
0
 /**
  * Determine a roster for the next round from the current game state. Input: game_state[0]: team
  * score game_state[1]: opponent team score game_state[2]: game round number game_state[3]: row
  * number of the ball game_state[4 ]-[ 29]: team foosplayer row positions game_state[30]-[ 55]:
  * team foosplayer fatigues game_state[56]-[ 81]: opponent foosplayer row positions
  * game_state[81]-[107]: opponent foosplayer fatigues Output: roster[0]-[NUM_FOOSPLAYERS-1]: team
  * foosplayer row positions for next round
  */
 public static int[] new_move(int[] game_state) {
   // Trivial strategy, null move
   return Strategies.movePlayerTowardBall(game_state);
 }