2048 implementation with python and ncurses
Project description
A terminal/ncurses/python version of the original game at http://gabrielecirulli.github.io/2048
Free software: GPL license
Install
Open your terminal and type:
$ pip install curses-2048
or
$ easy_install curses-2048
Usage
$ 2048
256 colors
If your terminal has support for 256 colors you will see colors mimicking the original game, something like the screenshot above. If your terminal only supports 16 colors, you will se something like this:
Recent versions of xterm and gnome terminal are known to support 256 colors, if you do not see them, probably your environment variable TERM is not set accordingly. Do
$ export TERM=xterm-256color
or, if you are using screen or tmux
$ export TERM=screen-256color
to enjoy curses-2048 in full 256 colors glory.
Use the cursor keys to move and join tiles. Get to the 2048 tile!
History
1.0 (2014-05-20)
First release as a module. Packaged for pypi by Henrique Pereira. Uploaded to pypi
1.1 (2014-05-21)
Proper initialization of curses colors and hide terminal cursor, by Crys Seymour
1.2 (2014-05-21)
Added support for 256 color terminals mimicking the original web game
1.3 (2014-05-22)
Adapt tile height to terminal window height and adjust dynamically if resized
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.