-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 3 KB
/
index.html
File metadata and controls
68 lines (62 loc) · 3 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SimDev</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="game-container">
<div class="home-screen" id="home-screen">
<h1>SimDev</h1>
<div class="menu-options" id="menu-options">
<button class="menu-button" data-action="new">New Game</button>
<button class="menu-button" data-action="load">Load Game</button>
<button class="menu-button" data-action="tutorial">Tutorial</button>
</div>
</div>
<div class="game-screen hidden" id="game-screen">
<div class="status-display">
<p id="status-text">Company: <span id="company-name"></span> | Week: <span id="week-number"></span> | Money: $<span id="money-amount"></span></p>
</div>
<div class="phase-indicator hidden" id="phase-indicator">
<div class="phase-step" data-phase="planning">Planning</div>
<div class="phase-step" data-phase="development">Production</div>
<div class="phase-step" data-phase="testing">Testing</div>
<div class="phase-step" data-phase="release">Polish</div>
</div>
<div class="game-output" role="log" aria-live="polite">
<div class="message-container"></div>
</div>
<div class="command-input">
<input type="text" id="command-line" placeholder="Enter command...">
</div>
</div>
</div>
<audio id="click-sound" preload="auto">
<source src="data:audio/mpeg;base64,SUQzBAAAAAAAI1RTU0UAAAAPAAADTGF2ZjU4Ljc2LjEwMAAAAAAAAAAAAAAA/+M4wAAAAAAAAAAAAEluZm8AAAAPAAAAAwAAABQAVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV/+MYxAAMgAkYBQAQAANn4uLjQCgaD4Pg+D4f/+MYxA8L0DU0AAgAAD4Ph+H4fD8Pw+D4Ph8Hw/D4Ph",
type="audio/mpeg">
</audio>
<!-- Load gameState.js first since other modules depend on it -->
<script src="js/systems/gameState.js"></script>
<script src="js/systems/developmentSystem.js"></script>
<script src="js/data/audienceData.js"></script>
<script src="js/data/gameData.js"></script>
<script src="js/data/genreData.js"></script>
<script src="js/data/workspaceData.js"></script>
<!-- Then UI files -->
<script src="js/ui/uiManager.js"></script>
<script src="js/ui/notifications.js"></script>
<script src="js/ui/helpSystem.js"></script>
<script src="js/ui/commandHandler.js"></script>
<!-- Then remaining system files -->
<script src="js/systems/saveSystem.js"></script>
<script src="js/systems/reputationSystem.js"></script>
<script src="js/systems/staffSystem.js"></script>
<!-- Game modes -->
<script src="js/modes/tutorial.js"></script>
<script src="js/modes/newGame.js"></script>
<!-- Main script last -->
<script src="js/main.js"></script>
</body>
</html>