1 Star 0 Fork 6

yuanxuegang / snake-ai

forked from Gitee 极速下载 / snake-ai 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

Snake

This project focuses on the AI algorithm of the snake game. The AI's goal is to direct the snake to eat the food and fill the map with its body as quickly as possible, so it should not just follow a fixed pattern (e.g., zigzagging).

There are some pertinent discussions here.

Build Status

Linux Windows
Travis Status AppVeyor Status

Demo

  • AI based on the Hamiltonian cycle, slower but easier to succeed.

  • AI based on graph search, faster but harder to succeed.

Installation

  1. Install CMake.

  2. Generate build files using the commands below:

    $ mkdir build
    $ cd build
    $ cmake ..
  3. Build files will be generated in the build directory based on your operating system. Use them to build this project:

    Linux OS X Windows
    Makefile Makefile Visual Studio Project

Keyboard Controls

Key Feature
W move up
A move left
S move down
D move right
Space pause/resume the snake
Esc exit game

Tips: When the snake is running, you could press the Space key to pause the snake and then press the W/A/S/D key to move the snake step by step. Anytime if you want the snake to start running again, just press the Space key again.

Algorithm

Shortest path

Source: Snake.findMinPath()

We use breadth-first search to find the shortest path. We additionally expect the path to be as straight as possible so there will be less scattered empty points on the map, which will improve the AI's success rate.

The image below illustrates how this algorithm works on an 18*18 map. The green area is scanned when searching and the red area is the shortest path. Each number on the point denotes its minimum distance to the starting point.

Longest path

Source: Snake.findMaxPath()

Suppose we want to find the longest path from point A to point B on a 4*4 map. The algorithm generates the shortest path between the two points first and then extends each pair of points on the path until no extensions can be found. Since the longest path problem is NP-hard, this algorithm is only an approximation.

The image below shows the longest path generated on an 18*18 map, where point 0 and point 1 is the beginning and the ending point respectively.

AI Algorithm

This is a widespread picture of a perfect snake:

From the picture we can figure out that in order to fill the map with the snake's body, the whole body must form a Hamiltonian cycle when the game ends. To ensure a Hamiltonian cycle exists, the map must have even (or not odd) amount of rows or columns.

There are two versions of the AI algorithm to guide the snake, the first one is based on the Hamiltonian cycle and the other is based on graph search. Both of them are implemented in Snake.decideNext().

AI based on the Hamiltonian cycle

The algorithm generates a Hamiltonian cycle on the map first and then moves the snake along the cycle. To avoid following this fixed cycle incessantly, the snake must have the ability to take shortcuts to eat the food whenever possible.

Generate a Hamiltonian cycle

Source: Snake.buildHamilton()

Suppose we want to build a Hamiltonian cycle on a 4*4 map. Then our goal is to assign the path index to each point on the map. The image below shows a possible Hamiltonian cycle.

To construct the cycle above, we fix the point 0, 1 and 2 first since they are the initial positions of the snake. Then we make point 1 unreachable and generate the longest path from point 2 to point 0. Finally, we join the starting and the ending point, which forms a Hamiltonian cycle:

Take shortcuts

Sometimes the snake can eat the food directly instead of following the Hamiltonian cycle. The image below explains this idea briefly. For more details, please refer to this article.

AI based on graph search

To find snake S1's next moving direction D, the AI follows the steps below:

  1. Compute the shortest path P1 from snake S1's head to the food. If P1 exists, go to step 2. Otherwise, go to step 4.
  2. Move a virtual snake S2 (the same as S1) to eat the food along path P1.
  3. Compute the longest path P2 from snake S2's head to its tail. If P2 exists, let D be the first direction in path P1. Otherwise, go to step 4.
  4. Compute the longest path P3 from snake S1's head to its tail. If P3 exists, let D be the first direction in path P3. Otherwise, go to step 5.
  5. Let D be the direction that makes the snake the farthest from the food.

License

See the LICENSE file for license rights and limitations.

MIT License Copyright (c) 2016 Steven Liu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

暂无描述 展开 收起
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/yxgs/snake-ai.git
git@gitee.com:yxgs/snake-ai.git
yxgs
snake-ai
snake-ai
master

搜索帮助