Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shixinhuang99/sxtetris

A terminal Tetris game
https://github.com/shixinhuang99/sxtetris

Last synced: 2 days ago
JSON representation

A terminal Tetris game

Awesome Lists containing this project

README

        

# Sxtetris

A terminal Tetris game written in Rust, based on [ratatui](https://github.com/ratatui-org/ratatui) and [tokio](https://github.com/tokio-rs/tokio)

https://github.com/shixinhuang99/sxtetris/assets/31186725/1eb95c10-e57e-4239-8142-95800e1afca8

## Installation

### Cargo

```sh
cargo install sxtetris --locked
```

### AUR

You can install `sxtetris` from the [AUR](https://aur.archlinux.org/packages/sxtetris) with using an [AUR helper](https://wiki.archlinux.org/title/AUR_helpers).

```sh
paru -S sxtetris
```

### Binary releases

Download the [latest release binary](https://github.com/shixinhuang99/sxtetris/releases)

## Note

1. Suggested minimal terminal size: `176x49`.
2. The terminal needs to support 24 bit color(true color), such as the `iTerm2`.
3. If you are a macOS user, please do not use the built-in terminal, as its forced line spacing makes the characters in the game look weird. It is recommended to use more modern terminals such as `iTerm2`.
4. Use the `--show-save-path` argument at launch game to see the save location.
5. If you are a linux user and get the following error when using `cargo install`:

```
The system library `alsa` required by crate `alsa-sys` was not found.
The file `alsa.pc` needs to be installed and the PKG_CONFIG_PATH environment variable must contain its parent directory.
The PKG_CONFIG_PATH environment variable is not set.

HINT: if you have installed the library, try setting PKG_CONFIG_PATH to the directory containing `alsa.pc`.
```

you can try running the following command and install again:

```sh
sudo apt-get update
sudo apt-get install libasound2-dev
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig
```

## Sources of music and sound effects

All audio files are in the `src/global/assets` directory, files from [freesound](https://freesound.org) are trimmed

| file | author | source |
| ------------- | --------------- | ---------------------------------------------------------------------- |
| bg_music.mp3 | Stable Audio | |
| game_over.wav | themusicalnomad | |
| lock.wav | Mellau | |
| menu.wav | Christopherderp | |
| move.wav | aphom000 | |
| clear.mp3 | B_Lamerichs | |

## Disclaimer

This project is an open-source Tetris game running in the terminal. The Tetris game is a registered trademark, and all rights belong to its respective owner. This project is intended for educational and research purposes only and should not be used for any commercial purposes.

By using this project, you agree to use it solely for non-commercial educational and research purposes. The developer is not responsible for any infringement.