-
Notifications
You must be signed in to change notification settings - Fork 57
/
index.html
59 lines (59 loc) · 2.38 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="index.css">
<title>gametime-player</title>
</head>
<body>
<div class="draghint hidden screen" id="draghint">
<input type="file" id="chooser" class="chooser"/>
<div class="dragtext">
<h1>drag a game here to play</h1>
</div>
</div>
<div id="loading" class="message screen"><h1>loading ...</h1></div>
<div id="error" class="message hidden screen">
<h1>error!</h1>
<div id="clear-save" class="hidden">
<p>This could be caused by a corrupted save file. This button
will allow you to reset your save. Sadly you will not be able to
recover it.</p>
<button onclick="removeSave(); reset()">Delete save for this game</button>
</div>
</div>
<div id="overlay" class="overlay"></div>
<div class="menu hidden screen" id="menu">
<input type="file" id="savechooser" class="chooser"/>
<div class="options">
<h1>Your game is paused.</h1>
<button onclick="resume()">resume</button>
<button onclick="reset()">reset</button>
<button onclick="save()">save game</button>
<button onclick="load()">load save</button>
<button onclick="removeSave(); reset()">delete save</button>
<button id="mute" onclick="mute()">mute</button>
</div>
<div>
<h1>Controls:</h1>
<div>A button = A key</div>
<div>B button = B key</div>
<div>X button = X key</div>
<div>Y button = Y key</div>
<div>L button = L key</div>
<div>R button = R key</div>
<div>D-pad = arrow keys</div>
</div>
<div>
<h1>Core Info:</h1>
<pre id="core-name"></pre>
<pre id="system-info"></pre>
<pre id="av-info"></pre>
</div>
</div>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>System.import('./index.coffee!')</script>
</body>
</html>