No description
app | ||
docs/img | ||
src | ||
.gitignore | ||
LICENSE | ||
README.md | ||
Setup.hs | ||
stack.yaml | ||
tetris.cabal |
tetris
A terminal interface for Tetris
installation
For Mac and Linux, the binaries attached to the GitHub release should suffice. Here is a quick way to get the one for your OS:
curl -L https://github.com/samtay/tetris/releases/download/0.1.0/tetris-`uname -s`-`uname -m` -o tetris
chmod +x tetris
sudo mv tetris /usr/local/bin/
For Windows, you have to install from source. First get stack. Then
git clone https://github.com/samtay/tetris.git
cd tetris
stack install tetris
screenshots
Linux termite - tomorrow night eighties
Mac terminal - plain
Mac terminal - grass
todo
- Leaderboard saved to txt file (requires adding brick viewport for name entry) and probably wrapping game in a ui state type
- Use linear V2 instead of tuples.. dummy
- Consider refactoring (Game -> a) types with State or Reader abstraction