Class SquadNode


  • public class SquadNode
    extends AbstractEvaluationNode
    This Squad node class must be in squad mode
    Version:
    Summer 2021
    Author:
    carl.lajeunesse
    • Field Detail

      • MINIMUN_SNAKE

        protected static final int MINIMUN_SNAKE
        Minimun number of snake for Squad Mode. If number of snake smaller than this value, the game end
        See Also:
        Constant Field Values
    • Constructor Detail

      • SquadNode

        public SquadNode​(List<SnakeInfo> snakes,
                         FoodInfo food,
                         BoardInfo boardInfo)
        Constructor, set the information and evaluate/ set score directly
        Parameters:
        snakes - List of snakes
        food - Food information
        boardInfo - Board Information
    • Method Detail

      • setSquadScore

        private void setSquadScore()
        Sets the node score
      • getScoreRatio

        public float getScoreRatio()
        Description copied from class: AbstractNode
        Gets the score ratio, the score ratio is compute has follow Our snake score / (all others snakes score added)
        Overrides:
        getScoreRatio in class AbstractNode
        Returns:
        float score ratio
      • getPartnerIndex

        private int getPartnerIndex​(SnakeInfo snake)
        Gets the index , for the teammate
        Parameters:
        snake - Current snake
        Returns:
        int for the index of the teammate
      • generateHash

        protected void generateHash​(it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap old,
                                    it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap newHash,
                                    int[][] board)
        Generate new position to be added to hash
        Overrides:
        generateHash in class AbstractEvaluationNode
        Parameters:
        old - Previous hash
        newHash - New hash
        board - Board array
      • checkBoardHash

        protected boolean checkBoardHash​(int newPosX,
                                         int newPosY,
                                         int[][] board,
                                         int value)
        Check the board array if the hash value can expand
        Parameters:
        newPosX - Position X
        newPosY - Position Y
        board - Board array
        value - the hash value
        Returns:
        if possible to expand