Class AbstractTreeSearchSnakeAI

  • Direct Known Subclasses:
    AbstractMultiThreadSnakeAI

    public abstract class AbstractTreeSearchSnakeAI
    extends AbstractSearchSnakeAI
    Any snake using a tree-search could extend this abstract class it contains basic constant fields, related to the field name in json call from BattleSnake. Also some method that any snake must implements.
    Version:
    Spring 2022
    Author:
    carl.lajeunesse
    • Field Detail

      • lastRoot

        protected AbstractNode lastRoot
        Keep the root node from the previous move, to be able to continue search from the previous "tree"
    • Constructor Detail

      • AbstractTreeSearchSnakeAI

        protected AbstractTreeSearchSnakeAI()
        Basic and unsed constructor
      • AbstractTreeSearchSnakeAI

        protected AbstractTreeSearchSnakeAI​(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"
      • getMaxDepth

        private int getMaxDepth​(AbstractNode root)
        Check the depth of the biggest branch
        Parameters:
        root - Root node
        Returns:
        depth (int)
      • genRoot

        protected abstract AbstractNode genRoot​(com.fasterxml.jackson.databind.JsonNode moveRequest)
        Generate the root node based on the /move request
        Parameters:
        moveRequest - Json request
        Returns:
        AbstractNode the root
      • lastChance

        protected AbstractNode lastChance​(AbstractNode root)
        In a losing position, this method try to find the longest way, hpoing that the opponent make a mistake.
        Specified by:
        lastChance in class AbstractSearchSnakeAI
        Parameters:
        root - The current Root node
        Returns:
        the best AbstractNode
      • chooseBestMove

        protected AbstractNode chooseBestMove​(AbstractNode root)
        Choose the best move, based on the assumption that the opponent will always choose the best counter.
        Parameters:
        root - The current Root node
        Returns:
        the best AbstractNode
      • fillList

        private void fillList​(gnu.trove.list.array.TFloatArrayList[] upward,
                              gnu.trove.list.array.TFloatArrayList[] down,
                              gnu.trove.list.array.TFloatArrayList[] left,
                              gnu.trove.list.array.TFloatArrayList[] right,
                              AbstractNode node)
        This method fill 4 list (one for each direction ) with the score of each node based on the move direction
        Parameters:
        upward - float array list
        down - float array list
        left - float array list
        right - float array list
        node - parent node
      • logValue

        private void logValue​(gnu.trove.list.array.TFloatArrayList[] upward,
                              gnu.trove.list.array.TFloatArrayList[] down,
                              gnu.trove.list.array.TFloatArrayList[] left,
                              gnu.trove.list.array.TFloatArrayList[] right)
        Log value for each possible move, that help to debug/understand why the snake choose which move.
        Parameters:
        upward - float array list
        down - float array list
        left - float array list
        right - float array list
      • findChildNewRoot

        protected AbstractNode findChildNewRoot​(List<SnakeInfo> snakes,
                                                FoodInfo food,
                                                HazardSquare hazard)
        Check in the previous search if a child from root, is equals the current board situation.,
        Parameters:
        snakes - List of snakes
        food - Food info
        hazard - Hazard Info
        Returns:
        null or child node
      • setTimeout

        public void setTimeout​(int timeout)
        Set the move timeout
        Parameters:
        timeout - the timeout to set