No description
Find a file
sherlock c7c4de0d5c
Some checks failed
build / Build (push) Has been cancelled
move to forgejo
2025-03-13 12:29:53 +05:30
.github/workflows Update setup-haskell action 2024-10-19 22:53:49 -04:00
app Implemented toggling functionality for Level Acceleration Mode 2024-12-06 15:32:32 +05:30
dex-images/tetris Update version to 0.1.4 2019-07-20 18:07:15 -04:00
docs/img move to forgejo 2025-03-13 12:29:53 +05:30
src move to forgejo 2025-03-13 12:21:05 +05:30
.gitignore Refactor game state computation 2018-12-27 10:28:26 -05:00
LICENSE First commit, some basic Tetris types 2017-06-12 23:47:31 -04:00
README.md move to forgejo 2025-03-13 12:23:11 +05:30
Setup.hs First commit, some basic Tetris types 2017-06-12 23:47:31 -04:00
stack.yaml Implemented toggling functionality for Level Acceleration Mode 2024-12-06 15:32:32 +05:30
stack.yaml.lock Implemented toggling functionality for Level Acceleration Mode 2024-12-06 15:32:32 +05:30
tetris.cabal Implemented toggling functionality for Level Acceleration Mode 2024-12-06 15:32:32 +05:30

tetris Build Status

A terminal interface for Tetris

[FORK: I forked this from github.com/samtay/tetris, but added optional level progression to the game, and level tracking, and all the corresponding UI elements]

terminal-gif

installation

Installation on MacOS and Linux is outlined below. Windows support is questionable, but you can try to install from source.

MacOS

Installation on a Mac is simple with Homebrew:

brew install samtay/tui/tetris

Arch Linux

Arch Linux users can install from the AUR, e.g.

yay -S tetris-terminal-git # or yaourt, etc.

Snapcraft

Thanks to @thefenriswolf this is available on most Linux distributions via snapcraft:

sudo snap install tetris-thefenriswolf
alias tetris=/snap/bin/tetris-thefenriswolf.tetris # add to .bashrc or .zshrc etc.

install from source

First get stack. Then

git clone https://github.com/samtay/tetris.git
cd tetris
stack install 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 want to skip the level prompt, you can start the game immediately via

tetris --level n

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

tips

troubleshooting

People seem to have varying levels of success with the linux binary. Please note that it is compiled dynamically and hence should not be expected to work on most distros. If you have other problems, feel free to open an issue.

roll your own

If you like games in your terminal and have an interest in functional programming, write your own! This code is built on top of brick which makes building terminal user interfaces very accessible. I also have a tutorial that can help you get started.