|
| 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