Class LimitedMoveRoyaleSearch
- java.lang.Object
-
- ai.nettogrof.battlesnake.treesearch.AbstractSearch
-
- ai.nettogrof.battlesnake.treesearch.AbstractBestFirstSearch
-
- ai.nettogrof.battlesnake.treesearch.AbstractMCTS
-
- ai.nettogrof.battlesnake.treesearch.search.royale.AbstractRoyaleSearch
-
- ai.nettogrof.battlesnake.treesearch.search.fun.LimitedMoveRoyaleSearch
-
- All Implemented Interfaces:
Runnable
public class LimitedMoveRoyaleSearch extends AbstractRoyaleSearch
This abstract Standard search based on RoyaleSearch provide methods to prevent snake to move in particular direction Royale mode- Version:
- Summer 2021
- Author:
- carl.lajeunesse
-
-
Field Summary
Fields Modifier and Type Field Description protected static int
downNeck
Prevent down move if head - neck equals that amountprotected static int
leftNeck
Prevent left move if head - neck equals that amountprotected static int
rightNeck
Prevent right move if head - neck equals that amountprotected static int
upNeck
Prevent up move if head - neck equals that amount
-
Constructor Summary
Constructors Constructor Description LimitedMoveRoyaleSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected SnakeInfo
createSnakeInfo(SnakeInfo snake, int newHead, AbstractNode currentNode)
Create new SnakeInfo based on the current node and the new head squareprotected List<SnakeInfo>
generateSnakeInfoDestination(SnakeInfo snakeInfo, AbstractNode node, List<SnakeInfo> allSnakes)
Generate all moves possible for a snake given.void
run()
protected void
selfDestination(int head, List<SnakeInfo> allSnakes, SnakeInfo snakeInfo, AbstractNode node, List<SnakeInfo> listNewSnakeInfo)
Generate all move possible for our snake, and check the snake direction to prevent some move.static void
setJustTurn()
Set config for Just Turn snake (never go straight)static void
setLeftOnly()
Set config for Left snake (never turn right)static void
setRightOnly()
Set config for Right snake (never turn left)-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.search.royale.AbstractRoyaleSearch
freeSpace, kill
-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.AbstractMCTS
executeMCTS, getMCTSBestPath
-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.AbstractBestFirstSearch
getBestChild, getbestChildValue, getBestPath, mergeList, updateFullListNode, updateListNode
-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.AbstractSearch
addMove, checkHeadToHead, generateChild, generateChild, getSmallestChild, merge, moveSnake, stopSearching
-
-
-
-
Field Detail
-
leftNeck
protected static int leftNeck
Prevent left move if head - neck equals that amount
-
rightNeck
protected static int rightNeck
Prevent right move if head - neck equals that amount
-
downNeck
protected static int downNeck
Prevent down move if head - neck equals that amount
-
upNeck
protected static int upNeck
Prevent up move if head - neck equals that amount
-
-
Constructor Detail
-
LimitedMoveRoyaleSearch
public LimitedMoveRoyaleSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search.- Parameters:
root
- Root nodewidth
- Board widthheight
- Board heightstarttime
- starting time for the search in millisecondtimeout
- the time limit to run the searchrules
- the game ruleset info
-
-
Method Detail
-
generateSnakeInfoDestination
protected List<SnakeInfo> generateSnakeInfoDestination(SnakeInfo snakeInfo, AbstractNode node, List<SnakeInfo> allSnakes)
Generate all moves possible for a snake given.- Overrides:
generateSnakeInfoDestination
in classAbstractSearch
- Parameters:
snakeInfo
- Information about the snakenode
- Parent nodeallSnakes
- List of all snakes- Returns:
- list of snakeinfo
-
selfDestination
protected void selfDestination(int head, List<SnakeInfo> allSnakes, SnakeInfo snakeInfo, AbstractNode node, List<SnakeInfo> listNewSnakeInfo)
Generate all move possible for our snake, and check the snake direction to prevent some move.- Parameters:
head
- Head positionallSnakes
- List of all snakessnakeInfo
- Information about the snakenode
- Parent nodelistNewSnakeInfo
- List of new moves
-
setRightOnly
public static void setRightOnly()
Set config for Right snake (never turn left)
-
setLeftOnly
public static void setLeftOnly()
Set config for Left snake (never turn right)
-
setJustTurn
public static void setJustTurn()
Set config for Just Turn snake (never go straight)
-
createSnakeInfo
protected SnakeInfo createSnakeInfo(SnakeInfo snake, int newHead, AbstractNode currentNode)
Description copied from class:AbstractSearch
Create new SnakeInfo based on the current node and the new head square- Overrides:
createSnakeInfo
in classAbstractRoyaleSearch
- Parameters:
snake
- previous snakeInfonewHead
- New head squarecurrentNode
- Previous node- Returns:
- new SnakeInfo
-
run
public void run()
-
-