nicholas@2
|
1 /**
|
nicholas@2
|
2 * ape.js
|
nicholas@2
|
3 * Create the APE interface
|
nicholas@2
|
4 */
|
nicholas@2
|
5
|
n@38
|
6 // preTest - In preTest state
|
n@38
|
7 // testRun-ID - In test running, test Id number at the end 'testRun-2'
|
n@38
|
8 // testRunPost-ID - Post test of test ID
|
n@38
|
9 // testRunPre-ID - Pre-test of test ID
|
n@38
|
10 // postTest - End of test, final submission!
|
n@38
|
11
|
n@32
|
12
|
nicholas@2
|
13 // Once this is loaded and parsed, begin execution
|
n@181
|
14 loadInterface();
|
nicholas@2
|
15
|
n@181
|
16 function loadInterface() {
|
nicholas@2
|
17
|
n@16
|
18 // Get the dimensions of the screen available to the page
|
nicholas@2
|
19 var width = window.innerWidth;
|
nicholas@2
|
20 var height = window.innerHeight;
|
nicholas@2
|
21
|
nicholas@2
|
22 // The injection point into the HTML page
|
n@182
|
23 interfaceContext.insertPoint = document.getElementById("topLevelBody");
|
n@22
|
24 var testContent = document.createElement('div');
|
nicholas@135
|
25
|
n@22
|
26 testContent.id = 'testContent';
|
n@176
|
27
|
n@34
|
28
|
n@52
|
29 // Create APE specific metric functions
|
n@52
|
30 audioEngineContext.metric.initialiseTest = function()
|
n@52
|
31 {
|
n@52
|
32 };
|
n@52
|
33
|
n@52
|
34 audioEngineContext.metric.sliderMoved = function()
|
n@52
|
35 {
|
n@183
|
36
|
n@52
|
37 var id = this.data;
|
n@52
|
38 this.data = -1;
|
n@52
|
39 var position = convSliderPosToRate(id);
|
b@115
|
40 console.log('slider ' + id + ': '+ position + ' (' + time + ')'); // DEBUG/SAFETY: show position and slider id
|
n@52
|
41 if (audioEngineContext.timer.testStarted)
|
n@52
|
42 {
|
n@52
|
43 audioEngineContext.audioObjects[id].metric.moved(time,position);
|
n@52
|
44 }
|
n@52
|
45 };
|
n@52
|
46
|
n@52
|
47 audioEngineContext.metric.sliderPlayed = function(id)
|
n@52
|
48 {
|
n@52
|
49 var time = audioEngineContext.timer.getTestTime();
|
n@52
|
50 if (audioEngineContext.timer.testStarted)
|
n@52
|
51 {
|
n@52
|
52 if (this.lastClicked >= 0)
|
n@52
|
53 {
|
n@52
|
54 audioEngineContext.audioObjects[this.lastClicked].metric.listening(time);
|
n@52
|
55 }
|
n@52
|
56 this.lastClicked = id;
|
n@52
|
57 audioEngineContext.audioObjects[id].metric.listening(time);
|
n@52
|
58 }
|
b@115
|
59 console.log('slider ' + id + ' played (' + time + ')'); // DEBUG/SAFETY: show played slider id
|
n@52
|
60 };
|
n@52
|
61
|
nicholas@214
|
62 // Bindings for interfaceContext
|
nicholas@214
|
63 Interface.prototype.checkAllPlayed = function()
|
nicholas@214
|
64 {
|
nicholas@214
|
65 hasBeenPlayed = audioEngineContext.checkAllPlayed();
|
nicholas@214
|
66 if (hasBeenPlayed.length > 0) // if a fragment has not been played yet
|
nicholas@214
|
67 {
|
nicholas@214
|
68 str = "";
|
nicholas@214
|
69 if (hasBeenPlayed.length > 1) {
|
nicholas@214
|
70 for (var i=0; i<hasBeenPlayed.length; i++) {
|
nicholas@214
|
71 str = str + hasBeenPlayed[i];
|
nicholas@214
|
72 if (i < hasBeenPlayed.length-2){
|
nicholas@214
|
73 str += ", ";
|
nicholas@214
|
74 } else if (i == hasBeenPlayed.length-2) {
|
nicholas@214
|
75 str += " or ";
|
nicholas@214
|
76 }
|
nicholas@214
|
77 }
|
nicholas@214
|
78 alert('You have not played fragments ' + str + ' yet. Please listen, rate and comment all samples before submitting.');
|
nicholas@214
|
79 } else {
|
nicholas@214
|
80 alert('You have not played fragment ' + hasBeenPlayed[0] + ' yet. Please listen, rate and comment all samples before submitting.');
|
nicholas@214
|
81 }
|
nicholas@214
|
82 return false;
|
nicholas@214
|
83 }
|
nicholas@214
|
84 return true;
|
nicholas@219
|
85 };
|
nicholas@214
|
86
|
nicholas@214
|
87 Interface.prototype.checkAllMoved = function() {
|
nicholas@214
|
88 var audioObjs = audioEngineContext.audioObjects;
|
nicholas@214
|
89 var state = true;
|
nicholas@214
|
90 var strNums = [];
|
nicholas@214
|
91 for (var i=0; i<audioObjs.length; i++)
|
nicholas@214
|
92 {
|
nicholas@214
|
93 if (audioObjs[i].metric.wasMoved == false) {
|
nicholas@214
|
94 state = false;
|
nicholas@214
|
95 strNums.push(i);
|
nicholas@214
|
96 }
|
nicholas@214
|
97 }
|
nicholas@214
|
98 if (state == false) {
|
nicholas@214
|
99 if (strNums.length > 1) {
|
nicholas@214
|
100 var str = "";
|
nicholas@214
|
101 for (var i=0; i<strNums.length; i++) {
|
nicholas@214
|
102 str = str + strNums[i];
|
nicholas@214
|
103 if (i < strNums.length-2){
|
nicholas@214
|
104 str += ", ";
|
nicholas@214
|
105 } else if (i == strNums.length-2) {
|
nicholas@214
|
106 str += " or ";
|
nicholas@214
|
107 }
|
nicholas@214
|
108 }
|
nicholas@214
|
109 alert('You have not moved fragments ' + str + ' yet. Please listen, rate and comment all samples before submitting.');
|
nicholas@214
|
110 } else {
|
nicholas@214
|
111 alert('You have not moved fragment ' + strNums[0] + ' yet. Please listen, rate and comment all samples before submitting.');
|
nicholas@214
|
112 }
|
nicholas@214
|
113 }
|
nicholas@214
|
114 return state;
|
nicholas@219
|
115 };
|
nicholas@214
|
116
|
nicholas@214
|
117 Interface.prototype.checkAllCommented = function() {
|
nicholas@214
|
118 var audioObjs = audioEngineContext.audioObjects;
|
nicholas@214
|
119 var audioHolder = testState.stateMap[testState.stateIndex];
|
nicholas@214
|
120 var state = true;
|
nicholas@214
|
121 if (audioHolder.elementComments) {
|
nicholas@214
|
122 var strNums = [];
|
nicholas@214
|
123 for (var i=0; i<audioObjs.length; i++)
|
nicholas@214
|
124 {
|
nicholas@214
|
125 if (audioObjs[i].commentDOM.trackCommentBox.value.length == 0) {
|
nicholas@214
|
126 state = false;
|
nicholas@214
|
127 strNums.push(i);
|
nicholas@214
|
128 }
|
nicholas@214
|
129 }
|
nicholas@214
|
130 if (state == false) {
|
nicholas@214
|
131 if (strNums.length > 1) {
|
nicholas@214
|
132 var str = "";
|
nicholas@214
|
133 for (var i=0; i<strNums.length; i++) {
|
nicholas@214
|
134 str = str + strNums[i];
|
nicholas@214
|
135 if (i < strNums.length-2){
|
nicholas@214
|
136 str += ", ";
|
nicholas@214
|
137 } else if (i == strNums.length-2) {
|
nicholas@214
|
138 str += " or ";
|
nicholas@214
|
139 }
|
nicholas@214
|
140 }
|
nicholas@214
|
141 alert('You have not commented on fragments ' + str + ' yet. Please listen, rate and comment all samples before submitting.');
|
nicholas@214
|
142 } else {
|
nicholas@214
|
143 alert('You have not commented on fragment ' + strNums[0] + ' yet. Please listen, rate and comment all samples before submitting.');
|
nicholas@214
|
144 }
|
nicholas@214
|
145 }
|
nicholas@214
|
146 }
|
nicholas@214
|
147 return state;
|
nicholas@219
|
148 };
|
nicholas@214
|
149
|
nicholas@231
|
150 Interface.prototype.checkScaleRange = function()
|
nicholas@231
|
151 {
|
nicholas@231
|
152 var audioObjs = audioEngineContext.audioObjects;
|
nicholas@231
|
153 var audioHolder = testState.stateMap[testState.stateIndex];
|
nicholas@231
|
154 var interfaces = audioHolder.interfaces;
|
nicholas@231
|
155
|
nicholas@231
|
156 var minRanking = audioObjs[0].interfaceDOM.getValue();
|
nicholas@231
|
157 var maxRanking = minRanking;
|
nicholas@231
|
158
|
nicholas@231
|
159 var minScale;
|
nicholas@231
|
160 var maxScale;
|
nicholas@231
|
161 for (var i=0; i<interfaces[0].options.length; i++)
|
nicholas@231
|
162 {
|
nicholas@231
|
163 if (interfaces[0].options[i].check == "scalerange") {
|
nicholas@231
|
164 minScale = interfaces[0].options[i].min;
|
nicholas@231
|
165 maxScale = interfaces[0].options[i].max;
|
nicholas@231
|
166 }
|
nicholas@231
|
167 }
|
nicholas@231
|
168
|
nicholas@231
|
169 for (var i=1; i<audioObjs.length; i++){
|
nicholas@231
|
170 var ranking = audioObjs[i].interfaceDOM.getValue();
|
nicholas@231
|
171 if (ranking < minRanking) { minRanking = ranking;}
|
nicholas@231
|
172 if (ranking > maxRanking) { maxRanking = ranking;}
|
nicholas@231
|
173 }
|
nicholas@231
|
174 if (minRanking > minScale || maxRanking < maxScale) {
|
nicholas@231
|
175 alert('Please use the full width of the scale');
|
nicholas@231
|
176 return false;
|
nicholas@231
|
177 } else {
|
nicholas@231
|
178 return true;
|
nicholas@231
|
179 }
|
nicholas@231
|
180 };
|
nicholas@231
|
181
|
n@177
|
182 // Bindings for audioObjects
|
n@177
|
183
|
nicholas@2
|
184 // Create the top div for the Title element
|
n@181
|
185 var titleAttr = specification.title;
|
nicholas@2
|
186 var title = document.createElement('div');
|
nicholas@2
|
187 title.className = "title";
|
nicholas@2
|
188 title.align = "center";
|
nicholas@2
|
189 var titleSpan = document.createElement('span');
|
nicholas@2
|
190
|
nicholas@2
|
191 // Set title to that defined in XML, else set to default
|
nicholas@2
|
192 if (titleAttr != undefined) {
|
n@181
|
193 titleSpan.textContent = titleAttr;
|
nicholas@2
|
194 } else {
|
n@181
|
195 titleSpan.textContent = 'Listening test';
|
nicholas@2
|
196 }
|
nicholas@2
|
197 // Insert the titleSpan element into the title div element.
|
nicholas@2
|
198 title.appendChild(titleSpan);
|
nicholas@2
|
199
|
n@47
|
200 var pagetitle = document.createElement('div');
|
n@47
|
201 pagetitle.className = "pageTitle";
|
n@47
|
202 pagetitle.align = "center";
|
n@47
|
203 var titleSpan = document.createElement('span');
|
n@47
|
204 titleSpan.id = "pageTitle";
|
n@47
|
205 pagetitle.appendChild(titleSpan);
|
n@47
|
206
|
nicholas@7
|
207 // Create Interface buttons!
|
nicholas@7
|
208 var interfaceButtons = document.createElement('div');
|
nicholas@7
|
209 interfaceButtons.id = 'interface-buttons';
|
nicholas@7
|
210
|
nicholas@7
|
211 // Create playback start/stop points
|
nicholas@7
|
212 var playback = document.createElement("button");
|
b@101
|
213 playback.innerHTML = 'Stop';
|
n@49
|
214 playback.id = 'playback-button';
|
n@16
|
215 // onclick function. Check if it is playing or not, call the correct function in the
|
n@16
|
216 // audioEngine, change the button text to reflect the next state.
|
nicholas@7
|
217 playback.onclick = function() {
|
b@101
|
218 if (audioEngineContext.status == 1) {
|
b@101
|
219 audioEngineContext.stop();
|
n@25
|
220 this.innerHTML = 'Stop';
|
b@115
|
221 var time = audioEngineContext.timer.getTestTime();
|
b@115
|
222 console.log('Stopped at ' + time); // DEBUG/SAFETY
|
nicholas@7
|
223 }
|
n@16
|
224 };
|
nicholas@7
|
225 // Create Submit (save) button
|
nicholas@7
|
226 var submit = document.createElement("button");
|
n@25
|
227 submit.innerHTML = 'Submit';
|
n@43
|
228 submit.onclick = buttonSubmitClick;
|
n@49
|
229 submit.id = 'submit-button';
|
n@16
|
230 // Append the interface buttons into the interfaceButtons object.
|
nicholas@7
|
231 interfaceButtons.appendChild(playback);
|
nicholas@7
|
232 interfaceButtons.appendChild(submit);
|
nicholas@7
|
233
|
nicholas@2
|
234 // Now create the slider and HTML5 canvas boxes
|
nicholas@2
|
235
|
n@16
|
236 // Create the div box to center align
|
nicholas@2
|
237 var sliderBox = document.createElement('div');
|
nicholas@2
|
238 sliderBox.className = 'sliderCanvasDiv';
|
n@16
|
239 sliderBox.id = 'sliderCanvasHolder';
|
nicholas@2
|
240
|
n@16
|
241 // Create the slider box to hold the slider elements
|
nicholas@5
|
242 var canvas = document.createElement('div');
|
nicholas@2
|
243 canvas.id = 'slider';
|
n@127
|
244 canvas.align = "left";
|
n@127
|
245 canvas.addEventListener('dragover',function(event){
|
n@127
|
246 event.preventDefault();
|
n@127
|
247 return false;
|
n@127
|
248 },false);
|
n@127
|
249 var sliderMargin = document.createAttribute('marginsize');
|
n@127
|
250 sliderMargin.nodeValue = 42; // Set default margins to 42px either side
|
n@16
|
251 // Must have a known EXACT width, as this is used later to determine the ratings
|
n@127
|
252 var w = (Number(sliderMargin.nodeValue)+8)*2;
|
n@127
|
253 canvas.style.width = width - w +"px";
|
n@127
|
254 canvas.style.marginLeft = sliderMargin.nodeValue +'px';
|
n@127
|
255 canvas.setAttributeNode(sliderMargin);
|
nicholas@2
|
256 sliderBox.appendChild(canvas);
|
n@16
|
257
|
n@47
|
258 // Create the div to hold any scale objects
|
n@47
|
259 var scale = document.createElement('div');
|
n@47
|
260 scale.className = 'sliderScale';
|
n@47
|
261 scale.id = 'sliderScaleHolder';
|
n@47
|
262 scale.align = 'left';
|
n@47
|
263 sliderBox.appendChild(scale);
|
n@47
|
264
|
n@16
|
265 // Global parent for the comment boxes on the page
|
nicholas@3
|
266 var feedbackHolder = document.createElement('div');
|
n@34
|
267 feedbackHolder.id = 'feedbackHolder';
|
nicholas@2
|
268
|
n@38
|
269 testContent.style.zIndex = 1;
|
n@182
|
270 interfaceContext.insertPoint.innerHTML = null; // Clear the current schema
|
n@38
|
271
|
n@38
|
272 // Inject into HTML
|
n@38
|
273 testContent.appendChild(title); // Insert the title
|
n@47
|
274 testContent.appendChild(pagetitle);
|
n@38
|
275 testContent.appendChild(interfaceButtons);
|
n@38
|
276 testContent.appendChild(sliderBox);
|
n@38
|
277 testContent.appendChild(feedbackHolder);
|
n@182
|
278 interfaceContext.insertPoint.appendChild(testContent);
|
n@22
|
279
|
n@36
|
280 // Load the full interface
|
nicholas@129
|
281 testState.initialise();
|
nicholas@129
|
282 testState.advanceState();
|
nicholas@135
|
283
|
nicholas@2
|
284 }
|
nicholas@5
|
285
|
n@181
|
286 function loadTest(audioHolderObject)
|
n@34
|
287 {
|
nicholas@110
|
288
|
nicholas@110
|
289 // Reset audioEngineContext.Metric globals for new test
|
n@113
|
290 audioEngineContext.newTestPage();
|
nicholas@110
|
291
|
n@181
|
292 var id = audioHolderObject.id;
|
n@34
|
293
|
n@34
|
294 var feedbackHolder = document.getElementById('feedbackHolder');
|
n@34
|
295 var canvas = document.getElementById('slider');
|
n@34
|
296 feedbackHolder.innerHTML = null;
|
n@34
|
297 canvas.innerHTML = null;
|
n@47
|
298
|
nicholas@220
|
299 //var playbackHolder = document.createElement('div');
|
nicholas@220
|
300 //playbackHolder.style.width = "100%";
|
nicholas@220
|
301 //playbackHolder.align = 'center';
|
nicholas@220
|
302 //playbackHolder.appendChild(interfaceContext.playhead.object);
|
nicholas@220
|
303 //feedbackHolder.appendChild(playbackHolder);
|
n@47
|
304 // Setup question title
|
n@184
|
305 var interfaceObj = audioHolderObject.interfaces;
|
n@184
|
306 var commentBoxPrefix = "Comment on track";
|
n@184
|
307 if (interfaceObj.length != 0) {
|
n@184
|
308 interfaceObj = interfaceObj[0];
|
n@184
|
309 var titleNode = interfaceObj.title;
|
n@184
|
310 if (titleNode != undefined)
|
n@184
|
311 {
|
n@184
|
312 document.getElementById('pageTitle').textContent = titleNode;
|
n@184
|
313 }
|
n@184
|
314 var positionScale = canvas.style.width.substr(0,canvas.style.width.length-2);
|
n@184
|
315 var offset = Number(document.getElementById('slider').attributes['marginsize'].value);
|
n@184
|
316 var scale = document.getElementById('sliderScaleHolder');
|
n@184
|
317 scale.innerHTML = null;
|
n@184
|
318 $(interfaceObj.scale).each(function(index,scaleObj){
|
n@184
|
319 var value = document.createAttribute('value');
|
n@184
|
320 var position = Number(scaleObj[0])*0.01;
|
n@184
|
321 value.nodeValue = position;
|
n@184
|
322 var pixelPosition = (position*positionScale)+offset;
|
n@184
|
323 var scaleDOM = document.createElement('span');
|
n@184
|
324 scaleDOM.textContent = scaleObj[1];
|
n@184
|
325 scale.appendChild(scaleDOM);
|
n@184
|
326 scaleDOM.style.left = Math.floor((pixelPosition-($(scaleDOM).width()/2)))+'px';
|
n@184
|
327 scaleDOM.setAttributeNode(value);
|
n@184
|
328 });
|
n@184
|
329
|
n@184
|
330 if (interfaceObj.commentBoxPrefix != undefined) {
|
n@184
|
331 commentBoxPrefix = interfaceObj.commentBoxPrefix;
|
n@184
|
332 }
|
n@174
|
333 }
|
n@34
|
334
|
n@34
|
335 /// CHECK FOR SAMPLE RATE COMPATIBILITY
|
n@181
|
336 if (audioHolderObject.sampleRate != undefined) {
|
n@181
|
337 if (Number(audioHolderObject.sampleRate) != audioContext.sampleRate) {
|
n@184
|
338 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@34
|
339 alert(errStr);
|
n@34
|
340 return;
|
n@34
|
341 }
|
n@34
|
342 }
|
n@45
|
343
|
n@181
|
344 var commentShow = audioHolderObject.elementComments;
|
nicholas@66
|
345
|
n@181
|
346 var loopPlayback = audioHolderObject.loop;
|
n@181
|
347
|
n@57
|
348 audioEngineContext.loopPlayback = loopPlayback;
|
n@57
|
349 // Create AudioEngine bindings for playback
|
n@202
|
350 audioEngineContext.selectedTrack = function(id) {
|
n@202
|
351 console.log('Deprecated');
|
n@202
|
352 };
|
n@57
|
353
|
n@46
|
354 currentTestHolder = document.createElement('audioHolder');
|
n@181
|
355 currentTestHolder.id = audioHolderObject.id;
|
n@181
|
356 currentTestHolder.repeatCount = audioHolderObject.repeatCount;
|
n@46
|
357
|
nicholas@58
|
358 // Delete any previous audioObjects associated with the audioEngine
|
nicholas@58
|
359 audioEngineContext.audioObjects = [];
|
nicholas@211
|
360 interfaceContext.deleteCommentBoxes();
|
nicholas@58
|
361
|
n@45
|
362 // Find all the audioElements from the audioHolder
|
n@181
|
363 $(audioHolderObject.audioElements).each(function(index,element){
|
n@34
|
364 // Find URL of track
|
n@34
|
365 // In this jQuery loop, variable 'this' holds the current audioElement.
|
n@34
|
366
|
n@34
|
367 // Now load each audio sample. First create the new track by passing the full URL
|
n@181
|
368 var trackURL = audioHolderObject.hostURL + element.url;
|
n@182
|
369 var audioObject = audioEngineContext.newTrack(element);
|
nicholas@66
|
370
|
n@205
|
371 var node = interfaceContext.createCommentBox(audioObject);
|
n@34
|
372
|
n@34
|
373 // Create a slider per track
|
n@183
|
374 audioObject.interfaceDOM = new sliderObject(audioObject);
|
n@154
|
375
|
n@34
|
376 // Distribute it randomnly
|
n@138
|
377 var w = window.innerWidth - (offset+8)*2;
|
n@34
|
378 w = Math.random()*w;
|
n@138
|
379 w = Math.floor(w+(offset+8));
|
n@183
|
380 audioObject.interfaceDOM.trackSliderObj.style.left = w+'px';
|
n@34
|
381
|
n@183
|
382 canvas.appendChild(audioObject.interfaceDOM.trackSliderObj);
|
n@183
|
383 audioObject.metric.initialised(convSliderPosToRate(audioObject.interfaceDOM.trackSliderObj));
|
b@102
|
384
|
n@34
|
385 });
|
n@182
|
386 if (commentShow) {
|
n@182
|
387 interfaceContext.showCommentBoxes(feedbackHolder,true);
|
n@182
|
388 }
|
n@39
|
389
|
n@181
|
390 $(audioHolderObject.commentQuestions).each(function(index,element) {
|
n@193
|
391 var node = interfaceContext.createCommentQuestion(element);
|
n@193
|
392 feedbackHolder.appendChild(node.holder);
|
nicholas@65
|
393 });
|
n@153
|
394
|
n@153
|
395
|
n@153
|
396 testWaitIndicator();
|
n@39
|
397 }
|
n@39
|
398
|
n@183
|
399 function sliderObject(audioObject) {
|
n@183
|
400 // Create a new slider object;
|
n@183
|
401 this.parent = audioObject;
|
n@183
|
402 this.trackSliderObj = document.createElement('div');
|
n@183
|
403 this.trackSliderObj.className = 'track-slider';
|
n@183
|
404 this.trackSliderObj.id = 'track-slider-'+audioObject.id;
|
n@183
|
405
|
n@183
|
406 this.trackSliderObj.setAttribute('trackIndex',audioObject.id);
|
n@183
|
407 this.trackSliderObj.innerHTML = '<span>'+audioObject.id+'</span>';
|
n@183
|
408 this.trackSliderObj.draggable = true;
|
n@183
|
409 this.trackSliderObj.ondragend = dragEnd;
|
n@183
|
410
|
n@183
|
411 // Onclick, switch playback to that track
|
n@183
|
412 this.trackSliderObj.onclick = function() {
|
n@183
|
413 // Start the test on first click, that way timings are more accurate.
|
n@183
|
414 audioEngineContext.play();
|
n@183
|
415 if (audioEngineContext.audioObjectsReady) {
|
n@183
|
416 // Cannot continue to issue play command until audioObjects reported as ready!
|
n@183
|
417 // Get the track ID from the object ID
|
nicholas@210
|
418 var element;
|
nicholas@210
|
419 if (event.srcElement.nodeName == "SPAN") {
|
nicholas@210
|
420 element = event.srcElement.parentNode;
|
nicholas@210
|
421 } else {
|
nicholas@210
|
422 element = event.srcElement;
|
nicholas@210
|
423 }
|
nicholas@210
|
424 var id = Number(element.attributes['trackIndex'].value);
|
n@183
|
425 //audioEngineContext.metric.sliderPlayed(id);
|
n@202
|
426 audioEngineContext.play(id);
|
n@183
|
427 // Currently playing track red, rest green
|
n@183
|
428
|
n@183
|
429 //document.getElementById('track-slider-'+index).style.backgroundColor = "#FF0000";
|
n@183
|
430 $('.track-slider').removeClass('track-slider-playing');
|
nicholas@210
|
431 $(element).addClass('track-slider-playing');
|
n@183
|
432 $('.comment-div').removeClass('comment-box-playing');
|
n@183
|
433 $('#comment-div-'+id).addClass('comment-box-playing');
|
n@183
|
434 }
|
n@183
|
435 };
|
n@183
|
436
|
nicholas@219
|
437 this.exportXMLDOM = function(audioObject) {
|
n@183
|
438 // Called by the audioObject holding this element. Must be present
|
n@183
|
439 var node = document.createElement('value');
|
n@183
|
440 node.textContent = convSliderPosToRate(this.trackSliderObj);
|
n@183
|
441 return node;
|
n@183
|
442 };
|
nicholas@219
|
443 this.getValue = function() {
|
nicholas@219
|
444 return convSliderPosToRate(this.trackSliderObj);
|
nicholas@220
|
445 };
|
n@183
|
446 }
|
nicholas@119
|
447
|
nicholas@5
|
448 function dragEnd(ev) {
|
nicholas@5
|
449 // Function call when a div has been dropped
|
n@33
|
450 var slider = document.getElementById('slider');
|
n@127
|
451 var marginSize = Number(slider.attributes['marginsize'].value);
|
n@51
|
452 var w = slider.style.width;
|
n@51
|
453 w = Number(w.substr(0,w.length-2));
|
nicholas@133
|
454 var x = ev.x;
|
n@127
|
455 if (x >= marginSize && x < w+marginSize) {
|
n@51
|
456 this.style.left = (x)+'px';
|
nicholas@5
|
457 } else {
|
n@127
|
458 if (x<marginSize) {
|
n@127
|
459 this.style.left = marginSize+'px';
|
nicholas@5
|
460 } else {
|
n@127
|
461 this.style.left = (w+marginSize) + 'px';
|
nicholas@5
|
462 }
|
nicholas@5
|
463 }
|
n@183
|
464 var time = audioEngineContext.timer.getTestTime();
|
n@183
|
465 var id = Number(ev.srcElement.getAttribute('trackindex'));
|
n@183
|
466 audioEngineContext.audioObjects[id].metric.moved(time,convSliderPosToRate(ev.srcElement));
|
nicholas@5
|
467 }
|
nicholas@7
|
468
|
b@101
|
469 function buttonSubmitClick() // TODO: Only when all songs have been played!
|
n@40
|
470 {
|
nicholas@232
|
471 var checks = testState.currentStateMap[testState.currentIndex].interfaces[0].options;
|
nicholas@214
|
472 var canContinue = true;
|
nicholas@219
|
473
|
nicholas@219
|
474 // Check that the anchor and reference objects are correctly placed
|
nicholas@235
|
475 if (interfaceContext.checkHiddenAnchor() == false) {return;}
|
nicholas@235
|
476 if (interfaceContext.checkHiddenReference() == false) {return;}
|
nicholas@219
|
477
|
nicholas@214
|
478 for (var i=0; i<checks.length; i++) {
|
nicholas@214
|
479 if (checks[i].type == 'check')
|
nicholas@214
|
480 {
|
nicholas@214
|
481 switch(checks[i].check) {
|
nicholas@214
|
482 case 'fragmentPlayed':
|
nicholas@214
|
483 // Check if all fragments have been played
|
nicholas@214
|
484 var checkState = interfaceContext.checkAllPlayed();
|
nicholas@214
|
485 if (checkState == false) {canContinue = false;}
|
nicholas@214
|
486 break;
|
nicholas@214
|
487 case 'fragmentFullPlayback':
|
nicholas@214
|
488 // Check all fragments have been played to their full length
|
nicholas@214
|
489 var checkState = interfaceContext.checkAllPlayed();
|
nicholas@214
|
490 if (checkState == false) {canContinue = false;}
|
nicholas@214
|
491 console.log('NOTE: fragmentFullPlayback not currently implemented, performing check fragmentPlayed instead');
|
nicholas@214
|
492 break;
|
nicholas@214
|
493 case 'fragmentMoved':
|
nicholas@214
|
494 // Check all fragment sliders have been moved.
|
nicholas@214
|
495 var checkState = interfaceContext.checkAllMoved();
|
nicholas@214
|
496 if (checkState == false) {canContinue = false;}
|
nicholas@214
|
497 break;
|
nicholas@214
|
498 case 'fragmentComments':
|
nicholas@214
|
499 // Check all fragment sliders have been moved.
|
nicholas@214
|
500 var checkState = interfaceContext.checkAllCommented();
|
nicholas@214
|
501 if (checkState == false) {canContinue = false;}
|
nicholas@214
|
502 break;
|
nicholas@231
|
503 case 'scalerange':
|
nicholas@231
|
504 // Check the scale is used to its full width outlined by the node
|
nicholas@231
|
505 var checkState = interfaceContext.checkScaleRange();
|
nicholas@231
|
506 if (checkState == false) {canContinue = false;}
|
nicholas@231
|
507 break;
|
nicholas@214
|
508 }
|
nicholas@214
|
509
|
nicholas@214
|
510 }
|
nicholas@231
|
511 if (!canContinue) {break;}
|
nicholas@214
|
512 }
|
nicholas@214
|
513
|
nicholas@214
|
514 if (canContinue) {
|
nicholas@107
|
515 if (audioEngineContext.status == 1) {
|
nicholas@107
|
516 var playback = document.getElementById('playback-button');
|
nicholas@107
|
517 playback.click();
|
nicholas@107
|
518 // This function is called when the submit button is clicked. Will check for any further tests to perform, or any post-test options
|
nicholas@107
|
519 } else
|
nicholas@107
|
520 {
|
nicholas@107
|
521 if (audioEngineContext.timer.testStarted == false)
|
nicholas@107
|
522 {
|
nicholas@107
|
523 alert('You have not started the test! Please press start to begin the test!');
|
nicholas@107
|
524 return;
|
nicholas@107
|
525 }
|
nicholas@107
|
526 }
|
nicholas@129
|
527 testState.advanceState();
|
nicholas@214
|
528 }
|
n@40
|
529 }
|
n@40
|
530
|
n@183
|
531 function convSliderPosToRate(slider)
|
n@51
|
532 {
|
n@51
|
533 var w = document.getElementById('slider').style.width;
|
n@127
|
534 var marginsize = Number(document.getElementById('slider').attributes['marginsize'].value);
|
n@51
|
535 var maxPix = w.substr(0,w.length-2);
|
n@51
|
536 var pix = slider.style.left;
|
n@51
|
537 pix = pix.substr(0,pix.length-2);
|
n@127
|
538 var rate = (pix-marginsize)/maxPix;
|
n@51
|
539 return rate;
|
n@51
|
540 }
|
n@51
|
541
|
n@127
|
542 function resizeWindow(event){
|
n@127
|
543 // Function called when the window has been resized.
|
n@127
|
544 // MANDATORY FUNCTION
|
n@127
|
545
|
n@127
|
546 // Store the slider marker values
|
n@127
|
547 var holdValues = [];
|
n@127
|
548 $(".track-slider").each(function(index,sliderObj){
|
n@127
|
549 holdValues.push(convSliderPosToRate(index));
|
n@127
|
550 });
|
n@127
|
551
|
n@127
|
552 var width = event.target.innerWidth;
|
n@127
|
553 var canvas = document.getElementById('sliderCanvasHolder');
|
n@127
|
554 var sliderDiv = canvas.children[0];
|
n@127
|
555 var sliderScaleDiv = canvas.children[1];
|
n@127
|
556 var marginsize = Number(sliderDiv.attributes['marginsize'].value);
|
n@127
|
557 var w = (marginsize+8)*2;
|
n@127
|
558 sliderDiv.style.width = width - w + 'px';
|
n@127
|
559 var width = width - w;
|
n@127
|
560 // Move sliders into new position
|
n@127
|
561 $(".track-slider").each(function(index,sliderObj){
|
n@127
|
562 var pos = holdValues[index];
|
n@127
|
563 var pix = pos * width;
|
n@127
|
564 sliderObj.style.left = pix+marginsize+'px';
|
n@127
|
565 });
|
n@127
|
566
|
n@127
|
567 // Move scale labels
|
n@127
|
568 $(sliderScaleDiv.children).each(function(index,scaleObj){
|
n@127
|
569 var position = Number(scaleObj.attributes['value'].value);
|
n@127
|
570 var pixelPosition = (position*width)+marginsize;
|
n@127
|
571 scaleObj.style.left = Math.floor((pixelPosition-($(scaleObj).width()/2)))+'px';
|
n@127
|
572 });
|
n@127
|
573 }
|
n@127
|
574
|
n@181
|
575 function pageXMLSave(store, testXML)
|
n@44
|
576 {
|
n@44
|
577 // Saves a specific test page
|
nicholas@129
|
578 var xmlDoc = store;
|
n@50
|
579 // Check if any session wide metrics are enabled
|
nicholas@67
|
580
|
n@181
|
581 var commentShow = testXML.elementComments;
|
nicholas@67
|
582
|
n@50
|
583 var metric = document.createElement('metric');
|
n@50
|
584 if (audioEngineContext.metric.enableTestTimer)
|
n@50
|
585 {
|
n@50
|
586 var testTime = document.createElement('metricResult');
|
n@50
|
587 testTime.id = 'testTime';
|
n@50
|
588 testTime.textContent = audioEngineContext.timer.testDuration;
|
n@50
|
589 metric.appendChild(testTime);
|
n@50
|
590 }
|
n@50
|
591 xmlDoc.appendChild(metric);
|
n@178
|
592 var audioObjects = audioEngineContext.audioObjects;
|
n@178
|
593 for (var i=0; i<audioObjects.length; i++)
|
n@45
|
594 {
|
n@183
|
595 var audioElement = audioEngineContext.audioObjects[i].exportXMLDOM();
|
nicholas@233
|
596 audioElement.setAttribute('presentedId',i);
|
n@45
|
597 xmlDoc.appendChild(audioElement);
|
n@45
|
598 }
|
n@193
|
599
|
n@193
|
600 $(interfaceContext.commentQuestions).each(function(index,element){
|
n@193
|
601 var node = element.exportXMLDOM();
|
n@193
|
602 xmlDoc.appendChild(node);
|
n@193
|
603 });
|
nicholas@129
|
604 store = xmlDoc;
|
nicholas@67
|
605 } |