-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
129 lines (110 loc) · 4.61 KB
/
index.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
function init(){
//populate map with empty spaces
var mapWidth = 16;
var mapheight = 16;
var theTable = $('#thetable');
//empty table
theTable.empty();
// $('#thetable').empty()
var temp = '';
for (var i = 0; i<mapWidth;i++){
temp+='<tr>';
for(var j =0; j<mapheight; j++){
temp += '<td><div class="cell"></div></td>';
}
temp+='</tr>';
}
theTable.append(temp);
var sizeAdjustment = 16;
if($(window).height() < $(window).width()){
$('td').each(function(){
$(this).css('width', $(window).height()/mapWidth - sizeAdjustment);
$(this).css('height', $(window).height()/mapWidth - sizeAdjustment);
});
} else {
$('td').each(function(){
$(this).css('width', $(window).width()/mapWidth - sizeAdjustment);
$(this).css('height', $(window).width()/mapWidth - sizeAdjustment);
});
}
//populate walls
//top and bottom walls
var firstWall = Math.floor((Math.random() * (mapWidth - 3) + 1));
var secondWall = Math.floor((Math.random() * (mapWidth - 3) + 1));;
while(secondWall === firstWall || secondWall === firstWall + 1 || secondWall === firstWall - 1) {
secondWall = Math.floor((Math.random() * (mapWidth - 3) + 1));
}
$('tr:eq(0) td:eq('+ firstWall + ')').css('border-right', '10px solid').addClass('occupied');
$('tr:eq(0) td:eq('+ secondWall + ')').css('border-right', '10px solid').addClass('occupied');
firstWall = Math.floor((Math.random() * (mapWidth - 3) + 1));
secondWall = Math.floor((Math.random() * (mapWidth - 3) + 1));;
while(secondWall === firstWall || secondWall === firstWall + 1 || secondWall === firstWall - 1) {
secondWall = Math.floor((Math.random() * (mapWidth - 3) + 1));
}
$('tr:eq('+(mapheight-1)+') td:eq('+ firstWall + ')').css('border-right', '10px solid').addClass('occupied');
$('tr:eq('+(mapheight-1)+') td:eq('+ secondWall + ')').css('border-right', '10px solid').addClass('occupied');
//left and right walls
firstWall = Math.floor((Math.random() * (mapWidth - 3) + 1));
secondWall = Math.floor((Math.random() * (mapWidth - 3) + 1));;
while(secondWall === firstWall || secondWall === firstWall + 1 || secondWall === firstWall - 1) {
secondWall = Math.floor((Math.random() * (mapWidth - 3) + 1));
}
$('tr:eq('+firstWall+') td:eq(0)').css('border-bottom', '10px solid').addClass('occupied');
$('tr:eq('+secondWall+') td:eq(0)').css('border-bottom', '10px solid').addClass('occupied');
firstWall = Math.floor((Math.random() * (mapWidth - 3) + 1));
secondWall = Math.floor((Math.random() * (mapWidth - 3) + 1));;
while(secondWall === firstWall || secondWall === firstWall + 1 || secondWall === firstWall - 1) {
secondWall = Math.floor((Math.random() * (mapWidth - 3) + 1));
}
$('tr:eq('+firstWall+') td:eq('+(mapWidth-1)+')').css('border-bottom', '10px solid').addClass('occupied');
$('tr:eq('+secondWall+') td:eq('+(mapWidth-1)+')').css('border-bottom', '10px solid').addClass('occupied');
//populate map with L-shaped walls
var wallCount = 20;
for(var i=0;i<wallCount;i++){
var x = Math.floor((Math.random() * (mapWidth - 2) + 1));
var y = Math.floor((Math.random() * (mapWidth - 2) + 1));
if(!$('tr:eq('+x+') td:eq('+y+')').hasClass('occupied')){
$('tr:eq('+x+') td:eq('+y+')').addClass(getWall()).addClass('lwall');
}
}
function getWall(){
var walls = ["upright", "upleft", "downright", "downleft"];
var rando = Math.floor(Math.random() * 4);
return walls[rando];
}
//populate robots
while($('.circle').length < 4) {
var temp = $('.cell:eq('+Math.floor(Math.random() * mapWidth * mapheight)+')');
if(!temp.hasClass('circle')) {
temp.addClass('circle').addClass('occupied');
}
}
$('.circle:eq(0)').css('background', 'red').css('border', '1px solid grey;');
$('.circle:eq(1)').css('background', 'green').css('border', '1px solid grey;');
$('.circle:eq(2)').css('background', 'blue').css('border', '1px solid grey;');
$('.circle:eq(3)').css('background', 'yellow').css('border', '1px solid grey;');
while($('.target').length < 4) {
var temp = $('.lwall:eq('+Math.floor(Math.random() * $('.lwall').length) + ')');
if(!temp.hasClass('target') && !temp.hasClass('circle')) {
temp.addClass('target');
}
}
$('.target:eq(0)').css('background', 'red');
$('.target:eq(1)').css('background', 'green');
$('.target:eq(2)').css('background', 'blue');
$('.target:eq(3)').css('background', 'yellow');
$('.cell').each(function(){
if(!$(this).hasClass('circle'))
$(this).addClass('circle');
});
var diameter = $('td').width() * .95;
$('.circle').each(function(){
$(this).css('width', diameter);
$(this).css('height', diameter);
});
}
init();
$('#thetable').click(function(){
init();
});
setInterval(function() { init(); }, 1000 * 60 * 60);