Package ai.nettogrof.battlesnake.snakes
Class Snake
- java.lang.Object
-
- ai.nettogrof.battlesnake.snakes.Snake
-
public final class Snake extends Object
Snake server that deals with requests from the snake engine. This class route the incoming transaction to the right object/method. Based on the starter-snake-java of Battlesnake- Version:
- Spring 2021
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Snake.Handler
Handler class for dealing with the routes set up in the main method.
-
Field Summary
Fields Modifier and Type Field Description private static Map<String,AbstractSnakeAI>
bots
Map of current running botsprivate static Snake.Handler
HANDLER
Handle the API callsprivate static com.fasterxml.jackson.databind.ObjectMapper
JSON_MAPPER
Mapper to transform JSON into java objectprivate static com.google.common.flogger.FluentLogger
LOG
Loggerprivate static int
ONE
Static value.private static String
port
Port number define by config file or program parameter.private static String
snakeType
SnakeType define by program parameter Default: undefined
-
Constructor Summary
Constructors Modifier Constructor Description private
Snake()
Unused constrictor
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description private static void
loadEvaluationValue()
Load evaluation properties to get genetic valueprivate static void
loadProperties(String snakeType)
Load Snake properties to get port numberstatic void
main(String[] args)
Main entry point.
-
-
-
Field Detail
-
JSON_MAPPER
private static final com.fasterxml.jackson.databind.ObjectMapper JSON_MAPPER
Mapper to transform JSON into java object
-
HANDLER
private static final Snake.Handler HANDLER
Handle the API calls
-
LOG
private static final com.google.common.flogger.FluentLogger LOG
Logger
-
bots
private static Map<String,AbstractSnakeAI> bots
Map of current running bots
-
snakeType
private static String snakeType
SnakeType define by program parameter Default: undefined
-
port
private static String port
Port number define by config file or program parameter. Default: 8081
-
ONE
private static final int ONE
Static value.- See Also:
- Constant Field Values
-
-
Method Detail
-
main
public static void main(String[] args)
Main entry point.- Parameters:
args
- first parameter snakeType (required), second parameter port (optional)
-
loadProperties
private static void loadProperties(String snakeType)
Load Snake properties to get port number- Parameters:
snakeType
- Which type of snake
-
loadEvaluationValue
private static void loadEvaluationValue()
Load evaluation properties to get genetic value
-
-