-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (124 loc) · 5.02 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8">
<title>Luner Lander</title>
<link rel="stylesheet" type="text/css" href="styles/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="styles/style.css"/>
<script src='styles/bootstrap.bundle.min.js'></script>
<script src='scripts/player.js'></script>
<script src='scripts/menuInput.js'></script>
<script src='scripts/gamePlay.js'></script>
<script src='scripts/particles.js'></script>
<script src='scripts/terrain.js'></script>
<script src='scripts/ship.js'></script>
<script src='scripts/input.js'></script>
<script src='scripts/graphics.js'></script>
<script src='scripts/handlers.js'></script>
<script src='scripts/main.js'></script>
</head>
<body onload="main()">
<div class"container">
<div id="canvasSection" class="row row-section">
<div id="canvasSection" class="row d-flex justify-content-center">
<canvas id="canvas" width="1000" height="1000"></canvas>
</div>
</div>
<div id="pauseMenuSection" class="row row-section">
<div class="container">
<div class="row">
<div class="col text-center">
<h2>Game Paused</h2>
</div>
</div>
<div class="row my-4">
<div class="col text-center">
<button type="button" id="resumeMenu" class="btn btn-primary">Resume</button>
</div>
</div>
<div class="row my-4">
<div class="col text-center">
<button type="button" id="exitMenu" class="btn btn-primary">Exit</button>
</div>
</div>
</div>
</div>
<div id="mainMenuSection" class="row row-section">
<div class="container">
<div class="row my-4">
<div class="col text-center">
<button type="button" id="newGameMenu" class="btn btn-primary">New Game</button>
</div>
</div>
<div class="row my-4">
<div class="col text-center">
<button type="button" id="highscoresMenu" class="btn btn-primary">High Scores</button>
</div>
</div>
<div class="row my-4">
<div class="col text-center">
<button type="button" id="customizeMenu" class="btn btn-primary">Customize Controls</button>
</div>
</div>
<div class="row my-4">
<div class="col text-center">
<button type="button" id="creditsMenu" class="btn btn-primary">Credits</button>
</div>
</div>
<div class="row my-4">
<div class="col text-center white-text">
Elon Musk has trusted you to fly his re-usable/landable rocket as he explores a new planet.
<br>
Don't let him down!
</div>
</div>
</div>
</div>
<div id="highscoresSection" class="row row-section">
<div class="col text-center">
<div class="row">
<h2>HIGHSCORES</h2>
</div>
<ol id="highscores">
</ol>
</div>
</div>
<div id="customizeSection" class="row row-section">
<div class="col text-center">
<h2>Customize Section</h2>
<div class="py-4">
<div class="row my-4">
<div class="col text-center white-text">
Boost:
<button type="button" id="boost" class="btn btn-primary"></button>
</div>
</div>
<div class="row my-4">
<div class="col text-center white-text">
Rotate Left:
<button type="button" id="rotateLeft" class="btn btn-primary"></button>
</div>
</div>
<div class="row my-4">
<div class="col text-center white-text">
Rotate Right:
<button type="button" id="rotateRight" class="btn btn-primary"></button>
</div>
</div>
</div>
<div class="row">
<div id="msgText" class="col text-center white-text">
</div>
</div>
</div>
</div>
<div id="creditsSection" class="row row-section">
<div class="col text-center" id="credits">
Assignment: Luner Lander<br>
Name: Dallin Drollinger<br>
A#: A01984170<br>
</div>
</div>
</div>
</body>
</html>