Skip to content

baurst/rs_snake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

55 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Build Status

Snake ...

... with your friends ...

... on your command line!

This is an implementation of the classic game Snake in Rust. It runs in all UNIX and Windows terminals without using any GUI framework or window manager.

Demo

Try it out!

Using prebuilt binaries

We provide prebuilt binaries for both Windows and Linux. So if you just want to play a quick game you can head over to the Releases section and download the latest release for your platform: Latest Release

Building from Source

Building it yourself is straightforward:

git clone https://github.com/baurst/rs_snake.git
cd rs_snake
cargo run --release

Controls

At the moment, up to two players are supported. The controls for making the snake turn left or right are:

  • Player 1: arrow keys
  • Player 2: WASD keys

Pressing Esc or q will terminate the game.

Options

The game provides options to change to multiplayer mode (using --multi).

Difficulty of the game (i.e. speed of the snake) is adjustable using either --easy or --hard:

$ rs_snake --help
snake 0.3.0
Author: baurst
Classic snake game for your terminal

USAGE:
    rs_snake [FLAGS]

FLAGS:
    -e, --easy                sets difficulty to easy
    -h, --hard                sets difficulty to hard
        --help                Prints help information
    -m, --multi               enables multiplayer mode
    -t, --two_key_steering    steer the snakes using two keys only (increased difficulty)
    -V, --version             Prints version information