-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
70 lines (61 loc) · 1.41 KB
/
test.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const generate = require('./')
const { abs, floor, random } = Math
const sprites = {
floor: ' ',
wall: String.fromCharCode(0x2588).repeat(2)
}
var world = {
width: 15,
height: 15,
tiles: new Array(15 * 15).fill('wall')
}
var nodes = cells(world).filter(cell => cell.x % 2 && cell.y % 2)
var maze = generate(nodes, adjacent, choose)
connect(maze, world)
var view = render(world)
console.log(view)
function cells(grid) {
var { width, height } = grid
var cells = new Array(width * height)
for (var y = 0; y < height; y++) {
for (var x = 0; x < width; x++) {
var cell = { x, y }
cells[locate(grid, cell)] = cell
}
}
return cells
}
function locate(grid, cell) {
return cell.y * grid.width + cell.x
}
function adjacent(a, b) {
return abs(b.x - a.x) + abs(b.y - a.y) === 2
}
function choose(array) {
return array[floor(random() * array.length)]
}
function connect(maze, world) {
for (var [node, neighbors] of maze) {
world.tiles[locate(world, node)] = 'floor'
for (var neighbor of neighbors) {
var midpoint = {
x: node.x + (neighbor.x - node.x) / 2,
y: node.y + (neighbor.y - node.y) / 2
}
world.tiles[locate(world, midpoint)] = 'floor'
}
}
}
function render(world) {
var view = ''
for (var cell of cells(world)) {
var tile = world.tiles[locate(world, cell)]
var sprite = sprites[tile]
if (!cell.x && cell.y) {
view += '\n' + sprite
} else {
view += sprite
}
}
return view
}