Class BasicSnake


  • public class BasicSnake
    extends AbstractSimpleSnakeAI
    Basic snake. This class is the "Nessegrev" snake on Battlesnake. a basic snake that avoid wall, and other snakes' bodies. And try to go the the nearest food, by going directly to it, doesn't check if their a snake between him and the food. This snake should work only with API v1.
    Version:
    Winter 2020
    Author:
    carl.lajeunesse
    • Constructor Detail

      • BasicSnake

        public BasicSnake()
        Basic / unused constructor
      • BasicSnake

        public BasicSnake​(String gameId)
        Constructor with the gameid,
        Parameters:
        gameId - String of the gameid field receive in the start request.
    • Method Detail

      • move

        public Map<String,​String> move​(com.fasterxml.jackson.databind.JsonNode moveRequest)
        This method will be call on each move request receive by BattleSnake
        Specified by:
        move in class AbstractSnakeAI
        Parameters:
        moveRequest - Json call received
        Returns:
        map of field to be return to battlesnake, example "move" , "up"
      • bestMove

        private String bestMove​(int snakex,
                                int snakey,
                                Map<String,​Integer> possiblemove,
                                int[][] board)
        Choose the best move
        Parameters:
        snakex - snake head X
        snakey - snake head Y
        possiblemove - map of possible move
        board - the board[][]
        Returns:
        String of the best move (up , down , left or right)