This repository was archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathroadmap.html
150 lines (140 loc) · 6.13 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
{% extends "layout.html" %}
{% macro feature(name, progress="not-started", indent=False, comments=None) -%}
<tr {% if comments %}title="{{ comments }}"{% endif %}>
{% if indent %}
<td style="padding-left: 50px;">
{% else %}
<td>
{% endif %}
{{ name }}
</td>
{% if progress == "done" %}
<td class="success">Complete</td>
{% elif progress == "in-progress" %}
<td class="warning">In progress</td>
{% elif progress == "meta" %}
<td></td>
{% else %}
<td class="danger">Not started</td>
{% endif %}
</tr>
{%- endmacro %}
{% block body %}
<p>Some features that are in-progress will give more details when hovered over.</p>
<h1>Server</h1>
<table class="table">
<thead>
<tr>
<th>Feature</th>
<th>Progress</th>
</tr>
</thead>
<tbody>
{{ feature("Beta 1.7.3 networking", "done") }}
{{ feature("MCRegion worlds", "done") }}
{{ feature("Tile entities", "done", indent=True) }}
{{ feature("Multiworld", "not-started", indent=True) }}
{{ feature("Player metadata", "done", indent=True) }}
{{ feature("Entities", "meta") }}
{{ feature("Physics", "done", indent=True) }}
{{ feature("Item entities", "done", indent=True) }}
{{ feature("Falling blocks", "done", indent=True) }}
{{ feature("Players", "done", indent=True) }}
{{ feature("Mobs", "in-progress", indent=True) }}
{{ feature("Minecarts", "not-started", indent=True) }}
{{ feature("Boats", "not-started", indent=True) }}
{{ feature("AI", "meta") }}
{{ feature("Peaceful", "in-progress", indent=True) }}
{{ feature("Hostile", "not-started", indent=True) }}
{{ feature("Special", "not-started", indent=True) }}
{{ feature("Terrain generation", "done") }}
{{ feature("Perlin base terrain", "done", indent=True) }}
{{ feature("Biomes", "done", indent=True) }}
{{ feature("Caves", "done", indent=True) }}
{{ feature("Decorators", "done", indent=True) }}
{{ feature("Window management", "meta") }}
{{ feature("Inventory", "done", indent=True) }}
{{ feature("Crafting", "done", indent=True) }}
{{ feature("Furnaces", "done", indent=True) }}
{{ feature("Chests", "done", indent=True) }}
{{ feature("Dispensers", "not-started", indent=True) }}
{{ feature("Modding API", "not-started") }}
{{ feature("Game logic", "meta") }}
{{ feature("Farming", "in-progress", indent=True, comments="Wheat, sugarcane, cactus are done") }}
{{ feature("Doors", "done", indent=True) }}
{{ feature("Unusual item drops", "done", indent=True) }}
{{ feature("Block updates", "done", indent=True) }}
{{ feature("Fluid simulation", "done", indent=True) }}
{{ feature("Portals", "not-started", indent=True) }}
{{ feature("Signs", "done", indent=True) }}
{{ feature("Trees", "in-progress", indent=True, comments="Generation is done but not hooked up to saplings") }}
{{ feature("TNT", "not-started", indent=True) }}
{{ feature("Redstone", "not-started", indent=True) }}
{{ feature("Bonemeal", "not-started", indent=True) }}
{{ feature("Fishing", "not-started", indent=True) }}
{{ feature("Fire", "done", indent=True) }}
{{ feature("Jukeboxes", "not-started", indent=True) }}
{{ feature("Beds", "in-progress", indent=True, comments="Placement is done, sleeping is not") }}
{{ feature("Directional blocks", "done", indent=True) }}
{{ feature("Lighting", "done") }}
{{ feature("Weather", "not-started") }}
{{ feature("Combat", "not-started") }}
{{ feature("Food", "not-started") }}
</tbody>
</table>
<h1>Client</h1>
<table class="table">
<thead>
<tr>
<th>Feature</th>
<th>Progress</th>
</tr>
</thead>
<tbody>
{{ feature("Launcher", "in-progress") }}
{{ feature("Beta 1.7.3 networking", "done") }}
{{ feature("World decoding", "done") }}
{{ feature("Chat", "in-progress") }}
{{ feature("Window management", "in-progress") }}
{{ feature("World interaction", "done") }}
{{ feature("Combat", "not-started") }}
{{ feature("Particles", "not-started") }}
{{ feature("Weather", "not-started") }}
{{ feature("Sound effects", "in-progress") }}
{{ feature("Music", "in-progress") }}
{{ feature("Input", "meta") }}
{{ feature("Movement and look", "done", indent=True) }}
{{ feature("Gamepad support", "done", indent=True) }}
{{ feature("Custom key bindings", "not-started", indent=True) }}
{{ feature("Rendering terrain", "meta") }}
{{ feature("Basic support", "done", indent=True) }}
{{ feature("Blocks w/special textures", "in-progress", indent=True) }}
{{ feature("Blocks w/special models", "in-progress", indent=True) }}
{{ feature("Rendering entities", "meta") }}
{{ feature("Players", "not-started", indent=True) }}
{{ feature("Item entities", "not-started", indent=True) }}
{{ feature("Falling blocks", "not-started", indent=True) }}
{{ feature("Mobs", "not-started", indent=True) }}
{{ feature("Minecarts", "not-started", indent=True) }}
{{ feature("Boats", "not-started", indent=True) }}
</tbody>
</table>
<h1>Auth Servers</h1>
<table class="table">
<thead>
<tr>
<th>Feature</th>
<th>Progress</th>
</tr>
</thead>
<tbody>
{{ feature("Website", "done") }}
{{ feature("User registration", "done", indent=True) }}
{{ feature("Content", "done", indent=True) }}
{{ feature("Updates feed", "done", indent=True) }}
{{ feature("Authentication API", "done") }}
{{ feature("Skins", "not-started") }}
{{ feature("Capes", "not-started") }}
</tbody>
</table>
{% endblock %}