-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·316 lines (290 loc) · 15 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>openpad</title>
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/openpad.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!--Favicon Links-->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top" id="openpad-nav">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#openpad-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" id="openpad-brand" href="#page-top"><img src="img/logo.png" class="logo-img" id="nav-logo" />{openpad}</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="openpad-navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#about">About</a>
</li>
<li class="page-scroll">
<a href="#download">Download</a>
</li>
<li class="page-scroll">
<a href="#team">The Team</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img class="img-responsive" src="img/logo.png" alt="">
<div class="intro-text">
<span class="name">{openpad}</span>
<span class="skills">Multiplayer Games Made Easy</span>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section class="section-blue" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>What is openpad?</h2>
</div>
</div>
<br/>
<div class="row">
<div class="col-sm-6">
<p>Openpad is a c++ library that allows you to make your game playable using a smartphone as a controller. Users can download the openpad client iOS and Android apps, automatically connect to a game on the local network, and play. No network code or socket programming required, openpad handles all that for you. </p>
</div>
<div class="col-sm-6 text-center">
<img src="img/screenshot-1.jpg" class="img-responsive screenshot-portrait" />
</div>
</div>
<div class="row">
<h2 class="text-center">Simple</h2>
</div>
<br/>
<div class="row">
<div class="col-sm-6">
<!-- <img src="img/screenshot1.png" class="img-responsive code-snippet" /> -->
<div class="code-snippet">
<span class="namespace">#include</span> "openpad.h"<br><br>
<span class="keyword">void</span> runServer(){<br/>
<span class="comment">//Create delegate class</span><br/>
DebugGame <span class="namespace">game</span>;<br/>
<span class="comment">//Instantiate openpad server</span><br/>
<span class="namespace">openpad</span>::Server <span class="namespace">server</span>(<span class="namespace">game</span>);<br/>
<span class="comment">//Start accepting players</span><br/>
<span class="namespace">server</span>.start();<br/>
<span class="comment">//Profit!!</span><br/>
}
</div>
</div>
<div class="col-sm-6">
<br />
<p>Creating multiplayer games using openpad is simple and easy. Implement a few callback methods, run the server, and you're good to go. </p>
</div>
</div>
<br/>
<div class="row">
<h2 class="text-center">Powerful</h2>
</div>
<div class="row">
<div class="col-sm-6">
<br>
<p>Openpad gives you complete control over the controller layout. Player controls are completely customizable, and you can even change the controls during the game. Using a smartphone as a controller means anyone can play. </p>
</div>
<div class="col-sm-6">
<img src="img/screenshot-3.jpg" class="img img-responsive" />
</div>
</div>
</div>
</section>
<!-- Download Grid Section -->
<section class="section-red" id="download">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h2>Get openpad</h2>
</div>
</div>
<div class="row">
<div class="col-sm-4 text-center">
<h3 class="text-center">Controller App</h3>
<a class="image" href="https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=947570063&mt=8" target="itunes_store" style="display:inline-block;overflow:hidden;background:url(http://linkmaker.itunes.apple.com/htmlResources/assets/images/web/linkmaker/badge_appstore-lrg.png) no-repeat;width:135px;height:40px;@media only screen{background-image:url(http://linkmaker.itunes.apple.com/htmlResources/assets/images/web/linkmaker/badge_appstore-lrg.svg);}"></a>
<br />
<!--<a class="image" href="#"><br><img alt="Get it on Google Play" src="https://developer.android.com/images/brand/en_generic_rgb_wo_45.png"><br></a>-->
</div>
<div class="col-sm-4 text-center">
<h3 class="text-center">Server API</h3>
<a href="downloads/openpad-lib.zip" class="btn btn-lg btn-outline">
<i class="fa fa-download"></i> Download Library
</a>
</div>
<div class="col-sm-4 text-center">
<h3 class="text-center">Games</h3>
<a href="downloads/Ultimate Pong.zip" class="btn btn-lg btn-outline">
<img src="img/pong-icon.png" class="example-icon" /> Ultimate Pong
</a>
</div>
</div>
</div>
<!--
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="text-center">Download</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<a href="#" class="btn btn-lg btn-outline">
<i class="fa fa-download"></i> Download Library
</a>
</div>
</div>
</div>
-->
</section>
<!-- Contact Section -->
<section id="team" class="section-black">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Who are we?</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="profile">
<img src="img/james.png" class="img img-responsive img-circle" />
<h3>James Lennon</h3>
<h5><i class="fa fa-minus"></i> Server Framework <i class="fa fa-minus"></i></h5>
<br /><br />
<!-- <p>The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog. Junk MTV quiz graced by fox whelps. Bawds jog, flick quartz, vex nymphs. Waltz, bad nymph, for quick jigs vex! Fox nymphs grab quick-jived waltz. Brick quiz whangs jumpy veldt fox. Bright vixens jump; dozy fowl quack. Quick wafting zephyrs vex bold Jim. Quick zephyrs blow, vexing daft Jim. </p> -->
</div>
</div>
<div class="col-md-4">
<div class="profile">
<img src="img/ethan.jpeg" class="img img-responsive img-circle" />
<h3>Ethan Madison</h3>
<h5><i class="fa fa-minus"></i> Android Controller <i class="fa fa-minus"></i></h5>
<br /><br />
<!-- <p>The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog. Junk MTV quiz graced by fox whelps. Bawds jog, flick quartz, vex nymphs. Waltz, bad nymph, for quick jigs vex! Fox nymphs grab quick-jived waltz. Brick quiz whangs jumpy veldt fox. Bright vixens jump; dozy fowl quack. Quick wafting zephyrs vex bold Jim. Quick zephyrs blow, vexing daft Jim. </p> -->
</div>
</div>
<div class="col-md-4">
<div class="profile">
<img src="img/jake.jpg" class="img img-responsive img-circle" />
<h3>Jake Saferstein</h3>
<h5><i class="fa fa-minus"></i> iOS Controller <i class="fa fa-minus"></i></h5>
<br /><br />
<!-- <p>The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog. Junk MTV quiz graced by fox whelps. Bawds jog, flick quartz, vex nymphs. Waltz, bad nymph, for quick jigs vex! Fox nymphs grab quick-jived waltz. Brick quiz whangs jumpy veldt fox. Bright vixens jump; dozy fowl quack. Quick wafting zephyrs vex bold Jim. Quick zephyrs blow, vexing daft Jim. </p> -->
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-4">
<h3>Location</h3>
<p class="footer-link">Built in Los Angeles, USA</p>
</div>
<div class="footer-col col-md-4">
<h3>Contact Us</h3>
<a href="mailto:[email protected]" class="footer-link">[email protected]</a>
</div>
<div class="footer-col col-md-4">
<h3>Source Code</h3>
<a class="footer-link" href="https://github.com/openpad"><i class="fa fa-github fa-2x"></i></a>
<a class="footer-link" href="https://github.com/openpad/openpad-android"><i class="fa fa-android fa-2x"></i></a>
<a class="footer-link" href="https://github.com/openpad/openpad-iOS"><i class="fa fa-apple fa-2x"></i></a>
<a class="footer-link" href="https://github.com/openpad/openpad-server"><i class="fa fa-desktop fa-2x"></i></a>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p>Copyright © 2015</p>
<!-- Start of StatCounter Code for Default Guide -->
<script type="text/javascript">
var sc_project=10246205;
var sc_invisible=0;
var sc_security="afb62184";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="shopify site
analytics" href="http://statcounter.com/shopify/"
target="_blank"><img class="statcounter"
src="http://c.statcounter.com/10246205/0/afb62184/0/"
alt="shopify site analytics"></a></div></noscript>
<!-- End of StatCounter Code for Default Guide -->
</div>
</div>
</div>
</div>
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll visible-xs visble-sm">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/openpad.js"></script>
</body>
</html>