Skip to content

Samuele458/MazeGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MazeGenerator

A simple maze generator and solver!

Warning, this is an old and not optimized project!

maze

Maze Generator works better on Linux.

You can compile it with;

$   gcc maze.c -o maze

Settings must be chosen before compiling, by modifying these lines:


//config parameters
#define SIZE 121
#define WALL 'O'
#define WALK '.'
#define SPEED 10000

  • SIZE is the side length. It must be an odd number
  • WALL is the char used to represent walls
  • WALK is the char used to represent the maze solution
  • SPEED is the delay (in ms) between screen refresh, so a lower value means a faster animation

About

A simple maze generator and solver!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages