n@656
|
1 /**
|
n@656
|
2 * ape.js
|
n@656
|
3 * Create the APE interface
|
n@656
|
4 */
|
n@656
|
5
|
n@656
|
6 /*
|
n@656
|
7 *
|
n@656
|
8 * WARNING!!!
|
n@656
|
9 *
|
n@656
|
10 * YOU ARE VIEWING THE DEV VERSION. THERE IS NO GUARANTEE THIS WILL BE FULLY FUNCTIONAL
|
n@656
|
11 *
|
n@656
|
12 * WARNING!!!
|
n@656
|
13 *
|
n@656
|
14 */
|
n@656
|
15
|
n@662
|
16 var currentState; // Keep track of the current state (pre/post test, which test, final test? first test?)
|
n@662
|
17 // preTest - In preTest state
|
n@662
|
18 // testRun-ID - In test running, test Id number at the end 'testRun-2'
|
n@662
|
19 // testRunPost-ID - Post test of test ID
|
n@662
|
20 // testRunPre-ID - Pre-test of test ID
|
n@662
|
21 // postTest - End of test, final submission!
|
n@662
|
22
|
n@656
|
23
|
n@656
|
24 // Once this is loaded and parsed, begin execution
|
n@656
|
25 loadInterface(projectXML);
|
n@656
|
26
|
n@656
|
27 function loadInterface(xmlDoc) {
|
n@656
|
28
|
n@656
|
29 // Get the dimensions of the screen available to the page
|
n@656
|
30 var width = window.innerWidth;
|
n@656
|
31 var height = window.innerHeight;
|
n@656
|
32
|
n@656
|
33 // The injection point into the HTML page
|
n@656
|
34 var insertPoint = document.getElementById("topLevelBody");
|
n@656
|
35 var testContent = document.createElement('div');
|
n@656
|
36 testContent.id = 'testContent';
|
n@656
|
37
|
n@656
|
38
|
n@656
|
39 // Decode parts of the xmlDoc that are needed
|
n@656
|
40 // xmlDoc MUST already be parsed by jQuery!
|
n@656
|
41 var xmlSetup = xmlDoc.find('setup');
|
n@656
|
42 // Should put in an error function here incase of malprocessed or malformed XML
|
n@656
|
43
|
n@658
|
44 // Extract the different test XML DOM trees
|
n@658
|
45 testXMLSetups = xmlDoc.find('audioHolder');
|
n@658
|
46
|
n@656
|
47 // Create the top div for the Title element
|
n@656
|
48 var titleAttr = xmlSetup[0].attributes['title'];
|
n@656
|
49 var title = document.createElement('div');
|
n@656
|
50 title.className = "title";
|
n@656
|
51 title.align = "center";
|
n@656
|
52 var titleSpan = document.createElement('span');
|
n@656
|
53
|
n@656
|
54 // Set title to that defined in XML, else set to default
|
n@656
|
55 if (titleAttr != undefined) {
|
n@656
|
56 titleSpan.innerHTML = titleAttr.value;
|
n@656
|
57 } else {
|
n@656
|
58 titleSpan.innerHTML = 'APE Tool';
|
n@656
|
59 }
|
n@656
|
60 // Insert the titleSpan element into the title div element.
|
n@656
|
61 title.appendChild(titleSpan);
|
n@656
|
62
|
n@656
|
63 // Store the return URL path in global projectReturn
|
n@656
|
64 projectReturn = xmlSetup[0].attributes['projectReturn'].value;
|
n@656
|
65
|
n@656
|
66 // Create Interface buttons!
|
n@656
|
67 var interfaceButtons = document.createElement('div');
|
n@656
|
68 interfaceButtons.id = 'interface-buttons';
|
n@656
|
69
|
n@656
|
70 // MANUAL DOWNLOAD POINT
|
n@656
|
71 // If project return is null, this MUST be specified as the location to create the download link
|
n@656
|
72 var downloadPoint = document.createElement('div');
|
n@656
|
73 downloadPoint.id = 'download-point';
|
n@656
|
74
|
n@656
|
75 // Create playback start/stop points
|
n@656
|
76 var playback = document.createElement("button");
|
n@656
|
77 playback.innerHTML = 'Start';
|
n@656
|
78 // onclick function. Check if it is playing or not, call the correct function in the
|
n@656
|
79 // audioEngine, change the button text to reflect the next state.
|
n@656
|
80 playback.onclick = function() {
|
n@656
|
81 if (audioEngineContext.status == 0) {
|
n@656
|
82 audioEngineContext.play();
|
n@656
|
83 this.innerHTML = 'Stop';
|
n@656
|
84 } else {
|
n@656
|
85 audioEngineContext.stop();
|
n@656
|
86 this.innerHTML = 'Start';
|
n@656
|
87 }
|
n@656
|
88 };
|
n@656
|
89 // Create Submit (save) button
|
n@656
|
90 var submit = document.createElement("button");
|
n@656
|
91 submit.innerHTML = 'Submit';
|
n@656
|
92 submit.onclick = function() {
|
n@656
|
93 // TODO: Update this for postTest tags
|
n@656
|
94 createProjectSave(projectReturn)
|
n@656
|
95 };
|
n@656
|
96 // Append the interface buttons into the interfaceButtons object.
|
n@656
|
97 interfaceButtons.appendChild(playback);
|
n@656
|
98 interfaceButtons.appendChild(submit);
|
n@656
|
99 interfaceButtons.appendChild(downloadPoint);
|
n@656
|
100
|
n@656
|
101 // Now create the slider and HTML5 canvas boxes
|
n@656
|
102
|
n@656
|
103 // Create the div box to center align
|
n@656
|
104 var sliderBox = document.createElement('div');
|
n@656
|
105 sliderBox.className = 'sliderCanvasDiv';
|
n@656
|
106 sliderBox.id = 'sliderCanvasHolder';
|
n@656
|
107 sliderBox.align = 'center';
|
n@656
|
108
|
n@656
|
109 // Create the slider box to hold the slider elements
|
n@656
|
110 var canvas = document.createElement('div');
|
n@656
|
111 canvas.id = 'slider';
|
n@656
|
112 // Must have a known EXACT width, as this is used later to determine the ratings
|
n@656
|
113 canvas.style.width = width - 100 +"px";
|
n@656
|
114 canvas.align = "left";
|
n@656
|
115 sliderBox.appendChild(canvas);
|
n@656
|
116
|
n@656
|
117 // Global parent for the comment boxes on the page
|
n@656
|
118 var feedbackHolder = document.createElement('div');
|
n@658
|
119 feedbackHolder.id = 'feedbackHolder';
|
n@656
|
120
|
n@662
|
121 testContent.style.zIndex = 1;
|
n@662
|
122 insertPoint.innerHTML = null; // Clear the current schema
|
n@662
|
123
|
n@656
|
124 // Create pre and post test questions
|
n@662
|
125 var blank = document.createElement('div');
|
n@662
|
126 blank.className = 'testHalt';
|
n@656
|
127
|
n@662
|
128 var popupHolder = document.createElement('div');
|
n@662
|
129 popupHolder.id = 'popupHolder';
|
n@662
|
130 popupHolder.className = 'popupHolder';
|
n@662
|
131 popupHolder.style.position = 'absolute';
|
n@662
|
132 popupHolder.style.left = (window.innerWidth/2)-250 + 'px';
|
n@662
|
133 popupHolder.style.top = (window.innerHeight/2)-125 + 'px';
|
n@662
|
134 insertPoint.appendChild(popupHolder);
|
n@662
|
135 insertPoint.appendChild(blank);
|
n@662
|
136 hidePopup();
|
n@656
|
137
|
n@660
|
138 var preTest = xmlSetup.find('PreTest');
|
n@660
|
139 var postTest = xmlSetup.find('PostTest');
|
n@656
|
140 preTest = preTest[0];
|
n@656
|
141 postTest = postTest[0];
|
n@662
|
142
|
n@662
|
143 currentState = 'preTest';
|
n@656
|
144
|
n@656
|
145 // Create Pre-Test Box
|
n@656
|
146 if (preTest != undefined && preTest.children.length >= 1)
|
n@656
|
147 {
|
n@662
|
148 showPopup();
|
n@661
|
149
|
n@656
|
150 // Parse the first box
|
n@656
|
151 var preTestOption = document.createElement('div');
|
n@656
|
152 preTestOption.id = 'preTest';
|
n@656
|
153 preTestOption.style.marginTop = '25px';
|
n@656
|
154 preTestOption.align = "center";
|
n@656
|
155 var child = preTest.children[0];
|
n@656
|
156 if (child.nodeName == 'statement')
|
n@656
|
157 {
|
n@656
|
158 preTestOption.innerHTML = '<span>'+child.innerHTML+'</span>';
|
n@656
|
159 } else if (child.nodeName == 'question')
|
n@656
|
160 {
|
n@656
|
161 var questionId = child.attributes['id'].value;
|
n@656
|
162 var textHold = document.createElement('span');
|
n@656
|
163 textHold.innerHTML = child.innerHTML;
|
n@656
|
164 textHold.id = questionId + 'response';
|
n@656
|
165 var textEnter = document.createElement('textarea');
|
n@656
|
166 preTestOption.appendChild(textHold);
|
n@656
|
167 preTestOption.appendChild(textEnter);
|
n@656
|
168 }
|
n@656
|
169 var nextButton = document.createElement('button');
|
n@662
|
170 nextButton.className = 'popupButton';
|
n@660
|
171 nextButton.value = '0';
|
n@657
|
172 nextButton.innerHTML = 'Next';
|
n@662
|
173 nextButton.onclick = popupButtonClick;
|
n@656
|
174
|
n@661
|
175 popupHolder.appendChild(preTestOption);
|
n@661
|
176 popupHolder.appendChild(nextButton);
|
n@656
|
177 }
|
n@662
|
178
|
n@662
|
179 // Inject into HTML
|
n@662
|
180 testContent.appendChild(title); // Insert the title
|
n@662
|
181 testContent.appendChild(interfaceButtons);
|
n@662
|
182 testContent.appendChild(sliderBox);
|
n@662
|
183 testContent.appendChild(feedbackHolder);
|
n@662
|
184 insertPoint.appendChild(testContent);
|
n@656
|
185
|
n@660
|
186 // Load the full interface
|
n@660
|
187 loadTest(testXMLSetups[0]);
|
n@656
|
188 }
|
n@656
|
189
|
n@658
|
190 function loadTest(textXML)
|
n@658
|
191 {
|
n@658
|
192 // Used to load a specific test page
|
n@658
|
193
|
n@658
|
194
|
n@658
|
195 var feedbackHolder = document.getElementById('feedbackHolder');
|
n@658
|
196 var canvas = document.getElementById('slider');
|
n@658
|
197 feedbackHolder.innerHTML = null;
|
n@658
|
198 canvas.innerHTML = null;
|
n@658
|
199
|
n@658
|
200 // Extract the hostURL attribute. If not set, create an empty string.
|
n@658
|
201 var hostURL = textXML.attributes['hostURL'];
|
n@658
|
202 if (hostURL == undefined) {
|
n@658
|
203 hostURL = "";
|
n@658
|
204 } else {
|
n@658
|
205 hostURL = hostURL.value;
|
n@658
|
206 }
|
n@658
|
207 // Extract the sampleRate. If set, convert the string to a Number.
|
n@658
|
208 var hostFs = textXML.attributes['sampleRate'];
|
n@658
|
209 if (hostFs != undefined) {
|
n@658
|
210 hostFs = Number(hostFs.value);
|
n@658
|
211 }
|
n@658
|
212
|
n@658
|
213 /// CHECK FOR SAMPLE RATE COMPATIBILITY
|
n@658
|
214 if (hostFs != undefined) {
|
n@658
|
215 if (Number(hostFs) != audioContext.sampleRate) {
|
n@658
|
216 var errStr = 'Sample rates do not match! Requested '+Number(hostFs)+', got '+audioContext.sampleRate+'. Please set the sample rate to match before completing this test.';
|
n@658
|
217 alert(errStr);
|
n@658
|
218 return;
|
n@658
|
219 }
|
n@658
|
220 }
|
n@658
|
221 // Find all the audioElements from the audioHolder
|
n@658
|
222 var audioElements = $(textXML).find('audioElements');
|
n@658
|
223 audioElements.each(function(index,element){
|
n@658
|
224 // Find URL of track
|
n@658
|
225 // In this jQuery loop, variable 'this' holds the current audioElement.
|
n@658
|
226
|
n@658
|
227 // Now load each audio sample. First create the new track by passing the full URL
|
n@658
|
228 var trackURL = hostURL + this.attributes['url'].value;
|
n@658
|
229 audioEngineContext.newTrack(trackURL);
|
n@658
|
230 // Create document objects to hold the comment boxes
|
n@658
|
231 var trackComment = document.createElement('div');
|
n@661
|
232 trackComment.className = 'comment-div';
|
n@658
|
233 // Create a string next to each comment asking for a comment
|
n@658
|
234 var trackString = document.createElement('span');
|
n@658
|
235 trackString.innerHTML = 'Comment on track '+index;
|
n@658
|
236 // Create the HTML5 comment box 'textarea'
|
n@658
|
237 var trackCommentBox = document.createElement('textarea');
|
n@658
|
238 trackCommentBox.rows = '4';
|
n@658
|
239 trackCommentBox.cols = '100';
|
n@658
|
240 trackCommentBox.name = 'trackComment'+index;
|
n@658
|
241 trackCommentBox.className = 'trackComment';
|
n@658
|
242 var br = document.createElement('br');
|
n@658
|
243 // Add to the holder.
|
n@658
|
244 trackComment.appendChild(trackString);
|
n@658
|
245 trackComment.appendChild(br);
|
n@658
|
246 trackComment.appendChild(trackCommentBox);
|
n@658
|
247 feedbackHolder.appendChild(trackComment);
|
n@658
|
248
|
n@658
|
249 // Create a slider per track
|
n@658
|
250
|
n@658
|
251 var trackSliderObj = document.createElement('div');
|
n@658
|
252 trackSliderObj.className = 'track-slider';
|
n@658
|
253 trackSliderObj.id = 'track-slider-'+index;
|
n@658
|
254 // Distribute it randomnly
|
n@658
|
255 var w = window.innerWidth - 100;
|
n@658
|
256 w = Math.random()*w;
|
n@658
|
257 trackSliderObj.style.left = Math.floor(w)+50+'px';
|
n@658
|
258 trackSliderObj.innerHTML = '<span>'+index+'</span>';
|
n@658
|
259 trackSliderObj.draggable = true;
|
n@658
|
260 trackSliderObj.ondragend = dragEnd;
|
n@658
|
261
|
n@658
|
262 // Onclick, switch playback to that track
|
n@658
|
263 trackSliderObj.onclick = function() {
|
n@658
|
264 // Get the track ID from the object ID
|
n@658
|
265 var id = Number(this.id.substr(13,2)); // Maximum theoretical tracks is 99!
|
n@658
|
266 audioEngineContext.selectedTrack(id);
|
n@658
|
267 };
|
n@658
|
268
|
n@658
|
269 canvas.appendChild(trackSliderObj);
|
n@658
|
270 });
|
n@658
|
271 }
|
n@658
|
272
|
n@662
|
273 function popupButtonClick()
|
n@662
|
274 {
|
n@662
|
275 // Global call from the 'Next' button click
|
n@662
|
276 if (currentState == 'preTest')
|
n@662
|
277 {
|
n@662
|
278 // At the start of the preTest routine!
|
n@662
|
279 this.value = preTestButtonClick(this.value);
|
n@662
|
280 }
|
n@662
|
281 }
|
n@662
|
282
|
n@662
|
283 function preTestButtonClick(index)
|
n@658
|
284 {
|
n@658
|
285 // Called on click of pre-test button
|
n@660
|
286 // Need to find and parse preTest again!
|
n@660
|
287 var xmlSetup = projectXML.find('setup');
|
n@660
|
288 var preTest = xmlSetup.find('PreTest')[0];
|
n@660
|
289 var preTestOption = document.getElementById('preTest');
|
n@660
|
290 // Check if current state is a question!
|
n@662
|
291 if (preTest.children[index].nodeName == 'question') {
|
n@662
|
292 var questionId = preTest.children[index].attributes['id'].value;
|
n@660
|
293 var questionHold = document.createElement('comment');
|
n@660
|
294 var questionResponse = document.getElementById(questionId + 'response');
|
n@660
|
295 questionHold.id = questionId;
|
n@660
|
296 questionHold.innerHTML = questionResponse.value;
|
n@660
|
297 preTestQuestions.appendChild(questionHold);
|
n@660
|
298 }
|
n@662
|
299 index++;
|
n@662
|
300 if (index < preTest.children.length)
|
n@660
|
301 {
|
n@660
|
302 // More to process
|
n@662
|
303 var child = preTest.children[index];
|
n@660
|
304 if (child.nodeName == 'statement')
|
n@660
|
305 {
|
n@660
|
306 preTestOption.innerHTML = '<span>'+child.innerHTML+'</span>';
|
n@660
|
307 } else if (child.nodeName == 'question')
|
n@660
|
308 {
|
n@660
|
309 var textHold = document.createElement('span');
|
n@660
|
310 textHold.innerHTML = child.innerHTML;
|
n@660
|
311 var textEnter = document.createElement('textarea');
|
n@660
|
312 textEnter.id = child.attributes['id'].value + 'response';
|
n@660
|
313 var br = document.createElement('br');
|
n@660
|
314 preTestOption.innerHTML = null;
|
n@660
|
315 preTestOption.appendChild(textHold);
|
n@660
|
316 preTestOption.appendChild(br);
|
n@660
|
317 preTestOption.appendChild(textEnter);
|
n@660
|
318 }
|
n@660
|
319 } else {
|
n@660
|
320 // Time to clear
|
n@661
|
321 preTestOption.innerHTML = null;
|
n@661
|
322 hidePopup();
|
n@662
|
323 // Progress the state!
|
n@660
|
324 }
|
n@662
|
325 return index;
|
n@660
|
326 }
|
n@660
|
327
|
n@660
|
328 function showPopup()
|
n@660
|
329 {
|
n@661
|
330 var popupHolder = document.getElementById('popupHolder');
|
n@662
|
331 popupHolder.style.zIndex = 3;
|
n@661
|
332 popupHolder.style.visibility = 'visible';
|
n@661
|
333 var blank = document.getElementsByClassName('testHalt')[0];
|
n@661
|
334 blank.style.zIndex = 2;
|
n@661
|
335 blank.style.visibility = 'visible';
|
n@660
|
336 }
|
n@660
|
337
|
n@660
|
338 function hidePopup()
|
n@660
|
339 {
|
n@661
|
340 var popupHolder = document.getElementById('popupHolder');
|
n@661
|
341 popupHolder.style.zIndex = -1;
|
n@661
|
342 popupHolder.style.visibility = 'hidden';
|
n@661
|
343 var blank = document.getElementsByClassName('testHalt')[0];
|
n@661
|
344 blank.style.zIndex = -2;
|
n@661
|
345 blank.style.visibility = 'hidden';
|
n@658
|
346 }
|
n@658
|
347
|
n@656
|
348 function dragEnd(ev) {
|
n@656
|
349 // Function call when a div has been dropped
|
n@657
|
350 var slider = document.getElementById('slider');
|
n@656
|
351 if (ev.x >= 50 && ev.x < window.innerWidth-50) {
|
n@656
|
352 this.style.left = (ev.x)+'px';
|
n@656
|
353 } else {
|
n@656
|
354 if (ev.x<50) {
|
n@656
|
355 this.style.left = '50px';
|
n@656
|
356 } else {
|
n@656
|
357 this.style.left = window.innerWidth-50 + 'px';
|
n@656
|
358 }
|
n@656
|
359 }
|
n@656
|
360 }
|
n@656
|
361
|
n@656
|
362 // Only other global function which must be defined in the interface class. Determines how to create the XML document.
|
n@656
|
363 function interfaceXMLSave(){
|
n@656
|
364 // Create the XML string to be exported with results
|
n@656
|
365 var xmlDoc = document.createElement("BrowserEvaluationResult");
|
n@656
|
366 var trackSliderObjects = document.getElementsByClassName('track-slider');
|
n@656
|
367 var commentObjects = document.getElementsByClassName('trackComment');
|
n@656
|
368 var rateMin = 50;
|
n@656
|
369 var rateMax = window.innerWidth-50;
|
n@656
|
370 for (var i=0; i<trackSliderObjects.length; i++)
|
n@656
|
371 {
|
n@656
|
372 var trackObj = document.createElement("audioElement");
|
n@656
|
373 trackObj.id = i;
|
n@656
|
374 trackObj.url = audioEngineContext.audioObjects[i].url;
|
n@656
|
375 var slider = document.createElement("Rating");
|
n@656
|
376 var rate = Number(trackSliderObjects[i].style.left.substr(0,trackSliderObjects[i].style.left.length-2));
|
n@656
|
377 rate = (rate-rateMin)/rateMax;
|
n@656
|
378 slider.innerHTML = Math.floor(rate*100);
|
n@656
|
379 var comment = document.createElement("Comment");
|
n@656
|
380 comment.innerHTML = commentObjects[i].value;
|
n@656
|
381 trackObj.appendChild(slider);
|
n@656
|
382 trackObj.appendChild(comment);
|
n@656
|
383 xmlDoc.appendChild(trackObj);
|
n@656
|
384 }
|
n@656
|
385
|
n@656
|
386 // Append Pre/Post Questions
|
n@656
|
387 xmlDoc.appendChild(preTestQuestions);
|
n@656
|
388 xmlDoc.appendChild(postTestQuestions);
|
n@656
|
389
|
n@656
|
390 return xmlDoc;
|
n@656
|
391 }
|
n@656
|
392
|