Simple terminal-based dungeon generation
I wanted to create a small roguelike game for an Arduino using a MAX7219 (small 8x8 LED matrix) and a joystick, so I created this small algorithm.
Regular version:
gcc -o main main.c -O2
Old (worse) algorithm:
gcc -o main main.c -O2 -DUSE_WORSE_GENERATION
Generate and display a dungeon:
main
Display statistics:
main stat
Generate and display a dungeon:
./main
Display statistics:
./main stat
If you find any bugs or improvements, please open an issue or create a pull request!