Class BattleSnakeConstants


  • public final class BattleSnakeConstants
    extends Object
    This class keep some constant value
    Version:
    Spring 2021
    • Field Detail

      • INVALID_SCORE

        public static final float INVALID_SCORE
        Invalid score used for creating a payoff matrix
        See Also:
        Constant Field Values
      • LOSE_SHOUT

        private static final String[] LOSE_SHOUT
        When a snake is in losing position, the snake gonna shout one of those line randomly.
      • WIN_SHOUT

        private static final String[] WIN_SHOUT
        When a snake is in winning position, the snake gonna shout one of those line randomly
      • BASIC_SCORE

        public static final float BASIC_SCORE
        Basic score assign to all snakes to avoid division by 0
        See Also:
        Constant Field Values
      • SPLIT_AREA

        public static final int SPLIT_AREA
        Value for square controlled by two snakes
        See Also:
        Constant Field Values
      • EMPTY_AREA

        public static final int EMPTY_AREA
        Value for square uncontrolled
        See Also:
        Constant Field Values
      • MINIMUN_SNAKE

        public static final int MINIMUN_SNAKE
        Minimum number of snake. If number of snake smaller than this value, the game end
        See Also:
        Constant Field Values
      • API_V1

        public static final int API_V1
        Current API version used by snakes
        See Also:
        Constant Field Values
      • SINGLE_SNAKE

        public static final int SINGLE_SNAKE
        Current API version used by snakes
        See Also:
        Constant Field Values
    • Constructor Detail

      • BattleSnakeConstants

        private BattleSnakeConstants()
        Sole constructor. (For invocation by subclass constructors, typically implicit.)
    • Method Detail

      • getWinShout

        public static String getWinShout()
        Get Winning shout
        Returns:
        winning shout
      • getLostShout

        public static String getLostShout()
        Get losing shout
        Returns:
        losing shout