No description
Find a file
2017-06-18 19:16:00 -04:00
app Finish level picker, start game interface 2017-06-17 02:55:21 -04:00
docs/img Update README with some unix porn 2017-06-18 19:16:00 -04:00
src Update README with some unix porn 2017-06-18 19:16:00 -04:00
.gitignore First commit, some basic Tetris types 2017-06-12 23:47:31 -04:00
LICENSE First commit, some basic Tetris types 2017-06-12 23:47:31 -04:00
README.md Update README with some unix porn 2017-06-18 19:16:00 -04:00
Setup.hs First commit, some basic Tetris types 2017-06-12 23:47:31 -04:00
stack.yaml Build out more game mechanics 2017-06-14 00:28:45 -04:00
tetris.cabal Delete test suite 2017-06-18 00:27:27 -04:00

tetris

A terminal interface for Tetris

terminal-gif

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` | sudo tee /usr/local/bin/tetris
sudo chmod +x /usr/local/bin/tetris

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

linux-tomorrow-night-80s

Mac terminal - plain

mac-terminal-plain

Mac terminal - grass

mac-terminal-grass

todo

  1. Leaderboard saved to txt file (requires adding brick viewport for name entry) and probably wrapping game in a ui state type
  2. Use linear V2 instead of tuples.. dummy
  3. Consider refactoring (Game -> a) types with State or Reader abstraction