-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerator.js
47 lines (34 loc) · 1.35 KB
/
generator.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var stack = []
var current
var count = 1
function backtracking( arr )
{
if ( count == total_cells )
return createVector( 0, 0 )
cur = stack.pop( )
neighbours = []
if ( cur.x > 0 )
if ( !arr[ cur.x - 1 ][ cur.y ].is_visited( ) )
neighbours.push( createVector( cur.x - 1, cur.y ) )
if ( cur.x < ( width / cell_size ) - 1 )
if ( !arr[ cur.x + 1 ][ cur.y ].is_visited( ) )
neighbours.push( createVector( cur.x + 1, cur.y ) )
if ( cur.y > 0 )
if ( !arr[ cur.x ][ cur.y - 1 ].is_visited( ) )
neighbours.push( createVector( cur.x, cur.y - 1 ) )
if ( cur.y < ( height / cell_size ) - 1 )
if ( !arr[ cur.x ][ cur.y + 1 ].is_visited( ) )
neighbours.push( createVector( cur.x, cur.y + 1 ) )
if ( neighbours.length )
{
stack.push( cur )
selected = neighbours[ floor( random( neighbours.length ) ) ]
stack.push( selected )
arr[ cur.x ][ cur.y ].remove_wall( selected.x - cur.x, selected.y - cur.y )
arr[ selected.x ][ selected.y ].remove_wall( cur.x - selected.x, cur.y - selected.y )
arr[ selected.x ][ selected.y ].set_visited( )
count++
return selected
}
return cur
}