Package ai.nettogrof.battlesnake.snakes
Class RightSnake
-
public class RightSnake extends ExpertSnake
Right snake. This class is the "Nessegrev-Mystery" snake on Battlesnake. This snake was made just for fun for a Weekly Meet-up. This snake can turn right or go straight.- Version:
- Summer 2021
- Author:
- carl.lajeunesse
-
-
Field Summary
-
Fields inherited from class ai.nettogrof.battlesnake.snakes.AbstractMultiThreadSnakeAI
cpuLimit, multiThread
-
Fields inherited from class ai.nettogrof.battlesnake.snakes.AbstractTreeSearchSnakeAI
lastRoot, NODECOUNT, searchType
-
Fields inherited from class ai.nettogrof.battlesnake.snakes.AbstractSearchSnakeAI
losing, minusbuffer, nodeTotalCount, timeout, timeTotal, winning
-
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 RightSnake(String gameId)
Constructor with the gameid,
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Constructor<? extends AbstractSearch>
genSearchType()
This method generate the search typeprotected String
getFileConfig()
Gets the config file to set properties correctly-
Methods inherited from class ai.nettogrof.battlesnake.snakes.ExpertSnake
genNode, genRoot, start
-
Methods inherited from class ai.nettogrof.battlesnake.snakes.AbstractMultiThreadSnakeAI
expand, multiThreadtreeSearch, setCpuLimit, setMultiThread, setProperties, startThread, treeSearch
-
Methods inherited from class ai.nettogrof.battlesnake.snakes.AbstractTreeSearchSnakeAI
chooseBestMove, findChildNewRoot, finishHim, lastChance, move, setTimeout, singleThreadTreeSearch
-
Methods inherited from class ai.nettogrof.battlesnake.snakes.AbstractSearchSnakeAI
addNodeTotalCount, addTimeTotal, end, generateResponse
-
Methods inherited from class ai.nettogrof.battlesnake.snakes.AbstractSnakeAI
getInfo, ping, setFileConfig
-
-
-
-
Constructor Detail
-
RightSnake
public RightSnake(String gameId)
Constructor with the gameid,- Parameters:
gameId
- String of the gameid field receive in the start request.
-
-
Method Detail
-
getFileConfig
protected String getFileConfig()
Description copied from class:AbstractSnakeAI
Gets the config file to set properties correctly- Overrides:
getFileConfig
in classExpertSnake
- Returns:
- the config filename
-
genSearchType
protected Constructor<? extends AbstractSearch> genSearchType() throws ReflectiveOperationException
This method generate the search type- Overrides:
genSearchType
in classAbstractSearchSnakeAI
- Returns:
- Abstract Search
- Throws:
ReflectiveOperationException
- In case of invalid search type
-
-