Class AbstractRoyaleSearch

    • Constructor Detail

      • AbstractRoyaleSearch

        protected AbstractRoyaleSearch​(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 - the game ruleset info
    • Method Detail

      • kill

        protected void kill​(SnakeInfo death,
                            List<SnakeInfo> all)
        Description copied from class: AbstractSearch
        This abstract 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
      • 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