Skip to content

Commit 43ad95e

Browse files
authored
Merge pull request #54 from sethcwhiting/fiona
added snake to my page
2 parents 7ee0838 + 49978a8 commit 43ad95e

File tree

2 files changed

+129
-5
lines changed

2 files changed

+129
-5
lines changed

2024/FionaHarrell/index.html

+19-5
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,17 @@
6464
padding: 20px;
6565
text-align: center;
6666
}
67+
#snake {
68+
display: flex;
69+
justify-content: center;
70+
align-items: center;
71+
height: 100vh;
72+
background-color: #000;
73+
margin: 0;
74+
}
75+
canvas {
76+
border: 1px solid #fff;
77+
}
6778
</style>
6879
</head>
6980
<body>
@@ -89,14 +100,17 @@ <h2>Lyrics</h2>
89100
<div class="video">
90101
<h2>Music</h2>
91102
<audio controls loop>
92-
<source src="./song.mp3" type="audio/mpeg">
103+
<source src="/2024/FionaHarrell/song.mp3" type="audio/mpeg">
93104
Your browser does not support the audio element.
94105
</audio>
95106
</div>
96107
</section>
97-
98-
<footer>
99-
<p>&copy; 2024 We Own the Night. All rights reserved.</p>
100-
</footer>
108+
<div id="snake">
109+
<canvas id="gameCanvas" width="400" height="400"></canvas>
110+
</div>
111+
<footer>
112+
<p>&copy; 2024 We Own the Night. All rights reserved.</p>
113+
</footer>
101114
</body>
115+
<script src="/2024/FionaHarrell/snake.js"></script>
102116
</html>

2024/FionaHarrell/snake.js

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
const canvas = document.getElementById('gameCanvas');
2+
const ctx = canvas.getContext('2d');
3+
4+
const gridSize = 20;
5+
const tileCount = canvas.width / gridSize;
6+
7+
let snake = [{ x: 10, y: 10 }];
8+
let food = { x: 15, y: 15 };
9+
let direction = { x: 0, y: 0 };
10+
let nextDirection = { x: 0, y: 0 };
11+
let score = 0;
12+
13+
function gameLoop() {
14+
if (direction.x !== 0 || direction.y !== 0) {
15+
moveSnake();
16+
if (checkCollision()) {
17+
resetGame();
18+
} else {
19+
if (checkFood()) {
20+
growSnake();
21+
placeFood();
22+
score++;
23+
}
24+
drawGame();
25+
}
26+
}
27+
setTimeout(gameLoop, 100);
28+
}
29+
30+
function moveSnake() {
31+
const head = { x: snake[0].x + direction.x, y: snake[0].y + direction.y };
32+
snake.unshift(head);
33+
snake.pop();
34+
}
35+
36+
function checkCollision() {
37+
const head = snake[0];
38+
if (head.x < 0 || head.x >= tileCount || head.y < 0 || head.y >= tileCount) {
39+
return true;
40+
}
41+
for (let i = 1; i < snake.length; i++) {
42+
if (head.x === snake[i].x && head.y === snake[i].y) {
43+
return true;
44+
}
45+
}
46+
return false;
47+
}
48+
49+
function checkFood() {
50+
return snake[0].x === food.x && snake[0].y === food.y;
51+
}
52+
53+
function growSnake() {
54+
snake.push({ ...snake[snake.length - 1] });
55+
}
56+
57+
function placeFood() {
58+
food.x = Math.floor(Math.random() * tileCount);
59+
food.y = Math.floor(Math.random() * tileCount);
60+
}
61+
62+
function drawGame() {
63+
ctx.fillStyle = 'black';
64+
ctx.fillRect(0, 0, canvas.width, canvas.height);
65+
66+
ctx.fillStyle = 'lime';
67+
snake.forEach(segment => {
68+
ctx.fillRect(segment.x * gridSize, segment.y * gridSize, gridSize, gridSize);
69+
});
70+
71+
ctx.fillStyle = 'red';
72+
ctx.fillRect(food.x * gridSize, food.y * gridSize, gridSize, gridSize);
73+
74+
ctx.fillStyle = 'white';
75+
ctx.font = '20px Arial';
76+
ctx.fillText(`Score: ${score}`, 10, 20);
77+
}
78+
79+
function resetGame() {
80+
snake = [{ x: 10, y: 10 }];
81+
direction = { x: 0, y: 0 };
82+
nextDirection = { x: 0, y: 0 };
83+
score = 0;
84+
placeFood();
85+
}
86+
87+
document.addEventListener('keydown', event => {
88+
switch (event.key) {
89+
case 'ArrowUp':
90+
if (direction.y === 0) nextDirection = { x: 0, y: -1 };
91+
break;
92+
case 'ArrowDown':
93+
if (direction.y === 0) nextDirection = { x: 0, y: 1 };
94+
break;
95+
case 'ArrowLeft':
96+
if (direction.x === 0) nextDirection = { x: -1, y: 0 };
97+
break;
98+
case 'ArrowRight':
99+
if (direction.x === 0) nextDirection = { x: 1, y: 0 };
100+
break;
101+
}
102+
});
103+
104+
function updateDirection() {
105+
direction = nextDirection;
106+
setTimeout(updateDirection, 100);
107+
}
108+
109+
updateDirection();
110+
gameLoop();

0 commit comments

Comments
 (0)