-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisease.js
408 lines (346 loc) · 12.5 KB
/
disease.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/*
Author: Tim Davis
disease js file
This file contains the javascript code that handles events on the disease page
*/
/*
TODO: Center simulation div in window?
TODO: check if clearing cell with 2nd click is good
*/
// strict mode
"use strict";
// module pattern
(function() {
// grid constants
var GRID_WIDTH = 25;
var GRID_HEIGHT = 25;
// cell constants
var CELL_WIDTH = 27;
var CELL_HEIGHT = 27;
var CELL_BORDER = 1;
// cell classes: CELL = white, CELL_INFECTED = red, CELL_IMMUNE = blue
var CELL = "cell", CELL_INFECTED = "cell infected",
CELL_IMMUNE = "cell immune", CELL_INTERVENTION = "cell intervention";
// global variables
var cells = [], state = []; // state: 0=uninfected, 1-2=infected, 3=immune, 4=intervention
var running = false;
var stepLength = 500;
var timer;
// counters
var dayCount;
var susceptibleCount;
var infectedCount;
var interventionCount;
var recoveredCount;
// initialization function for event handling
window.onload = function() {
// initialize the grid
resetConstructGrid();
// set up button handlers
$("buttonRun").onclick = run;
$("buttonStep").onclick = step;
$("buttonReset").onclick = resetConstructGrid;
$("buttonInfect").onclick = handleInfectButton;
$("buttonInterventions").onclick = handleInterventionsButton;
};
// construct/reset the grid & simulation
function resetConstructGrid() {
// grab the grid
var grid = $("grid");
// clear the grid
grid.innerHTML = "";
// set the grid's dimensions
grid.style.width = GRID_WIDTH * CELL_WIDTH + "px";
grid.style.height = GRID_HEIGHT * CELL_HEIGHT + "px";
// reset cells and state arrays
cells = [];
state = [];
// populate the grid with cells
createCells();
// reset and update counters
dayCount = infectedCount = interventionCount = recoveredCount = 0;
susceptibleCount = GRID_WIDTH * GRID_HEIGHT;
updateCounters();
// reset and start the graph
clearGraph();
updateGraph();
}
// create cells and populate the grid with them, initialize cell state
function createCells() {
for (var row = 0; row < GRID_HEIGHT; row++) {
cells[row] = [];
state[row] = [];
for (var col = 0; col < GRID_WIDTH; col++) {
// create the cell, give it basic properties
var cell = document.createElement("div");
cell.className = CELL;
cell.id = row + "_" + col + "_cell"; // contains cell's position
// set its dimensions
setDimensions(cell);
// set its position
setPosition(cell, col, row);
// set its event handlers
cell.onclick = cellClick;
cell.onmouseover = cellMouseOver;
cell.onmouseout = cellMouseOut;
// place it in the grid
$("grid").appendChild(cell);
// place it in the cells array, initialize cell state array
cells[row][col] = cell;
state[row][col] = 0;
}
}
}
// sets a cell's dimensions, accounting for cell border width
function setDimensions(cell) {
cell.style.width = CELL_WIDTH - (2 * CELL_BORDER) + "px";
cell.style.height = CELL_HEIGHT - (2 * CELL_BORDER) + "px";
}
// sets a cell's position
function setPosition(cell, col, row) {
var posX = col * CELL_WIDTH;
var posY = row * CELL_HEIGHT;
cell.style.left = posX + "px";
cell.style.top = posY + "px";
}
// handles running and stopping
function run() {
running = !running;
this.className = running ? "active" : "inactive";
if (running) {
timer = setInterval(function() { step(); }, stepLength);
$("buttonRun").innerHTML = "Stop";
} else {
clearInterval(timer);
$("buttonRun").innerHTML = "Run";
}
// disable step functionality while running
$("buttonStep").disabled = running;
$("buttonReset").disabled = running;
}
// handles taking a time step
function step() {
var algorithmTime, guiTime;
// algorithm
algorithmTime = (new Date().getTime());
calcNextGenState();
algorithmTime = (new Date().getTime()) - algorithmTime;
$("algorithmTime").innerHTML = algorithmTime;
// gui
guiTime = (new Date().getTime());
updateCells();
guiTime = (new Date().getTime()) - guiTime;
$("guiTime").innerHTML = guiTime;
// counter
dayCount++;
updateCounters();
// graph
updateGraph();
}
// handles the add infections button
function handleInfectButton() {
var buttonInfect = this;
var buttonInterventions = $("buttonInterventions");
buttonInfect.disabled = true;
buttonInfect.className = "active";
buttonInterventions.disabled = false;
buttonInterventions.className = "inactive";
//$("info").innerHTML = "Clicking will infect cells";
}
// handles the interventions button
function handleInterventionsButton() {
var buttonInfect = $("buttonInfect");
var buttonInterventions = this;
buttonInfect.disabled = false;
buttonInfect.className = "inactive";
buttonInterventions.disabled = true;
buttonInterventions.className = "active";
//$("info").innerHTML = "Clicking will add interventions";
}
// calculates next generation's state
function calcNextGenState() {
cells.forEach(function(cellRow, row) {
cellRow.forEach(function(cell, col) {
// check if the cell is infected
if (cell.className === CELL_INFECTED) {
// increase the current cell's "age"
state[row][col]++;
// find the next infection location
var newPos = findNextInfection(row, col);
var newRow = newPos.newRow, newCol = newPos.newCol;
//var num = newPos.num; // testing
// validate new location
if (isValidLocation(newRow, newCol)) {
// make sure new location hasn't been affected
if (state[newRow][newCol] === 0) {
// infect the new location
state[newRow][newCol] = 1;
infectedCount++;
//cells[newRow][newCol].innerHTML = num; // testing
}
}
}
});
});
}
// updates the cells from state array
function updateCells() {
susceptibleCount = infectedCount = recoveredCount = interventionCount = 0;
//update cells
for (var row = 0; row < GRID_HEIGHT; row++) {
for (var col = 0; col < GRID_WIDTH; col++) {
var cellState = state[row][col];
if (cellState === 0) {
cells[row][col].className = CELL;
susceptibleCount++;
} else if (cellState === 3) {
cells[row][col].className = CELL_IMMUNE;
recoveredCount++;
} else if (cellState === 4) {
cells[row][col].className = CELL_INTERVENTION;
interventionCount++;
} else {
cells[row][col].className = CELL_INFECTED;
infectedCount++;
}
}
}
}
// updates the html counters with current counters
function updateCounters() {
$("dayCount").innerHTML = dayCount;
$("susceptibleCount").innerHTML = susceptibleCount;
$("interventionCount").innerHTML = interventionCount;
$("infectedCount").innerHTML = infectedCount;
$("recoveredCount").innerHTML = recoveredCount;
}
// handles a cell being clicked
function cellClick() {
// infect or place intervention based on buttons
var infect = $("buttonInfect").disabled;
// get location
var pos = this.id.split("_"), row = parseInt(pos[0]), col = parseInt(pos[1]);
// determine new state
var stateType = infect ?
((state[row][col] == 1) ? 0 : 1) : ((state[row][col] == 4) ? 0 : 4);
// update state
state[row][col] = stateType;
// update cells
updateCells();
// update counters
updateCounters();
}
// handles a cell being moused over
function cellMouseOver() {
//this.className = this.className + " infectHover";
}
// handles a cell being moused out
function cellMouseOut() {
/*
var parts = this.className.split(" ");
var newClass = parts[0];
if (parts.length > 2) {
newClass = newClass + " " + parts[1];
}
this.className = newClass;
*/
}
// randomly generates the next location to infect
function findNextInfection(newRow, newCol) {
var num = Math.floor(Math.random() * 10000);
// 2 rows higher (0-639)
if (num >= 0 && num <= 95) {
newRow -= 2;
newCol -= 2;
} else if (num >= 96 && num <= 235) {
newRow -= 2;
newCol -= 1;
} else if (num >= 236 && num <= 403) {
newRow -= 2;
} else if (num >= 404 && num <= 543) {
newRow -= 2;
newCol += 1;
} else if (num >= 544 && num <= 639) {
newRow -= 2;
newCol += 2;
}
// 1 row higher (640-2602)
else if (num >= 640 && num <= 779) {
newRow -= 1;
newCol -= 2;
} else if (num >= 780 && num <= 1258) {
newRow -= 1;
newCol -= 1;
} else if (num >= 1259 && num <= 1983) {
newRow -= 1;
} else if (num >= 1984 && num <= 2462) {
newRow -= 1;
newCol += 1;
} else if (num >= 2463 && num <= 2602) {
newRow -= 1;
newCol += 2;
}
// same row (2603 - 7396)
else if (num >= 2603 && num <= 2770) {
newCol -= 2;
} else if (num >= 2771 && num <= 3495) {
newCol -= 1;
} else if (num >= 3496 && num <= 6503) {
// num is 2784-7215
// nothing new will get infected
} else if (num >= 6504 && num <= 7228) {
newCol += 1;
} else if (num >= 7229 && num <= 7396) {
newCol += 2;
}
// 1 row lower (7397-9359)
else if (num >= 7397 && num <= 7536) {
newRow += 1;
newCol -= 2;
} else if (num >= 7537 && num <= 8015) {
newRow += 1;
newCol -= 1;
} else if (num >= 8016 && num <= 8740) {
newRow += 1;
} else if (num >= 8741 && num <= 9219) {
newRow += 1;
newCol += 1;
} else if (num >= 9220 && num <= 9359) {
newRow += 1;
newCol += 2;
}
// 2 rows lower (9360-9999)
else if (num >= 9360 && num <= 9455) {
newRow += 2;
newCol -= 2;
} else if (num >= 9456 && num <= 9595) {
newRow += 2;
newCol -= 1;
} else if (num >= 9596 && num <= 9763) {
newRow += 2;
} else if (num >= 9764 && num <= 9903) {
newRow += 2;
newCol += 1;
} else if (num >= 9904 && num <= 9999) {
newRow += 2;
newCol += 2;
}
else {
alert("Error finding next generation number!");
}
return {
newRow: newRow,
newCol: newCol,
num: num
};
}
// ensures a given location is within the grid boundaries
function isValidLocation(row, col) {
return row >= 0 && row < GRID_HEIGHT
&& col >= 0 && col < GRID_WIDTH;
}
// factors out getting element by id
function $(id) {
return document.getElementById(id);
}
})();