Package ai.nettogrof.battlesnake.snakes
Class AbstractSnakeAI
- java.lang.Object
-
- ai.nettogrof.battlesnake.snakes.AbstractSnakeAI
-
- Direct Known Subclasses:
AbstractSearchSnakeAI
,AbstractSimpleSnakeAI
public abstract class AbstractSnakeAI extends Object
Any snake should extend this abstract class it contains basic constant fields, related to the field name in json call from BattleSnake. Also some method that any snake must implements.- Version:
- Spring 2021
- Author:
- carl.lajeunesse
-
-
Field Summary
Fields Modifier and Type Field Description protected int
apiversion
API version use, some snakes are able to play both version v0 and v1.protected static String
BOARD
Constant Field nameprotected static String
BODY
Constant Field nameprotected static String
DOWN
Constant Field nameprotected String
fileConfig
Any snake must use a fileConfig (a properties files), and the name of the file must store in the stringprotected static int
FOUR_SNAKE
Constant Field nameprotected String
gameId
Snakes can play games in parallel, so the game id field is use to distinguish different gameprotected static String
HEAD
Constant Field nameprotected static String
HEALTH
Constant Field nameprotected int
height
Board heightprotected static String
HEIGHT_FIELD
Constant Field nameprotected static String
LEFT
Constant Field nameprotected static com.google.common.flogger.FluentLogger
log
Basic logger objectprotected static String
MOVESTR
Constant Field nameprotected static String
NAME
Constant Field nameprotected static String
RIGHT
Constant Field nameprotected GameRuleset
rules
Game rulessetprotected static String
SHOUT
Constant Field nameprotected static int
SINGLE_SNAKE
Constant Field nameprotected static String
SNAKES
Constant Field nameprotected static String
SQUAD
Constant Field nameprotected static String
TURN
Constant Field nameprotected static int
TWO_SNAKE
Constant Field nameprotected static String
UPWARD
Constant Field nameprotected int
width
Board widthprotected static String
WIDTH_FIELD
Constant Field nameprotected static String
YOU
Constant Field name
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractSnakeAI()
Basic constructor not usedprotected
AbstractSnakeAI(String gameId)
Constructor with the gameid,
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Map<String,String>
end(com.fasterxml.jackson.databind.JsonNode endRequest)
This method will be call at the end of the game, can be override if you want to clean-up some game info.protected abstract String
getFileConfig()
Gets the config file to set properties correctlyMap<String,String>
getInfo()
Return the infos need by Battlesnake when receive a (root GET /) requestabstract Map<String,String>
move(com.fasterxml.jackson.databind.JsonNode moveRequest)
This method will be call on each move request receive by BattleSnake, so all snakes must implement it, and add game logic in itvoid
ping()
Method that was use in API v0 to check if the bots was up.void
setFileConfig(String fileConfig)
Set the file config filenameMap<String,String>
start(com.fasterxml.jackson.databind.JsonNode startRequest)
This method was used in API v0 to retrieve snake info, but in API v1 the method is call but Battlesnake doesn't need a response.
-
-
-
Field Detail
-
UPWARD
protected static final String UPWARD
Constant Field name- See Also:
- Constant Field Values
-
DOWN
protected static final String DOWN
Constant Field name- See Also:
- Constant Field Values
-
LEFT
protected static final String LEFT
Constant Field name- See Also:
- Constant Field Values
-
RIGHT
protected static final String RIGHT
Constant Field name- See Also:
- Constant Field Values
-
MOVESTR
protected static final String MOVESTR
Constant Field name- See Also:
- Constant Field Values
-
SHOUT
protected static final String SHOUT
Constant Field name- See Also:
- Constant Field Values
-
BODY
protected static final String BODY
Constant Field name- See Also:
- Constant Field Values
-
BOARD
protected static final String BOARD
Constant Field name- See Also:
- Constant Field Values
-
NAME
protected static final String NAME
Constant Field name- See Also:
- Constant Field Values
-
SQUAD
protected static final String SQUAD
Constant Field name- See Also:
- Constant Field Values
-
HEALTH
protected static final String HEALTH
Constant Field name- See Also:
- Constant Field Values
-
SNAKES
protected static final String SNAKES
Constant Field name- See Also:
- Constant Field Values
-
YOU
protected static final String YOU
Constant Field name- See Also:
- Constant Field Values
-
TURN
protected static final String TURN
Constant Field name- See Also:
- Constant Field Values
-
HEAD
protected static final String HEAD
Constant Field name- See Also:
- Constant Field Values
-
WIDTH_FIELD
protected static final String WIDTH_FIELD
Constant Field name- See Also:
- Constant Field Values
-
HEIGHT_FIELD
protected static final String HEIGHT_FIELD
Constant Field name- See Also:
- Constant Field Values
-
FOUR_SNAKE
protected static final int FOUR_SNAKE
Constant Field name- See Also:
- Constant Field Values
-
TWO_SNAKE
protected static final int TWO_SNAKE
Constant Field name- See Also:
- Constant Field Values
-
SINGLE_SNAKE
protected static final int SINGLE_SNAKE
Constant Field name- See Also:
- Constant Field Values
-
width
protected int width
Board width
-
height
protected int height
Board height
-
apiversion
protected int apiversion
API version use, some snakes are able to play both version v0 and v1.
-
fileConfig
protected String fileConfig
Any snake must use a fileConfig (a properties files), and the name of the file must store in the string
-
gameId
protected String gameId
Snakes can play games in parallel, so the game id field is use to distinguish different game
-
log
protected static com.google.common.flogger.FluentLogger log
Basic logger object
-
rules
protected GameRuleset rules
Game rulesset
-
-
Constructor Detail
-
AbstractSnakeAI
protected AbstractSnakeAI()
Basic constructor not used
-
AbstractSnakeAI
protected AbstractSnakeAI(String gameId)
Constructor with the gameid,- Parameters:
gameId
- String of the gameid field receive in the start request.
-
-
Method Detail
-
start
public Map<String,String> start(com.fasterxml.jackson.databind.JsonNode startRequest)
This method was used in API v0 to retrieve snake info, but in API v1 the method is call but Battlesnake doesn't need a response. This can be use to initialize your snake- Parameters:
startRequest
- Json call received- Returns:
- map that can be empty because it will be ignore by BattleSnake server
-
move
public abstract Map<String,String> move(com.fasterxml.jackson.databind.JsonNode moveRequest)
This method will be call on each move request receive by BattleSnake, so all snakes must implement it, and add game logic in it- Parameters:
moveRequest
- Json call received- Returns:
- map of field to be return to battlesnake, example "move" , "up"
-
end
public Map<String,String> end(com.fasterxml.jackson.databind.JsonNode endRequest)
This method will be call at the end of the game, can be override if you want to clean-up some game info.- Parameters:
endRequest
- Json call received- Returns:
- map that can be empty because it will be ignore by BattleSnake server
-
ping
public void ping()
Method that was use in API v0 to check if the bots was up. in API v1 is not used anymore
-
getFileConfig
protected abstract String getFileConfig()
Gets the config file to set properties correctly- Returns:
- the config filename
-
getInfo
public Map<String,String> getInfo()
Return the infos need by Battlesnake when receive a (root GET /) request- Returns:
- map of info for Battlesnake
-
setFileConfig
public void setFileConfig(String fileConfig)
Set the file config filename- Parameters:
fileConfig
- the fileConfig to set
-
-