-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathroadmap.html
153 lines (141 loc) · 4.31 KB
/
roadmap.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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>DRAFT Gladius Status Board</title>
<link rel="stylesheet" href="css/screen.css"/>
<link rel="stylesheet" href="css/gladiusjs.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- Adding "maximum-scale=1" fixes the Mobile Safari auto-zoom bug: http://filamentgroup.com/examples/iosScaleBug/ -->
</head>
<body>
<header id="masthead">
<nav id="nav-main" role="navigation">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="features.html">Features</a>
</li>
<li>
<b>Roadmap</b>
</li>
<li>
<a href="docs.html">Docs</a>
</li>
<li>
<a href="https://wiki.mozilla.org/Gladius">Community</a>
</li>
</ul>
</nav>
</header>
<!-- XXX link people to Mozillians -->
<h4>
<font color="red"><b>DRAFT</b></font> Gladius Status Board
</h4>
<table border="1" class="gutter-bottom-48">
<thead>
<tr>
<th>Project</th>
<th>Owner</th>
<th>Status</th>
<th>People</th>
<th>Milestone</th>
</tr>
</thead>
<tbody>
<tr>
<td>Package for clarity and usability</td>
<td>Alan Kligman/Dan Mosedale</td>
<td style="color: green;">FULL SPEED AHEAD</td>
<td>Andor Salga, Jon Buckley, Rob Hawkes, ...</td>
<td>0.1</td>
</tr>
<tr>
<td>No Comply gamelet</td>
<td>Andor Salga</td>
<td style="color: green;">FULL SPEED AHEAD</td>
<td>Alan Kligman, Dan Mosedale</td>
<td>0.1</td>
</tr>
<tr>
<td>Browser-based Game Template</td>
<td>Dan Mosedale</td>
<td>NOT STARTED</td>
<td>Recruiting...</td>
<td>?</td>
</tr>
<tr>
<td>Cross-browser audio library
<div class="projDesc">
Source & promote audio-library suitable for game devs
as interim solution until platform standards converge in
shipping browsers.
</div>
</td>
<td>Alan Kligman</td>
<td>NOT STARTED</td>
<td>Dave Humphrey</td>
<td>?</td>
</tr>
<tr>
<td>Implement Gladius sound add-on using the above audio library</td>
<td>Alan Kligman</td>
<td>NOT STARTED</td>
<td>Dave Humphrey</td>
<td>0.2</td>
</tr>
<tr>
<td>Split up Gladius repos for decoupled development</td>
<td>Alan Kligman</td>
<td>NOT STARTED</td>
<td>Recruiting...</td>
<td>0.2</td>
</tr>
<tr>
<td>Continuous integration</td>
<td>Jon Buckley</td>
<td>?</td>
<td></td>
<td>0.2?</td>
</tr>
<tr>
<td>Sample Gladius-based game (likely updated NoComply gamelet) on github with Marketplace hooks</td>
<td>Dan Mosedale</td>
<td>NOT STARTED</td>
<td>Recruiting...</td>
<td>?</td>
</tr>
<tr>
<td>Incorporate key feedback from 0.1 release</td>
<td>Alan Kligman/Dan Mosedale</td>
<td>NOT STARTED</td>
<td>Recruiting...</td>
<td>0.2</td>
</tr>
</tbody>
</table>
<h4>On the Horizon</h4>
<p class="gutter-bottom48">
<ul>
<li>support for pluggable renderers (e.g. Three.js, Processing.js, CSS, DOM)</li>
<li>ammo.js plugin for 3D physics</li>
<li>automated performance testing framework</li>
<li>automated reference testing framework</li>
<li>automated integration testing framework</li>
<li>node.js-based leaderboard with BrowserID auth</li>
<li>jobjs threading library 0.1 release</li>
<li>Math Library standalone release</li>
</ul>
</p>
<h4>Interested in joining in...</h4>
<p>
on any of these projects? Reach out to the project owner in our
<a href="community.html">community</a>.
</p>
</body>
</html>