-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
110 lines (99 loc) · 5.04 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
<!doctype html>
<html itemscope itemtype="http://schema.org/Product" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#">
<head>
<meta property="og:title" content="dotproduct" />
<meta property="og:type" content="game" />
<meta property="og:url" content="//dotproduct.nanavati.net/" />
<meta property="og:image" content="//dotproduct.nanavati.net/img/dotproduct_logo_512.png" />
<meta property="og:site_name" content="dotproduct" />
<meta property="og:description" content="Power up your ship and blast your friends in this fast-paced multiplayer space shooter!" />
<meta property="fb:admins" content="615600520" />
<meta property="fb:app_id" content="409286079118102" />
<title>⋅ product</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css" type="text/css" />
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="js/bootstrap.js" type="text/javascript"></script>
<script src="js/Application.js" type="text/javascript"></script>
</head>
<body>
<div id="egg">⁘</div>
<div class="title-container">
<div class="title" id="anonymous">⋅ product</div>
<div id="loading" class="loading">
<div id="ldv-progress" class="ldv-progress">
<div id="ldv-progress-value" class="ldv-progress-value"></div>
</div>
</div>
</div>
<div id="game" class="game">
<audio id="jukebox"></audio>
<!-- Game canvas -->
<canvas id="gv-canvas" class="gv-canvas"></canvas>
<div id="menu"></div>
<!-- Chat view -->
<div id="cv" class="cv">
<div id="cv-text" class="cv-text"></div>
<input id="cv-input" class="cv-input" type="text" maxlength="140"></input>
</div>
<!-- Disconnected view -->
<div id="dcv" class="dcv">
<center>
<p>
Oops, you got disconnected...
</p>
<p>
Click here to get back in the game.
</p>
</center>
</div>
<!-- Debug view -->
<div id="dv" class="dv"></div>
<!-- Help view -->
<div id="help" class="menu help">
<div style="float: left">
<table>
<caption>Movement</caption>
<tr><td class="help-key"><span class="help-icon"><i class="glyphicon glyphicon-arrow-up"></i></span></td><td class="help-text">Accelerate forward</td></tr>
<tr><td class="help-key"><span class="help-icon"><i class="glyphicon glyphicon-arrow-down"></i></span></td><td class="help-text">Accelerate backward</td></tr>
<tr><td class="help-key"><span class="help-icon"><i class="glyphicon glyphicon-arrow-left"></i></span></td><td class="help-text">Turn left</td></tr>
<tr><td class="help-key"><span class="help-icon"><i class="glyphicon glyphicon-arrow-right"></i></span></td><td class="help-text">Turn right</td></tr>
<tr><td class="help-key"><span class="help-icon">A</span></td><td class="help-text">Afterburners<br>(while accelerating)</td></tr>
</table>
<table>
<caption>Misc</caption>
<tr><td class="help-key"><span class="help-icon">1</span> - <span class="help-icon">8</span></td><td>Choose ship</td></tr>
<tr><td class="help-key"><span class="help-icon">ENTER</span></td><td>Send chat message</td></tr>
<tr><td class="help-key"><span class="help-icon">?</span></td><td>Show help</td></tr>
</table>
</div>
<div style="float: right">
<table>
<caption>Basic Weapons</caption>
<tr><td class="help-key"><span class="help-icon">SPACE</span></td><td class="help-text">Fire gun</td></tr>
<tr><td class="help-key"><span class="help-icon">F</span></td><td class="help-text">Fire bomb</td></tr>
<tr><td class="help-key"><span class="help-icon">V</span></td><td class="help-text">Lay mine</td></tr>
</table>
<table>
<caption>Advanced Weapons</caption>
<tr><td class="help-key"><span class="help-icon">M</span></td><td class="help-text">Multifire</td></tr>
<tr><td class="help-key"><span class="help-icon">G</span></td><td class="help-text">Burst</td></tr>
<tr><td class="help-key"><span class="help-icon">D</span></td><td class="help-text">Decoy</td></tr>
<tr><td class="help-key"><span class="help-icon">R</span></td><td class="help-text">Repel</td></tr>
</table>
</div>
</div>
<!-- Ship select view -->
<div id="ss" class="menu ss">
<p>Ship selection</p>
</div>
<!-- Scoreboard view -->
<div id="sv" class="menu sv"></div>
<!-- Tooltip -->
<div id="tt" class="tt tt-hide"></div>
</div>
</body>
<script type="text/javascript">_main()</script>
</html>