Skip to content

Commit e058df5

Browse files
added some nice touches
1 parent 6e63e9b commit e058df5

File tree

3 files changed

+45
-19
lines changed

3 files changed

+45
-19
lines changed

canvas.js

+24-17
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,19 @@ document.addEventListener("DOMContentLoaded", function (event) {
2020
canvas.onmousedown = mouseDown;
2121
mouseUp = true;
2222
});
23-
document.getElementById("startstop").addEventListener("click", function () {
24-
if (isDraw) {
25-
isDraw = false;
26-
document.getElementById("state").innerText = "Stopped"
23+
function StartStop(isdraw) {
24+
console.log(isdraw)
25+
if (isdraw) {
26+
isDraw = false;
27+
document.getElementById("state").innerText = "Stopped";
2728
} else {
28-
isDraw = true;
29-
document.getElementById("state").innerText = "Running";
30-
draw();
29+
isDraw = true;
30+
document.getElementById("state").innerText = "Running";
31+
draw();
3132
}
33+
}
34+
document.getElementById("startstop").addEventListener("click", function () {
35+
StartStop(isDraw)
3236
})
3337
document.getElementById("simulate").addEventListener("change", function () {
3438
if (document.getElementById("simulate").checked) {
@@ -60,16 +64,19 @@ function mouseDown(event) {
6064
function onMouseMove(event) {
6165
x = parseInt(event.offsetX / 4);
6266
y = parseInt(event.offsetY / 4);
63-
grid[y][x] = [1, hue];
64-
const randomNumber = Math.floor(Math.random() * 4) + 1;
65-
const randomNumber1 = Math.floor(Math.random() * 4) + 1;
66-
if (y != grid.length-1 && (randomNumber==1||randomNumber1==1)) { grid[y + 1][x] = [1, hue]; }
67-
if (x != grid[y].length && (randomNumber==2||randomNumber1==2)) { grid[y][x + 1] = [1, hue]; }
68-
if (x != 0 && (randomNumber==3||randomNumber1==3)) { grid[y][x - 1] = [1, hue]; }
69-
if (y != 0 && (randomNumber==4||randomNumber1==4)) { grid[y - 1][x] = [1, hue]; }
70-
if (isDraw == false) {
71-
isDraw = true;
72-
draw();
67+
if (grid[y][x][0] != 1) {
68+
grid[y][x] = [1, hue];
69+
const randomNumber = Math.floor(Math.random() * 4) + 1;
70+
const randomNumber1 = Math.floor(Math.random() * 4) + 1;
71+
if (y != grid.length - 1 && (randomNumber == 1 || randomNumber1 == 1)) { grid[y + 1][x] = [1, hue]; }
72+
if (x != grid[y].length && (randomNumber == 2 || randomNumber1 == 2)) { grid[y][x + 1] = [1, hue]; }
73+
if (x != 0 && (randomNumber == 3 || randomNumber1 == 3)) { grid[y][x - 1] = [1, hue]; }
74+
if (y != 0 && (randomNumber == 4 || randomNumber1 == 4)) { grid[y - 1][x] = [1, hue]; }
75+
if (isDraw == false) {
76+
isDraw = true;
77+
document.getElementById("state").innerText = "Running";
78+
draw();
79+
}
7380
}
7481
}
7582
if (mouseUp == false) {

index.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
<link rel="stylesheet" href="styles.css">
88
</head>
99
<body>
10+
<div class="options">
1011
<button id="startstop">Start/Stop</button> <label for="startstop" id="state">Running</label>
11-
<input type="checkbox" id="simulate" checked> simulate
12+
<input type="checkbox" id="simulate" checked><label for="simulate" >simulate</label>
13+
</div>
1214
<main>
1315
<canvas id="canvas"></canvas>
1416
</main>

styles.css

+18-1
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,31 @@ body {
1414
font-size: 16px;
1515
line-height: 1.5;
1616
color: #333;
17-
background: #f5f5f5;
1817
margin: 1em 0 0 2em;
1918
padding: 0;
2019
}
20+
#startstop{
21+
margin-bottom: 5px;
22+
border-radius: 5px;
23+
outline: none;
24+
border: none;
25+
color: white;
26+
background-color: orange;
27+
}
28+
.options{
29+
background-color: rgb(255, 77, 106);
30+
justify-content: center;
31+
text-align: center;
32+
vertical-align: middle;
33+
border-top-left-radius: 5px;
34+
border-top-right-radius: 5px;
35+
}
2136

2237
#canvas {
2338
display: block;
2439
border: 1px solid #000;
2540
box-sizing: content-box;
2641
background-color: black;
42+
border-bottom-left-radius: 5px;
43+
border-bottom-right-radius: 5px;
2744
}

0 commit comments

Comments
 (0)