Class LimitedMoveRoyaleSearch

  • All Implemented Interfaces:
    Runnable

    public class LimitedMoveRoyaleSearch
    extends AbstractRoyaleSearch
    This abstract Standard search based on RoyaleSearch provide methods to prevent snake to move in particular direction Royale mode
    Version:
    Summer 2021
    Author:
    carl.lajeunesse
    • Field Detail

      • leftNeck

        protected static int leftNeck
        Prevent left move if head - neck equals that amount
      • rightNeck

        protected static int rightNeck
        Prevent right move if head - neck equals that amount
      • downNeck

        protected static int downNeck
        Prevent down move if head - neck equals that amount
      • upNeck

        protected static int upNeck
        Prevent up move if head - neck equals that amount
    • Constructor Detail

      • LimitedMoveRoyaleSearch

        public LimitedMoveRoyaleSearch​(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

      • selfDestination

        protected void selfDestination​(int head,
                                       List<SnakeInfo> allSnakes,
                                       SnakeInfo snakeInfo,
                                       AbstractNode node,
                                       List<SnakeInfo> listNewSnakeInfo)
        Generate all move possible for our snake, and check the snake direction to prevent some move.
        Parameters:
        head - Head position
        allSnakes - List of all snakes
        snakeInfo - Information about the snake
        node - Parent node
        listNewSnakeInfo - List of new moves
      • setRightOnly

        public static void setRightOnly()
        Set config for Right snake (never turn left)
      • setLeftOnly

        public static void setLeftOnly()
        Set config for Left snake (never turn right)
      • setJustTurn

        public static void setJustTurn()
        Set config for Just Turn snake (never go straight)
      • 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
        Overrides:
        createSnakeInfo in class AbstractRoyaleSearch
        Parameters:
        snake - previous snakeInfo
        newHead - New head square
        currentNode - Previous node
        Returns:
        new SnakeInfo
      • run

        public void run()