-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhanoi.html
98 lines (87 loc) · 2.72 KB
/
hanoi.html
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
<!DOCTYPE html>
<html>
<head>
<title>Towers of Hanoi</title>
<style>
body {
margin: 0;
overflow: hidden;
}
canvas {
background-color: #f0f0f0;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script>
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
const numberOfDiscs = 3; // Change the number of discs as needed
const pegs = [[], [], []]; // Initial configuration with all discs on the first peg
const pegColors = ['#FF0000', '#00FF00', '#0000FF']; // Colors for the discs
let selectedDisc = null;
let moves = 0;
// Initialize the game
function initGame() {
for (let i = numberOfDiscs; i > 0; i--) {
pegs[0].push(i);
}
}
// Draw the pegs and discs
function draw() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Draw pegs
const pegWidth = canvas.width / 4;
const pegHeight = canvas.height;
for (let i = 0; i < 3; i++) {
ctx.fillStyle = '#000';
ctx.fillRect(i * pegWidth + pegWidth / 2 - 10, 50, 20, pegHeight - 100);
}
// Draw discs
const discHeight = 20;
for (let i = 0; i < 3; i++) {
const pegX = i * pegWidth + pegWidth / 2;
const pegY = pegHeight - 50;
for (let j = 0; j < pegs[i].length; j++) {
const discWidth = pegs[i][j] * 20;
const discX = pegX - discWidth / 2;
const discY = pegY - (j + 1) * discHeight;
ctx.fillStyle = pegColors[pegs[i][j] - 1];
ctx.fillRect(discX, discY, discWidth, discHeight);
}
}
}
// Handle mouse click events
canvas.addEventListener('mousedown', (e) => {
const mouseX = e.clientX - canvas.getBoundingClientRect().left;
const clickedPeg = Math.floor(mouseX / (canvas.width / 3));
if (pegs[clickedPeg].length > 0) {
selectedDisc = pegs[clickedPeg].pop();
}
});
canvas.addEventListener('mouseup', (e) => {
const mouseX = e.clientX - canvas.getBoundingClientRect().left;
const targetPeg = Math.floor(mouseX / (canvas.width / 3));
if (selectedDisc !== null && isValidMove(selectedDisc, targetPeg)) {
pegs[targetPeg].push(selectedDisc);
selectedDisc = null;
moves++;
if (pegs[2].length === numberOfDiscs) {
alert(`Congratulations! You completed the game in ${moves} moves.`);
}
}
});
// Check if a move is valid
function isValidMove(disc, targetPeg) {
if (pegs[targetPeg].length === 0 || disc < pegs[targetPeg][pegs[targetPeg].length - 1]) {
return true;
}
return false;
}
// Start the game
initGame();
draw();
</script>
</body>
</html>