Snake is the common name for a video game concept where the player maneuvers a line which grows in length, with the line itself being a primary obstacle.
Ruby 2D - Create 2D applications, games, and visualizations with ease.
To install Ruby 2D, run
gem install ruby2d
- The player controls a dot, square, or object on a bordered plane.
- As it moves forward, it leaves a trail behind, resembling a moving snake.
- In some games, the end of the trail is in a fixed position, so the snake continually gets longer as it moves.
- In another common scheme, the snake has a specific length, so there is a moving tail a fixed number of units away from the head.
- The player loses when the snake runs into the screen border, a trail, other obstacle, or itself.
The Snake concept comes in two major variants:
- In the first, which is most often a two-player game, there are multiple snakes on the playfield. Each player attempts to block the other so the opponent runs into an existing trail and loses. Surround for the Atari VCS is an example of this type. The Light Cycles segment of the Tron arcade game is a single-player version where the other "snakes" are AI controlled.
- In the second variant, a sole player attempts to eat items by running into them with the head of the snake. Each item eaten makes the snake longer, so avoiding collision with the snake becomes progressively more difficult.
My game follows the second concept
Download the code first at a preferred file location.
Open Command Prompt at the file location and run
ruby2d console snake.rb
Use arrow keys to control the snake.
Key | Movement |
---|---|
๐ก | Left |
๐กข | Right |
๐กก | Up |
๐กฃ | Down |
P | Pause |
Q | Quit |
R | Restart |
Snake | Game |
---|---|