krallice / snakeai

Snake AI Implementations
0 stars 0 forks source link

Snake AI Sandbox

Sandbox engine for testing out different Snake AIs strategies.

Breadth First Search Solver

Implements standard BFS

Direct Path Solver

Solves for the X Axis first. Once the head is aligned to the same X axis as the fruit, the snake pivots to solve for Y.

No collision detection logic.

SnakeAIUp

Engine that just forcefully key's UP.

SnakeAINull

Engine that completely does nothing, just repeats the last action.