author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Thu, 25 Sep 2014 01:10:01 +0300 | |
changeset 138 | 23cd36180bf9 |
parent 108 | 5f4985c2a4d4 |
child 144 | b19b85b476b3 |
permissions | -rw-r--r-- |
77 | 1 |
.. include:: header.rst |
47 | 2 |
|
3 |
================== |
|
4 |
2048 game JS AI. |
|
5 |
================== |
|
77 | 6 |
.. contents:: |
47 | 7 |
|
77 | 8 |
Document version. |
9 |
================= |
|
10 |
||
11 |
.. include:: VERSION.rst |
|
57
94e1b2d0bd31
Add JSDoc annotation.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
47
diff
changeset
|
12 |
|
77 | 13 |
Game rules. |
14 |
=========== |
|
15 |
||
107 | 16 |
4x4 board tiles filled by nambers or empty. |
17 |
||
18 |
During each move one of free tiles was filled by value 1 or 2 (2 with probability 10%). |
|
19 |
||
20 |
You can move tiles in one of four possible direction: left/right/up/dowm. |
|
21 |
||
22 |
Each move every tiles fill empty space in selected direction. If two tiles have same numbers ``N`` |
|
23 |
them was merged into tile with number ``N+1``. Merges performed from head of direction. |
|
24 |
||
25 |
Your goal is to reach tile with number ``11`` or better. |
|
57
94e1b2d0bd31
Add JSDoc annotation.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
47
diff
changeset
|
26 |
|
77 | 27 |
Alternatives. |
28 |
============= |
|
57
94e1b2d0bd31
Add JSDoc annotation.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
47
diff
changeset
|
29 |
|
77 | 30 |
* http://ov3y.github.io/2048-AI/ - online JS AI. |
31 |
* http://sztupy.github.io/2048-Hard/ - online JS AI with difficulty level. |
|
32 |