-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconway.js
285 lines (258 loc) · 7.64 KB
/
conway.js
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
/*
* Auxilliary functions to make the statistics work
*
*/
var pendingUI = null;
function addStatsPanel()
{
var tButton = document.getElementById('drawerHandle');
tButton.parentNode.removeChild(tButton);
var tContainer = document.getElementById('container');
tContainer.appendChild(getPanel());
tContainer.appendChild(getDrawerButton());
selectUI();
}
function getPanel()
{
var tShowing = getConwayData('stats');
var tPanel = document.createElement('div');
tPanel.id = 'panel';
if(tShowing) tPanel.classList.add('showing');
tPanel.appendChild(getStats());
tPanel.appendChild(getUISelect());
if(!getConwayData('pause'))
{
tPanel.appendChild(getPauseButton());
}
return tPanel;
}
function getConwayData(attribute)
{
var data = JSON.parse(getConwayElement().value);
return data[attribute];
}
function setConwayData(attribute, value)
{
var data = JSON.parse(getConwayElement().value);
data[attribute] = value;
getConwayElement().value = JSON.stringify(data);
}
function getConwayElement()
{
return document.getElementsByName('data')[0];
}
function toggleConwayData(booleanAttribute)
{
setConwayData(booleanAttribute, !getConwayData(booleanAttribute));
}
function getStats()
{
var tStats = document.createElement('div');
tStats.id = 'statistics';
tStats.innerHTML = getStatsText();
return tStats;
}
function getStatsText()
{
var tGuesses = JSON.parse(document.getElementsByName('guesses')[0].value);
var tSuccesses = tGuesses.filter(function(guess) { return guess !== -1; });
var tSuccessRate = Math.round(tSuccesses.length / tGuesses.length * 1000) / 10;
var tTotalTime = tSuccesses.reduce(function(acc, val) { return acc + val; }, 0);
var tAverageTime = Math.round(tTotalTime / tSuccesses.length / 10) / 100;
if (isNaN(tSuccessRate) || isNaN(tAverageTime))
{
return 'Insufficient data to display<br>success rate/average time.<br>'
+ 'Guesses: ' + tGuesses.length;
} else
{
return 'Success rate: ' + tSuccessRate + '%<br>'
+ 'Average time: ' + tAverageTime + ' secs<br>'
+ 'Guesses: ' + tGuesses.length;
}
}
function getPauseButton()
{
var tPause = document.createElement('button');
tPause.id = 'conway_pause';
tPause.innerHTML = 'Pause';
tPause.addEventListener('click', pauseResume);
return tPause;
}
function pauseResume()
{
toggleConwayData('pause');
setConwayData('then', 0);
document.getElementById('theForm').submit();
}
function getUISelect()
{
var tUISelect = document.createElement('div');
tUISelect.id = 'uiSelect';
var tLabel = document.createElement('span');
tLabel.innerHTML='Interface: ';
tUISelect.appendChild(tLabel);
var tSelect = document.createElement('select');
tSelect.id = 'uiSelector';
tSelect.appendChild(getUIOption('standard', 'Standard'));
tSelect.appendChild(getUIOption('hints', 'Century Hints'));
tSelect.appendChild(getUIOption('speed', 'Speed Practice'));
tSelect.addEventListener('change', selectUI);
tUISelect.appendChild(tSelect);
return tUISelect;
}
function getUIOption(uiType, uiName)
{
var tSelected = getConwayData('ui') === uiType;
var tOption = document.createElement('option');
tOption.value=uiType;
tOption.innerHTML=uiName;
if(tSelected)
{
tOption.selected='selected';
}
else
{
tOption.removeAttribute('selected');
}
return tOption;
}
function selectUI()
{
var tSelectedUIName = getSelectedUIName();
setConwayData('ui', tSelectedUIName);
switchUI(getCurrentUIName(), tSelectedUIName)
}
function switchUI(oldUIName, newUIName)
{
if(oldUIName !== 'paused' && oldUIName !== newUIName)
{
if ([oldUIName, newUIName].indexOf('speed') >= 0)
{
var tPendingUI = getPendingUI();
var tOldUI = getCurrentUI();
var tForm = tOldUI.parentNode;
tForm.removeChild(tOldUI);
tForm.appendChild(tPendingUI);
setPendingUI(tOldUI);
}
if(newUIName !== 'speed')
{
if(getCurrentUIName() !== newUIName)
{
var tSelectionIndex;
if(newUIName === 'standard')
{
tSelectionIndex = 0;
}
else
{
tSelectionIndex = (getConwayData('century') + 6) % 7;
}
document.getElementsByName('guess')[0].selectedIndex = tSelectionIndex;
getCurrentUI().setAttribute('name', newUIName);
}
}
}
}
function getCurrentUIName()
{
return getCurrentUI().getAttribute('name');
}
function getCurrentUI()
{
return document.getElementById('ui');
}
function getSelectedUIName()
{
var tUIList = document.getElementById('uiSelector');
var tSelectedUIOption = tUIList.options[tUIList.selectedIndex];
return tSelectedUIOption.value;
}
function getPendingUI()
{
if(pendingUI === null)
{
pendingUI = getSpeedUI();
}
return pendingUI;
}
function setPendingUI(theUI)
{
pendingUI = theUI;
}
function getSpeedUI()
{
var tDay = getConwayData('day');
var tSpeedUI = document.createElement('div');
tSpeedUI.id = 'ui';
tSpeedUI.setAttribute('name', 'speed');
tSpeedUI.align='center';
var tGuess = document.createElement('input');
tGuess.setAttribute('name', 'guess');
tGuess.type='hidden';
tSpeedUI.appendChild(tGuess);
var tTopRow = document.createElement('div');
tTopRow.align='center';
addDayButton(tTopRow, 'conwaySpeed_We', 3, ' W ', tDay);
addDayButton(tTopRow, 'conwaySpeed_Th', 4, ' T ', tDay);
addDayButton(tTopRow, 'conwaySpeed_Fr', 5, ' F ', tDay);
tSpeedUI.appendChild(tTopRow);
var tMiddleRow = document.createElement('div');
tMiddleRow.align='center';
addDayButton(tMiddleRow, 'conwaySpeed_Tu', 2, ' T ', tDay);
tMiddleRow.appendChild(getSpeedDate());
addDayButton(tMiddleRow, 'conwaySpeed_Sa', 6, ' S ', tDay);
tSpeedUI.appendChild(tMiddleRow);
var tBottomRow = document.createElement('div');
tBottomRow.align='center';
addDayButton(tBottomRow, 'conwaySpeed_Mo', 1, ' M ', tDay);
addDayButton(tBottomRow, 'conwaySpeed_Su', 0, ' S ', tDay);
tSpeedUI.appendChild(tBottomRow);
return tSpeedUI;
}
function addDayButton(row, id, value, text, correctAnswer)
{
tButton = document.createElement('button');
tButton.id = id;
if(value == correctAnswer)
{
tButton.classList.add('correctAnswer');
}
tButton.setAttribute('value', value);
tButton.innerHTML = text;
tButton.addEventListener('click', submitSpeed(value));
row.appendChild(tButton);
}
function submitSpeed(value)
{
return function()
{
document.getElementsByName('guess')[0].value = value;
};
}
function getSpeedDate()
{
var tSpeedDate = document.createElement('span');
tSpeedDate.id = 'speedDate';
tSpeedDate.align = 'center';
tSpeedDate.innerHTML = document.getElementById('theDate').innerHTML;
return tSpeedDate;
}
function getDrawerButton()
{
var tButton = document.getElementById('drawerHandle');
if (tButton === null)
{
tButton = document.createElement('button');
tButton.id = 'drawerHandle';
tButton.innerHTML = '=';
tButton.addEventListener('click', togglePanelShowing);
}
return tButton;
}
function togglePanelShowing()
{
document.getElementById('panel').classList.toggle('showing');
toggleConwayData('stats');
}
document.addEventListener("DOMContentLoaded", addStatsPanel);