Class AbstractSquadSearch

  • All Implemented Interfaces:
    Runnable
    Direct Known Subclasses:
    SquadSearch

    public abstract class AbstractSquadSearch
    extends AbstractMCTS
    This abstract Squad search, provide basic method use in any search in battlesnake squad mode
    Version:
    Spring 2021
    Author:
    carl.lajeunesse
    • Constructor Detail

      • AbstractSquadSearch

        protected AbstractSquadSearch()
        Basic constructor
      • AbstractSquadSearch

        protected AbstractSquadSearch​(AbstractNode root,
                                      int width,
                                      int height)
        Constructor used to expand the tree once.
        Parameters:
        root - Root node
        width - Board width
        height - Board height
      • AbstractSquadSearch

        protected AbstractSquadSearch​(AbstractNode root,
                                      int width,
                                      int height,
                                      long starttime,
                                      int timeout,
                                      GameRuleset rules)
        Constructor used to expand to do the tree search.
        Parameters:
        root - Root node
        width - Board width
        height - Board height
        starttime - starting time for the search in millisecond
        timeout - the time limit to run the search
        rules - Game ruleset
    • Method Detail

      • kill

        protected void kill​(SnakeInfo death,
                            List<SnakeInfo> all)
        This method will be use to "kill" a snake
        Specified by:
        kill in class AbstractSearch
        Parameters:
        death - SnakeInfo of the snake to kill
        all - List of all snakeinfo
      • killSquad

        protected void killSquad​(SnakeInfo death,
                                 List<SnakeInfo> all)
        This method will be use to "kill" a snake in squad
        Parameters:
        death - SnakeInfo of the snake to kill
        all - List of all snakeinfo
      • createSnakeInfo

        protected SnakeInfo createSnakeInfo​(SnakeInfo snake,
                                            int newHead,
                                            AbstractNode currentNode)
        Description copied from class: AbstractSearch
        Create new SnakeInfo based on the current node and the new head square
        Specified by:
        createSnakeInfo in class AbstractSearch
        Parameters:
        snake - previous snakeInfo
        newHead - New head square
        currentNode - Previous node
        Returns:
        new SnakeInfo
      • freeSpace

        protected boolean freeSpace​(int square,
                                    List<SnakeInfo> snakes,
                                    SnakeInfo currentSnake)
        Description copied from class: AbstractSearch
        Check if the snake can move on the square
        Specified by:
        freeSpace in class AbstractSearch
        Parameters:
        square - the int sqaure
        snakes - List of all snakes
        currentSnake - current Snake
        Returns:
        boolean free to move on that square
      • freeSpaceSquad

        protected boolean freeSpaceSquad​(int square,
                                         List<SnakeInfo> snakes,
                                         SnakeInfo currentSnake)
        Check if the snake can move on the square for squad mode
        Parameters:
        square - the int square
        snakes - List of all snakes
        currentSnake - current Snake
        Returns:
        boolean free to move on that square