2048
Playable version of the popular game 2048 through the keyboard and the addition of a score keeper at the bottom of the screen that keeps track of the max score and the current score.
The player then chooses a direction via their arrow keys to tilt the board: north, south, east, or west. All tiles slide in that direction until there is no empty space left in the direction of motion (there might not be any to start with). A tile can possibly merge with another tile which earns the player points.
If the tilt did not change the board state, then no new tiles will be randomly generated. Otherwise, a single randomly generated tile will be added to the board on an empty square.
There is a field at the bottom called “Score” that is being updated with each move. The score will not always change every move, but only when two tiles merge.
Each time two tiles merge to form a larger tile, the player earns the number of points on the new tile. The game ends when the current player has no available moves (no tilt can change the board), or a move forms a square containing 2048.