A simple snake clone in C and SDL 1.2
Go to file
Kevin MacMartin 2a4885294c Try to fix the screenshot on gitea 2020-10-23 17:30:13 -04:00
.gitignore Added .gitignore and set to include build output files 2014-08-20 03:44:32 -04:00
DroidSans-Bold.ttf Initial commit with working builds for linux and windows (via mingw32) 2014-05-29 12:50:57 -04:00
LICENSE Added a LICENSE file and README in markdown 2014-05-29 13:47:39 -04:00
Makefile Initial commit with working builds for linux and windows (via mingw32) 2014-05-29 12:50:57 -04:00
README.md Try to fix the screenshot on gitea 2020-10-23 17:30:13 -04:00
isnake.c Add an option to render the game at twice the size 2020-10-23 17:20:32 -04:00
screenshot.png Add the screenshot locally 2020-10-23 16:14:29 -04:00

README.md

Intelligent Snake

Intelligent Snake is a simple clone of the famous snake-style games. It's meant both as a fun time waster as well as a simple working SDL program to learn from and use as a reference.

Intelligent Snake

Compile

Linux

Requirements

  • make
  • gcc
  • SDL (version 1.2)
  • SDL_ttf

Build

  • make: Build Intelligent Snake and copy required files to ./bin/
  • make clean: Remove build directories

Windows

Requirements

  • make
  • mingw-w64
  • mingw-w64-sdl (version 1.2)
  • mingw-w64-sdl_ttf

Build

  • make windows: Build Intelligent Snake for Windows and copy required files to ./windows-bin/
  • make clean: Remove build directories

Note: The Makefile assumes mingw32 is installed to /usr/x86_64-w64-mingw32/, and you should edit MINGW and MINGWPATH if your system installs it elsewhere.

Commands

Usage: ./isnake [options]

Options

  • ./isnake: Start the game with the default options
  • ./isnake -g [width] [height]: Set the grid size: between [30]x[20] and [80]x[50] (DEFAULT: [50]x[30])
  • ./isnake -b [blocks]: Set the number of blocks: between [0] and [40] (DEFAULT: [20])
  • ./isnake -l [length]: Set the snake's starting length: between [3] and [35] (DEFAULT: [3])
  • ./isnake -s [speed]: Set the snake's starting speed: between [1] and [9] (DEFAULT: [1])
  • ./isnake -2: Double the size the game renders at
  • ./isnake -h: Display help information

Controls

  • Movement
    • FPS Keys: w, a, s and d
    • Vim Keys: k, h, j and l
    • Arrow Keys: up, left, down and right
  • Quit: Escape and q
  • Restart (after death): Space and Return

Credits

License