No description
Find a file
Sam Tay ad1fcf9192 Refactor game state computation
Cleaning up the Tetris module, mainly to favor a MonadState style over
explicit `Game -> Game` functions, which were a little awkward. This also
led naturally to explicitly isolating `IO`, by having pure state modifiers
with types like `Tetris a ~ forall m. StateT Game m a` being executed
with `m ~ Identity`, and those few modifiers that need IO specified by
`TetrisT a ~ StateT Game IO a`.
2018-12-27 10:28:26 -05:00
app Refactor game state computation 2018-12-27 10:28:26 -05:00
dex-images/tetris Update version to 0.1.2 2017-07-03 00:44:18 -04:00
docs/img Update example gif 2017-06-18 21:33:36 -04:00
src Refactor game state computation 2018-12-27 10:28:26 -05:00
.gitignore Refactor game state computation 2018-12-27 10:28:26 -05:00
.travis.yml Add travis ci 2018-12-26 19:01:00 -05:00
LICENSE First commit, some basic Tetris types 2017-06-12 23:47:31 -04:00
README.md Improve installation documentation, closes #3 2018-10-29 18:00:24 -04:00
Setup.hs First commit, some basic Tetris types 2017-06-12 23:47:31 -04:00
stack.yaml Bump stack lts to 13.0 2018-12-26 18:56:33 -05:00
tetris.cabal Refactor game state computation 2018-12-27 10:28:26 -05:00

tetris

A terminal interface for Tetris

terminal-gif

installation

For Mac and ArchLinux, the binaries attached to the GitHub release should suffice (instructions). For other Linux distros, you can try the Linux binary as well but no guarantees. See the other two options, installing from source and dex.

I have not tested Windows, but I do think it should work via dex. Please let me know in an issue if it fails so I can update documentation. Thanks!

github release binaries

Here is a quick way to get the one for your OS:

curl -L https://github.com/samtay/tetris/releases/download/0.1.2/tetris-`uname -s`-`uname -m` -o tetris
chmod +x tetris
sudo mv tetris /usr/local/bin/

If you are on a Linux distro other than ArchLinux, you may see an issue with these dynamically linked binaries, specifically regarding the ncurses distribution. If you see an error such as tetris: error while loading shared libraries: libncursesw.so.6: cannot open shared object file: No such file or directory, an easy fix is to install the ncurses version 5 and then symlink the libncursesw.so.5 library to the missing libncursesw.so.6 library. For example, on a debian based system,

sudo apt update
sudo apt install -y libncursesw5 libncursesw5-dev
sudo ln -s /lib/x86_64-linux-gnu/libncursesw.so.5  /lib/x86_64-linux-gnu/libncursesw.so.6

install from source

First get stack. Then

git clone https://github.com/samtay/tetris.git
cd tetris
stack install tetris

install via dex

dex is a really cool application manager that lets you run executables as docker images, so that you don't need to worry about installing them or their dependencies directly.

# get dex if you don't have it
curl -L http://get.iceburg.net/dex/latest-0.12.x/dex -o dex
chmod +x dex
sudo mv dex /usr/local/bin

# add tetris as a repo
dex repo add tetris https://github.com/samtay/tetris.git

# run tetris
dex run tetris

### optionally install tetris globally ###
export PATH="$HOME/.dex/bin:$PATH"
dex install --global tetris
tetris

usage

The default game is run by simply executing the tetris command. If the unicode characters look a bit wonky in your terminal, you can also run

tetris --ascii-only         # uses [] as preview cell
# or
tetris --preview-chars 'XX' # uses custom characters as preview cell

If you always play on level 6 and want to skip the prompt, you can start the game immediately via

tetris --level 6

Lastly, to see the current highest score, you can run tetris --high-score. And of course, see tetris --help for help.