forked from StarCitizenTracker/StarCitizenTracker.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmajorsystems.html
176 lines (174 loc) · 7.36 KB
/
majorsystems.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
---
layout: page
title: Major Systems
permalink: /majorsystems/
comments: false
---
{% assign data = site.data.majorsystems.data %}
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center">
<h1>Major Systems</h1><br>
<div class="col-md-12 text-left">
<div class="bg-danger">
<h3>Warning:</h3>
<p>These <strong>estimates</strong> currently award up to 30% for videos of internal builds which is very different from our main page which requires features be working in the public alpha.</p>
<p>This is a very rudimentary system of measurement that hasn't received much in the way of refinement. It is structured guess, perhaps over time it may reveal the velocity on work being done to the foundational systems.</p>
<p>This page does not factor in work being kept under wraps, negative progress, or technical debt.</p>
</div>
<p><a class="btn btn-primary" data-toggle="collapse" href="#collapseScore" aria-expanded="false" aria-controls="collapseScore">
Reveal Measurement System
</a></p>
<div class="collapse" id="collapseScore">
<div class="card card-block">
<table class="table table-bordered table-striped table-condensed table-responsive">
<thead>
<tr>
<th>
Estimate
</th>
<th>
Criteria
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
0%
</td>
<td>
Progress not covered
</td>
</tr>
<tr>
<td>
10%
</td>
<td>
Progress talked about
</td>
</tr>
<tr>
<td>
20%
</td>
<td>
Progress spoken about at length
</td>
</tr>
<tr>
<td>
30%
</td>
<td>
Progress appears in video or internal demo
</td>
</tr>
<tr>
<td>
40%
</td>
<td>
Feature accessible in specialist alpha
</td>
</tr>
<tr>
<td>
50%
</td>
<td>
Feature accessible in live alpha
</td>
</tr>
<tr>
<td>
60%
</td>
<td>
Feature starting to work and being iterated on
</td>
</tr>
<tr>
<td>
70%
</td>
<td>
Feature working somewhat functional
</td>
</tr>
<tr>
<td>
80%
</td>
<td>
Feature working reliably
</td>
</tr>
<tr>
<td>
90%
</td>
<td>
Feature receiving final tweaks
</td>
</tr>
<tr>
<td>
100%
</td>
<td>
Release ready
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="row promises__table container-fluid">
<table class="table table-bordered table-striped table-hover table-condensed table-responsive">
{% for row in data %}
<!-- color and naming logic -->
{% assign score = row.gpercent | plus: 1 %}
{% assign display = row.gpercent %}
{% if score < 10 %}
{% assign color = 'danger' %}
{% assign display = 'Unknown or less than 10' %}
{% elsif score < 20 %}
{% assign color = 'warning' %}
{% elsif score < 40 %}
{% assign color = 'success' %}
{% elsif score < 60 %}
{% assign color = 'info' %}
{% elsif score < 90 %}
{% assign color = 'default' %}
{% endif %}
{% if row.weight == 2 %}
<thead><tr><th>
<h1>Estimated Total Completion: {{ row.gpercent }}%</h1>
<div class="progress" style="height:60px">
<div class="progress-bar progress-bar-{{ color }} progress-bar-striped" role="progressbar" style="width:{{ score }}%"></div>
</div>
</th></tr></thead>
{% elsif row.weight == 1 %}
<tbody><tr><th>
<h2>{{ row.title }} ({{ row.gpercent }}%)</h2>
<div class="progress">
<div class="progress-bar progress-bar-{{ color }} progress-bar-striped" role="progressbar" style="width:{{ score }}%" height:"10px"></div>
</div>
</th></tr></tbody>
{% else %}
<tbody style="height:14px"><tr><td>
<h6>{{ row.title }} ({{ display }}%)</h6>
<div class="progress" style="height:10px">
<div class="progress-bar progress-bar-{{ color }}" role="progressbar" style="width:{{ score }}%"></div>
</div>
</td></tr></tbody>
{% endif %}
{% endfor %}
</table>
</div>
</div>