Class AbstractSquadSearch
- java.lang.Object
-
- ai.nettogrof.battlesnake.treesearch.AbstractSearch
-
- ai.nettogrof.battlesnake.treesearch.AbstractBestFirstSearch
-
- ai.nettogrof.battlesnake.treesearch.AbstractMCTS
-
- ai.nettogrof.battlesnake.treesearch.search.squad.AbstractSquadSearch
-
- All Implemented Interfaces:
Runnable
- Direct Known Subclasses:
SquadSearch
public abstract class AbstractSquadSearch extends AbstractMCTS
This abstract Squad search, provide basic method use in any search in battlesnake squad mode- Version:
- Spring 2021
- Author:
- carl.lajeunesse
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractSquadSearch()
Basic constructorprotected
AbstractSquadSearch(AbstractNode root, int width, int height)
Constructor used to expand the tree once.protected
AbstractSquadSearch(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 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 boolean
freeSpace(int square, List<SnakeInfo> snakes, SnakeInfo currentSnake)
Check if the snake can move on the squareprotected boolean
freeSpaceSquad(int square, List<SnakeInfo> snakes, SnakeInfo currentSnake)
Check if the snake can move on the square for squad modeprotected void
kill(SnakeInfo death, List<SnakeInfo> all)
This method will be use to "kill" a snakeprotected void
killSquad(SnakeInfo death, List<SnakeInfo> all)
This method will be use to "kill" a snake in squad-
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, generateSnakeInfoDestination, getSmallestChild, merge, moveSnake, stopSearching
-
-
-
-
Constructor Detail
-
AbstractSquadSearch
protected AbstractSquadSearch()
Basic constructor
-
AbstractSquadSearch
protected AbstractSquadSearch(AbstractNode root, int width, int height)
Constructor used to expand the tree once.- Parameters:
root
- Root nodewidth
- Board widthheight
- Board height
-
AbstractSquadSearch
protected AbstractSquadSearch(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
- Game ruleset
-
-
Method Detail
-
kill
protected void kill(SnakeInfo death, List<SnakeInfo> all)
This method will be use to "kill" a snake- Specified by:
kill
in classAbstractSearch
- Parameters:
death
- SnakeInfo of the snake to killall
- List of all snakeinfo
-
killSquad
protected void killSquad(SnakeInfo death, List<SnakeInfo> all)
This method will be use to "kill" a snake in squad- Parameters:
death
- SnakeInfo of the snake to killall
- List of all snakeinfo
-
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- Specified by:
createSnakeInfo
in classAbstractSearch
- Parameters:
snake
- previous snakeInfonewHead
- New head squarecurrentNode
- Previous node- Returns:
- new SnakeInfo
-
freeSpace
protected boolean freeSpace(int square, List<SnakeInfo> snakes, SnakeInfo currentSnake)
Description copied from class:AbstractSearch
Check if the snake can move on the square- Specified by:
freeSpace
in classAbstractSearch
- Parameters:
square
- the int sqauresnakes
- List of all snakescurrentSnake
- current Snake- Returns:
- boolean free to move on that square
-
freeSpaceSquad
protected boolean freeSpaceSquad(int square, List<SnakeInfo> snakes, SnakeInfo currentSnake)
Check if the snake can move on the square for squad mode- Parameters:
square
- the int squaresnakes
- List of all snakescurrentSnake
- current Snake- Returns:
- boolean free to move on that square
-
-