Package ai.nettogrof.battlesnake.snakes
Class AbstractSimpleSnakeAI
- java.lang.Object
-
- ai.nettogrof.battlesnake.snakes.AbstractSnakeAI
-
- ai.nettogrof.battlesnake.snakes.AbstractSimpleSnakeAI
-
- Direct Known Subclasses:
BasicSnake
,FloodFillSnake
public abstract class AbstractSimpleSnakeAI extends AbstractSnakeAI
Any snake simple should extend this abstract class will contains basic constant fields, related to the field name in json call from BattleSnake. Also some method that any snake must implements.- Version:
- Summer 2022
- Author:
- carl.lajeunesse
-
-
Field Summary
-
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 Modifier Constructor Description protected
AbstractSimpleSnakeAI()
Basic / unused constructorprotected
AbstractSimpleSnakeAI(String gameId)
Constructor with the gameid,
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
getBestPossibleMove(Map<String,Integer> possiblemove)
Return the best move from the map-
Methods inherited from class ai.nettogrof.battlesnake.snakes.AbstractSnakeAI
end, getFileConfig, getInfo, move, ping, setFileConfig, start
-
-
-
-
Constructor Detail
-
AbstractSimpleSnakeAI
protected AbstractSimpleSnakeAI()
Basic / unused constructor
-
AbstractSimpleSnakeAI
protected AbstractSimpleSnakeAI(String gameId)
Constructor with the gameid,- Parameters:
gameId
- String of the gameid field receive in the start request.
-
-