Package ai.nettogrof.battlesnake.snakes
Class FloodFillSnake
- java.lang.Object
-
- ai.nettogrof.battlesnake.snakes.AbstractSnakeAI
-
- ai.nettogrof.battlesnake.snakes.AbstractSimpleSnakeAI
-
- ai.nettogrof.battlesnake.snakes.FloodFillSnake
-
public class FloodFillSnake extends AbstractSimpleSnakeAI
FloodFill snake. This class is the "Nessegrev-flood" snake on Battlesnake. My first snake that I entered in a tournament (Stay Home and Code / Rookie division) This snake use flood fill algorithm to find the best move. It tries to target food and shorter snakes, and avoids bigger snakes. This snake should work with API v0 and API v1. All the move calculation are based on API v0, and if it's API v1, then the snake switch UP and DOWN response.- Version:
- Winter 2020
- Author:
- carl.lajeunesse
-
-
Field Summary
Fields Modifier and Type Field Description private static int
EMPTY
Constant valueprivate static int
FLODDENEMYGAP
Constant valueprivate static int
FLODDENEMYSMALLER
Constant valueprivate static int
FLOODENEMYBIGGER
Constant valueprivate static int
FOODVALUE
Constant valueprivate static int
HAZARD_VALUE
private int[][]
space
Board of empty space-
Fields inherited from class ai.nettogrof.battlesnake.snakes.AbstractSnakeAI
apiversion, BOARD, BODY, DOWN, fileConfig, FOUR_SNAKE, gameId, HEAD, HEALTH, height, HEIGHT_FIELD, LEFT, log, MOVESTR, NAME, RIGHT, rules, SHOUT, SINGLE_SNAKE, SNAKES, SQUAD, TURN, TWO_SNAKE, UPWARD, width, WIDTH_FIELD, YOU
-
-
Constructor Summary
Constructors Constructor Description FloodFillSnake()
Basic / unused constructorFloodFillSnake(String gameId)
Constructor with the gameid,
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private void
addFoodValue(int[][] board, com.fasterxml.jackson.databind.JsonNode you, com.fasterxml.jackson.databind.JsonNode boardJson)
This method add food value on the board based on your currentFOORVALUE - health
private void
addHazardsValue(int[][] board, com.fasterxml.jackson.databind.JsonNode boardJson)
This method add a value on each square of hazardsprivate Map<String,Integer>
checkPossibleMove(com.fasterxml.jackson.databind.JsonNode you, int[][] board)
Create a map of possible move and assign a value to them.private int
countEmptySquare()
Scan the space[][] to count empty square.private void
floodEmptySpace(int posX, int posY, int value, int[][] board)
Recursive function to "flood" EMPTY value on positive square.private void
floodNegative(int posX, int posY, int value, int[][] board)
Recursive function to "flood" negative value.private void
floodPositive(int posX, int posY, int value, int[][] board)
Recursive function to "flood" positive value.protected String
getFileConfig()
Gets the config file to set properties correctlyMap<String,String>
move(com.fasterxml.jackson.databind.JsonNode moveRequest)
This method will be call on each move request receive by BattleSnakeMap<String,String>
start(com.fasterxml.jackson.databind.JsonNode startRequest)
/** Function when receive the start request ( API version 0 ) Shouldn't be used anymore-
Methods inherited from class ai.nettogrof.battlesnake.snakes.AbstractSimpleSnakeAI
getBestPossibleMove
-
Methods inherited from class ai.nettogrof.battlesnake.snakes.AbstractSnakeAI
end, getInfo, ping, setFileConfig
-
-
-
-
Field Detail
-
space
private int[][] space
Board of empty space
-
FLOODENEMYBIGGER
private static final int FLOODENEMYBIGGER
Constant value- See Also:
- Constant Field Values
-
FLODDENEMYSMALLER
private static final int FLODDENEMYSMALLER
Constant value- See Also:
- Constant Field Values
-
FOODVALUE
private static final int FOODVALUE
Constant value- See Also:
- Constant Field Values
-
FLODDENEMYGAP
private static final int FLODDENEMYGAP
Constant value- See Also:
- Constant Field Values
-
EMPTY
private static final int EMPTY
Constant value- See Also:
- Constant Field Values
-
HAZARD_VALUE
private static final int HAZARD_VALUE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FloodFillSnake
public FloodFillSnake()
Basic / unused constructor
-
FloodFillSnake
public FloodFillSnake(String gameId)
Constructor with the gameid,- Parameters:
gameId
- String of the gameid field receive in the start request.
-
-
Method Detail
-
move
public Map<String,String> move(com.fasterxml.jackson.databind.JsonNode moveRequest)
This method will be call on each move request receive by BattleSnake- Specified by:
move
in classAbstractSnakeAI
- Parameters:
moveRequest
- Json call received- Returns:
- map of field to be return to battlesnake, example "move" , "up"
-
addHazardsValue
private void addHazardsValue(int[][] board, com.fasterxml.jackson.databind.JsonNode boardJson)
This method add a value on each square of hazards- Parameters:
board
- the board of valueboardJson
- the field Board fron the Json request
-
addFoodValue
private void addFoodValue(int[][] board, com.fasterxml.jackson.databind.JsonNode you, com.fasterxml.jackson.databind.JsonNode boardJson)
This method add food value on the board based on your currentFOORVALUE - health
- Parameters:
board
- the board of valueyou
- the field "you" fron the Json requestboardJson
- the field Board fron the Json request
-
checkPossibleMove
private Map<String,Integer> checkPossibleMove(com.fasterxml.jackson.databind.JsonNode you, int[][] board)
Create a map of possible move and assign a value to them. a negative value is bad.- Parameters:
you
- Json field youboard
- the board (array of value)- Returns:
- map of possible move and their value
-
start
public Map<String,String> start(com.fasterxml.jackson.databind.JsonNode startRequest)
/** Function when receive the start request ( API version 0 ) Shouldn't be used anymore- Overrides:
start
in classAbstractSnakeAI
- Parameters:
startRequest
- Json call received- Returns:
- map that can be empty because it will be ignore by BattleSnake server
-
floodPositive
private void floodPositive(int posX, int posY, int value, int[][] board)
Recursive function to "flood" positive value. It's assign the value to the board[ x ] [ y] then recall this function for adjacent square with value - 1- Parameters:
posX
- the X positionposY
- the Y positionvalue
- the value to assignboard
- the board (array of value)
-
floodNegative
private void floodNegative(int posX, int posY, int value, int[][] board)
Recursive function to "flood" negative value. It's assign the value to the board[ x ] [ y] then recall this function for adjacent square with value - "floodEnemyGap "- Parameters:
posX
- the X positionposY
- the Y positionvalue
- the value to assignboard
- the board (array of value)
-
floodEmptySpace
private void floodEmptySpace(int posX, int posY, int value, int[][] board)
Recursive function to "flood" EMPTY value on positive square. It's assign the EMPTY to the space�[ x ] [ y] then recall this function for adjacent square with EMPTY- Parameters:
posX
- the X positionposY
- the Y positionvalue
- the value to assignboard
- the board (array of value)
-
countEmptySquare
private int countEmptySquare()
Scan the space[][] to count empty square. And put square[][] back to 0 value- Returns:
- the count of empty space
-
getFileConfig
protected String getFileConfig()
Description copied from class:AbstractSnakeAI
Gets the config file to set properties correctly- Specified by:
getFileConfig
in classAbstractSnakeAI
- Returns:
- the config filename
-
-