nicholas@1
|
1 /**
|
nicholas@1
|
2 * core.js
|
nicholas@1
|
3 *
|
nicholas@1
|
4 * Main script to run, calls all other core functions and manages loading/store to backend.
|
nicholas@1
|
5 * Also contains all global variables.
|
nicholas@1
|
6 */
|
nicholas@1
|
7
|
nicholas@1
|
8 /* create the web audio API context and store in audioContext*/
|
n@33
|
9 var audioContext; // Hold the browser web audio API
|
n@33
|
10 var projectXML; // Hold the parsed setup XML
|
n@181
|
11 var specification;
|
n@182
|
12 var interfaceContext;
|
nicholas@116
|
13 var popup; // Hold the interfacePopup object
|
nicholas@129
|
14 var testState;
|
n@45
|
15 var currentTrackOrder = []; // Hold the current XML tracks in their (randomised) order
|
n@33
|
16 var audioEngineContext; // The custome AudioEngine object
|
n@33
|
17 var projectReturn; // Hold the URL for the return
|
n@153
|
18
|
nicholas@1
|
19
|
n@57
|
20 // Add a prototype to the bufferSourceNode to reference to the audioObject holding it
|
n@57
|
21 AudioBufferSourceNode.prototype.owner = undefined;
|
n@57
|
22
|
nicholas@1
|
23 window.onload = function() {
|
nicholas@1
|
24 // Function called once the browser has loaded all files.
|
nicholas@1
|
25 // This should perform any initial commands such as structure / loading documents
|
nicholas@1
|
26
|
nicholas@1
|
27 // Create a web audio API context
|
nicholas@21
|
28 // Fixed for cross-browser support
|
nicholas@21
|
29 var AudioContext = window.AudioContext || window.webkitAudioContext;
|
nicholas@7
|
30 audioContext = new AudioContext;
|
nicholas@1
|
31
|
nicholas@129
|
32 // Create test state
|
nicholas@129
|
33 testState = new stateMachine();
|
nicholas@129
|
34
|
nicholas@116
|
35 // Create the popup interface object
|
nicholas@116
|
36 popup = new interfacePopup();
|
n@181
|
37
|
n@181
|
38 // Create the specification object
|
n@181
|
39 specification = new Specification();
|
n@182
|
40
|
n@182
|
41 // Create the interface object
|
n@182
|
42 interfaceContext = new Interface(specification);
|
n@379
|
43 // Define window callbacks for interface
|
n@379
|
44 window.onresize = function(event){interfaceContext.resizeWindow(event);};
|
n@16
|
45 };
|
nicholas@1
|
46
|
n@377
|
47 function loadProjectSpec(url) {
|
n@377
|
48 // Load the project document from the given URL, decode the XML and instruct audioEngine to get audio data
|
n@377
|
49 // If url is null, request client to upload project XML document
|
n@377
|
50 var r = new XMLHttpRequest();
|
n@377
|
51 r.open('GET',url,true);
|
n@377
|
52 r.onload = function() {
|
n@377
|
53 loadProjectSpecCallback(r.response);
|
n@377
|
54 };
|
n@377
|
55 r.send();
|
n@377
|
56 };
|
n@377
|
57
|
n@377
|
58 function loadProjectSpecCallback(response) {
|
n@377
|
59 // Function called after asynchronous download of XML project specification
|
n@377
|
60 //var decode = $.parseXML(response);
|
n@377
|
61 //projectXML = $(decode);
|
n@377
|
62
|
n@377
|
63 var parse = new DOMParser();
|
n@377
|
64 projectXML = parse.parseFromString(response,'text/xml');
|
n@377
|
65
|
n@377
|
66 // Build the specification
|
n@377
|
67 specification.decode(projectXML);
|
n@377
|
68
|
n@377
|
69 // Detect the interface to use and load the relevant javascripts.
|
n@377
|
70 var interfaceJS = document.createElement('script');
|
n@377
|
71 interfaceJS.setAttribute("type","text/javascript");
|
n@377
|
72 if (specification.interfaceType == 'APE') {
|
n@377
|
73 interfaceJS.setAttribute("src","ape.js");
|
n@377
|
74
|
n@377
|
75 // APE comes with a css file
|
n@377
|
76 var css = document.createElement('link');
|
n@377
|
77 css.rel = 'stylesheet';
|
n@377
|
78 css.type = 'text/css';
|
n@377
|
79 css.href = 'ape.css';
|
n@377
|
80
|
n@377
|
81 document.getElementsByTagName("head")[0].appendChild(css);
|
n@377
|
82 } else if (specification.interfaceType == "MUSHRA")
|
n@377
|
83 {
|
n@377
|
84 interfaceJS.setAttribute("src","mushra.js");
|
n@377
|
85
|
n@377
|
86 // MUSHRA comes with a css file
|
n@377
|
87 var css = document.createElement('link');
|
n@377
|
88 css.rel = 'stylesheet';
|
n@377
|
89 css.type = 'text/css';
|
n@377
|
90 css.href = 'mushra.css';
|
n@377
|
91
|
n@377
|
92 document.getElementsByTagName("head")[0].appendChild(css);
|
n@377
|
93 }
|
n@377
|
94 document.getElementsByTagName("head")[0].appendChild(interfaceJS);
|
n@377
|
95
|
n@379
|
96 // Create the audio engine object
|
n@379
|
97 audioEngineContext = new AudioEngine(specification);
|
n@379
|
98
|
n@379
|
99 testState.stateMap.push(specification.preTest);
|
n@379
|
100
|
n@379
|
101 $(specification.audioHolders).each(function(index,elem){
|
n@379
|
102 testState.stateMap.push(elem);
|
n@379
|
103 $(elem.audioElements).each(function(i,audioElem){
|
n@379
|
104 var URL = audioElem.parent.hostURL + audioElem.url;
|
n@379
|
105 var buffer = null;
|
n@379
|
106 for (var i=0; i<audioEngineContext.buffers.length; i++)
|
n@379
|
107 {
|
n@379
|
108 if (URL == audioEngineContext.buffers[i].url)
|
n@379
|
109 {
|
n@379
|
110 buffer = audioEngineContext.buffers[i];
|
n@379
|
111 break;
|
n@379
|
112 }
|
n@379
|
113 }
|
n@379
|
114 if (buffer == null)
|
n@379
|
115 {
|
n@379
|
116 buffer = new audioEngineContext.bufferObj(URL);
|
n@379
|
117 audioEngineContext.buffers.push(buffer);
|
n@379
|
118 }
|
n@379
|
119 });
|
n@379
|
120 });
|
n@379
|
121
|
n@379
|
122 testState.stateMap.push(specification.postTest);
|
n@377
|
123 }
|
n@377
|
124
|
n@377
|
125 function createProjectSave(destURL) {
|
n@377
|
126 // Save the data from interface into XML and send to destURL
|
n@377
|
127 // If destURL is null then download XML in client
|
n@377
|
128 // Now time to render file locally
|
n@377
|
129 var xmlDoc = interfaceXMLSave();
|
n@377
|
130 var parent = document.createElement("div");
|
n@377
|
131 parent.appendChild(xmlDoc);
|
n@377
|
132 var file = [parent.innerHTML];
|
n@377
|
133 if (destURL == "null" || destURL == undefined) {
|
n@377
|
134 var bb = new Blob(file,{type : 'application/xml'});
|
n@377
|
135 var dnlk = window.URL.createObjectURL(bb);
|
n@377
|
136 var a = document.createElement("a");
|
n@377
|
137 a.hidden = '';
|
n@377
|
138 a.href = dnlk;
|
n@377
|
139 a.download = "save.xml";
|
n@377
|
140 a.textContent = "Save File";
|
n@377
|
141
|
n@377
|
142 popup.showPopup();
|
n@377
|
143 popup.popupContent.innerHTML = null;
|
n@377
|
144 popup.popupContent.appendChild(a);
|
n@377
|
145 } else {
|
n@377
|
146 var xmlhttp = new XMLHttpRequest;
|
n@377
|
147 xmlhttp.open("POST",destURL,true);
|
n@377
|
148 xmlhttp.setRequestHeader('Content-Type', 'text/xml');
|
n@377
|
149 xmlhttp.onerror = function(){
|
n@377
|
150 console.log('Error saving file to server! Presenting download locally');
|
n@377
|
151 createProjectSave(null);
|
n@377
|
152 };
|
n@377
|
153 xmlhttp.onreadystatechange = function() {
|
n@377
|
154 console.log(xmlhttp.status);
|
n@377
|
155 if (xmlhttp.status != 200 && xmlhttp.readyState == 4) {
|
n@377
|
156 createProjectSave(null);
|
n@377
|
157 } else {
|
n@377
|
158 if (xmlhttp.responseXML == null)
|
n@377
|
159 {
|
n@377
|
160 return createProjectSave(null);
|
n@377
|
161 }
|
n@377
|
162 var response = xmlhttp.responseXML.childNodes[0];
|
n@377
|
163 if (response.getAttribute('state') == "OK")
|
n@377
|
164 {
|
n@377
|
165 var file = response.getElementsByTagName('file')[0];
|
n@377
|
166 console.log('Save OK: Filename '+file.textContent+','+file.getAttribute('bytes')+'B');
|
n@377
|
167 popup.showPopup();
|
n@377
|
168 popup.popupContent.innerHTML = null;
|
n@377
|
169 popup.popupContent.textContent = "Thank you!";
|
n@377
|
170 } else {
|
n@377
|
171 var message = response.getElementsByTagName('message')[0];
|
n@377
|
172 errorSessionDump(message.textContent);
|
n@377
|
173 }
|
n@377
|
174 }
|
n@377
|
175 };
|
n@377
|
176 xmlhttp.send(file);
|
n@377
|
177 }
|
n@377
|
178 }
|
n@377
|
179
|
n@377
|
180 function errorSessionDump(msg){
|
n@377
|
181 // Create the partial interface XML save
|
n@377
|
182 // Include error node with message on why the dump occured
|
n@377
|
183 var xmlDoc = interfaceXMLSave();
|
n@377
|
184 var err = document.createElement('error');
|
n@377
|
185 err.textContent = msg;
|
n@377
|
186 xmlDoc.appendChild(err);
|
n@377
|
187 var parent = document.createElement("div");
|
n@377
|
188 parent.appendChild(xmlDoc);
|
n@377
|
189 var file = [parent.innerHTML];
|
n@377
|
190 var bb = new Blob(file,{type : 'application/xml'});
|
n@377
|
191 var dnlk = window.URL.createObjectURL(bb);
|
n@377
|
192 var a = document.createElement("a");
|
n@377
|
193 a.hidden = '';
|
n@377
|
194 a.href = dnlk;
|
n@377
|
195 a.download = "save.xml";
|
n@377
|
196 a.textContent = "Save File";
|
n@377
|
197
|
n@377
|
198 popup.showPopup();
|
n@377
|
199 popup.popupContent.innerHTML = "ERROR : "+msg;
|
n@377
|
200 popup.popupContent.appendChild(a);
|
n@377
|
201 }
|
n@377
|
202
|
n@377
|
203 // Only other global function which must be defined in the interface class. Determines how to create the XML document.
|
n@377
|
204 function interfaceXMLSave(){
|
n@377
|
205 // Create the XML string to be exported with results
|
n@377
|
206 var xmlDoc = document.createElement("BrowserEvaluationResult");
|
n@377
|
207 var projectDocument = specification.projectXML;
|
n@377
|
208 projectDocument.setAttribute('file-name',url);
|
n@377
|
209 xmlDoc.appendChild(projectDocument);
|
n@377
|
210 xmlDoc.appendChild(returnDateNode());
|
n@377
|
211 xmlDoc.appendChild(interfaceContext.returnNavigator());
|
n@377
|
212 for (var i=0; i<testState.stateResults.length; i++)
|
n@377
|
213 {
|
n@377
|
214 xmlDoc.appendChild(testState.stateResults[i]);
|
n@377
|
215 }
|
n@377
|
216
|
n@377
|
217 return xmlDoc;
|
n@377
|
218 }
|
n@377
|
219
|
nicholas@116
|
220 function interfacePopup() {
|
nicholas@116
|
221 // Creates an object to manage the popup
|
nicholas@116
|
222 this.popup = null;
|
nicholas@116
|
223 this.popupContent = null;
|
n@303
|
224 this.popupTitle = null;
|
n@303
|
225 this.popupResponse = null;
|
n@197
|
226 this.buttonProceed = null;
|
n@199
|
227 this.buttonPrevious = null;
|
nicholas@116
|
228 this.popupOptions = null;
|
nicholas@116
|
229 this.currentIndex = null;
|
nicholas@116
|
230 this.responses = null;
|
n@181
|
231
|
nicholas@116
|
232 this.createPopup = function(){
|
nicholas@116
|
233 // Create popup window interface
|
nicholas@116
|
234 var insertPoint = document.getElementById("topLevelBody");
|
nicholas@116
|
235 var blank = document.createElement('div');
|
nicholas@116
|
236 blank.className = 'testHalt';
|
nicholas@116
|
237
|
nicholas@116
|
238 this.popup = document.createElement('div');
|
nicholas@116
|
239 this.popup.id = 'popupHolder';
|
nicholas@116
|
240 this.popup.className = 'popupHolder';
|
nicholas@116
|
241 this.popup.style.position = 'absolute';
|
nicholas@116
|
242 this.popup.style.left = (window.innerWidth/2)-250 + 'px';
|
nicholas@116
|
243 this.popup.style.top = (window.innerHeight/2)-125 + 'px';
|
nicholas@116
|
244
|
nicholas@116
|
245 this.popupContent = document.createElement('div');
|
nicholas@116
|
246 this.popupContent.id = 'popupContent';
|
n@303
|
247 this.popupContent.style.marginTop = '20px';
|
nicholas@364
|
248 this.popupContent.style.marginBottom = '5px';
|
nicholas@116
|
249 this.popup.appendChild(this.popupContent);
|
nicholas@116
|
250
|
n@303
|
251 var titleHolder = document.createElement('div');
|
n@303
|
252 titleHolder.id = 'popupTitleHolder';
|
nicholas@364
|
253 titleHolder.align = 'center';
|
n@303
|
254 titleHolder.style.width = 'inherit';
|
nicholas@364
|
255 titleHolder.style.minHeight = '25px';
|
nicholas@364
|
256 titleHolder.style.maxHeight = '250px';
|
nicholas@364
|
257 titleHolder.style.overflow = 'auto';
|
n@303
|
258 titleHolder.style.marginBottom = '5px';
|
n@303
|
259
|
n@303
|
260 this.popupTitle = document.createElement('span');
|
n@303
|
261 this.popupTitle.id = 'popupTitle';
|
n@303
|
262 titleHolder.appendChild(this.popupTitle);
|
n@303
|
263 this.popupContent.appendChild(titleHolder);
|
n@303
|
264
|
n@303
|
265 this.popupResponse = document.createElement('div');
|
n@303
|
266 this.popupResponse.id = 'popupResponse';
|
nicholas@364
|
267 this.popupResponse.align = 'center';
|
n@303
|
268 this.popupResponse.style.width = 'inherit';
|
nicholas@364
|
269 this.popupResponse.style.minHeight = '50px';
|
n@303
|
270 this.popupResponse.style.maxHeight = '320px';
|
n@303
|
271 this.popupResponse.style.overflow = 'auto';
|
n@303
|
272 this.popupContent.appendChild(this.popupResponse);
|
n@303
|
273
|
n@197
|
274 this.buttonProceed = document.createElement('button');
|
n@197
|
275 this.buttonProceed.className = 'popupButton';
|
nicholas@364
|
276 this.buttonProceed.position = 'relative';
|
n@303
|
277 this.buttonProceed.style.left = '390px';
|
n@197
|
278 this.buttonProceed.innerHTML = 'Next';
|
n@197
|
279 this.buttonProceed.onclick = function(){popup.proceedClicked();};
|
n@199
|
280
|
n@199
|
281 this.buttonPrevious = document.createElement('button');
|
n@199
|
282 this.buttonPrevious.className = 'popupButton';
|
nicholas@364
|
283 this.buttonPrevious.position = 'relative';
|
n@199
|
284 this.buttonPrevious.style.left = '10px';
|
n@199
|
285 this.buttonPrevious.innerHTML = 'Back';
|
n@199
|
286 this.buttonPrevious.onclick = function(){popup.previousClick();};
|
n@199
|
287
|
nicholas@364
|
288 this.popupContent.appendChild(this.buttonPrevious);
|
nicholas@364
|
289 this.popupContent.appendChild(this.buttonProceed);
|
n@303
|
290
|
n@181
|
291 this.popup.style.zIndex = -1;
|
n@181
|
292 this.popup.style.visibility = 'hidden';
|
n@181
|
293 blank.style.zIndex = -2;
|
n@181
|
294 blank.style.visibility = 'hidden';
|
nicholas@116
|
295 insertPoint.appendChild(this.popup);
|
nicholas@116
|
296 insertPoint.appendChild(blank);
|
nicholas@116
|
297 };
|
nicholas@114
|
298
|
nicholas@116
|
299 this.showPopup = function(){
|
n@181
|
300 if (this.popup == null) {
|
nicholas@116
|
301 this.createPopup();
|
nicholas@116
|
302 }
|
nicholas@116
|
303 this.popup.style.zIndex = 3;
|
nicholas@116
|
304 this.popup.style.visibility = 'visible';
|
nicholas@116
|
305 var blank = document.getElementsByClassName('testHalt')[0];
|
nicholas@116
|
306 blank.style.zIndex = 2;
|
nicholas@116
|
307 blank.style.visibility = 'visible';
|
nicholas@276
|
308 $(window).keypress(function(e){
|
nicholas@276
|
309 if (e.keyCode == 13 && popup.popup.style.visibility == 'visible')
|
nicholas@276
|
310 {
|
nicholas@276
|
311 popup.buttonProceed.onclick();
|
nicholas@276
|
312 }
|
nicholas@276
|
313 });
|
nicholas@116
|
314 };
|
nicholas@116
|
315
|
nicholas@116
|
316 this.hidePopup = function(){
|
nicholas@116
|
317 this.popup.style.zIndex = -1;
|
nicholas@116
|
318 this.popup.style.visibility = 'hidden';
|
nicholas@116
|
319 var blank = document.getElementsByClassName('testHalt')[0];
|
nicholas@116
|
320 blank.style.zIndex = -2;
|
nicholas@116
|
321 blank.style.visibility = 'hidden';
|
n@303
|
322 this.buttonPrevious.style.visibility = 'inherit';
|
n@362
|
323 $(window).keypress(function(e){});
|
nicholas@116
|
324 };
|
nicholas@116
|
325
|
nicholas@116
|
326 this.postNode = function() {
|
nicholas@116
|
327 // This will take the node from the popupOptions and display it
|
nicholas@116
|
328 var node = this.popupOptions[this.currentIndex];
|
n@303
|
329 this.popupResponse.innerHTML = null;
|
n@181
|
330 if (node.type == 'statement') {
|
n@304
|
331 this.popupTitle.textContent = null;
|
n@304
|
332 var statement = document.createElement('span');
|
n@304
|
333 statement.textContent = node.statement;
|
n@304
|
334 this.popupResponse.appendChild(statement);
|
n@181
|
335 } else if (node.type == 'question') {
|
n@303
|
336 this.popupTitle.textContent = node.question;
|
nicholas@116
|
337 var textArea = document.createElement('textarea');
|
n@191
|
338 switch (node.boxsize) {
|
n@191
|
339 case 'small':
|
n@191
|
340 textArea.cols = "20";
|
n@191
|
341 textArea.rows = "1";
|
n@191
|
342 break;
|
n@191
|
343 case 'normal':
|
n@191
|
344 textArea.cols = "30";
|
n@191
|
345 textArea.rows = "2";
|
n@191
|
346 break;
|
n@191
|
347 case 'large':
|
n@191
|
348 textArea.cols = "40";
|
n@191
|
349 textArea.rows = "5";
|
n@191
|
350 break;
|
n@191
|
351 case 'huge':
|
n@191
|
352 textArea.cols = "50";
|
n@191
|
353 textArea.rows = "10";
|
n@191
|
354 break;
|
n@191
|
355 }
|
n@303
|
356 this.popupResponse.appendChild(textArea);
|
n@303
|
357 textArea.focus();
|
nicholas@188
|
358 } else if (node.type == 'checkbox') {
|
n@303
|
359 this.popupTitle.textContent = node.statement;
|
n@303
|
360 var optHold = this.popupResponse;
|
nicholas@188
|
361 for (var i=0; i<node.options.length; i++) {
|
nicholas@188
|
362 var option = node.options[i];
|
nicholas@188
|
363 var input = document.createElement('input');
|
nicholas@188
|
364 input.id = option.id;
|
nicholas@188
|
365 input.type = 'checkbox';
|
nicholas@188
|
366 var span = document.createElement('span');
|
nicholas@188
|
367 span.textContent = option.text;
|
nicholas@188
|
368 var hold = document.createElement('div');
|
nicholas@188
|
369 hold.setAttribute('name','option');
|
nicholas@188
|
370 hold.style.padding = '4px';
|
nicholas@188
|
371 hold.appendChild(input);
|
nicholas@188
|
372 hold.appendChild(span);
|
nicholas@188
|
373 optHold.appendChild(hold);
|
nicholas@188
|
374 }
|
nicholas@189
|
375 } else if (node.type == 'radio') {
|
n@303
|
376 this.popupTitle.textContent = node.statement;
|
n@303
|
377 var optHold = this.popupResponse;
|
nicholas@189
|
378 for (var i=0; i<node.options.length; i++) {
|
nicholas@189
|
379 var option = node.options[i];
|
nicholas@189
|
380 var input = document.createElement('input');
|
nicholas@189
|
381 input.id = option.name;
|
nicholas@189
|
382 input.type = 'radio';
|
nicholas@189
|
383 input.name = node.id;
|
nicholas@189
|
384 var span = document.createElement('span');
|
nicholas@189
|
385 span.textContent = option.text;
|
nicholas@189
|
386 var hold = document.createElement('div');
|
nicholas@189
|
387 hold.setAttribute('name','option');
|
nicholas@189
|
388 hold.style.padding = '4px';
|
nicholas@189
|
389 hold.appendChild(input);
|
nicholas@189
|
390 hold.appendChild(span);
|
nicholas@189
|
391 optHold.appendChild(hold);
|
nicholas@189
|
392 }
|
n@196
|
393 } else if (node.type == 'number') {
|
n@303
|
394 this.popupTitle.textContent = node.statement;
|
n@196
|
395 var input = document.createElement('input');
|
nicholas@224
|
396 input.type = 'textarea';
|
n@196
|
397 if (node.min != null) {input.min = node.min;}
|
n@196
|
398 if (node.max != null) {input.max = node.max;}
|
n@196
|
399 if (node.step != null) {input.step = node.step;}
|
n@303
|
400 this.popupResponse.appendChild(input);
|
nicholas@116
|
401 }
|
nicholas@364
|
402 var content_height = Number(this.popup.offsetHeight.toFixed());
|
nicholas@364
|
403 content_height -= Number(this.popupContent.offsetHeight.toFixed());
|
nicholas@364
|
404 content_height -=Number(this.buttonProceed.offsetHeight.toFixed());
|
nicholas@364
|
405 content_height = content_height + "px";
|
nicholas@364
|
406 this.buttonProceed.style.top = content_height;
|
nicholas@364
|
407 this.buttonPrevious.style.top = content_height;
|
n@199
|
408 if(this.currentIndex+1 == this.popupOptions.length) {
|
nicholas@268
|
409 if (this.responses.nodeName == "PRETEST") {
|
nicholas@268
|
410 this.buttonProceed.textContent = 'Start';
|
nicholas@268
|
411 } else {
|
nicholas@268
|
412 this.buttonProceed.textContent = 'Submit';
|
nicholas@268
|
413 }
|
n@199
|
414 } else {
|
n@199
|
415 this.buttonProceed.textContent = 'Next';
|
n@199
|
416 }
|
n@199
|
417 if(this.currentIndex > 0)
|
n@303
|
418 this.buttonPrevious.style.visibility = 'visible';
|
n@303
|
419 else
|
n@303
|
420 this.buttonPrevious.style.visibility = 'hidden';
|
n@155
|
421 };
|
nicholas@116
|
422
|
nicholas@116
|
423 this.initState = function(node) {
|
nicholas@116
|
424 //Call this with your preTest and postTest nodes when needed to
|
nicholas@116
|
425 // initialise the popup procedure.
|
n@181
|
426 this.popupOptions = node.options;
|
nicholas@116
|
427 if (this.popupOptions.length > 0) {
|
n@181
|
428 if (node.type == 'pretest') {
|
nicholas@116
|
429 this.responses = document.createElement('PreTest');
|
n@181
|
430 } else if (node.type == 'posttest') {
|
nicholas@116
|
431 this.responses = document.createElement('PostTest');
|
nicholas@116
|
432 } else {
|
nicholas@116
|
433 console.log ('WARNING - popup node neither pre or post!');
|
nicholas@116
|
434 this.responses = document.createElement('responses');
|
nicholas@116
|
435 }
|
nicholas@116
|
436 this.currentIndex = 0;
|
nicholas@116
|
437 this.showPopup();
|
nicholas@116
|
438 this.postNode();
|
n@181
|
439 } else {
|
n@181
|
440 advanceState();
|
nicholas@116
|
441 }
|
n@155
|
442 };
|
nicholas@116
|
443
|
n@197
|
444 this.proceedClicked = function() {
|
nicholas@116
|
445 // Each time the popup button is clicked!
|
nicholas@116
|
446 var node = this.popupOptions[this.currentIndex];
|
n@181
|
447 if (node.type == 'question') {
|
nicholas@116
|
448 // Must extract the question data
|
nicholas@116
|
449 var textArea = $(popup.popupContent).find('textarea')[0];
|
n@181
|
450 if (node.mandatory == true && textArea.value.length == 0) {
|
nicholas@116
|
451 alert('This question is mandatory');
|
nicholas@116
|
452 return;
|
nicholas@116
|
453 } else {
|
nicholas@116
|
454 // Save the text content
|
nicholas@116
|
455 var hold = document.createElement('comment');
|
n@181
|
456 hold.id = node.id;
|
nicholas@116
|
457 hold.innerHTML = textArea.value;
|
n@195
|
458 console.log("Question: "+ node.question);
|
nicholas@117
|
459 console.log("Question Response: "+ textArea.value);
|
nicholas@116
|
460 this.responses.appendChild(hold);
|
nicholas@116
|
461 }
|
nicholas@188
|
462 } else if (node.type == 'checkbox') {
|
nicholas@188
|
463 // Must extract checkbox data
|
n@303
|
464 var optHold = this.popupResponse;
|
nicholas@188
|
465 var hold = document.createElement('checkbox');
|
nicholas@188
|
466 console.log("Checkbox: "+ node.statement);
|
nicholas@189
|
467 hold.id = node.id;
|
nicholas@188
|
468 for (var i=0; i<optHold.childElementCount; i++) {
|
nicholas@188
|
469 var input = optHold.childNodes[i].getElementsByTagName('input')[0];
|
nicholas@188
|
470 var statement = optHold.childNodes[i].getElementsByTagName('span')[0];
|
nicholas@188
|
471 var response = document.createElement('option');
|
n@195
|
472 response.setAttribute('name',input.id);
|
n@195
|
473 response.textContent = input.checked;
|
nicholas@188
|
474 hold.appendChild(response);
|
nicholas@188
|
475 console.log(input.id +': '+ input.checked);
|
nicholas@188
|
476 }
|
nicholas@188
|
477 this.responses.appendChild(hold);
|
nicholas@189
|
478 } else if (node.type == "radio") {
|
n@303
|
479 var optHold = this.popupResponse;
|
nicholas@189
|
480 var hold = document.createElement('radio');
|
nicholas@189
|
481 var responseID = null;
|
nicholas@189
|
482 var i=0;
|
nicholas@189
|
483 while(responseID == null) {
|
nicholas@189
|
484 var input = optHold.childNodes[i].getElementsByTagName('input')[0];
|
nicholas@189
|
485 if (input.checked == true) {
|
nicholas@189
|
486 responseID = i;
|
nicholas@189
|
487 }
|
nicholas@189
|
488 i++;
|
nicholas@189
|
489 }
|
nicholas@189
|
490 hold.id = node.id;
|
nicholas@189
|
491 hold.setAttribute('name',node.options[responseID].name);
|
nicholas@189
|
492 hold.textContent = node.options[responseID].text;
|
nicholas@189
|
493 this.responses.appendChild(hold);
|
n@196
|
494 } else if (node.type == "number") {
|
n@196
|
495 var input = this.popupContent.getElementsByTagName('input')[0];
|
n@196
|
496 if (node.mandatory == true && input.value.length == 0) {
|
n@197
|
497 alert('This question is mandatory. Please enter a number');
|
n@197
|
498 return;
|
n@197
|
499 }
|
n@197
|
500 var enteredNumber = Number(input.value);
|
nicholas@224
|
501 if (isNaN(enteredNumber)) {
|
n@197
|
502 alert('Please enter a valid number');
|
n@197
|
503 return;
|
n@197
|
504 }
|
n@197
|
505 if (enteredNumber < node.min && node.min != null) {
|
n@197
|
506 alert('Number is below the minimum value of '+node.min);
|
n@197
|
507 return;
|
n@197
|
508 }
|
n@197
|
509 if (enteredNumber > node.max && node.max != null) {
|
n@197
|
510 alert('Number is above the maximum value of '+node.max);
|
n@196
|
511 return;
|
n@196
|
512 }
|
n@196
|
513 var hold = document.createElement('number');
|
n@196
|
514 hold.id = node.id;
|
n@196
|
515 hold.textContent = input.value;
|
n@196
|
516 this.responses.appendChild(hold);
|
nicholas@116
|
517 }
|
nicholas@116
|
518 this.currentIndex++;
|
nicholas@116
|
519 if (this.currentIndex < this.popupOptions.length) {
|
nicholas@116
|
520 this.postNode();
|
nicholas@116
|
521 } else {
|
nicholas@116
|
522 // Reached the end of the popupOptions
|
nicholas@116
|
523 this.hidePopup();
|
nicholas@129
|
524 if (this.responses.nodeName == testState.stateResults[testState.stateIndex].nodeName) {
|
nicholas@129
|
525 testState.stateResults[testState.stateIndex] = this.responses;
|
nicholas@129
|
526 } else {
|
nicholas@129
|
527 testState.stateResults[testState.stateIndex].appendChild(this.responses);
|
nicholas@129
|
528 }
|
nicholas@116
|
529 advanceState();
|
nicholas@116
|
530 }
|
n@155
|
531 };
|
n@199
|
532
|
n@199
|
533 this.previousClick = function() {
|
n@199
|
534 // Triggered when the 'Back' button is clicked in the survey
|
n@199
|
535 if (this.currentIndex > 0) {
|
n@199
|
536 this.currentIndex--;
|
n@199
|
537 var node = this.popupOptions[this.currentIndex];
|
n@199
|
538 if (node.type != 'statement') {
|
n@199
|
539 var prevResp = this.responses.childNodes[this.responses.childElementCount-1];
|
n@199
|
540 this.responses.removeChild(prevResp);
|
n@199
|
541 }
|
n@199
|
542 this.postNode();
|
n@199
|
543 if (node.type == 'question') {
|
n@199
|
544 this.popupContent.getElementsByTagName('textarea')[0].value = prevResp.textContent;
|
n@199
|
545 } else if (node.type == 'checkbox') {
|
n@199
|
546 var options = this.popupContent.getElementsByTagName('input');
|
n@199
|
547 var savedOptions = prevResp.getElementsByTagName('option');
|
n@199
|
548 for (var i=0; i<options.length; i++) {
|
n@199
|
549 var id = options[i].id;
|
n@199
|
550 for (var j=0; j<savedOptions.length; j++) {
|
n@199
|
551 if (savedOptions[j].getAttribute('name') == id) {
|
n@199
|
552 if (savedOptions[j].textContent == 'true') {options[i].checked = true;}
|
n@199
|
553 else {options[i].checked = false;}
|
n@199
|
554 break;
|
n@199
|
555 }
|
n@199
|
556 }
|
n@199
|
557 }
|
n@199
|
558 } else if (node.type == 'number') {
|
n@199
|
559 this.popupContent.getElementsByTagName('input')[0].value = prevResp.textContent;
|
n@199
|
560 } else if (node.type == 'radio') {
|
n@199
|
561 var options = this.popupContent.getElementsByTagName('input');
|
n@199
|
562 var name = prevResp.getAttribute('name');
|
n@199
|
563 for (var i=0; i<options.length; i++) {
|
n@199
|
564 if (options[i].id == name) {
|
n@199
|
565 options[i].checked = true;
|
n@199
|
566 break;
|
n@199
|
567 }
|
n@199
|
568 }
|
n@199
|
569 }
|
n@199
|
570 }
|
n@199
|
571 };
|
nicholas@114
|
572 }
|
nicholas@114
|
573
|
nicholas@116
|
574 function advanceState()
|
nicholas@114
|
575 {
|
nicholas@129
|
576 // Just for complete clarity
|
nicholas@129
|
577 testState.advanceState();
|
nicholas@129
|
578 }
|
nicholas@129
|
579
|
nicholas@129
|
580 function stateMachine()
|
nicholas@129
|
581 {
|
nicholas@129
|
582 // Object prototype for tracking and managing the test state
|
nicholas@129
|
583 this.stateMap = [];
|
nicholas@129
|
584 this.stateIndex = null;
|
nicholas@129
|
585 this.currentStateMap = [];
|
nicholas@129
|
586 this.currentIndex = null;
|
nicholas@129
|
587 this.currentTestId = 0;
|
nicholas@129
|
588 this.stateResults = [];
|
nicholas@135
|
589 this.timerCallBackHolders = null;
|
nicholas@129
|
590 this.initialise = function(){
|
nicholas@129
|
591 if (this.stateMap.length > 0) {
|
nicholas@129
|
592 if(this.stateIndex != null) {
|
nicholas@129
|
593 console.log('NOTE - State already initialise');
|
nicholas@129
|
594 }
|
nicholas@129
|
595 this.stateIndex = -1;
|
nicholas@129
|
596 var that = this;
|
nicholas@250
|
597 var aH_pId = 0;
|
nicholas@129
|
598 for (var id=0; id<this.stateMap.length; id++){
|
n@181
|
599 var name = this.stateMap[id].type;
|
nicholas@129
|
600 var obj = document.createElement(name);
|
nicholas@187
|
601 if (name == 'audioHolder') {
|
nicholas@187
|
602 obj.id = this.stateMap[id].id;
|
nicholas@250
|
603 obj.setAttribute('presentedid',aH_pId);
|
nicholas@250
|
604 aH_pId+=1;
|
nicholas@187
|
605 }
|
nicholas@129
|
606 this.stateResults.push(obj);
|
nicholas@129
|
607 }
|
nicholas@129
|
608 } else {
|
b@254
|
609 console.log('FATAL - StateMap not correctly constructed. EMPTY_STATE_MAP');
|
nicholas@116
|
610 }
|
nicholas@129
|
611 };
|
nicholas@129
|
612 this.advanceState = function(){
|
nicholas@129
|
613 if (this.stateIndex == null) {
|
nicholas@129
|
614 this.initialise();
|
nicholas@129
|
615 }
|
nicholas@129
|
616 if (this.stateIndex == -1) {
|
nicholas@129
|
617 console.log('Starting test...');
|
nicholas@129
|
618 }
|
nicholas@129
|
619 if (this.currentIndex == null){
|
n@181
|
620 if (this.currentStateMap.type == "audioHolder") {
|
nicholas@129
|
621 // Save current page
|
nicholas@129
|
622 this.testPageCompleted(this.stateResults[this.stateIndex],this.currentStateMap,this.currentTestId);
|
nicholas@129
|
623 this.currentTestId++;
|
nicholas@129
|
624 }
|
nicholas@129
|
625 this.stateIndex++;
|
nicholas@129
|
626 if (this.stateIndex >= this.stateMap.length) {
|
nicholas@129
|
627 console.log('Test Completed');
|
n@182
|
628 createProjectSave(specification.projectReturn);
|
nicholas@129
|
629 } else {
|
nicholas@129
|
630 this.currentStateMap = this.stateMap[this.stateIndex];
|
n@181
|
631 if (this.currentStateMap.type == "audioHolder") {
|
nicholas@129
|
632 console.log('Loading test page');
|
n@375
|
633 interfaceContext.newPage(this.currentStateMap);
|
nicholas@129
|
634 this.initialiseInnerState(this.currentStateMap);
|
n@181
|
635 } else if (this.currentStateMap.type == "pretest" || this.currentStateMap.type == "posttest") {
|
n@181
|
636 if (this.currentStateMap.options.length >= 1) {
|
nicholas@129
|
637 popup.initState(this.currentStateMap);
|
nicholas@129
|
638 } else {
|
nicholas@129
|
639 this.advanceState();
|
nicholas@129
|
640 }
|
nicholas@129
|
641 } else {
|
nicholas@129
|
642 this.advanceState();
|
nicholas@129
|
643 }
|
nicholas@129
|
644 }
|
nicholas@129
|
645 } else {
|
nicholas@129
|
646 this.advanceInnerState();
|
nicholas@129
|
647 }
|
nicholas@129
|
648 };
|
nicholas@129
|
649
|
nicholas@129
|
650 this.testPageCompleted = function(store, testXML, testId) {
|
nicholas@129
|
651 // Function called each time a test page has been completed
|
nicholas@129
|
652 // Can be used to over-rule default behaviour
|
nicholas@129
|
653
|
n@181
|
654 pageXMLSave(store, testXML);
|
n@176
|
655 };
|
nicholas@129
|
656
|
n@181
|
657 this.initialiseInnerState = function(node) {
|
nicholas@129
|
658 // Parses the received testXML for pre and post test options
|
nicholas@129
|
659 this.currentStateMap = [];
|
n@181
|
660 var preTest = node.preTest;
|
n@181
|
661 var postTest = node.postTest;
|
nicholas@129
|
662 if (preTest == undefined) {preTest = document.createElement("preTest");}
|
nicholas@129
|
663 if (postTest == undefined){postTest= document.createElement("postTest");}
|
nicholas@129
|
664 this.currentStateMap.push(preTest);
|
n@181
|
665 this.currentStateMap.push(node);
|
nicholas@129
|
666 this.currentStateMap.push(postTest);
|
nicholas@129
|
667 this.currentIndex = -1;
|
nicholas@129
|
668 this.advanceInnerState();
|
n@176
|
669 };
|
nicholas@129
|
670
|
nicholas@129
|
671 this.advanceInnerState = function() {
|
nicholas@129
|
672 this.currentIndex++;
|
nicholas@129
|
673 if (this.currentIndex >= this.currentStateMap.length) {
|
nicholas@129
|
674 this.currentIndex = null;
|
nicholas@129
|
675 this.currentStateMap = this.stateMap[this.stateIndex];
|
nicholas@129
|
676 this.advanceState();
|
nicholas@129
|
677 } else {
|
n@181
|
678 if (this.currentStateMap[this.currentIndex].type == "audioHolder") {
|
nicholas@129
|
679 console.log("Loading test page"+this.currentTestId);
|
n@181
|
680 } else if (this.currentStateMap[this.currentIndex].type == "pretest") {
|
nicholas@129
|
681 popup.initState(this.currentStateMap[this.currentIndex]);
|
n@181
|
682 } else if (this.currentStateMap[this.currentIndex].type == "posttest") {
|
nicholas@129
|
683 popup.initState(this.currentStateMap[this.currentIndex]);
|
nicholas@129
|
684 } else {
|
nicholas@129
|
685 this.advanceInnerState();
|
nicholas@129
|
686 }
|
nicholas@116
|
687 }
|
n@176
|
688 };
|
nicholas@129
|
689
|
nicholas@129
|
690 this.previousState = function(){};
|
nicholas@114
|
691 }
|
nicholas@114
|
692
|
n@377
|
693 function AudioEngine(specification) {
|
nicholas@1
|
694
|
nicholas@1
|
695 // Create two output paths, the main outputGain and fooGain.
|
nicholas@1
|
696 // Output gain is default to 1 and any items for playback route here
|
nicholas@1
|
697 // Foo gain is used for analysis to ensure paths get processed, but are not heard
|
nicholas@1
|
698 // because web audio will optimise and any route which does not go to the destination gets ignored.
|
nicholas@1
|
699 this.outputGain = audioContext.createGain();
|
nicholas@1
|
700 this.fooGain = audioContext.createGain();
|
nicholas@1
|
701 this.fooGain.gain = 0;
|
nicholas@1
|
702
|
nicholas@7
|
703 // Use this to detect playback state: 0 - stopped, 1 - playing
|
nicholas@7
|
704 this.status = 0;
|
nicholas@7
|
705
|
nicholas@1
|
706 // Connect both gains to output
|
nicholas@1
|
707 this.outputGain.connect(audioContext.destination);
|
nicholas@1
|
708 this.fooGain.connect(audioContext.destination);
|
nicholas@1
|
709
|
n@49
|
710 // Create the timer Object
|
n@49
|
711 this.timer = new timer();
|
n@49
|
712 // Create session metrics
|
n@377
|
713 this.metric = new sessionMetrics(this,specification);
|
n@49
|
714
|
n@57
|
715 this.loopPlayback = false;
|
n@57
|
716
|
nicholas@1
|
717 // Create store for new audioObjects
|
nicholas@1
|
718 this.audioObjects = [];
|
nicholas@1
|
719
|
n@379
|
720 this.buffers = [];
|
n@379
|
721 this.bufferObj = function(url)
|
n@379
|
722 {
|
n@379
|
723 this.url = url;
|
n@379
|
724 this.buffer = null;
|
n@379
|
725 this.xmlRequest = new XMLHttpRequest();
|
n@379
|
726 this.users = [];
|
n@379
|
727 this.xmlRequest.open('GET',this.url,true);
|
n@379
|
728 this.xmlRequest.responseType = 'arraybuffer';
|
n@379
|
729
|
n@379
|
730 var bufferObj = this;
|
n@379
|
731
|
n@379
|
732 // Create callback to decode the data asynchronously
|
n@379
|
733 this.xmlRequest.onloadend = function() {
|
n@379
|
734 audioContext.decodeAudioData(bufferObj.xmlRequest.response, function(decodedData) {
|
n@379
|
735 bufferObj.buffer = decodedData;
|
n@379
|
736 for (var i=0; i<bufferObj.users.length; i++)
|
n@379
|
737 {
|
n@379
|
738 bufferObj.users[i].state = 1;
|
n@379
|
739 if (bufferObj.users[i].interfaceDOM != null)
|
n@379
|
740 {
|
n@379
|
741 bufferObj.users[i].interfaceDOM.enable();
|
n@379
|
742 }
|
n@379
|
743 }
|
n@379
|
744 }, function(){
|
n@379
|
745 // Should only be called if there was an error, but sometimes gets called continuously
|
n@379
|
746 // Check here if the error is genuine
|
n@379
|
747 if (bufferObj.buffer == undefined) {
|
n@379
|
748 // Genuine error
|
n@379
|
749 console.log('FATAL - Error loading buffer on '+audioObj.id);
|
n@379
|
750 if (request.status == 404)
|
n@379
|
751 {
|
n@379
|
752 console.log('FATAL - Fragment '+audioObj.id+' 404 error');
|
n@379
|
753 console.log('URL: '+audioObj.url);
|
n@379
|
754 errorSessionDump('Fragment '+audioObj.id+' 404 error');
|
n@379
|
755 }
|
n@379
|
756 }
|
n@379
|
757 });
|
n@379
|
758 };
|
n@379
|
759 this.xmlRequest.send();
|
n@379
|
760 };
|
n@379
|
761
|
n@202
|
762 this.play = function(id) {
|
n@113
|
763 // Start the timer and set the audioEngine state to playing (1)
|
n@300
|
764 if (this.status == 0 && this.loopPlayback) {
|
n@113
|
765 // Check if all audioObjects are ready
|
n@300
|
766 if(this.checkAllReady())
|
n@300
|
767 {
|
n@202
|
768 this.status = 1;
|
n@300
|
769 this.setSynchronousLoop();
|
n@202
|
770 }
|
n@202
|
771 }
|
n@300
|
772 else
|
n@300
|
773 {
|
n@300
|
774 this.status = 1;
|
n@300
|
775 }
|
n@202
|
776 if (this.status== 1) {
|
n@300
|
777 this.timer.startTest();
|
n@204
|
778 if (id == undefined) {
|
n@204
|
779 id = -1;
|
n@300
|
780 console.log('FATAL - Passed id was undefined - AudioEngineContext.play(id)');
|
n@300
|
781 return;
|
n@204
|
782 } else {
|
n@204
|
783 interfaceContext.playhead.setTimePerPixel(this.audioObjects[id]);
|
n@204
|
784 }
|
n@202
|
785 if (this.loopPlayback) {
|
n@202
|
786 for (var i=0; i<this.audioObjects.length; i++)
|
n@202
|
787 {
|
n@202
|
788 this.audioObjects[i].play(this.timer.getTestTime()+1);
|
n@202
|
789 if (id == i) {
|
n@202
|
790 this.audioObjects[i].loopStart();
|
n@202
|
791 } else {
|
n@202
|
792 this.audioObjects[i].loopStop();
|
nicholas@131
|
793 }
|
nicholas@131
|
794 }
|
n@202
|
795 } else {
|
n@202
|
796 for (var i=0; i<this.audioObjects.length; i++)
|
n@202
|
797 {
|
n@202
|
798 if (i != id) {
|
n@202
|
799 this.audioObjects[i].outputGain.gain.value = 0.0;
|
n@202
|
800 this.audioObjects[i].stop();
|
n@202
|
801 } else if (i == id) {
|
n@202
|
802 this.audioObjects[id].outputGain.gain.value = 1.0;
|
n@202
|
803 this.audioObjects[id].play(audioContext.currentTime+0.01);
|
n@202
|
804 }
|
n@202
|
805 }
|
n@113
|
806 }
|
n@204
|
807 interfaceContext.playhead.start();
|
n@113
|
808 }
|
n@113
|
809 };
|
nicholas@1
|
810
|
n@113
|
811 this.stop = function() {
|
n@113
|
812 // Send stop and reset command to all playback buffers and set audioEngine state to stopped (1)
|
n@113
|
813 if (this.status == 1) {
|
n@113
|
814 for (var i=0; i<this.audioObjects.length; i++)
|
n@113
|
815 {
|
n@113
|
816 this.audioObjects[i].stop();
|
n@113
|
817 }
|
n@204
|
818 interfaceContext.playhead.stop();
|
n@113
|
819 this.status = 0;
|
n@113
|
820 }
|
n@113
|
821 };
|
nicholas@8
|
822
|
n@182
|
823 this.newTrack = function(element) {
|
nicholas@1
|
824 // Pull data from given URL into new audio buffer
|
nicholas@1
|
825 // URLs must either be from the same source OR be setup to 'Access-Control-Allow-Origin'
|
nicholas@7
|
826
|
nicholas@1
|
827 // Create the audioObject with ID of the new track length;
|
n@49
|
828 audioObjectId = this.audioObjects.length;
|
nicholas@1
|
829 this.audioObjects[audioObjectId] = new audioObject(audioObjectId);
|
nicholas@7
|
830
|
n@379
|
831 // Check if audioObject buffer is currently stored by full URL
|
n@379
|
832 var URL = element.parent.hostURL + element.url;
|
n@379
|
833 var buffer = null;
|
n@379
|
834 for (var i=0; i<this.buffers.length; i++)
|
n@379
|
835 {
|
n@379
|
836 if (URL == this.buffers[i].url)
|
n@379
|
837 {
|
n@379
|
838 buffer = this.buffers[i];
|
n@379
|
839 break;
|
n@379
|
840 }
|
n@379
|
841 }
|
n@379
|
842 if (buffer == null)
|
n@379
|
843 {
|
n@379
|
844 console.log("[WARN]: Buffer was not loaded in pre-test!");
|
n@379
|
845 buffer = new this.bufferObj(URL);
|
n@379
|
846 this.buffers.push(buffer);
|
n@379
|
847 }
|
n@182
|
848 this.audioObjects[audioObjectId].specification = element;
|
n@379
|
849 this.audioObjects[audioObjectId].buffer = buffer;
|
n@379
|
850 if (buffer.buffer != null)
|
n@379
|
851 {
|
n@379
|
852 this.audioObjects[audioObjectId].state = 1;
|
n@379
|
853 }
|
n@379
|
854 buffer.users.push(this.audioObjects[audioObjectId]);
|
n@179
|
855 return this.audioObjects[audioObjectId];
|
n@16
|
856 };
|
nicholas@1
|
857
|
n@113
|
858 this.newTestPage = function() {
|
n@113
|
859 this.state = 0;
|
n@113
|
860 this.audioObjectsReady = false;
|
n@113
|
861 this.metric.reset();
|
n@379
|
862 for (var i=0; i < this.buffers.length; i++)
|
n@379
|
863 {
|
n@379
|
864 this.buffers[i].users = [];
|
n@379
|
865 }
|
n@113
|
866 this.audioObjects = [];
|
n@113
|
867 };
|
n@113
|
868
|
nicholas@107
|
869 this.checkAllPlayed = function() {
|
nicholas@107
|
870 arr = [];
|
nicholas@107
|
871 for (var id=0; id<this.audioObjects.length; id++) {
|
nicholas@142
|
872 if (this.audioObjects[id].metric.wasListenedTo == false) {
|
nicholas@107
|
873 arr.push(this.audioObjects[id].id);
|
nicholas@107
|
874 }
|
nicholas@107
|
875 }
|
nicholas@107
|
876 return arr;
|
nicholas@107
|
877 };
|
nicholas@107
|
878
|
n@113
|
879 this.checkAllReady = function() {
|
n@113
|
880 var ready = true;
|
n@113
|
881 for (var i=0; i<this.audioObjects.length; i++) {
|
n@113
|
882 if (this.audioObjects[i].state == 0) {
|
n@113
|
883 // Track not ready
|
n@113
|
884 console.log('WAIT -- audioObject '+i+' not ready yet!');
|
n@113
|
885 ready = false;
|
n@113
|
886 };
|
n@113
|
887 }
|
n@113
|
888 return ready;
|
n@113
|
889 };
|
n@113
|
890
|
nicholas@272
|
891 this.setSynchronousLoop = function() {
|
nicholas@272
|
892 // Pads the signals so they are all exactly the same length
|
n@300
|
893 var length = 0;
|
n@300
|
894 var lens = [];
|
n@300
|
895 var maxId;
|
n@300
|
896 for (var i=0; i<this.audioObjects.length; i++)
|
nicholas@272
|
897 {
|
n@300
|
898 lens.push(this.audioObjects[i].buffer.length);
|
n@300
|
899 if (length < this.audioObjects[i].buffer.length)
|
nicholas@272
|
900 {
|
n@300
|
901 length = this.audioObjects[i].buffer.length;
|
n@300
|
902 maxId = i;
|
nicholas@272
|
903 }
|
n@300
|
904 }
|
n@300
|
905 // Perform difference
|
n@300
|
906 for (var i=0; i<lens.length; i++)
|
n@300
|
907 {
|
n@300
|
908 lens[i] = length - lens[i];
|
n@300
|
909 }
|
n@300
|
910 // Extract the audio and zero-pad
|
n@300
|
911 for (var i=0; i<lens.length; i++)
|
n@300
|
912 {
|
n@300
|
913 var orig = this.audioObjects[i].buffer;
|
n@300
|
914 var hold = audioContext.createBuffer(orig.numberOfChannels,length,orig.sampleRate);
|
n@300
|
915 for (var c=0; c<orig.numberOfChannels; c++)
|
nicholas@272
|
916 {
|
n@300
|
917 var inData = hold.getChannelData(c);
|
n@300
|
918 var outData = orig.getChannelData(c);
|
n@300
|
919 for (var n=0; n<orig.length; n++)
|
n@300
|
920 {inData[n] = outData[n];}
|
nicholas@272
|
921 }
|
n@300
|
922 this.audioObjects[i].buffer = hold;
|
n@300
|
923 delete orig;
|
nicholas@272
|
924 }
|
nicholas@272
|
925 };
|
nicholas@272
|
926
|
nicholas@1
|
927 }
|
nicholas@1
|
928
|
nicholas@1
|
929 function audioObject(id) {
|
nicholas@1
|
930 // The main buffer object with common control nodes to the AudioEngine
|
nicholas@1
|
931
|
n@182
|
932 this.specification;
|
nicholas@1
|
933 this.id = id;
|
nicholas@1
|
934 this.state = 0; // 0 - no data, 1 - ready
|
n@24
|
935 this.url = null; // Hold the URL given for the output back to the results.
|
n@139
|
936 this.metric = new metricTracker(this);
|
nicholas@1
|
937
|
n@177
|
938 // Bindings for GUI
|
n@183
|
939 this.interfaceDOM = null;
|
n@177
|
940 this.commentDOM = null;
|
n@177
|
941
|
nicholas@1
|
942 // Create a buffer and external gain control to allow internal patching of effects and volume leveling.
|
n@57
|
943 this.bufferNode = undefined;
|
nicholas@1
|
944 this.outputGain = audioContext.createGain();
|
nicholas@1
|
945
|
nicholas@8
|
946 // Default output gain to be zero
|
nicholas@8
|
947 this.outputGain.gain.value = 0.0;
|
nicholas@8
|
948
|
nicholas@1
|
949 // Connect buffer to the audio graph
|
nicholas@1
|
950 this.outputGain.connect(audioEngineContext.outputGain);
|
nicholas@1
|
951
|
nicholas@1
|
952 // the audiobuffer is not designed for multi-start playback
|
nicholas@1
|
953 // When stopeed, the buffer node is deleted and recreated with the stored buffer.
|
nicholas@1
|
954 this.buffer;
|
b@134
|
955
|
nicholas@132
|
956 this.loopStart = function() {
|
nicholas@132
|
957 this.outputGain.gain.value = 1.0;
|
nicholas@132
|
958 this.metric.startListening(audioEngineContext.timer.getTestTime());
|
n@177
|
959 };
|
nicholas@132
|
960
|
nicholas@132
|
961 this.loopStop = function() {
|
nicholas@132
|
962 if (this.outputGain.gain.value != 0.0) {
|
nicholas@132
|
963 this.outputGain.gain.value = 0.0;
|
nicholas@132
|
964 this.metric.stopListening(audioEngineContext.timer.getTestTime());
|
nicholas@132
|
965 }
|
n@177
|
966 };
|
nicholas@132
|
967
|
nicholas@1
|
968 this.play = function(startTime) {
|
n@379
|
969 if (this.bufferNode == undefined && this.buffer.buffer != undefined) {
|
n@202
|
970 this.bufferNode = audioContext.createBufferSource();
|
n@202
|
971 this.bufferNode.owner = this;
|
n@202
|
972 this.bufferNode.connect(this.outputGain);
|
n@379
|
973 this.bufferNode.buffer = this.buffer.buffer;
|
n@202
|
974 this.bufferNode.loop = audioEngineContext.loopPlayback;
|
n@299
|
975 this.bufferNode.onended = function(event) {
|
n@202
|
976 // Safari does not like using 'this' to reference the calling object!
|
n@347
|
977 //event.currentTarget.owner.metric.stopListening(audioEngineContext.timer.getTestTime(),event.currentTarget.owner.getCurrentPosition());
|
n@347
|
978 event.currentTarget.owner.stop();
|
n@202
|
979 };
|
n@202
|
980 if (this.bufferNode.loop == false) {
|
n@202
|
981 this.metric.startListening(audioEngineContext.timer.getTestTime());
|
n@202
|
982 }
|
n@202
|
983 this.bufferNode.start(startTime);
|
nicholas@110
|
984 }
|
n@16
|
985 };
|
nicholas@1
|
986
|
nicholas@1
|
987 this.stop = function() {
|
n@97
|
988 if (this.bufferNode != undefined)
|
n@97
|
989 {
|
n@203
|
990 this.metric.stopListening(audioEngineContext.timer.getTestTime(),this.getCurrentPosition());
|
n@97
|
991 this.bufferNode.stop(0);
|
n@97
|
992 this.bufferNode = undefined;
|
n@97
|
993 }
|
n@16
|
994 };
|
n@164
|
995
|
n@164
|
996 this.getCurrentPosition = function() {
|
n@164
|
997 var time = audioEngineContext.timer.getTestTime();
|
n@164
|
998 if (this.bufferNode != undefined) {
|
n@164
|
999 if (this.bufferNode.loop == true) {
|
n@164
|
1000 if (audioEngineContext.status == 1) {
|
n@379
|
1001 return (time-this.metric.listenStart)%this.buffer.buffer.duration;
|
n@164
|
1002 } else {
|
n@164
|
1003 return 0;
|
n@164
|
1004 }
|
n@164
|
1005 } else {
|
n@164
|
1006 if (this.metric.listenHold) {
|
n@164
|
1007 return time - this.metric.listenStart;
|
n@164
|
1008 } else {
|
n@164
|
1009 return 0;
|
n@164
|
1010 }
|
n@164
|
1011 }
|
n@164
|
1012 } else {
|
n@164
|
1013 return 0;
|
n@164
|
1014 }
|
n@164
|
1015 };
|
nicholas@8
|
1016
|
nicholas@7
|
1017 this.constructTrack = function(url) {
|
nicholas@7
|
1018 var request = new XMLHttpRequest();
|
n@24
|
1019 this.url = url;
|
nicholas@7
|
1020 request.open('GET',url,true);
|
nicholas@7
|
1021 request.responseType = 'arraybuffer';
|
nicholas@7
|
1022
|
nicholas@7
|
1023 var audioObj = this;
|
nicholas@7
|
1024
|
nicholas@7
|
1025 // Create callback to decode the data asynchronously
|
nicholas@7
|
1026 request.onloadend = function() {
|
nicholas@7
|
1027 audioContext.decodeAudioData(request.response, function(decodedData) {
|
nicholas@7
|
1028 audioObj.buffer = decodedData;
|
nicholas@7
|
1029 audioObj.state = 1;
|
nicholas@271
|
1030 if (audioObj.specification.type != 'outsidereference')
|
nicholas@271
|
1031 {audioObj.interfaceDOM.enable();}
|
nicholas@7
|
1032 }, function(){
|
nicholas@7
|
1033 // Should only be called if there was an error, but sometimes gets called continuously
|
nicholas@7
|
1034 // Check here if the error is genuine
|
nicholas@7
|
1035 if (audioObj.state == 0 || audioObj.buffer == undefined) {
|
nicholas@7
|
1036 // Genuine error
|
nicholas@7
|
1037 console.log('FATAL - Error loading buffer on '+audioObj.id);
|
nicholas@252
|
1038 if (request.status == 404)
|
nicholas@252
|
1039 {
|
nicholas@252
|
1040 console.log('FATAL - Fragment '+audioObj.id+' 404 error');
|
nicholas@252
|
1041 console.log('URL: '+audioObj.url);
|
nicholas@252
|
1042 errorSessionDump('Fragment '+audioObj.id+' 404 error');
|
nicholas@252
|
1043 }
|
nicholas@7
|
1044 }
|
nicholas@7
|
1045 });
|
n@16
|
1046 };
|
nicholas@7
|
1047 request.send();
|
n@16
|
1048 };
|
n@183
|
1049
|
n@183
|
1050 this.exportXMLDOM = function() {
|
n@183
|
1051 var root = document.createElement('audioElement');
|
n@183
|
1052 root.id = this.specification.id;
|
n@183
|
1053 root.setAttribute('url',this.url);
|
nicholas@234
|
1054 var file = document.createElement('file');
|
nicholas@234
|
1055 file.setAttribute('sampleRate',this.buffer.sampleRate);
|
nicholas@236
|
1056 file.setAttribute('channels',this.buffer.numberOfChannels);
|
nicholas@234
|
1057 file.setAttribute('sampleCount',this.buffer.length);
|
nicholas@234
|
1058 file.setAttribute('duration',this.buffer.duration);
|
nicholas@234
|
1059 root.appendChild(file);
|
nicholas@236
|
1060 if (this.specification.type != 'outsidereference') {
|
nicholas@236
|
1061 root.appendChild(this.interfaceDOM.exportXMLDOM(this));
|
nicholas@236
|
1062 root.appendChild(this.commentDOM.exportXMLDOM(this));
|
nicholas@266
|
1063 if(this.specification.type == 'anchor') {
|
nicholas@266
|
1064 root.setAttribute('anchor',true);
|
nicholas@266
|
1065 } else if(this.specification.type == 'reference') {
|
nicholas@266
|
1066 root.setAttribute('reference',true);
|
nicholas@266
|
1067 }
|
nicholas@236
|
1068 }
|
n@183
|
1069 root.appendChild(this.metric.exportXMLDOM());
|
n@183
|
1070 return root;
|
n@183
|
1071 };
|
n@49
|
1072 }
|
n@49
|
1073
|
n@49
|
1074 function timer()
|
n@49
|
1075 {
|
n@49
|
1076 /* Timer object used in audioEngine to keep track of session timings
|
n@49
|
1077 * Uses the timer of the web audio API, so sample resolution
|
n@49
|
1078 */
|
n@49
|
1079 this.testStarted = false;
|
n@49
|
1080 this.testStartTime = 0;
|
n@49
|
1081 this.testDuration = 0;
|
n@49
|
1082 this.minimumTestTime = 0; // No minimum test time
|
n@49
|
1083 this.startTest = function()
|
n@49
|
1084 {
|
n@49
|
1085 if (this.testStarted == false)
|
n@49
|
1086 {
|
n@49
|
1087 this.testStartTime = audioContext.currentTime;
|
n@49
|
1088 this.testStarted = true;
|
n@49
|
1089 this.updateTestTime();
|
n@52
|
1090 audioEngineContext.metric.initialiseTest();
|
n@49
|
1091 }
|
n@49
|
1092 };
|
n@49
|
1093 this.stopTest = function()
|
n@49
|
1094 {
|
n@49
|
1095 if (this.testStarted)
|
n@49
|
1096 {
|
n@49
|
1097 this.testDuration = this.getTestTime();
|
n@49
|
1098 this.testStarted = false;
|
n@49
|
1099 } else {
|
n@49
|
1100 console.log('ERR: Test tried to end before beginning');
|
n@49
|
1101 }
|
n@49
|
1102 };
|
n@49
|
1103 this.updateTestTime = function()
|
n@49
|
1104 {
|
n@49
|
1105 if (this.testStarted)
|
n@49
|
1106 {
|
n@49
|
1107 this.testDuration = audioContext.currentTime - this.testStartTime;
|
n@49
|
1108 }
|
n@49
|
1109 };
|
n@49
|
1110 this.getTestTime = function()
|
n@49
|
1111 {
|
n@49
|
1112 this.updateTestTime();
|
n@49
|
1113 return this.testDuration;
|
n@49
|
1114 };
|
n@49
|
1115 }
|
n@49
|
1116
|
n@377
|
1117 function sessionMetrics(engine,specification)
|
n@49
|
1118 {
|
n@49
|
1119 /* Used by audioEngine to link to audioObjects to minimise the timer call timers;
|
n@49
|
1120 */
|
n@49
|
1121 this.engine = engine;
|
n@49
|
1122 this.lastClicked = -1;
|
n@49
|
1123 this.data = -1;
|
n@113
|
1124 this.reset = function() {
|
n@113
|
1125 this.lastClicked = -1;
|
n@113
|
1126 this.data = -1;
|
n@113
|
1127 };
|
n@377
|
1128
|
n@377
|
1129 this.enableElementInitialPosition = false;
|
n@377
|
1130 this.enableElementListenTracker = false;
|
n@377
|
1131 this.enableElementTimer = false;
|
n@377
|
1132 this.enableElementTracker = false;
|
n@377
|
1133 this.enableFlagListenedTo = false;
|
n@377
|
1134 this.enableFlagMoved = false;
|
n@377
|
1135 this.enableTestTimer = false;
|
n@377
|
1136 // Obtain the metrics enabled
|
n@377
|
1137 for (var i=0; i<specification.metrics.length; i++)
|
n@377
|
1138 {
|
n@377
|
1139 var node = specification.metrics[i];
|
n@377
|
1140 switch(node.enabled)
|
n@377
|
1141 {
|
n@377
|
1142 case 'testTimer':
|
n@377
|
1143 this.enableTestTimer = true;
|
n@377
|
1144 break;
|
n@377
|
1145 case 'elementTimer':
|
n@377
|
1146 this.enableElementTimer = true;
|
n@377
|
1147 break;
|
n@377
|
1148 case 'elementTracker':
|
n@377
|
1149 this.enableElementTracker = true;
|
n@377
|
1150 break;
|
n@377
|
1151 case 'elementListenTracker':
|
n@377
|
1152 this.enableElementListenTracker = true;
|
n@377
|
1153 break;
|
n@377
|
1154 case 'elementInitialPosition':
|
n@377
|
1155 this.enableElementInitialPosition = true;
|
n@377
|
1156 break;
|
n@377
|
1157 case 'elementFlagListenedTo':
|
n@377
|
1158 this.enableFlagListenedTo = true;
|
n@377
|
1159 break;
|
n@377
|
1160 case 'elementFlagMoved':
|
n@377
|
1161 this.enableFlagMoved = true;
|
n@377
|
1162 break;
|
n@377
|
1163 case 'elementFlagComments':
|
n@377
|
1164 this.enableFlagComments = true;
|
n@377
|
1165 break;
|
n@377
|
1166 }
|
n@377
|
1167 }
|
n@52
|
1168 this.initialiseTest = function(){};
|
n@49
|
1169 }
|
n@49
|
1170
|
n@139
|
1171 function metricTracker(caller)
|
n@49
|
1172 {
|
n@49
|
1173 /* Custom object to track and collect metric data
|
n@49
|
1174 * Used only inside the audioObjects object.
|
n@49
|
1175 */
|
n@49
|
1176
|
n@49
|
1177 this.listenedTimer = 0;
|
n@49
|
1178 this.listenStart = 0;
|
nicholas@110
|
1179 this.listenHold = false;
|
n@51
|
1180 this.initialPosition = -1;
|
n@49
|
1181 this.movementTracker = [];
|
n@164
|
1182 this.listenTracker =[];
|
n@49
|
1183 this.wasListenedTo = false;
|
n@49
|
1184 this.wasMoved = false;
|
n@49
|
1185 this.hasComments = false;
|
n@139
|
1186 this.parent = caller;
|
n@49
|
1187
|
n@49
|
1188 this.initialised = function(position)
|
n@49
|
1189 {
|
n@51
|
1190 if (this.initialPosition == -1) {
|
n@51
|
1191 this.initialPosition = position;
|
n@51
|
1192 }
|
n@49
|
1193 };
|
n@49
|
1194
|
n@49
|
1195 this.moved = function(time,position)
|
n@49
|
1196 {
|
n@49
|
1197 this.wasMoved = true;
|
n@49
|
1198 this.movementTracker[this.movementTracker.length] = [time, position];
|
n@49
|
1199 };
|
n@49
|
1200
|
nicholas@132
|
1201 this.startListening = function(time)
|
n@49
|
1202 {
|
nicholas@110
|
1203 if (this.listenHold == false)
|
n@49
|
1204 {
|
n@49
|
1205 this.wasListenedTo = true;
|
n@49
|
1206 this.listenStart = time;
|
nicholas@110
|
1207 this.listenHold = true;
|
n@164
|
1208
|
n@164
|
1209 var evnt = document.createElement('event');
|
n@164
|
1210 var testTime = document.createElement('testTime');
|
n@164
|
1211 testTime.setAttribute('start',time);
|
n@164
|
1212 var bufferTime = document.createElement('bufferTime');
|
n@164
|
1213 bufferTime.setAttribute('start',this.parent.getCurrentPosition());
|
n@164
|
1214 evnt.appendChild(testTime);
|
n@164
|
1215 evnt.appendChild(bufferTime);
|
n@164
|
1216 this.listenTracker.push(evnt);
|
n@164
|
1217
|
n@139
|
1218 console.log('slider ' + this.parent.id + ' played (' + time + ')'); // DEBUG/SAFETY: show played slider id
|
n@139
|
1219 }
|
n@139
|
1220 };
|
nicholas@132
|
1221
|
n@203
|
1222 this.stopListening = function(time,bufferStopTime)
|
nicholas@132
|
1223 {
|
nicholas@132
|
1224 if (this.listenHold == true)
|
nicholas@132
|
1225 {
|
n@164
|
1226 var diff = time - this.listenStart;
|
n@164
|
1227 this.listenedTimer += (diff);
|
n@49
|
1228 this.listenStart = 0;
|
nicholas@110
|
1229 this.listenHold = false;
|
n@164
|
1230
|
n@164
|
1231 var evnt = this.listenTracker[this.listenTracker.length-1];
|
n@164
|
1232 var testTime = evnt.getElementsByTagName('testTime')[0];
|
n@164
|
1233 var bufferTime = evnt.getElementsByTagName('bufferTime')[0];
|
n@164
|
1234 testTime.setAttribute('stop',time);
|
n@203
|
1235 if (bufferStopTime == undefined) {
|
n@203
|
1236 bufferTime.setAttribute('stop',this.parent.getCurrentPosition());
|
n@203
|
1237 } else {
|
n@203
|
1238 bufferTime.setAttribute('stop',bufferStopTime);
|
n@203
|
1239 }
|
n@164
|
1240 console.log('slider ' + this.parent.id + ' played for (' + diff + ')'); // DEBUG/SAFETY: show played slider id
|
n@49
|
1241 }
|
n@49
|
1242 };
|
n@177
|
1243
|
n@177
|
1244 this.exportXMLDOM = function() {
|
n@177
|
1245 var root = document.createElement('metric');
|
n@177
|
1246 if (audioEngineContext.metric.enableElementTimer) {
|
n@177
|
1247 var mElementTimer = document.createElement('metricresult');
|
n@177
|
1248 mElementTimer.setAttribute('name','enableElementTimer');
|
n@177
|
1249 mElementTimer.textContent = this.listenedTimer;
|
n@177
|
1250 root.appendChild(mElementTimer);
|
n@177
|
1251 }
|
n@177
|
1252 if (audioEngineContext.metric.enableElementTracker) {
|
n@177
|
1253 var elementTrackerFull = document.createElement('metricResult');
|
n@177
|
1254 elementTrackerFull.setAttribute('name','elementTrackerFull');
|
n@177
|
1255 for (var k=0; k<this.movementTracker.length; k++)
|
n@177
|
1256 {
|
n@177
|
1257 var timePos = document.createElement('timePos');
|
n@177
|
1258 timePos.id = k;
|
n@177
|
1259 var time = document.createElement('time');
|
n@177
|
1260 time.textContent = this.movementTracker[k][0];
|
n@177
|
1261 var position = document.createElement('position');
|
n@177
|
1262 position.textContent = this.movementTracker[k][1];
|
n@177
|
1263 timePos.appendChild(time);
|
n@177
|
1264 timePos.appendChild(position);
|
n@177
|
1265 elementTrackerFull.appendChild(timePos);
|
n@177
|
1266 }
|
n@177
|
1267 root.appendChild(elementTrackerFull);
|
n@177
|
1268 }
|
n@177
|
1269 if (audioEngineContext.metric.enableElementListenTracker) {
|
n@177
|
1270 var elementListenTracker = document.createElement('metricResult');
|
n@177
|
1271 elementListenTracker.setAttribute('name','elementListenTracker');
|
n@177
|
1272 for (var k=0; k<this.listenTracker.length; k++) {
|
n@177
|
1273 elementListenTracker.appendChild(this.listenTracker[k]);
|
n@177
|
1274 }
|
n@177
|
1275 root.appendChild(elementListenTracker);
|
n@177
|
1276 }
|
n@177
|
1277 if (audioEngineContext.metric.enableElementInitialPosition) {
|
n@177
|
1278 var elementInitial = document.createElement('metricResult');
|
n@177
|
1279 elementInitial.setAttribute('name','elementInitialPosition');
|
n@177
|
1280 elementInitial.textContent = this.initialPosition;
|
n@177
|
1281 root.appendChild(elementInitial);
|
n@177
|
1282 }
|
n@177
|
1283 if (audioEngineContext.metric.enableFlagListenedTo) {
|
n@177
|
1284 var flagListenedTo = document.createElement('metricResult');
|
n@177
|
1285 flagListenedTo.setAttribute('name','elementFlagListenedTo');
|
n@177
|
1286 flagListenedTo.textContent = this.wasListenedTo;
|
n@177
|
1287 root.appendChild(flagListenedTo);
|
n@177
|
1288 }
|
n@177
|
1289 if (audioEngineContext.metric.enableFlagMoved) {
|
n@177
|
1290 var flagMoved = document.createElement('metricResult');
|
n@177
|
1291 flagMoved.setAttribute('name','elementFlagMoved');
|
n@177
|
1292 flagMoved.textContent = this.wasMoved;
|
n@177
|
1293 root.appendChild(flagMoved);
|
n@177
|
1294 }
|
n@177
|
1295 if (audioEngineContext.metric.enableFlagComments) {
|
n@177
|
1296 var flagComments = document.createElement('metricResult');
|
n@177
|
1297 flagComments.setAttribute('name','elementFlagComments');
|
n@177
|
1298 if (this.parent.commentDOM == null)
|
n@177
|
1299 {flag.textContent = 'false';}
|
n@177
|
1300 else if (this.parent.commentDOM.textContent.length == 0)
|
n@177
|
1301 {flag.textContent = 'false';}
|
n@177
|
1302 else
|
n@177
|
1303 {flag.textContet = 'true';}
|
n@177
|
1304 root.appendChild(flagComments);
|
n@177
|
1305 }
|
n@177
|
1306
|
n@177
|
1307 return root;
|
n@177
|
1308 };
|
n@54
|
1309 }
|
n@54
|
1310
|
n@54
|
1311 function randomiseOrder(input)
|
n@54
|
1312 {
|
n@54
|
1313 // This takes an array of information and randomises the order
|
n@54
|
1314 var N = input.length;
|
b@207
|
1315
|
b@207
|
1316 var inputSequence = []; // For safety purposes: keep track of randomisation
|
b@207
|
1317 for (var counter = 0; counter < N; ++counter)
|
b@207
|
1318 inputSequence.push(counter) // Fill array
|
b@207
|
1319 var inputSequenceClone = inputSequence.slice(0);
|
b@207
|
1320
|
n@54
|
1321 var holdArr = [];
|
b@207
|
1322 var outputSequence = [];
|
n@54
|
1323 for (var n=0; n<N; n++)
|
n@54
|
1324 {
|
n@54
|
1325 // First pick a random number
|
n@54
|
1326 var r = Math.random();
|
n@54
|
1327 // Multiply and floor by the number of elements left
|
n@54
|
1328 r = Math.floor(r*input.length);
|
n@54
|
1329 // Pick out that element and delete from the array
|
n@54
|
1330 holdArr.push(input.splice(r,1)[0]);
|
b@207
|
1331 // Do the same with sequence
|
b@207
|
1332 outputSequence.push(inputSequence.splice(r,1)[0]);
|
n@54
|
1333 }
|
b@207
|
1334 console.log(inputSequenceClone.toString()); // print original array to console
|
b@207
|
1335 console.log(outputSequence.toString()); // print randomised array to console
|
n@54
|
1336 return holdArr;
|
n@125
|
1337 }
|
n@125
|
1338
|
n@125
|
1339 function returnDateNode()
|
n@125
|
1340 {
|
n@125
|
1341 // Create an XML Node for the Date and Time a test was conducted
|
n@125
|
1342 // Structure is
|
n@125
|
1343 // <datetime>
|
n@125
|
1344 // <date year="##" month="##" day="##">DD/MM/YY</date>
|
n@125
|
1345 // <time hour="##" minute="##" sec="##">HH:MM:SS</time>
|
n@125
|
1346 // </datetime>
|
n@125
|
1347 var dateTime = new Date();
|
n@125
|
1348 var year = document.createAttribute('year');
|
n@125
|
1349 var month = document.createAttribute('month');
|
n@125
|
1350 var day = document.createAttribute('day');
|
n@125
|
1351 var hour = document.createAttribute('hour');
|
n@125
|
1352 var minute = document.createAttribute('minute');
|
n@125
|
1353 var secs = document.createAttribute('secs');
|
n@125
|
1354
|
n@125
|
1355 year.nodeValue = dateTime.getFullYear();
|
n@125
|
1356 month.nodeValue = dateTime.getMonth()+1;
|
n@125
|
1357 day.nodeValue = dateTime.getDate();
|
n@125
|
1358 hour.nodeValue = dateTime.getHours();
|
n@125
|
1359 minute.nodeValue = dateTime.getMinutes();
|
n@125
|
1360 secs.nodeValue = dateTime.getSeconds();
|
n@125
|
1361
|
n@125
|
1362 var hold = document.createElement("datetime");
|
n@125
|
1363 var date = document.createElement("date");
|
n@125
|
1364 date.textContent = year.nodeValue+'/'+month.nodeValue+'/'+day.nodeValue;
|
n@125
|
1365 var time = document.createElement("time");
|
n@125
|
1366 time.textContent = hour.nodeValue+':'+minute.nodeValue+':'+secs.nodeValue;
|
n@125
|
1367
|
n@125
|
1368 date.setAttributeNode(year);
|
n@125
|
1369 date.setAttributeNode(month);
|
n@125
|
1370 date.setAttributeNode(day);
|
n@125
|
1371 time.setAttributeNode(hour);
|
n@125
|
1372 time.setAttributeNode(minute);
|
n@125
|
1373 time.setAttributeNode(secs);
|
n@125
|
1374
|
n@125
|
1375 hold.appendChild(date);
|
n@125
|
1376 hold.appendChild(time);
|
n@377
|
1377 return hold;
|
n@125
|
1378
|
nicholas@135
|
1379 }
|
nicholas@135
|
1380
|
n@180
|
1381 function Specification() {
|
n@180
|
1382 // Handles the decoding of the project specification XML into a simple JavaScript Object.
|
n@180
|
1383
|
n@311
|
1384 this.interfaceType = null;
|
n@374
|
1385 this.commonInterface = new function()
|
n@374
|
1386 {
|
n@374
|
1387 this.options = [];
|
n@374
|
1388 this.optionNode = function(input)
|
n@374
|
1389 {
|
n@374
|
1390 var name = input.getAttribute('name');
|
n@374
|
1391 this.type = name;
|
n@374
|
1392 if(this.type == "option")
|
n@374
|
1393 {
|
n@374
|
1394 this.name = input.id;
|
n@374
|
1395 } else if (this.type == "check")
|
n@374
|
1396 {
|
n@374
|
1397 this.check = input.id;
|
n@374
|
1398 }
|
n@374
|
1399 };
|
n@374
|
1400 };
|
n@380
|
1401
|
n@380
|
1402 this.randomiseOrder = function(input)
|
n@380
|
1403 {
|
n@380
|
1404 // This takes an array of information and randomises the order
|
n@380
|
1405 var N = input.length;
|
n@380
|
1406
|
n@380
|
1407 var inputSequence = []; // For safety purposes: keep track of randomisation
|
n@380
|
1408 for (var counter = 0; counter < N; ++counter)
|
n@380
|
1409 inputSequence.push(counter) // Fill array
|
n@380
|
1410 var inputSequenceClone = inputSequence.slice(0);
|
n@380
|
1411
|
n@380
|
1412 var holdArr = [];
|
n@380
|
1413 var outputSequence = [];
|
n@380
|
1414 for (var n=0; n<N; n++)
|
n@380
|
1415 {
|
n@380
|
1416 // First pick a random number
|
n@380
|
1417 var r = Math.random();
|
n@380
|
1418 // Multiply and floor by the number of elements left
|
n@380
|
1419 r = Math.floor(r*input.length);
|
n@380
|
1420 // Pick out that element and delete from the array
|
n@380
|
1421 holdArr.push(input.splice(r,1)[0]);
|
n@380
|
1422 // Do the same with sequence
|
n@380
|
1423 outputSequence.push(inputSequence.splice(r,1)[0]);
|
n@380
|
1424 }
|
n@380
|
1425 console.log(inputSequenceClone.toString()); // print original array to console
|
n@380
|
1426 console.log(outputSequence.toString()); // print randomised array to console
|
n@380
|
1427 return holdArr;
|
n@380
|
1428 };
|
n@311
|
1429 this.projectReturn = null;
|
n@311
|
1430 this.randomiseOrder = null;
|
n@311
|
1431 this.collectMetrics = null;
|
n@311
|
1432 this.testPages = null;
|
n@374
|
1433 this.audioHolders = [];
|
n@374
|
1434 this.metrics = [];
|
n@180
|
1435
|
n@374
|
1436 this.decode = function(projectXML) {
|
n@180
|
1437 // projectXML - DOM Parsed document
|
nicholas@240
|
1438 this.projectXML = projectXML.childNodes[0];
|
n@180
|
1439 var setupNode = projectXML.getElementsByTagName('setup')[0];
|
n@180
|
1440 this.interfaceType = setupNode.getAttribute('interface');
|
n@180
|
1441 this.projectReturn = setupNode.getAttribute('projectReturn');
|
n@297
|
1442 this.testPages = setupNode.getAttribute('testPages');
|
n@180
|
1443 if (setupNode.getAttribute('randomiseOrder') == "true") {
|
n@180
|
1444 this.randomiseOrder = true;
|
n@184
|
1445 } else {this.randomiseOrder = false;}
|
n@180
|
1446 if (setupNode.getAttribute('collectMetrics') == "true") {
|
n@180
|
1447 this.collectMetrics = true;
|
n@184
|
1448 } else {this.collectMetrics = false;}
|
n@297
|
1449 if (isNaN(Number(this.testPages)) || this.testPages == undefined)
|
n@297
|
1450 {
|
n@297
|
1451 this.testPages = null;
|
n@297
|
1452 } else {
|
n@297
|
1453 this.testPages = Number(this.testPages);
|
n@297
|
1454 if (this.testPages == 0) {this.testPages = null;}
|
n@297
|
1455 }
|
n@180
|
1456 var metricCollection = setupNode.getElementsByTagName('Metric');
|
n@180
|
1457
|
n@374
|
1458 var setupPreTestNode = setupNode.getElementsByTagName('PreTest');
|
n@374
|
1459 if (setupPreTestNode.length != 0)
|
n@374
|
1460 {
|
n@374
|
1461 setupPreTestNode = setupPreTestNode[0];
|
n@374
|
1462 this.preTest.construct(setupPreTestNode);
|
n@374
|
1463 }
|
n@374
|
1464
|
n@374
|
1465 var setupPostTestNode = setupNode.getElementsByTagName('PostTest');
|
n@374
|
1466 if (setupPostTestNode.length != 0)
|
n@374
|
1467 {
|
n@374
|
1468 setupPostTestNode = setupPostTestNode[0];
|
n@374
|
1469 this.postTest.construct(setupPostTestNode);
|
n@374
|
1470 }
|
n@180
|
1471
|
n@180
|
1472 if (metricCollection.length > 0) {
|
n@180
|
1473 metricCollection = metricCollection[0].getElementsByTagName('metricEnable');
|
n@180
|
1474 for (var i=0; i<metricCollection.length; i++) {
|
n@181
|
1475 this.metrics.push(new this.metricNode(metricCollection[i].textContent));
|
n@180
|
1476 }
|
n@180
|
1477 }
|
n@180
|
1478
|
nicholas@213
|
1479 var commonInterfaceNode = setupNode.getElementsByTagName('interface');
|
nicholas@213
|
1480 if (commonInterfaceNode.length > 0) {
|
nicholas@213
|
1481 commonInterfaceNode = commonInterfaceNode[0];
|
nicholas@213
|
1482 } else {
|
nicholas@213
|
1483 commonInterfaceNode = undefined;
|
nicholas@213
|
1484 }
|
nicholas@213
|
1485
|
nicholas@213
|
1486 this.commonInterface = new function() {
|
nicholas@213
|
1487 this.OptionNode = function(child) {
|
nicholas@213
|
1488 this.type = child.nodeName;
|
nicholas@256
|
1489 if (this.type == 'option')
|
nicholas@256
|
1490 {
|
nicholas@256
|
1491 this.name = child.getAttribute('name');
|
nicholas@256
|
1492 }
|
nicholas@256
|
1493 else if (this.type == 'check') {
|
nicholas@213
|
1494 this.check = child.getAttribute('name');
|
nicholas@231
|
1495 if (this.check == 'scalerange') {
|
nicholas@231
|
1496 this.min = child.getAttribute('min');
|
nicholas@231
|
1497 this.max = child.getAttribute('max');
|
nicholas@231
|
1498 if (this.min == null) {this.min = 1;}
|
nicholas@231
|
1499 else if (Number(this.min) > 1 && this.min != null) {
|
nicholas@231
|
1500 this.min = Number(this.min)/100;
|
nicholas@231
|
1501 } else {
|
nicholas@231
|
1502 this.min = Number(this.min);
|
nicholas@231
|
1503 }
|
nicholas@231
|
1504 if (this.max == null) {this.max = 0;}
|
nicholas@231
|
1505 else if (Number(this.max) > 1 && this.max != null) {
|
nicholas@231
|
1506 this.max = Number(this.max)/100;
|
nicholas@231
|
1507 } else {
|
nicholas@231
|
1508 this.max = Number(this.max);
|
nicholas@231
|
1509 }
|
nicholas@231
|
1510 }
|
nicholas@218
|
1511 } else if (this.type == 'anchor' || this.type == 'reference') {
|
n@374
|
1512 this.value = Number(child.textContent);
|
n@374
|
1513 this.enforce = child.getAttribute('enforce');
|
n@374
|
1514 if (this.enforce == 'true') {this.enforce = true;}
|
n@374
|
1515 else {this.enforce = false;}
|
nicholas@213
|
1516 }
|
nicholas@218
|
1517 };
|
nicholas@213
|
1518 this.options = [];
|
nicholas@213
|
1519 if (commonInterfaceNode != undefined) {
|
nicholas@213
|
1520 var child = commonInterfaceNode.firstElementChild;
|
nicholas@213
|
1521 while (child != undefined) {
|
nicholas@213
|
1522 this.options.push(new this.OptionNode(child));
|
nicholas@213
|
1523 child = child.nextElementSibling;
|
nicholas@213
|
1524 }
|
nicholas@213
|
1525 }
|
nicholas@213
|
1526 };
|
nicholas@213
|
1527
|
n@180
|
1528 var audioHolders = projectXML.getElementsByTagName('audioHolder');
|
n@180
|
1529 for (var i=0; i<audioHolders.length; i++) {
|
n@374
|
1530 var node = new this.audioHolderNode(this);
|
n@374
|
1531 node.decode(this,audioHolders[i]);
|
n@374
|
1532 this.audioHolders.push(node);
|
n@180
|
1533 }
|
n@180
|
1534
|
n@297
|
1535 // New check if we need to randomise the test order
|
n@297
|
1536 if (this.randomiseOrder)
|
n@297
|
1537 {
|
n@297
|
1538 this.audioHolders = randomiseOrder(this.audioHolders);
|
n@297
|
1539 for (var i=0; i<this.audioHolders.length; i++)
|
n@297
|
1540 {
|
n@297
|
1541 this.audioHolders[i].presentedId = i;
|
n@297
|
1542 }
|
n@297
|
1543 }
|
n@297
|
1544
|
n@297
|
1545 if (this.testPages != null || this.testPages != undefined)
|
n@297
|
1546 {
|
n@297
|
1547 if (this.testPages > audioHolders.length)
|
n@297
|
1548 {
|
n@297
|
1549 console.log('Warning: You have specified '+audioHolders.length+' tests but requested '+this.testPages+' be completed!');
|
n@297
|
1550 this.testPages = audioHolders.length;
|
n@297
|
1551 }
|
n@297
|
1552 var aH = this.audioHolders;
|
n@297
|
1553 this.audioHolders = [];
|
n@297
|
1554 for (var i=0; i<this.testPages; i++)
|
n@297
|
1555 {
|
n@297
|
1556 this.audioHolders.push(aH[i]);
|
n@297
|
1557 }
|
n@297
|
1558 }
|
n@180
|
1559 };
|
n@180
|
1560
|
n@374
|
1561 this.encode = function()
|
n@374
|
1562 {
|
n@374
|
1563 var root = document.implementation.createDocument(null,"BrowserEvalProjectDocument");
|
n@374
|
1564 // First get all the <setup> tag compiled
|
n@374
|
1565 var setupNode = root.createElement("setup");
|
n@374
|
1566 setupNode.setAttribute('interface',this.interfaceType);
|
n@374
|
1567 setupNode.setAttribute('projectReturn',this.projectReturn);
|
n@374
|
1568 setupNode.setAttribute('randomiseOrder',this.randomiseOrder);
|
n@374
|
1569 setupNode.setAttribute('collectMetrics',this.collectMetrics);
|
n@374
|
1570 setupNode.setAttribute('testPages',this.testPages);
|
n@374
|
1571
|
n@374
|
1572 var setupPreTest = root.createElement("PreTest");
|
n@374
|
1573 for (var i=0; i<this.preTest.options.length; i++)
|
n@374
|
1574 {
|
n@374
|
1575 setupPreTest.appendChild(this.preTest.options[i].exportXML(root));
|
n@374
|
1576 }
|
n@374
|
1577
|
n@374
|
1578 var setupPostTest = root.createElement("PostTest");
|
n@374
|
1579 for (var i=0; i<this.postTest.options.length; i++)
|
n@374
|
1580 {
|
n@374
|
1581 setupPostTest.appendChild(this.postTest.options[i].exportXML(root));
|
n@374
|
1582 }
|
n@374
|
1583
|
n@374
|
1584 setupNode.appendChild(setupPreTest);
|
n@374
|
1585 setupNode.appendChild(setupPostTest);
|
n@374
|
1586
|
n@374
|
1587 // <Metric> tag
|
n@374
|
1588 var Metric = root.createElement("Metric");
|
n@374
|
1589 for (var i=0; i<this.metrics.length; i++)
|
n@374
|
1590 {
|
n@374
|
1591 var metricEnable = root.createElement("metricEnable");
|
n@374
|
1592 metricEnable.textContent = this.metrics[i].enabled;
|
n@374
|
1593 Metric.appendChild(metricEnable);
|
n@374
|
1594 }
|
n@374
|
1595 setupNode.appendChild(Metric);
|
n@374
|
1596
|
n@374
|
1597 // <interface> tag
|
n@374
|
1598 var CommonInterface = root.createElement("interface");
|
n@374
|
1599 for (var i=0; i<this.commonInterface.options.length; i++)
|
n@374
|
1600 {
|
n@374
|
1601 var CIObj = this.commonInterface.options[i];
|
n@374
|
1602 var CINode = root.createElement(CIObj.type);
|
n@374
|
1603 if (CIObj.type == "check") {CINode.setAttribute("name",CIObj.check);}
|
n@374
|
1604 else {CINode.setAttribute("name",CIObj.name);}
|
n@374
|
1605 CommonInterface.appendChild(CINode);
|
n@374
|
1606 }
|
n@374
|
1607 setupNode.appendChild(CommonInterface);
|
n@374
|
1608
|
n@374
|
1609 root.getElementsByTagName("BrowserEvalProjectDocument")[0].appendChild(setupNode);
|
n@374
|
1610 // Time for the <audioHolder> tags
|
n@374
|
1611 for (var ahIndex = 0; ahIndex < this.audioHolders.length; ahIndex++)
|
n@374
|
1612 {
|
n@374
|
1613 var node = this.audioHolders[ahIndex].encode(root);
|
n@374
|
1614 root.getElementsByTagName("BrowserEvalProjectDocument")[0].appendChild(node);
|
n@374
|
1615 }
|
n@374
|
1616 return root;
|
n@374
|
1617 };
|
n@374
|
1618
|
n@374
|
1619 this.prepostNode = function(type) {
|
n@180
|
1620 this.type = type;
|
n@180
|
1621 this.options = [];
|
n@180
|
1622
|
n@374
|
1623 this.OptionNode = function() {
|
nicholas@188
|
1624
|
n@374
|
1625 this.childOption = function() {
|
nicholas@188
|
1626 this.type = 'option';
|
n@374
|
1627 this.id = null;
|
n@374
|
1628 this.name = undefined;
|
n@374
|
1629 this.text = null;
|
n@191
|
1630 };
|
nicholas@188
|
1631
|
n@374
|
1632 this.type = undefined;
|
n@374
|
1633 this.id = undefined;
|
n@374
|
1634 this.mandatory = undefined;
|
n@374
|
1635 this.question = undefined;
|
n@374
|
1636 this.statement = undefined;
|
n@374
|
1637 this.boxsize = undefined;
|
n@374
|
1638 this.options = [];
|
n@374
|
1639 this.min = undefined;
|
n@374
|
1640 this.max = undefined;
|
n@374
|
1641 this.step = undefined;
|
n@374
|
1642
|
n@374
|
1643 this.decode = function(child)
|
n@374
|
1644 {
|
n@374
|
1645 this.type = child.nodeName;
|
n@374
|
1646 if (child.nodeName == "question") {
|
n@374
|
1647 this.id = child.id;
|
n@374
|
1648 this.mandatory;
|
n@374
|
1649 if (child.getAttribute('mandatory') == "true") {this.mandatory = true;}
|
n@374
|
1650 else {this.mandatory = false;}
|
n@374
|
1651 this.question = child.textContent;
|
n@374
|
1652 if (child.getAttribute('boxsize') == null) {
|
n@374
|
1653 this.boxsize = 'normal';
|
n@374
|
1654 } else {
|
n@374
|
1655 this.boxsize = child.getAttribute('boxsize');
|
n@374
|
1656 }
|
n@374
|
1657 } else if (child.nodeName == "statement") {
|
n@374
|
1658 this.statement = child.textContent;
|
n@374
|
1659 } else if (child.nodeName == "checkbox" || child.nodeName == "radio") {
|
n@374
|
1660 var element = child.firstElementChild;
|
n@374
|
1661 this.id = child.id;
|
n@374
|
1662 if (element == null) {
|
n@374
|
1663 console.log('Malformed' +child.nodeName+ 'entry');
|
n@374
|
1664 this.statement = 'Malformed' +child.nodeName+ 'entry';
|
n@374
|
1665 this.type = 'statement';
|
n@374
|
1666 } else {
|
n@374
|
1667 this.options = [];
|
n@374
|
1668 while (element != null) {
|
n@374
|
1669 if (element.nodeName == 'statement' && this.statement == undefined){
|
n@374
|
1670 this.statement = element.textContent;
|
n@374
|
1671 } else if (element.nodeName == 'option') {
|
n@374
|
1672 var node = new this.childOption();
|
n@374
|
1673 node.id = element.id;
|
n@374
|
1674 node.name = element.getAttribute('name');
|
n@374
|
1675 node.text = element.textContent;
|
n@374
|
1676 this.options.push(node);
|
n@374
|
1677 }
|
n@374
|
1678 element = element.nextElementSibling;
|
n@374
|
1679 }
|
n@374
|
1680 }
|
n@374
|
1681 } else if (child.nodeName == "number") {
|
n@374
|
1682 this.statement = child.textContent;
|
n@374
|
1683 this.id = child.id;
|
n@374
|
1684 this.min = child.getAttribute('min');
|
n@374
|
1685 this.max = child.getAttribute('max');
|
n@374
|
1686 this.step = child.getAttribute('step');
|
n@191
|
1687 }
|
n@374
|
1688 };
|
n@374
|
1689
|
n@374
|
1690 this.exportXML = function(root)
|
n@374
|
1691 {
|
n@374
|
1692 var node = root.createElement(this.type);
|
n@374
|
1693 switch(this.type)
|
n@374
|
1694 {
|
n@374
|
1695 case "statement":
|
n@374
|
1696 node.textContent = this.statement;
|
n@374
|
1697 break;
|
n@374
|
1698 case "question":
|
n@374
|
1699 node.id = this.id;
|
n@374
|
1700 node.setAttribute("mandatory",this.mandatory);
|
n@374
|
1701 node.setAttribute("boxsize",this.boxsize);
|
n@374
|
1702 node.textContent = this.question;
|
n@374
|
1703 break;
|
n@374
|
1704 case "number":
|
n@374
|
1705 node.id = this.id;
|
n@374
|
1706 node.setAttribute("mandatory",this.mandatory);
|
n@374
|
1707 node.setAttribute("min", this.min);
|
n@374
|
1708 node.setAttribute("max", this.max);
|
n@374
|
1709 node.setAttribute("step", this.step);
|
n@374
|
1710 node.textContent = this.statement;
|
n@374
|
1711 break;
|
n@374
|
1712 case "checkbox":
|
n@374
|
1713 node.id = this.id;
|
n@374
|
1714 var statement = root.createElement("statement");
|
n@374
|
1715 statement.textContent = this.statement;
|
n@374
|
1716 node.appendChild(statement);
|
n@374
|
1717 for (var i=0; i<this.options.length; i++)
|
n@374
|
1718 {
|
n@374
|
1719 var option = this.options[i];
|
n@374
|
1720 var optionNode = root.createElement("option");
|
n@374
|
1721 optionNode.id = option.id;
|
n@374
|
1722 optionNode.textContent = option.text;
|
n@374
|
1723 node.appendChild(optionNode);
|
nicholas@188
|
1724 }
|
n@374
|
1725 break;
|
n@374
|
1726 case "radio":
|
n@374
|
1727 node.id = this.id;
|
n@374
|
1728 var statement = root.createElement("statement");
|
n@374
|
1729 statement.textContent = this.statement;
|
n@374
|
1730 node.appendChild(statement);
|
n@374
|
1731 for (var i=0; i<this.options.length; i++)
|
n@374
|
1732 {
|
n@374
|
1733 var option = this.options[i];
|
n@374
|
1734 var optionNode = root.createElement("option");
|
n@374
|
1735 optionNode.setAttribute("name",option.name);
|
n@374
|
1736 optionNode.textContent = option.text;
|
n@374
|
1737 node.appendChild(optionNode);
|
n@374
|
1738 }
|
n@374
|
1739 break;
|
nicholas@188
|
1740 }
|
n@374
|
1741 return node;
|
n@374
|
1742 };
|
n@374
|
1743 };
|
n@374
|
1744 this.construct = function(Collection)
|
n@374
|
1745 {
|
n@374
|
1746 if (Collection.childElementCount != 0) {
|
n@374
|
1747 var child = Collection.firstElementChild;
|
n@374
|
1748 var node = new this.OptionNode();
|
n@374
|
1749 node.decode(child);
|
n@374
|
1750 this.options.push(node);
|
n@374
|
1751 while (child.nextElementSibling != null) {
|
n@374
|
1752 child = child.nextElementSibling;
|
n@374
|
1753 node = new this.OptionNode();
|
n@374
|
1754 node.decode(child);
|
n@374
|
1755 this.options.push(node);
|
n@374
|
1756 }
|
n@180
|
1757 }
|
n@180
|
1758 };
|
n@180
|
1759 };
|
n@374
|
1760 this.preTest = new this.prepostNode("pretest");
|
n@374
|
1761 this.postTest = new this.prepostNode("posttest");
|
n@180
|
1762
|
n@180
|
1763 this.metricNode = function(name) {
|
n@180
|
1764 this.enabled = name;
|
n@180
|
1765 };
|
n@180
|
1766
|
n@374
|
1767 this.audioHolderNode = function(parent) {
|
n@181
|
1768 this.type = 'audioHolder';
|
n@374
|
1769 this.presentedId = undefined;
|
n@374
|
1770 this.id = undefined;
|
n@374
|
1771 this.hostURL = undefined;
|
n@374
|
1772 this.sampleRate = undefined;
|
n@374
|
1773 this.randomiseOrder = undefined;
|
n@374
|
1774 this.loop = undefined;
|
n@374
|
1775 this.elementComments = undefined;
|
n@374
|
1776 this.outsideReference = null;
|
n@374
|
1777 this.preTest = new parent.prepostNode("pretest");
|
n@374
|
1778 this.postTest = new parent.prepostNode("pretest");
|
n@374
|
1779 this.interfaces = [];
|
n@374
|
1780 this.commentBoxPrefix = "Comment on track";
|
n@374
|
1781 this.audioElements = [];
|
n@374
|
1782 this.commentQuestions = [];
|
n@374
|
1783
|
n@374
|
1784 this.decode = function(parent,xml)
|
n@374
|
1785 {
|
n@374
|
1786 this.presentedId = parent.audioHolders.length;
|
n@374
|
1787 this.id = xml.id;
|
n@374
|
1788 this.hostURL = xml.getAttribute('hostURL');
|
n@374
|
1789 this.sampleRate = xml.getAttribute('sampleRate');
|
n@374
|
1790 if (xml.getAttribute('randomiseOrder') == "true") {this.randomiseOrder = true;}
|
n@374
|
1791 else {this.randomiseOrder = false;}
|
n@374
|
1792 this.repeatCount = xml.getAttribute('repeatCount');
|
n@374
|
1793 if (xml.getAttribute('loop') == 'true') {this.loop = true;}
|
n@374
|
1794 else {this.loop == false;}
|
n@374
|
1795 if (xml.getAttribute('elementComments') == "true") {this.elementComments = true;}
|
n@374
|
1796 else {this.elementComments = false;}
|
n@374
|
1797
|
n@374
|
1798 var setupPreTestNode = xml.getElementsByTagName('PreTest');
|
n@374
|
1799 if (setupPreTestNode.length != 0)
|
n@374
|
1800 {
|
n@374
|
1801 setupPreTestNode = setupPreTestNode[0];
|
n@374
|
1802 this.preTest.construct(setupPreTestNode);
|
n@374
|
1803 }
|
n@374
|
1804
|
n@374
|
1805 var setupPostTestNode = xml.getElementsByTagName('PostTest');
|
n@374
|
1806 if (setupPostTestNode.length != 0)
|
n@374
|
1807 {
|
n@374
|
1808 setupPostTestNode = setupPostTestNode[0];
|
n@374
|
1809 this.postTest.construct(setupPostTestNode);
|
n@374
|
1810 }
|
n@374
|
1811
|
n@374
|
1812 var interfaceDOM = xml.getElementsByTagName('interface');
|
n@374
|
1813 for (var i=0; i<interfaceDOM.length; i++) {
|
n@374
|
1814 var node = new this.interfaceNode();
|
n@374
|
1815 node.decode(interfaceDOM[i]);
|
n@374
|
1816 this.interfaces.push(node);
|
n@374
|
1817 }
|
n@374
|
1818 this.commentBoxPrefix = xml.getElementsByTagName('commentBoxPrefix');
|
n@374
|
1819 if (this.commentBoxPrefix.length != 0) {
|
n@374
|
1820 this.commentBoxPrefix = this.commentBoxPrefix[0].textContent;
|
n@374
|
1821 } else {
|
n@374
|
1822 this.commentBoxPrefix = "Comment on track";
|
n@374
|
1823 }
|
n@374
|
1824 var audioElementsDOM = xml.getElementsByTagName('audioElements');
|
n@374
|
1825 for (var i=0; i<audioElementsDOM.length; i++) {
|
n@374
|
1826 var node = new this.audioElementNode();
|
n@374
|
1827 node.decode(this,audioElementsDOM[i]);
|
n@374
|
1828 if (audioElementsDOM[i].getAttribute('type') == 'outsidereference') {
|
n@374
|
1829 if (this.outsideReference == null) {
|
n@374
|
1830 this.outsideReference = node;
|
n@374
|
1831 } else {
|
n@374
|
1832 console.log('Error only one audioelement can be of type outsidereference per audioholder');
|
n@374
|
1833 this.audioElements.push(node);
|
n@374
|
1834 console.log('Element id '+audioElementsDOM[i].id+' made into normal node');
|
n@374
|
1835 }
|
n@374
|
1836 } else {
|
n@374
|
1837 this.audioElements.push(node);
|
n@374
|
1838 }
|
n@374
|
1839 }
|
n@374
|
1840
|
n@380
|
1841 if (this.randomiseOrder == true)
|
n@380
|
1842 {
|
n@380
|
1843 this.audioElements = randomiseOrder(this.audioElements);
|
n@380
|
1844 }
|
n@380
|
1845
|
n@374
|
1846 var commentQuestionsDOM = xml.getElementsByTagName('CommentQuestion');
|
n@374
|
1847 for (var i=0; i<commentQuestionsDOM.length; i++) {
|
n@374
|
1848 var node = new this.commentQuestionNode();
|
n@374
|
1849 node.decode(commentQuestionsDOM[i]);
|
n@374
|
1850 this.commentQuestions.push(node);
|
n@180
|
1851 }
|
n@180
|
1852 };
|
n@180
|
1853
|
n@374
|
1854 this.encode = function(root)
|
n@374
|
1855 {
|
n@374
|
1856 var AHNode = root.createElement("audioHolder");
|
n@374
|
1857 AHNode.id = this.id;
|
n@374
|
1858 AHNode.setAttribute("hostURL",this.hostURL);
|
n@374
|
1859 AHNode.setAttribute("sampleRate",this.sampleRate);
|
n@374
|
1860 AHNode.setAttribute("randomiseOrder",this.randomiseOrder);
|
n@374
|
1861 AHNode.setAttribute("repeatCount",this.repeatCount);
|
n@374
|
1862 AHNode.setAttribute("loop",this.loop);
|
n@374
|
1863 AHNode.setAttribute("elementComments",this.elementComments);
|
nicholas@215
|
1864
|
n@374
|
1865 for (var i=0; i<this.interfaces.length; i++)
|
n@324
|
1866 {
|
n@374
|
1867 AHNode.appendChild(this.interfaces[i].encode(root));
|
n@374
|
1868 }
|
n@374
|
1869
|
n@374
|
1870 for (var i=0; i<this.audioElements.length; i++) {
|
n@374
|
1871 AHNode.appendChild(this.audioElements[i].encode(root));
|
n@374
|
1872 }
|
n@374
|
1873 // Create <CommentQuestion>
|
n@374
|
1874 for (var i=0; i<this.commentQuestions.length; i++)
|
n@374
|
1875 {
|
n@374
|
1876 AHNode.appendChild(this.commentQuestions[i].exportXML(root));
|
n@374
|
1877 }
|
n@374
|
1878
|
n@374
|
1879 // Create <PreTest>
|
n@374
|
1880 var AHPreTest = root.createElement("PreTest");
|
n@374
|
1881 for (var i=0; i<this.preTest.options.length; i++)
|
n@374
|
1882 {
|
n@374
|
1883 AHPreTest.appendChild(this.preTest.options[i].exportXML(root));
|
n@374
|
1884 }
|
n@374
|
1885
|
n@374
|
1886 var AHPostTest = root.createElement("PostTest");
|
n@374
|
1887 for (var i=0; i<this.postTest.options.length; i++)
|
n@374
|
1888 {
|
n@374
|
1889 AHPostTest.appendChild(this.postTest.options[i].exportXML(root));
|
n@374
|
1890 }
|
n@374
|
1891 AHNode.appendChild(AHPreTest);
|
n@374
|
1892 AHNode.appendChild(AHPostTest);
|
n@374
|
1893 return AHNode;
|
n@374
|
1894 };
|
n@374
|
1895
|
n@374
|
1896 this.interfaceNode = function() {
|
n@374
|
1897 this.title = undefined;
|
n@374
|
1898 this.options = [];
|
n@374
|
1899 this.scale = [];
|
n@374
|
1900 this.decode = function(DOM)
|
n@374
|
1901 {
|
n@374
|
1902 var title = DOM.getElementsByTagName('title');
|
n@374
|
1903 if (title.length == 0) {this.title = null;}
|
n@374
|
1904 else {this.title = title[0].textContent;}
|
n@374
|
1905 this.options = parent.commonInterface.options;
|
n@374
|
1906 var scale = DOM.getElementsByTagName('scale');
|
n@374
|
1907 this.scale = [];
|
n@374
|
1908 for (var i=0; i<scale.length; i++) {
|
n@374
|
1909 var arr = [null, null];
|
n@374
|
1910 arr[0] = scale[i].getAttribute('position');
|
n@374
|
1911 arr[1] = scale[i].textContent;
|
n@374
|
1912 this.scale.push(arr);
|
n@374
|
1913 }
|
n@374
|
1914 };
|
n@374
|
1915 this.encode = function(root)
|
n@374
|
1916 {
|
n@374
|
1917 var node = root.createElement("interface");
|
n@374
|
1918 if (this.title != undefined)
|
n@324
|
1919 {
|
n@374
|
1920 var title = root.createElement("title");
|
n@374
|
1921 title.textContent = this.title;
|
n@374
|
1922 node.appendChild(title);
|
n@374
|
1923 }
|
n@374
|
1924 for (var i=0; i<this.options.length; i++)
|
n@374
|
1925 {
|
n@374
|
1926 var optionNode = root.createElement(this.options[i].type);
|
n@374
|
1927 if (this.options[i].type == "option")
|
n@324
|
1928 {
|
n@374
|
1929 optionNode.setAttribute("name",this.options[i].name);
|
n@374
|
1930 } else if (this.options[i].type == "check") {
|
n@374
|
1931 optionNode.setAttribute("check",this.options[i].check);
|
n@374
|
1932 } else if (this.options[i].type == "scalerange") {
|
n@374
|
1933 optionNode.setAttribute("min",this.options[i].min*100);
|
n@374
|
1934 optionNode.setAttribute("max",this.options[i].max*100);
|
n@374
|
1935 }
|
n@374
|
1936 node.appendChild(optionNode);
|
n@374
|
1937 }
|
n@374
|
1938 for (var i=0; i<this.scale.length; i++) {
|
n@374
|
1939 var scale = root.createElement("scale");
|
n@374
|
1940 scale.setAttribute("position",this.scale[i][0]);
|
n@374
|
1941 scale.textContent = this.scale[i][1];
|
n@374
|
1942 node.appendChild(scale);
|
n@374
|
1943 }
|
n@374
|
1944 return node;
|
n@374
|
1945 };
|
n@374
|
1946 };
|
n@374
|
1947
|
n@374
|
1948 this.audioElementNode = function() {
|
n@374
|
1949 this.url = null;
|
n@374
|
1950 this.id = null;
|
n@374
|
1951 this.parent = null;
|
n@374
|
1952 this.type = "normal";
|
n@374
|
1953 this.marker = false;
|
n@374
|
1954 this.enforce = false;
|
n@374
|
1955 this.decode = function(parent,xml)
|
n@374
|
1956 {
|
n@374
|
1957 this.url = xml.getAttribute('url');
|
n@374
|
1958 this.id = xml.id;
|
n@374
|
1959 this.parent = parent;
|
n@374
|
1960 this.type = xml.getAttribute('type');
|
n@374
|
1961 if (this.type == null) {this.type = "normal";}
|
n@374
|
1962 if (this.type == 'anchor') {this.anchor = true;}
|
n@374
|
1963 else {this.anchor = false;}
|
n@374
|
1964 if (this.type == 'reference') {this.reference = true;}
|
n@374
|
1965 else {this.reference = false;}
|
n@374
|
1966
|
n@374
|
1967 if (this.anchor == true || this.reference == true)
|
n@374
|
1968 {
|
n@374
|
1969 this.marker = xml.getAttribute('marker');
|
n@374
|
1970 if (this.marker != undefined)
|
n@374
|
1971 {
|
n@374
|
1972 this.marker = Number(this.marker);
|
n@374
|
1973 if (isNaN(this.marker) == false)
|
n@324
|
1974 {
|
n@374
|
1975 if (this.marker > 1)
|
n@374
|
1976 { this.marker /= 100.0;}
|
n@374
|
1977 if (this.marker >= 0 && this.marker <= 1)
|
n@374
|
1978 {
|
n@374
|
1979 this.enforce = true;
|
n@374
|
1980 return;
|
n@374
|
1981 } else {
|
n@374
|
1982 console.log("ERROR - Marker of audioElement "+this.id+" is not between 0 and 1 (float) or 0 and 100 (integer)!");
|
n@374
|
1983 console.log("ERROR - Marker not enforced!");
|
n@374
|
1984 }
|
n@324
|
1985 } else {
|
n@374
|
1986 console.log("ERROR - Marker of audioElement "+this.id+" is not a number!");
|
n@324
|
1987 console.log("ERROR - Marker not enforced!");
|
n@324
|
1988 }
|
n@324
|
1989 }
|
n@324
|
1990 }
|
n@374
|
1991 };
|
n@374
|
1992 this.encode = function(root)
|
n@374
|
1993 {
|
n@374
|
1994 var AENode = root.createElement("audioElements");
|
n@374
|
1995 AENode.id = this.id;
|
n@374
|
1996 AENode.setAttribute("url",this.url);
|
n@374
|
1997 AENode.setAttribute("type",this.type);
|
n@374
|
1998 if (this.marker != false)
|
n@374
|
1999 {
|
n@374
|
2000 AENode.setAttribute("marker",this.marker*100);
|
n@374
|
2001 }
|
n@374
|
2002 return AENode;
|
n@374
|
2003 };
|
n@180
|
2004 };
|
n@180
|
2005
|
n@180
|
2006 this.commentQuestionNode = function(xml) {
|
n@374
|
2007 this.id = null;
|
n@374
|
2008 this.type = undefined;
|
n@374
|
2009 this.question = undefined;
|
n@374
|
2010 this.options = [];
|
n@374
|
2011 this.statement = undefined;
|
n@374
|
2012
|
n@374
|
2013 this.childOption = function() {
|
n@193
|
2014 this.type = 'option';
|
n@374
|
2015 this.name = null;
|
n@374
|
2016 this.text = null;
|
n@193
|
2017 };
|
n@374
|
2018 this.exportXML = function(root)
|
n@374
|
2019 {
|
n@374
|
2020 var CQNode = root.createElement("CommentQuestion");
|
n@374
|
2021 CQNode.id = this.id;
|
n@374
|
2022 CQNode.setAttribute("type",this.type);
|
n@374
|
2023 switch(this.type)
|
n@374
|
2024 {
|
n@374
|
2025 case "text":
|
n@374
|
2026 CQNode.textContent = this.question;
|
n@374
|
2027 break;
|
n@374
|
2028 case "radio":
|
n@374
|
2029 var statement = root.createElement("statement");
|
n@374
|
2030 statement.textContent = this.statement;
|
n@374
|
2031 CQNode.appendChild(statement);
|
n@374
|
2032 for (var i=0; i<this.options.length; i++)
|
n@374
|
2033 {
|
n@374
|
2034 var optionNode = root.createElement("option");
|
n@374
|
2035 optionNode.setAttribute("name",this.options[i].name);
|
n@374
|
2036 optionNode.textContent = this.options[i].text;
|
n@374
|
2037 CQNode.appendChild(optionNode);
|
n@193
|
2038 }
|
n@374
|
2039 break;
|
n@374
|
2040 case "checkbox":
|
n@374
|
2041 var statement = root.createElement("statement");
|
n@374
|
2042 statement.textContent = this.statement;
|
n@374
|
2043 CQNode.appendChild(statement);
|
n@374
|
2044 for (var i=0; i<this.options.length; i++)
|
n@374
|
2045 {
|
n@374
|
2046 var optionNode = root.createElement("option");
|
n@374
|
2047 optionNode.setAttribute("name",this.options[i].name);
|
n@374
|
2048 optionNode.textContent = this.options[i].text;
|
n@374
|
2049 CQNode.appendChild(optionNode);
|
n@374
|
2050 }
|
n@374
|
2051 break;
|
n@193
|
2052 }
|
n@374
|
2053 return CQNode;
|
n@374
|
2054 };
|
n@374
|
2055 this.decode = function(xml) {
|
n@374
|
2056 this.id = xml.id;
|
n@374
|
2057 if (xml.getAttribute('mandatory') == 'true') {this.mandatory = true;}
|
n@374
|
2058 else {this.mandatory = false;}
|
n@374
|
2059 this.type = xml.getAttribute('type');
|
n@374
|
2060 if (this.type == undefined) {this.type = 'text';}
|
n@374
|
2061 switch (this.type) {
|
n@374
|
2062 case 'text':
|
n@374
|
2063 this.question = xml.textContent;
|
n@374
|
2064 break;
|
n@374
|
2065 case 'radio':
|
n@374
|
2066 var child = xml.firstElementChild;
|
n@374
|
2067 this.options = [];
|
n@374
|
2068 while (child != undefined) {
|
n@374
|
2069 if (child.nodeName == 'statement' && this.statement == undefined) {
|
n@374
|
2070 this.statement = child.textContent;
|
n@374
|
2071 } else if (child.nodeName == 'option') {
|
n@374
|
2072 var node = new this.childOption();
|
n@374
|
2073 node.name = child.getAttribute('name');
|
n@374
|
2074 node.text = child.textContent;
|
n@374
|
2075 this.options.push(node);
|
n@374
|
2076 }
|
n@374
|
2077 child = child.nextElementSibling;
|
n@195
|
2078 }
|
n@374
|
2079 break;
|
n@374
|
2080 case 'checkbox':
|
n@374
|
2081 var child = xml.firstElementChild;
|
n@374
|
2082 this.options = [];
|
n@374
|
2083 while (child != undefined) {
|
n@374
|
2084 if (child.nodeName == 'statement' && this.statement == undefined) {
|
n@374
|
2085 this.statement = child.textContent;
|
n@374
|
2086 } else if (child.nodeName == 'option') {
|
n@374
|
2087 var node = new this.childOption();
|
n@374
|
2088 node.name = child.getAttribute('name');
|
n@374
|
2089 node.text = child.textContent;
|
n@374
|
2090 this.options.push(node);
|
n@374
|
2091 }
|
n@374
|
2092 child = child.nextElementSibling;
|
n@374
|
2093 }
|
n@374
|
2094 break;
|
n@195
|
2095 }
|
n@374
|
2096 };
|
n@180
|
2097 };
|
n@180
|
2098 };
|
n@180
|
2099 }
|
n@374
|
2100
|
n@182
|
2101 function Interface(specificationObject) {
|
n@180
|
2102 // This handles the bindings between the interface and the audioEngineContext;
|
n@182
|
2103 this.specification = specificationObject;
|
n@182
|
2104 this.insertPoint = document.getElementById("topLevelBody");
|
n@180
|
2105
|
n@375
|
2106 this.newPage = function(audioHolderObject)
|
n@375
|
2107 {
|
n@375
|
2108 audioEngineContext.newTestPage();
|
n@375
|
2109 /// CHECK FOR SAMPLE RATE COMPATIBILITY
|
n@375
|
2110 if (audioHolderObject.sampleRate != undefined) {
|
n@375
|
2111 if (Number(audioHolderObject.sampleRate) != audioContext.sampleRate) {
|
n@375
|
2112 var errStr = 'Sample rates do not match! Requested '+Number(audioHolderObject.sampleRate)+', got '+audioContext.sampleRate+'. Please set the sample rate to match before completing this test.';
|
n@375
|
2113 alert(errStr);
|
n@375
|
2114 return;
|
n@375
|
2115 }
|
n@375
|
2116 }
|
n@375
|
2117
|
n@375
|
2118 audioEngineContext.loopPlayback = audioHolderObject.loop;
|
n@375
|
2119 // Delete any previous audioObjects associated with the audioEngine
|
n@375
|
2120 audioEngineContext.audioObjects = [];
|
n@375
|
2121 interfaceContext.deleteCommentBoxes();
|
n@375
|
2122 interfaceContext.deleteCommentQuestions();
|
n@375
|
2123 loadTest(audioHolderObject);
|
n@375
|
2124 };
|
n@375
|
2125
|
n@182
|
2126 // Bounded by interface!!
|
n@182
|
2127 // Interface object MUST have an exportXMLDOM method which returns the various DOM levels
|
n@182
|
2128 // For example, APE returns the slider position normalised in a <value> tag.
|
n@182
|
2129 this.interfaceObjects = [];
|
n@182
|
2130 this.interfaceObject = function(){};
|
n@182
|
2131
|
n@302
|
2132 this.resizeWindow = function(event)
|
n@302
|
2133 {
|
n@302
|
2134 for(var i=0; i<this.commentBoxes.length; i++)
|
n@302
|
2135 {this.commentBoxes[i].resize();}
|
n@302
|
2136 for(var i=0; i<this.commentQuestions.length; i++)
|
n@302
|
2137 {this.commentQuestions[i].resize();}
|
n@302
|
2138 try
|
n@302
|
2139 {
|
n@302
|
2140 resizeWindow(event);
|
n@302
|
2141 }
|
n@302
|
2142 catch(err)
|
n@302
|
2143 {
|
n@302
|
2144 console.log("Warning - Interface does not have Resize option");
|
n@302
|
2145 console.log(err);
|
n@302
|
2146 }
|
n@302
|
2147 };
|
n@302
|
2148
|
n@356
|
2149 this.returnNavigator = function()
|
n@356
|
2150 {
|
n@356
|
2151 var node = document.createElement("navigator");
|
n@356
|
2152 var platform = document.createElement("platform");
|
n@356
|
2153 platform.textContent = navigator.platform;
|
n@356
|
2154 var vendor = document.createElement("vendor");
|
n@356
|
2155 vendor.textContent = navigator.vendor;
|
n@356
|
2156 var userAgent = document.createElement("uagent");
|
n@356
|
2157 userAgent.textContent = navigator.userAgent;
|
n@356
|
2158 node.appendChild(platform);
|
n@356
|
2159 node.appendChild(vendor);
|
n@356
|
2160 node.appendChild(userAgent);
|
n@356
|
2161 return node;
|
n@356
|
2162 };
|
n@356
|
2163
|
n@182
|
2164 this.commentBoxes = [];
|
n@193
|
2165 this.elementCommentBox = function(audioObject) {
|
n@182
|
2166 var element = audioObject.specification;
|
n@183
|
2167 this.audioObject = audioObject;
|
n@182
|
2168 this.id = audioObject.id;
|
n@182
|
2169 var audioHolderObject = audioObject.specification.parent;
|
n@182
|
2170 // Create document objects to hold the comment boxes
|
n@182
|
2171 this.trackComment = document.createElement('div');
|
n@182
|
2172 this.trackComment.className = 'comment-div';
|
n@182
|
2173 this.trackComment.id = 'comment-div-'+audioObject.id;
|
n@182
|
2174 // Create a string next to each comment asking for a comment
|
n@183
|
2175 this.trackString = document.createElement('span');
|
n@183
|
2176 this.trackString.innerHTML = audioHolderObject.commentBoxPrefix+' '+audioObject.id;
|
n@182
|
2177 // Create the HTML5 comment box 'textarea'
|
n@183
|
2178 this.trackCommentBox = document.createElement('textarea');
|
n@183
|
2179 this.trackCommentBox.rows = '4';
|
n@183
|
2180 this.trackCommentBox.cols = '100';
|
n@183
|
2181 this.trackCommentBox.name = 'trackComment'+audioObject.id;
|
n@183
|
2182 this.trackCommentBox.className = 'trackComment';
|
n@182
|
2183 var br = document.createElement('br');
|
n@182
|
2184 // Add to the holder.
|
n@183
|
2185 this.trackComment.appendChild(this.trackString);
|
n@182
|
2186 this.trackComment.appendChild(br);
|
n@183
|
2187 this.trackComment.appendChild(this.trackCommentBox);
|
n@183
|
2188
|
n@183
|
2189 this.exportXMLDOM = function() {
|
n@183
|
2190 var root = document.createElement('comment');
|
n@183
|
2191 if (this.audioObject.specification.parent.elementComments) {
|
n@183
|
2192 var question = document.createElement('question');
|
n@183
|
2193 question.textContent = this.trackString.textContent;
|
n@183
|
2194 var response = document.createElement('response');
|
n@183
|
2195 response.textContent = this.trackCommentBox.value;
|
nicholas@249
|
2196 console.log("Comment frag-"+this.id+": "+response.textContent);
|
n@183
|
2197 root.appendChild(question);
|
n@183
|
2198 root.appendChild(response);
|
n@183
|
2199 }
|
n@183
|
2200 return root;
|
n@183
|
2201 };
|
n@302
|
2202 this.resize = function()
|
n@302
|
2203 {
|
n@302
|
2204 var boxwidth = (window.innerWidth-100)/2;
|
n@302
|
2205 if (boxwidth >= 600)
|
n@302
|
2206 {
|
n@302
|
2207 boxwidth = 600;
|
n@302
|
2208 }
|
n@302
|
2209 else if (boxwidth < 400)
|
n@302
|
2210 {
|
n@302
|
2211 boxwidth = 400;
|
n@302
|
2212 }
|
n@302
|
2213 this.trackComment.style.width = boxwidth+"px";
|
n@302
|
2214 this.trackCommentBox.style.width = boxwidth-6+"px";
|
n@302
|
2215 };
|
n@302
|
2216 this.resize();
|
n@182
|
2217 };
|
n@182
|
2218
|
n@193
|
2219 this.commentQuestions = [];
|
n@193
|
2220
|
n@193
|
2221 this.commentBox = function(commentQuestion) {
|
n@193
|
2222 this.specification = commentQuestion;
|
n@193
|
2223 // Create document objects to hold the comment boxes
|
n@193
|
2224 this.holder = document.createElement('div');
|
n@193
|
2225 this.holder.className = 'comment-div';
|
n@193
|
2226 // Create a string next to each comment asking for a comment
|
n@193
|
2227 this.string = document.createElement('span');
|
n@193
|
2228 this.string.innerHTML = commentQuestion.question;
|
n@193
|
2229 // Create the HTML5 comment box 'textarea'
|
n@193
|
2230 this.textArea = document.createElement('textarea');
|
n@193
|
2231 this.textArea.rows = '4';
|
n@193
|
2232 this.textArea.cols = '100';
|
n@193
|
2233 this.textArea.className = 'trackComment';
|
n@193
|
2234 var br = document.createElement('br');
|
n@193
|
2235 // Add to the holder.
|
n@193
|
2236 this.holder.appendChild(this.string);
|
n@193
|
2237 this.holder.appendChild(br);
|
n@193
|
2238 this.holder.appendChild(this.textArea);
|
n@193
|
2239
|
n@193
|
2240 this.exportXMLDOM = function() {
|
n@193
|
2241 var root = document.createElement('comment');
|
n@193
|
2242 root.id = this.specification.id;
|
n@193
|
2243 root.setAttribute('type',this.specification.type);
|
n@193
|
2244 root.textContent = this.textArea.value;
|
b@254
|
2245 console.log("Question: "+this.string.textContent);
|
b@254
|
2246 console.log("Response: "+root.textContent);
|
n@193
|
2247 return root;
|
n@193
|
2248 };
|
n@302
|
2249 this.resize = function()
|
n@302
|
2250 {
|
n@302
|
2251 var boxwidth = (window.innerWidth-100)/2;
|
n@302
|
2252 if (boxwidth >= 600)
|
n@302
|
2253 {
|
n@302
|
2254 boxwidth = 600;
|
n@302
|
2255 }
|
n@302
|
2256 else if (boxwidth < 400)
|
n@302
|
2257 {
|
n@302
|
2258 boxwidth = 400;
|
n@302
|
2259 }
|
n@302
|
2260 this.holder.style.width = boxwidth+"px";
|
n@302
|
2261 this.textArea.style.width = boxwidth-6+"px";
|
n@302
|
2262 };
|
n@302
|
2263 this.resize();
|
n@193
|
2264 };
|
n@193
|
2265
|
n@193
|
2266 this.radioBox = function(commentQuestion) {
|
n@193
|
2267 this.specification = commentQuestion;
|
n@193
|
2268 // Create document objects to hold the comment boxes
|
n@193
|
2269 this.holder = document.createElement('div');
|
n@193
|
2270 this.holder.className = 'comment-div';
|
n@193
|
2271 // Create a string next to each comment asking for a comment
|
n@193
|
2272 this.string = document.createElement('span');
|
n@193
|
2273 this.string.innerHTML = commentQuestion.statement;
|
n@193
|
2274 var br = document.createElement('br');
|
n@193
|
2275 // Add to the holder.
|
n@193
|
2276 this.holder.appendChild(this.string);
|
n@193
|
2277 this.holder.appendChild(br);
|
n@193
|
2278 this.options = [];
|
n@193
|
2279 this.inputs = document.createElement('div');
|
n@193
|
2280 this.span = document.createElement('div');
|
n@193
|
2281 this.inputs.align = 'center';
|
n@193
|
2282 this.inputs.style.marginLeft = '12px';
|
n@193
|
2283 this.span.style.marginLeft = '12px';
|
n@193
|
2284 this.span.align = 'center';
|
n@193
|
2285 this.span.style.marginTop = '15px';
|
n@193
|
2286
|
n@193
|
2287 var optCount = commentQuestion.options.length;
|
n@193
|
2288 for (var i=0; i<optCount; i++)
|
n@193
|
2289 {
|
n@193
|
2290 var div = document.createElement('div');
|
n@301
|
2291 div.style.width = '80px';
|
n@193
|
2292 div.style.float = 'left';
|
n@193
|
2293 var input = document.createElement('input');
|
n@193
|
2294 input.type = 'radio';
|
n@193
|
2295 input.name = commentQuestion.id;
|
n@193
|
2296 input.setAttribute('setvalue',commentQuestion.options[i].name);
|
n@193
|
2297 input.className = 'comment-radio';
|
n@193
|
2298 div.appendChild(input);
|
n@193
|
2299 this.inputs.appendChild(div);
|
n@193
|
2300
|
n@193
|
2301
|
n@193
|
2302 div = document.createElement('div');
|
n@301
|
2303 div.style.width = '80px';
|
n@193
|
2304 div.style.float = 'left';
|
n@193
|
2305 div.align = 'center';
|
n@193
|
2306 var span = document.createElement('span');
|
n@193
|
2307 span.textContent = commentQuestion.options[i].text;
|
n@193
|
2308 span.className = 'comment-radio-span';
|
n@193
|
2309 div.appendChild(span);
|
n@193
|
2310 this.span.appendChild(div);
|
n@193
|
2311 this.options.push(input);
|
n@193
|
2312 }
|
n@193
|
2313 this.holder.appendChild(this.span);
|
n@193
|
2314 this.holder.appendChild(this.inputs);
|
n@193
|
2315
|
n@193
|
2316 this.exportXMLDOM = function() {
|
n@193
|
2317 var root = document.createElement('comment');
|
n@193
|
2318 root.id = this.specification.id;
|
n@193
|
2319 root.setAttribute('type',this.specification.type);
|
n@193
|
2320 var question = document.createElement('question');
|
n@193
|
2321 question.textContent = this.string.textContent;
|
n@193
|
2322 var response = document.createElement('response');
|
n@193
|
2323 var i=0;
|
n@193
|
2324 while(this.options[i].checked == false) {
|
n@193
|
2325 i++;
|
n@193
|
2326 if (i >= this.options.length) {
|
n@193
|
2327 break;
|
n@193
|
2328 }
|
n@193
|
2329 }
|
n@193
|
2330 if (i >= this.options.length) {
|
n@193
|
2331 response.textContent = 'null';
|
n@193
|
2332 } else {
|
n@193
|
2333 response.textContent = this.options[i].getAttribute('setvalue');
|
n@193
|
2334 response.setAttribute('number',i);
|
n@193
|
2335 }
|
n@195
|
2336 console.log('Comment: '+question.textContent);
|
n@195
|
2337 console.log('Response: '+response.textContent);
|
n@193
|
2338 root.appendChild(question);
|
n@193
|
2339 root.appendChild(response);
|
n@193
|
2340 return root;
|
n@193
|
2341 };
|
n@302
|
2342 this.resize = function()
|
n@302
|
2343 {
|
n@302
|
2344 var boxwidth = (window.innerWidth-100)/2;
|
n@302
|
2345 if (boxwidth >= 600)
|
n@302
|
2346 {
|
n@302
|
2347 boxwidth = 600;
|
n@302
|
2348 }
|
n@302
|
2349 else if (boxwidth < 400)
|
n@302
|
2350 {
|
n@302
|
2351 boxwidth = 400;
|
n@302
|
2352 }
|
n@302
|
2353 this.holder.style.width = boxwidth+"px";
|
n@302
|
2354 var text = this.holder.children[2];
|
n@302
|
2355 var options = this.holder.children[3];
|
n@302
|
2356 var optCount = options.children.length;
|
n@302
|
2357 var spanMargin = Math.floor(((boxwidth-20-(optCount*80))/(optCount))/2)+'px';
|
n@302
|
2358 var options = options.firstChild;
|
n@302
|
2359 var text = text.firstChild;
|
n@302
|
2360 options.style.marginRight = spanMargin;
|
n@302
|
2361 options.style.marginLeft = spanMargin;
|
n@302
|
2362 text.style.marginRight = spanMargin;
|
n@302
|
2363 text.style.marginLeft = spanMargin;
|
n@302
|
2364 while(options.nextSibling != undefined)
|
n@302
|
2365 {
|
n@302
|
2366 options = options.nextSibling;
|
n@302
|
2367 text = text.nextSibling;
|
n@302
|
2368 options.style.marginRight = spanMargin;
|
n@302
|
2369 options.style.marginLeft = spanMargin;
|
n@302
|
2370 text.style.marginRight = spanMargin;
|
n@302
|
2371 text.style.marginLeft = spanMargin;
|
n@302
|
2372 }
|
n@302
|
2373 };
|
n@302
|
2374 this.resize();
|
n@193
|
2375 };
|
n@193
|
2376
|
n@195
|
2377 this.checkboxBox = function(commentQuestion) {
|
n@195
|
2378 this.specification = commentQuestion;
|
n@195
|
2379 // Create document objects to hold the comment boxes
|
n@195
|
2380 this.holder = document.createElement('div');
|
n@195
|
2381 this.holder.className = 'comment-div';
|
n@195
|
2382 // Create a string next to each comment asking for a comment
|
n@195
|
2383 this.string = document.createElement('span');
|
n@195
|
2384 this.string.innerHTML = commentQuestion.statement;
|
n@195
|
2385 var br = document.createElement('br');
|
n@195
|
2386 // Add to the holder.
|
n@195
|
2387 this.holder.appendChild(this.string);
|
n@195
|
2388 this.holder.appendChild(br);
|
n@195
|
2389 this.options = [];
|
n@195
|
2390 this.inputs = document.createElement('div');
|
n@195
|
2391 this.span = document.createElement('div');
|
n@195
|
2392 this.inputs.align = 'center';
|
n@195
|
2393 this.inputs.style.marginLeft = '12px';
|
n@195
|
2394 this.span.style.marginLeft = '12px';
|
n@195
|
2395 this.span.align = 'center';
|
n@195
|
2396 this.span.style.marginTop = '15px';
|
n@195
|
2397
|
n@195
|
2398 var optCount = commentQuestion.options.length;
|
n@195
|
2399 for (var i=0; i<optCount; i++)
|
n@195
|
2400 {
|
n@195
|
2401 var div = document.createElement('div');
|
n@301
|
2402 div.style.width = '80px';
|
n@195
|
2403 div.style.float = 'left';
|
n@195
|
2404 var input = document.createElement('input');
|
n@195
|
2405 input.type = 'checkbox';
|
n@195
|
2406 input.name = commentQuestion.id;
|
n@195
|
2407 input.setAttribute('setvalue',commentQuestion.options[i].name);
|
n@195
|
2408 input.className = 'comment-radio';
|
n@195
|
2409 div.appendChild(input);
|
n@195
|
2410 this.inputs.appendChild(div);
|
n@195
|
2411
|
n@195
|
2412
|
n@195
|
2413 div = document.createElement('div');
|
n@301
|
2414 div.style.width = '80px';
|
n@195
|
2415 div.style.float = 'left';
|
n@195
|
2416 div.align = 'center';
|
n@195
|
2417 var span = document.createElement('span');
|
n@195
|
2418 span.textContent = commentQuestion.options[i].text;
|
n@195
|
2419 span.className = 'comment-radio-span';
|
n@195
|
2420 div.appendChild(span);
|
n@195
|
2421 this.span.appendChild(div);
|
n@195
|
2422 this.options.push(input);
|
n@195
|
2423 }
|
n@195
|
2424 this.holder.appendChild(this.span);
|
n@195
|
2425 this.holder.appendChild(this.inputs);
|
n@195
|
2426
|
n@195
|
2427 this.exportXMLDOM = function() {
|
n@195
|
2428 var root = document.createElement('comment');
|
n@195
|
2429 root.id = this.specification.id;
|
n@195
|
2430 root.setAttribute('type',this.specification.type);
|
n@195
|
2431 var question = document.createElement('question');
|
n@195
|
2432 question.textContent = this.string.textContent;
|
n@195
|
2433 root.appendChild(question);
|
n@195
|
2434 console.log('Comment: '+question.textContent);
|
n@195
|
2435 for (var i=0; i<this.options.length; i++) {
|
n@195
|
2436 var response = document.createElement('response');
|
n@195
|
2437 response.textContent = this.options[i].checked;
|
n@195
|
2438 response.setAttribute('name',this.options[i].getAttribute('setvalue'));
|
n@195
|
2439 root.appendChild(response);
|
n@195
|
2440 console.log('Response '+response.getAttribute('name') +': '+response.textContent);
|
n@195
|
2441 }
|
n@195
|
2442 return root;
|
n@195
|
2443 };
|
n@302
|
2444 this.resize = function()
|
n@302
|
2445 {
|
n@302
|
2446 var boxwidth = (window.innerWidth-100)/2;
|
n@302
|
2447 if (boxwidth >= 600)
|
n@302
|
2448 {
|
n@302
|
2449 boxwidth = 600;
|
n@302
|
2450 }
|
n@302
|
2451 else if (boxwidth < 400)
|
n@302
|
2452 {
|
n@302
|
2453 boxwidth = 400;
|
n@302
|
2454 }
|
n@302
|
2455 this.holder.style.width = boxwidth+"px";
|
n@302
|
2456 var text = this.holder.children[2];
|
n@302
|
2457 var options = this.holder.children[3];
|
n@302
|
2458 var optCount = options.children.length;
|
n@302
|
2459 var spanMargin = Math.floor(((boxwidth-20-(optCount*80))/(optCount))/2)+'px';
|
n@302
|
2460 var options = options.firstChild;
|
n@302
|
2461 var text = text.firstChild;
|
n@302
|
2462 options.style.marginRight = spanMargin;
|
n@302
|
2463 options.style.marginLeft = spanMargin;
|
n@302
|
2464 text.style.marginRight = spanMargin;
|
n@302
|
2465 text.style.marginLeft = spanMargin;
|
n@302
|
2466 while(options.nextSibling != undefined)
|
n@302
|
2467 {
|
n@302
|
2468 options = options.nextSibling;
|
n@302
|
2469 text = text.nextSibling;
|
n@302
|
2470 options.style.marginRight = spanMargin;
|
n@302
|
2471 options.style.marginLeft = spanMargin;
|
n@302
|
2472 text.style.marginRight = spanMargin;
|
n@302
|
2473 text.style.marginLeft = spanMargin;
|
n@302
|
2474 }
|
n@302
|
2475 };
|
n@302
|
2476 this.resize();
|
n@195
|
2477 };
|
n@193
|
2478
|
n@182
|
2479 this.createCommentBox = function(audioObject) {
|
n@193
|
2480 var node = new this.elementCommentBox(audioObject);
|
n@182
|
2481 this.commentBoxes.push(node);
|
n@182
|
2482 audioObject.commentDOM = node;
|
n@182
|
2483 return node;
|
n@182
|
2484 };
|
n@182
|
2485
|
n@182
|
2486 this.sortCommentBoxes = function() {
|
n@182
|
2487 var holder = [];
|
n@182
|
2488 while (this.commentBoxes.length > 0) {
|
n@182
|
2489 var node = this.commentBoxes.pop(0);
|
n@182
|
2490 holder[node.id] = node;
|
n@182
|
2491 }
|
n@182
|
2492 this.commentBoxes = holder;
|
n@182
|
2493 };
|
n@182
|
2494
|
n@182
|
2495 this.showCommentBoxes = function(inject, sort) {
|
n@182
|
2496 if (sort) {interfaceContext.sortCommentBoxes();}
|
n@182
|
2497 for (var i=0; i<interfaceContext.commentBoxes.length; i++) {
|
n@182
|
2498 inject.appendChild(this.commentBoxes[i].trackComment);
|
n@182
|
2499 }
|
n@182
|
2500 };
|
n@193
|
2501
|
nicholas@211
|
2502 this.deleteCommentBoxes = function() {
|
nicholas@211
|
2503 this.commentBoxes = [];
|
nicholas@237
|
2504 };
|
nicholas@211
|
2505
|
n@193
|
2506 this.createCommentQuestion = function(element) {
|
n@193
|
2507 var node;
|
n@193
|
2508 if (element.type == 'text') {
|
n@193
|
2509 node = new this.commentBox(element);
|
n@193
|
2510 } else if (element.type == 'radio') {
|
n@193
|
2511 node = new this.radioBox(element);
|
n@195
|
2512 } else if (element.type == 'checkbox') {
|
n@195
|
2513 node = new this.checkboxBox(element);
|
n@193
|
2514 }
|
n@193
|
2515 this.commentQuestions.push(node);
|
n@193
|
2516 return node;
|
n@193
|
2517 };
|
n@201
|
2518
|
nicholas@237
|
2519 this.deleteCommentQuestions = function()
|
nicholas@237
|
2520 {
|
nicholas@237
|
2521 this.commentQuestions = [];
|
nicholas@237
|
2522 };
|
nicholas@237
|
2523
|
n@201
|
2524 this.playhead = new function()
|
n@201
|
2525 {
|
n@201
|
2526 this.object = document.createElement('div');
|
n@201
|
2527 this.object.className = 'playhead';
|
n@201
|
2528 this.object.align = 'left';
|
n@201
|
2529 var curTime = document.createElement('div');
|
n@201
|
2530 curTime.style.width = '50px';
|
n@201
|
2531 this.curTimeSpan = document.createElement('span');
|
n@201
|
2532 this.curTimeSpan.textContent = '00:00';
|
n@201
|
2533 curTime.appendChild(this.curTimeSpan);
|
n@201
|
2534 this.object.appendChild(curTime);
|
n@201
|
2535 this.scrubberTrack = document.createElement('div');
|
n@201
|
2536 this.scrubberTrack.className = 'playhead-scrub-track';
|
n@201
|
2537
|
n@201
|
2538 this.scrubberHead = document.createElement('div');
|
n@201
|
2539 this.scrubberHead.id = 'playhead-scrubber';
|
n@201
|
2540 this.scrubberTrack.appendChild(this.scrubberHead);
|
n@201
|
2541 this.object.appendChild(this.scrubberTrack);
|
n@201
|
2542
|
n@201
|
2543 this.timePerPixel = 0;
|
n@201
|
2544 this.maxTime = 0;
|
n@201
|
2545
|
n@204
|
2546 this.playbackObject;
|
n@204
|
2547
|
n@204
|
2548 this.setTimePerPixel = function(audioObject) {
|
n@201
|
2549 //maxTime must be in seconds
|
n@204
|
2550 this.playbackObject = audioObject;
|
n@379
|
2551 this.maxTime = audioObject.buffer.buffer.duration;
|
n@201
|
2552 var width = 490; //500 - 10, 5 each side of the tracker head
|
n@204
|
2553 this.timePerPixel = this.maxTime/490;
|
n@204
|
2554 if (this.maxTime < 60) {
|
n@201
|
2555 this.curTimeSpan.textContent = '0.00';
|
n@201
|
2556 } else {
|
n@201
|
2557 this.curTimeSpan.textContent = '00:00';
|
n@201
|
2558 }
|
n@201
|
2559 };
|
n@201
|
2560
|
n@204
|
2561 this.update = function() {
|
n@201
|
2562 // Update the playhead position, startPlay must be called
|
n@201
|
2563 if (this.timePerPixel > 0) {
|
n@204
|
2564 var time = this.playbackObject.getCurrentPosition();
|
nicholas@267
|
2565 if (time > 0) {
|
nicholas@267
|
2566 var width = 490;
|
nicholas@267
|
2567 var pix = Math.floor(time/this.timePerPixel);
|
nicholas@267
|
2568 this.scrubberHead.style.left = pix+'px';
|
nicholas@267
|
2569 if (this.maxTime > 60.0) {
|
nicholas@267
|
2570 var secs = time%60;
|
nicholas@267
|
2571 var mins = Math.floor((time-secs)/60);
|
nicholas@267
|
2572 secs = secs.toString();
|
nicholas@267
|
2573 secs = secs.substr(0,2);
|
nicholas@267
|
2574 mins = mins.toString();
|
nicholas@267
|
2575 this.curTimeSpan.textContent = mins+':'+secs;
|
nicholas@267
|
2576 } else {
|
nicholas@267
|
2577 time = time.toString();
|
nicholas@267
|
2578 this.curTimeSpan.textContent = time.substr(0,4);
|
nicholas@267
|
2579 }
|
n@201
|
2580 } else {
|
nicholas@267
|
2581 this.scrubberHead.style.left = '0px';
|
nicholas@267
|
2582 if (this.maxTime < 60) {
|
nicholas@267
|
2583 this.curTimeSpan.textContent = '0.00';
|
nicholas@267
|
2584 } else {
|
nicholas@267
|
2585 this.curTimeSpan.textContent = '00:00';
|
nicholas@267
|
2586 }
|
n@201
|
2587 }
|
n@201
|
2588 }
|
n@201
|
2589 };
|
n@204
|
2590
|
n@204
|
2591 this.interval = undefined;
|
n@204
|
2592
|
n@204
|
2593 this.start = function() {
|
n@204
|
2594 if (this.playbackObject != undefined && this.interval == undefined) {
|
nicholas@267
|
2595 if (this.maxTime < 60) {
|
nicholas@267
|
2596 this.interval = setInterval(function(){interfaceContext.playhead.update();},10);
|
nicholas@267
|
2597 } else {
|
nicholas@267
|
2598 this.interval = setInterval(function(){interfaceContext.playhead.update();},100);
|
nicholas@267
|
2599 }
|
n@204
|
2600 }
|
n@204
|
2601 };
|
n@204
|
2602 this.stop = function() {
|
n@204
|
2603 clearInterval(this.interval);
|
n@204
|
2604 this.interval = undefined;
|
nicholas@267
|
2605 if (this.maxTime < 60) {
|
nicholas@267
|
2606 this.curTimeSpan.textContent = '0.00';
|
nicholas@267
|
2607 } else {
|
nicholas@267
|
2608 this.curTimeSpan.textContent = '00:00';
|
nicholas@267
|
2609 }
|
n@204
|
2610 };
|
n@201
|
2611 };
|
nicholas@235
|
2612
|
nicholas@235
|
2613 // Global Checkers
|
nicholas@235
|
2614 // These functions will help enforce the checkers
|
nicholas@235
|
2615 this.checkHiddenAnchor = function()
|
nicholas@235
|
2616 {
|
nicholas@235
|
2617 var audioHolder = testState.currentStateMap[testState.currentIndex];
|
nicholas@235
|
2618 if (audioHolder.anchorId != null)
|
nicholas@235
|
2619 {
|
nicholas@235
|
2620 var audioObject = audioEngineContext.audioObjects[audioHolder.anchorId];
|
nicholas@269
|
2621 if (audioObject.interfaceDOM.getValue() > audioObject.specification.marker && audioObject.interfaceDOM.enforce == true)
|
nicholas@235
|
2622 {
|
nicholas@235
|
2623 // Anchor is not set below
|
nicholas@235
|
2624 console.log('Anchor node not below marker value');
|
nicholas@235
|
2625 alert('Please keep listening');
|
nicholas@235
|
2626 return false;
|
nicholas@235
|
2627 }
|
nicholas@235
|
2628 }
|
nicholas@235
|
2629 return true;
|
nicholas@235
|
2630 };
|
nicholas@235
|
2631
|
nicholas@235
|
2632 this.checkHiddenReference = function()
|
nicholas@235
|
2633 {
|
nicholas@235
|
2634 var audioHolder = testState.currentStateMap[testState.currentIndex];
|
nicholas@235
|
2635 if (audioHolder.referenceId != null)
|
nicholas@235
|
2636 {
|
nicholas@235
|
2637 var audioObject = audioEngineContext.audioObjects[audioHolder.referenceId];
|
nicholas@269
|
2638 if (audioObject.interfaceDOM.getValue() < audioObject.specification.marker && audioObject.interfaceDOM.enforce == true)
|
nicholas@235
|
2639 {
|
nicholas@235
|
2640 // Anchor is not set below
|
nicholas@235
|
2641 console.log('Reference node not above marker value');
|
nicholas@235
|
2642 alert('Please keep listening');
|
nicholas@235
|
2643 return false;
|
nicholas@235
|
2644 }
|
nicholas@235
|
2645 }
|
nicholas@235
|
2646 return true;
|
nicholas@235
|
2647 };
|
n@366
|
2648
|
n@366
|
2649 this.checkFragmentsFullyPlayed = function ()
|
n@366
|
2650 {
|
n@366
|
2651 // Checks the entire file has been played back
|
n@366
|
2652 // NOTE ! This will return true IF playback is Looped!!!
|
n@366
|
2653 if (audioEngineContext.loopPlayback)
|
n@366
|
2654 {
|
n@366
|
2655 console.log("WARNING - Looped source: Cannot check fragments are fully played");
|
n@366
|
2656 return true;
|
n@366
|
2657 }
|
n@366
|
2658 var check_pass = true;
|
n@366
|
2659 var error_obj = [];
|
n@366
|
2660 for (var i = 0; i<audioEngineContext.audioObjects.length; i++)
|
n@366
|
2661 {
|
n@366
|
2662 var object = audioEngineContext.audioObjects[i];
|
n@366
|
2663 var time = object.buffer.duration;
|
n@366
|
2664 var metric = object.metric;
|
n@366
|
2665 var passed = false;
|
n@366
|
2666 for (var j=0; j<metric.listenTracker.length; j++)
|
n@366
|
2667 {
|
n@366
|
2668 var bt = metric.listenTracker[j].getElementsByTagName('buffertime');
|
n@366
|
2669 var start_time = Number(bt[0].getAttribute('start'));
|
n@366
|
2670 var stop_time = Number(bt[0].getAttribute('stop'));
|
n@366
|
2671 var delta = stop_time - start_time;
|
n@366
|
2672 if (delta >= time)
|
n@366
|
2673 {
|
n@366
|
2674 passed = true;
|
n@366
|
2675 break;
|
n@366
|
2676 }
|
n@366
|
2677 }
|
n@366
|
2678 if (passed == false)
|
n@366
|
2679 {
|
n@366
|
2680 check_pass = false;
|
n@366
|
2681 console.log("Continue listening to track-"+i);
|
n@366
|
2682 error_obj.push(i);
|
n@366
|
2683 }
|
n@366
|
2684 }
|
n@366
|
2685 if (check_pass == false)
|
n@366
|
2686 {
|
n@366
|
2687 var str_start = "You have not listened to fragments ";
|
n@366
|
2688 for (var i=0; i<error_obj.length; i++)
|
n@366
|
2689 {
|
n@366
|
2690 str_start += error_obj[i];
|
n@366
|
2691 if (i != error_obj.length-1)
|
n@366
|
2692 {
|
n@366
|
2693 str_start += ', ';
|
n@366
|
2694 }
|
n@366
|
2695 }
|
n@366
|
2696 str_start += ". Please keep listening";
|
n@366
|
2697 console.log("[ALERT]: "+str_start);
|
n@366
|
2698 alert(str_start);
|
n@366
|
2699 }
|
n@366
|
2700 };
|
nicholas@252
|
2701 } |