-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.js
92 lines (73 loc) · 3.06 KB
/
game.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
// Function to save and load progress using localStorage
function saveProgress(section) {
localStorage.setItem("current_section", section);
}
function loadProgress() {
return localStorage.getItem("current_section") || "introduction";
}
// Display the game start screen
function showStartScreen() {
document.getElementById("game-start").classList.remove("hidden");
document.getElementById("game-content").classList.add("hidden");
document.getElementById("game-over").classList.add("hidden");
}
// Display the story and choices
function displayStory(section) {
saveProgress(section);
fadeOutContent(); // Fade out old content before loading new
setTimeout(() => {
const currentStory = story[section]; // Use story from storyData.js
document.getElementById("story-image").src = currentStory.image;
document.getElementById("story-text").innerText = currentStory.text;
const buttonsContainer = document.getElementById("buttons-container");
buttonsContainer.innerHTML = ''; // Clear previous buttons
if (section === "gameOver") {
showGameOver();
return;
}
currentStory.choices.forEach(choice => {
const button = document.createElement("button");
button.innerText = choice.text;
button.onclick = () => displayStory(choice.next);
buttonsContainer.appendChild(button);
});
fadeInContent(); // Fade in the new content
}, 500); // Wait for fade-out animation to complete
}
// Start the game
document.addEventListener("DOMContentLoaded", () => {
// Get the background music element
const backgroundMusic = document.getElementById("background-music");
showStartScreen();
document.getElementById("start-button").addEventListener("click", () => {
// Play background music when the game starts
backgroundMusic.play();
document.getElementById("game-start").classList.add("hidden");
document.getElementById("game-content").classList.remove("hidden");
displayStory("introduction");
});
document.getElementById("restart-button").addEventListener("click", () => {
document.getElementById("game-over").classList.add("hidden");
document.getElementById("game-content").classList.remove("hidden");
displayStory("introduction");
});
});
// Fade out the current story content
function fadeOutContent() {
const storyText = document.getElementById("story-text");
const storyImage = document.getElementById("story-image-container");
storyText.style.opacity = 0;
storyImage.style.opacity = 0;
}
// Fade in the new story content
function fadeInContent() {
const storyText = document.getElementById("story-text");
const storyImage = document.getElementById("story-image-container");
storyText.style.opacity = 1;
storyImage.style.opacity = 1;
}
// Show the game over screen
function showGameOver() {
document.getElementById("game-over").classList.remove("hidden");
document.getElementById("game-content").classList.add("hidden");
}