summaryrefslogtreecommitdiff
path: root/maze_generator.rb
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-04-22 11:28:17 +0200
committerNoah Loomans <noahloomans@gmail.com>2018-04-22 11:28:17 +0200
commit98e79b09894b63d38d6bd39f97ca4df09e50b765 (patch)
tree2ac7122d30cb20971d863441569e2d0d1c97bf06 /maze_generator.rb
parent70834814edf45cfe68d9bb65a21523e02c80f926 (diff)
Move MazeGenerator to seperate file
Diffstat (limited to 'maze_generator.rb')
-rw-r--r--maze_generator.rb56
1 files changed, 56 insertions, 0 deletions
diff --git a/maze_generator.rb b/maze_generator.rb
new file mode 100644
index 0000000..9797624
--- /dev/null
+++ b/maze_generator.rb
@@ -0,0 +1,56 @@
+require_relative 'pos'
+require_relative 'maze'
+
+class MazeGenerator
+ attr_reader :maze
+
+ def initialize(width, height)
+ @maze = Maze.new(width, height)
+ @visitedTiles = Array.new(width) { Array.new(height) { false } }
+ end
+
+ def generate()
+ @visitedCells = [@currentPos]
+ @stack = [Pos.new(rand(@maze.width), rand(@maze.height))]
+
+ if ENV["DEBUG"] == "visual"
+ print "\e[?1049h" # Save the state of the terminal
+ print "\e[2J" # Clear the screen
+ print "\e[0;0H" # Move the cursor to 0, 0
+ print "\n [ \e[1;35mGenerating maze...\e[0m ]\n\n" # Print some nice graphics
+ print "\e[s" # Save the cursor position
+ end
+
+ print "\e[s" if ENV["DEBUG"] == "visual"
+
+ while !@stack.empty?
+ step()
+ if ENV["DEBUG"] == "visual"
+ print "\e[u" # Restore the cursor position
+ print @maze.to_s(" ")
+ end
+ end
+
+ if ENV["DEBUG"] == "visual"
+ print "\e[?1049l" # Restore the state of the terminal
+ end
+ end
+
+ def step()
+ neighbors = @maze.neighbors(@stack.last)
+ neighbors.select! do |neighbor|
+ @visitedTiles[neighbor.x][neighbor.y] == false
+ end
+
+ if neighbors.empty?
+ @stack.pop()
+ else
+ randomNeighbor = neighbors.sample
+ print "Removing wall between ", @stack.last, " and ", randomNeighbor, "\n" if ENV["DEBUG"] == "log"
+ @maze.set(@stack.last, randomNeighbor.dir_from(@stack.last), false)
+
+ @stack.push(randomNeighbor)
+ @visitedTiles[randomNeighbor.x][randomNeighbor.y] = true
+ end
+ end
+end