Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gareththegeek/maze
A game for the DIY gamer kit
https://github.com/gareththegeek/maze
arduino diy-gamer-kit maze prim-algorithm
Last synced: about 2 months ago
JSON representation
A game for the DIY gamer kit
- Host: GitHub
- URL: https://github.com/gareththegeek/maze
- Owner: gareththegeek
- Created: 2016-01-23T20:00:39.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-23T20:07:14.000Z (almost 9 years ago)
- Last Synced: 2024-10-15T01:44:57.760Z (3 months ago)
- Topics: arduino, diy-gamer-kit, maze, prim-algorithm
- Language: Arduino
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maze
A game for the DIY gamer kitThis game was created for the DIY Gamer Kit
The game uses Prim's algorithm to randomly generate a maze. The object of each level is to get to the exit at the bottom right of the maze. The maze increases in width and height with each successive level up to a maximum of 22x20. At this point I was hitting the limit of available RAM on the ATMega328 (2k).
The implementation of Prim's algorithm is based upon this blog post by Jamis Buck