nickjillings@1341
|
1 /**
|
nickjillings@1341
|
2 * ape.js
|
nickjillings@1341
|
3 * Create the APE interface
|
nickjillings@1341
|
4 */
|
nickjillings@1341
|
5
|
nickjillings@1341
|
6
|
nickjillings@1341
|
7 // Once this is loaded and parsed, begin execution
|
nickjillings@1341
|
8 loadInterface();
|
nickjillings@1341
|
9
|
nickjillings@1341
|
10 function loadInterface() {
|
nicholas@2595
|
11
|
nicholas@2595
|
12 // Get the dimensions of the screen available to the page
|
nicholas@2595
|
13 var width = window.innerWidth;
|
nicholas@2595
|
14 var height = window.innerHeight;
|
nicholas@2595
|
15
|
nicholas@2595
|
16 // The injection point into the HTML page
|
nicholas@2595
|
17 interfaceContext.insertPoint = document.getElementById("topLevelBody");
|
nicholas@2595
|
18 var testContent = document.createElement('div');
|
nicholas@2595
|
19
|
nicholas@2595
|
20 testContent.id = 'testContent';
|
nicholas@2595
|
21
|
nicholas@2595
|
22 // Bindings for interfaceContext
|
nicholas@2595
|
23 interfaceContext.checkAllPlayed = function () {
|
nicholas@2595
|
24 hasBeenPlayed = audioEngineContext.checkAllPlayed();
|
nicholas@2595
|
25 if (hasBeenPlayed.length > 0) // if a fragment has not been played yet
|
nicholas@2595
|
26 {
|
nicholas@2595
|
27 var str = "";
|
nicholas@2595
|
28 if (hasBeenPlayed.length > 1) {
|
nicholas@2595
|
29 for (var i = 0; i < hasBeenPlayed.length; i++) {
|
nicholas@2284
|
30 var ao_id = audioEngineContext.audioObjects[hasBeenPlayed[i]].interfaceDOM.getPresentedId();
|
nicholas@2595
|
31 str = str + ao_id; // start from 1
|
nicholas@2595
|
32 if (i < hasBeenPlayed.length - 2) {
|
nicholas@2595
|
33 str += ", ";
|
nicholas@2595
|
34 } else if (i == hasBeenPlayed.length - 2) {
|
nicholas@2595
|
35 str += " or ";
|
nicholas@2595
|
36 }
|
nicholas@2595
|
37 }
|
nicholas@2313
|
38 str = 'You have not played fragments ' + str + ' yet. Please listen, rate and comment all samples before submitting.';
|
nicholas@2595
|
39 } else {
|
nicholas@2595
|
40 str = 'You have not played fragment ' + (audioEngineContext.audioObjects[hasBeenPlayed[0]].interfaceDOM.getPresentedId()) + ' yet. Please listen, rate and comment all samples before submitting.';
|
nicholas@2595
|
41 }
|
nicholas@2313
|
42 this.storeErrorNode(str);
|
nicholas@2595
|
43 interfaceContext.lightbox.post("Message", str);
|
nicholas@2595
|
44 return false;
|
nicholas@2595
|
45 }
|
nicholas@2595
|
46 return true;
|
nicholas@2595
|
47 };
|
nicholas@2595
|
48
|
nicholas@2595
|
49 interfaceContext.checkAllMoved = function () {
|
nicholas@2595
|
50 var state = true;
|
nicholas@2595
|
51 var str = 'You have not moved the following sliders. ';
|
nicholas@2595
|
52 for (var i = 0; i < this.interfaceSliders.length; i++) {
|
nicholas@2595
|
53 var interfaceTID = [];
|
nicholas@2595
|
54 for (var j = 0; j < this.interfaceSliders[i].metrics.length; j++) {
|
nicholas@2285
|
55 var ao_id = this.interfaceSliders[i].sliders[j].getAttribute("trackIndex");
|
nicholas@2595
|
56 if (this.interfaceSliders[i].metrics[j].wasMoved == false && audioEngineContext.audioObjects[ao_id].interfaceDOM.canMove()) {
|
nicholas@2595
|
57 state = false;
|
nicholas@2595
|
58 interfaceTID.push(j);
|
nicholas@2595
|
59 }
|
nicholas@2595
|
60 }
|
nicholas@2595
|
61 if (interfaceTID.length != 0) {
|
nicholas@2595
|
62 var interfaceName = this.interfaceSliders[i].interfaceObject.title;
|
nicholas@2595
|
63 if (interfaceName == undefined) {
|
nicholas@2595
|
64 str += 'On axis ' + String(i + 1) + ' you must move ';
|
nicholas@2595
|
65 } else {
|
nicholas@2595
|
66 str += 'On axis "' + interfaceName + '" you must move ';
|
nicholas@2595
|
67 }
|
nicholas@2595
|
68 if (interfaceTID.length == 1) {
|
nicholas@2595
|
69 str += 'slider ' + (audioEngineContext.audioObjects[interfaceTID[0]].interfaceDOM.getPresentedId()) + '. '; // start from 1
|
nicholas@2595
|
70 } else {
|
nicholas@2595
|
71 str += 'sliders ';
|
nicholas@2595
|
72 for (var k = 0; k < interfaceTID.length - 1; k++) {
|
nicholas@2595
|
73 str += (audioEngineContext.audioObjects[interfaceTID[k]].interfaceDOM.getPresentedId()) + ', '; // start from 1
|
nicholas@2595
|
74 }
|
nicholas@2595
|
75 str += (audioEngineContext.audioObjects[interfaceTID[interfaceTID.length - 1]].interfaceDOM.getPresentedId()) + '. ';
|
nicholas@2595
|
76 }
|
nicholas@2595
|
77 }
|
nicholas@2595
|
78 }
|
nicholas@2595
|
79 if (state != true) {
|
nicholas@2313
|
80 this.storeErrorNode(str);
|
nicholas@2595
|
81 interfaceContext.lightbox.post("Message", str);
|
nicholas@2595
|
82 console.log(str);
|
nicholas@2595
|
83 }
|
nicholas@2595
|
84 return state;
|
nicholas@2595
|
85 };
|
nicholas@2595
|
86
|
nicholas@2595
|
87 Interface.prototype.checkAllCommented = function () {
|
nicholas@2595
|
88 var audioObjs = audioEngineContext.audioObjects;
|
nicholas@2595
|
89 var audioHolder = testState.stateMap[testState.stateIndex];
|
nicholas@2595
|
90 var state = true;
|
nicholas@2595
|
91 if (audioHolder.elementComments) {
|
nicholas@2595
|
92 var strNums = [];
|
nicholas@2595
|
93 for (var i = 0; i < audioObjs.length; i++) {
|
nicholas@2595
|
94 if (audioObjs[i].commentDOM.trackCommentBox.value.length == 0) {
|
nicholas@2595
|
95 state = false;
|
nicholas@2595
|
96 strNums.push(i);
|
nicholas@2595
|
97 }
|
nicholas@2595
|
98 }
|
nicholas@2595
|
99 if (state == false) {
|
nicholas@2313
|
100 var str = "";
|
nicholas@2595
|
101 if (strNums.length > 1) {
|
nicholas@2595
|
102
|
nicholas@2595
|
103 for (var i = 0; i < strNums.length; i++) {
|
nicholas@2284
|
104 var ao_id = audioEngineContext.audioObjects[strNums[i]].interfaceDOM.getPresentedId();
|
nicholas@2595
|
105 str = str + (ao_id); // start from 1
|
nicholas@2595
|
106 if (i < strNums.length - 2) {
|
nicholas@2595
|
107 str += ", ";
|
nicholas@2595
|
108 } else if (i == strNums.length - 2) {
|
nicholas@2595
|
109 str += " or ";
|
nicholas@2595
|
110 }
|
nicholas@2595
|
111 }
|
nicholas@2313
|
112 str = 'You have not commented on fragments ' + str + ' yet. Please listen, rate and comment all samples before submitting.';
|
nicholas@2595
|
113 } else {
|
nicholas@2595
|
114 str = 'You have not commented on fragment ' + (audioEngineContext.audioObjects[strNums[0]].interfaceDOM.getPresentedId()) + ' yet. Please listen, rate and comment all samples before submitting.';
|
nicholas@2595
|
115 }
|
nicholas@2313
|
116 this.storeErrorNode(str);
|
nicholas@2595
|
117 interfaceContext.lightbox.post("Message", str);
|
nicholas@2313
|
118 console.log(str);
|
nicholas@2595
|
119 }
|
nicholas@2595
|
120 }
|
nicholas@2595
|
121 return state;
|
nicholas@2595
|
122 };
|
nicholas@2595
|
123
|
nicholas@2595
|
124 Interface.prototype.checkScaleRange = function () {
|
nicholas@2595
|
125 var audioObjs = audioEngineContext.audioObjects;
|
nicholas@2595
|
126 var audioHolder = testState.stateMap[testState.stateIndex];
|
nicholas@2595
|
127 var state = true;
|
nicholas@2595
|
128 var str = '';
|
nicholas@2595
|
129 for (var i = 0; i < this.interfaceSliders.length; i++) {
|
nicholas@2595
|
130 var minScale;
|
nicholas@2595
|
131 var maxScale;
|
nicholas@2595
|
132 var interfaceObject = interfaceContext.interfaceSliders[0].interfaceObject;
|
nicholas@2595
|
133 for (var j = 0; j < interfaceObject.options.length; j++) {
|
nicholas@2595
|
134 if (interfaceObject.options[j].check == "scalerange") {
|
nicholas@2595
|
135 minScale = interfaceObject.options[j].min;
|
nicholas@2595
|
136 maxScale = interfaceObject.options[j].max;
|
nicholas@2595
|
137 break;
|
nicholas@2595
|
138 }
|
nicholas@2595
|
139 }
|
nicholas@2595
|
140 var minRanking = convSliderPosToRate(this.interfaceSliders[i].sliders[0]);
|
nicholas@2595
|
141 var maxRanking = minRanking;
|
nicholas@2595
|
142 for (var j = 1; j < this.interfaceSliders[i].sliders.length; j++) {
|
nicholas@2595
|
143 var ranking = convSliderPosToRate(this.interfaceSliders[i].sliders[j]);
|
nicholas@2595
|
144 if (ranking < minRanking) {
|
nicholas@2595
|
145 minRanking = ranking;
|
nicholas@2595
|
146 } else if (ranking > maxRanking) {
|
nicholas@2595
|
147 maxRanking = ranking;
|
nicholas@2595
|
148 }
|
nicholas@2595
|
149 }
|
nicholas@2595
|
150 if (minRanking > minScale || maxRanking < maxScale) {
|
nicholas@2595
|
151 state = false;
|
nicholas@2595
|
152 str += 'On axis "' + this.interfaceSliders[i].interfaceObject.title + '" you have not used the full width of the scale. ';
|
nicholas@2595
|
153 }
|
nicholas@2595
|
154 }
|
nicholas@2595
|
155 if (state != true) {
|
nicholas@2313
|
156 this.storeErrorNode(str);
|
nicholas@2595
|
157 interfaceContext.lightbox.post("Message", str);
|
nicholas@2595
|
158 console.log(str);
|
nicholas@2595
|
159 }
|
nicholas@2595
|
160 return state;
|
nicholas@2595
|
161 };
|
nicholas@2595
|
162
|
nicholas@2595
|
163 Interface.prototype.objectSelected = null;
|
nicholas@2595
|
164 Interface.prototype.objectMoved = false;
|
nicholas@2595
|
165 Interface.prototype.selectObject = function (object) {
|
nicholas@2595
|
166 if (this.objectSelected == null) {
|
nicholas@2595
|
167 this.objectSelected = object;
|
nicholas@2595
|
168 this.objectMoved = false;
|
nicholas@2595
|
169 }
|
nicholas@2595
|
170 };
|
nicholas@2595
|
171 Interface.prototype.moveObject = function () {
|
nicholas@2595
|
172 if (this.objectMoved == false) {
|
nicholas@2595
|
173 this.objectMoved = true;
|
nicholas@2595
|
174 }
|
nicholas@2595
|
175 };
|
nicholas@2595
|
176 Interface.prototype.releaseObject = function () {
|
nicholas@2595
|
177 this.objectSelected = null;
|
nicholas@2595
|
178 this.objectMoved = false;
|
nicholas@2595
|
179 };
|
nicholas@2595
|
180 Interface.prototype.getSelectedObject = function () {
|
nicholas@2595
|
181 return this.objectSelected;
|
nicholas@2595
|
182 };
|
nicholas@2595
|
183 Interface.prototype.hasSelectedObjectMoved = function () {
|
nicholas@2595
|
184 return this.objectMoved;
|
nicholas@2595
|
185 };
|
nicholas@2595
|
186
|
nicholas@2595
|
187 // Bindings for slider interfaces
|
nicholas@2595
|
188 Interface.prototype.interfaceSliders = [];
|
nicholas@2595
|
189
|
nicholas@2595
|
190 // Bindings for audioObjects
|
nicholas@2595
|
191
|
nicholas@2595
|
192 // Create the top div for the Title element
|
nicholas@2595
|
193 var titleAttr = specification.title;
|
nicholas@2595
|
194 var title = document.createElement('div');
|
nicholas@2595
|
195 title.className = "title";
|
nicholas@2595
|
196 title.align = "center";
|
nicholas@2595
|
197 var titleSpan = document.createElement('span');
|
nicholas@2470
|
198 titleSpan.id = "test-title";
|
nicholas@2595
|
199
|
nicholas@2595
|
200 // Set title to that defined in XML, else set to default
|
nicholas@2595
|
201 if (titleAttr != undefined) {
|
nicholas@2595
|
202 titleSpan.textContent = titleAttr;
|
nicholas@2595
|
203 } else {
|
nicholas@2595
|
204 titleSpan.textContent = 'Listening test';
|
nicholas@2595
|
205 }
|
nicholas@2595
|
206 // Insert the titleSpan element into the title div element.
|
nicholas@2595
|
207 title.appendChild(titleSpan);
|
nicholas@2595
|
208
|
nicholas@2595
|
209 // Create Interface buttons!
|
nicholas@2595
|
210 var interfaceButtons = document.createElement('div');
|
nicholas@2595
|
211 interfaceButtons.id = 'interface-buttons';
|
nicholas@2595
|
212
|
nicholas@2595
|
213 // Create playback start/stop points
|
nicholas@2595
|
214 var playback = document.createElement("button");
|
nicholas@2595
|
215 playback.innerHTML = 'Stop';
|
nicholas@2595
|
216 playback.id = 'playback-button';
|
nicholas@2595
|
217 // onclick function. Check if it is playing or not, call the correct function in the
|
nicholas@2595
|
218 // audioEngine, change the button text to reflect the next state.
|
nicholas@2595
|
219 playback.onclick = function () {
|
nicholas@2595
|
220 if (audioEngineContext.status == 1) {
|
nicholas@2595
|
221 audioEngineContext.stop();
|
nicholas@2595
|
222 this.innerHTML = 'Stop';
|
nickjillings@1341
|
223 var time = audioEngineContext.timer.getTestTime();
|
nickjillings@1341
|
224 console.log('Stopped at ' + time); // DEBUG/SAFETY
|
nicholas@2595
|
225 }
|
nicholas@2595
|
226 };
|
nicholas@2595
|
227 // Create Submit (save) button
|
nicholas@2595
|
228 var submit = document.createElement("button");
|
nicholas@2595
|
229 submit.innerHTML = 'Next';
|
nicholas@2595
|
230 submit.onclick = buttonSubmitClick;
|
nicholas@2595
|
231 submit.id = 'submit-button';
|
nicholas@2595
|
232 // Append the interface buttons into the interfaceButtons object.
|
nicholas@2595
|
233 interfaceButtons.appendChild(playback);
|
nicholas@2595
|
234 interfaceButtons.appendChild(submit);
|
nicholas@2595
|
235
|
nicholas@2595
|
236 var sliderHolder = document.createElement("div");
|
nicholas@2595
|
237 sliderHolder.id = "slider-holder";
|
nicholas@2595
|
238
|
nicholas@2396
|
239 // Create outside reference holder
|
nicholas@2396
|
240 var outsideRef = document.createElement("div");
|
nicholas@2396
|
241 outsideRef.id = "outside-reference-holder";
|
nicholas@2595
|
242
|
nicholas@2595
|
243 // Global parent for the comment boxes on the page
|
nicholas@2595
|
244 var feedbackHolder = document.createElement('div');
|
nicholas@2595
|
245 feedbackHolder.id = 'feedbackHolder';
|
nicholas@2595
|
246
|
nicholas@2595
|
247 testContent.style.zIndex = 1;
|
nicholas@2595
|
248 interfaceContext.insertPoint.innerHTML = ""; // Clear the current schema
|
nicholas@2595
|
249
|
nicholas@2595
|
250 // Inject into HTML
|
nicholas@2595
|
251 testContent.appendChild(title); // Insert the title
|
nicholas@2595
|
252 testContent.appendChild(interfaceButtons);
|
nicholas@2396
|
253 testContent.appendChild(outsideRef);
|
nicholas@2595
|
254 testContent.appendChild(sliderHolder);
|
nicholas@2595
|
255 testContent.appendChild(feedbackHolder);
|
nicholas@2595
|
256 interfaceContext.insertPoint.appendChild(testContent);
|
nickjillings@1341
|
257
|
nicholas@2595
|
258 // Load the full interface
|
nicholas@2595
|
259 testState.initialise();
|
nicholas@2595
|
260 testState.advanceState();
|
nicholas@2595
|
261
|
nickjillings@1341
|
262 }
|
nickjillings@1341
|
263
|
nicholas@2595
|
264 function loadTest(audioHolderObject) {
|
nicholas@2595
|
265 var width = window.innerWidth;
|
nicholas@2595
|
266 var height = window.innerHeight;
|
nicholas@2595
|
267 var id = audioHolderObject.id;
|
nicholas@2595
|
268
|
nicholas@2595
|
269 interfaceContext.interfaceSliders = [];
|
nicholas@2595
|
270
|
nicholas@2595
|
271 var feedbackHolder = document.getElementById('feedbackHolder');
|
nicholas@2595
|
272 var sliderHolder = document.getElementById('slider-holder');
|
nicholas@2595
|
273 feedbackHolder.innerHTML = "";
|
nicholas@2595
|
274 sliderHolder.innerHTML = "";
|
nicholas@2595
|
275
|
nicholas@2470
|
276 // Set the page title
|
nicholas@2470
|
277 if (typeof audioHolderObject.title == "string" && audioHolderObject.title.length > 0) {
|
nicholas@2470
|
278 document.getElementById("test-title").textContent = audioHolderObject.title
|
nicholas@2470
|
279 }
|
nicholas@2595
|
280
|
nicholas@2595
|
281
|
nicholas@2595
|
282 // Delete outside reference
|
nicholas@2595
|
283 document.getElementById("outside-reference-holder").innerHTML = "";
|
nicholas@2595
|
284
|
nicholas@2595
|
285 var interfaceObj = audioHolderObject.interfaces;
|
nicholas@2595
|
286 for (var k = 0; k < interfaceObj.length; k++) {
|
nicholas@2595
|
287 // Create the div box to center align
|
nicholas@2595
|
288 interfaceContext.interfaceSliders.push(new interfaceSliderHolder(interfaceObj[k]));
|
nicholas@2595
|
289 }
|
nicholas@2595
|
290
|
nickjillings@1356
|
291 var interfaceList = audioHolderObject.interfaces.concat(specification.interfaces);
|
nicholas@2595
|
292 for (var k = 0; k < interfaceList.length; k++) {
|
nicholas@2595
|
293 for (var i = 0; i < interfaceList[k].options.length; i++) {
|
nicholas@2595
|
294 if (interfaceList[k].options[i].type == 'show' && interfaceList[k].options[i].name == 'playhead') {
|
nickjillings@1356
|
295 var playbackHolder = document.getElementById('playback-holder');
|
nicholas@2595
|
296 if (playbackHolder == null) {
|
nickjillings@1356
|
297 playbackHolder = document.createElement('div');
|
nickjillings@1356
|
298 playbackHolder.style.width = "100%";
|
nickjillings@1356
|
299 playbackHolder.align = 'center';
|
nickjillings@1356
|
300 playbackHolder.appendChild(interfaceContext.playhead.object);
|
nickjillings@1356
|
301 feedbackHolder.appendChild(playbackHolder);
|
nickjillings@1356
|
302 }
|
nicholas@2595
|
303 } else if (interfaceList[k].options[i].type == 'show' && interfaceList[k].options[i].name == 'page-count') {
|
nickjillings@1356
|
304 var pagecountHolder = document.getElementById('page-count');
|
nicholas@2595
|
305 if (pagecountHolder == null) {
|
nickjillings@1356
|
306 pagecountHolder = document.createElement('div');
|
nickjillings@1356
|
307 pagecountHolder.id = 'page-count';
|
nickjillings@1356
|
308 }
|
nicholas@2595
|
309 pagecountHolder.innerHTML = '<span>Page ' + (testState.stateIndex + 1) + ' of ' + testState.stateMap.length + '</span>';
|
nickjillings@1356
|
310 var inject = document.getElementById('interface-buttons');
|
nickjillings@1356
|
311 inject.appendChild(pagecountHolder);
|
nickjillings@1356
|
312 } else if (interfaceList[k].options[i].type == 'show' && interfaceList[k].options[i].name == 'volume') {
|
nicholas@2595
|
313 if (document.getElementById('master-volume-holder') == null) {
|
nickjillings@1356
|
314 feedbackHolder.appendChild(interfaceContext.volume.object);
|
nickjillings@1356
|
315 }
|
n@2407
|
316 } else if (interfaceList[k].options[i].type == 'show' && interfaceList[k].options[i].name == 'comments') {
|
n@2407
|
317 var commentHolder = document.createElement('div');
|
n@2407
|
318 commentHolder.id = 'commentHolder';
|
n@2407
|
319 document.getElementById('testContent').appendChild(commentHolder);
|
nicholas@2595
|
320 interfaceContext.commentBoxes.showCommentBoxes(feedbackHolder, true);
|
n@2407
|
321 break;
|
nickjillings@1356
|
322 }
|
nickjillings@1356
|
323 }
|
nickjillings@1356
|
324 }
|
nickjillings@1341
|
325
|
nicholas@2595
|
326 var commentBoxPrefix = "Comment on fragment";
|
nicholas@2595
|
327
|
nicholas@2595
|
328 var commentShow = audioHolderObject.elementComments;
|
nicholas@2595
|
329
|
nicholas@2595
|
330 var loopPlayback = audioHolderObject.loop;
|
nicholas@2595
|
331
|
nicholas@2595
|
332 currentTestHolder = document.createElement('audioHolder');
|
nicholas@2595
|
333 currentTestHolder.id = audioHolderObject.id;
|
nicholas@2595
|
334 currentTestHolder.repeatCount = audioHolderObject.repeatCount;
|
nicholas@2595
|
335
|
nicholas@2595
|
336 // Find all the audioElements from the audioHolder
|
nicholas@2595
|
337 $(audioHolderObject.audioElements).each(function (index, element) {
|
nicholas@2595
|
338 // Find URL of track
|
nicholas@2595
|
339 // In this jQuery loop, variable 'this' holds the current audioElement.
|
nicholas@2595
|
340 var audioObject = audioEngineContext.newTrack(element);
|
nicholas@2595
|
341 // Check if an outside reference
|
nicholas@2595
|
342 if (element.type == 'outside-reference') {
|
nicholas@2595
|
343 // Construct outside reference;
|
nicholas@2595
|
344 var orNode = new outsideReferenceDOM(audioObject, index, document.getElementById("outside-reference-holder"));
|
nicholas@2595
|
345 audioObject.bindInterface(orNode);
|
nicholas@2595
|
346 } else {
|
nicholas@2595
|
347 // Create a slider per track
|
nicholas@2595
|
348 var sliderNode = new sliderObject(audioObject, interfaceObj, index);
|
nicholas@2595
|
349 audioObject.bindInterface(sliderNode);
|
nickjillings@2117
|
350 interfaceContext.commentBoxes.createCommentBox(audioObject);
|
nicholas@2595
|
351 }
|
nicholas@2595
|
352 });
|
nicholas@2595
|
353
|
nicholas@2595
|
354 // Initialse the interfaceSlider object metrics
|
nicholas@2595
|
355
|
nicholas@2595
|
356 $('.track-slider').mousedown(function (event) {
|
nicholas@2595
|
357 interfaceContext.selectObject($(this)[0]);
|
nicholas@2595
|
358 });
|
nicholas@2595
|
359 $('.track-slider').on('touchstart', null, function (event) {
|
nicholas@2595
|
360 interfaceContext.selectObject($(this)[0]);
|
nicholas@2595
|
361 });
|
nicholas@2595
|
362
|
nicholas@2595
|
363 $('.track-slider').mousemove(function (event) {
|
nicholas@2595
|
364 event.preventDefault();
|
nicholas@2595
|
365 });
|
nicholas@2595
|
366
|
nicholas@2595
|
367 $('.slider').mousemove(function (event) {
|
nicholas@2595
|
368 event.preventDefault();
|
nicholas@2595
|
369 var obj = interfaceContext.getSelectedObject();
|
nicholas@2595
|
370 if (obj == null) {
|
nicholas@2595
|
371 return;
|
nicholas@2595
|
372 }
|
nicholas@2595
|
373 var move = event.clientX - 6;
|
nicholas@2459
|
374 var w = $(event.currentTarget).width();
|
nicholas@2595
|
375 move = Math.max(50, move);
|
nicholas@2595
|
376 move = Math.min(w + 50, move);
|
nicholas@2595
|
377 $(obj).css("left", move + "px");
|
nicholas@2595
|
378 interfaceContext.moveObject();
|
nicholas@2595
|
379 });
|
nicholas@2595
|
380
|
nicholas@2595
|
381 $('.slider').on('touchmove', null, function (event) {
|
nicholas@2595
|
382 event.preventDefault();
|
nicholas@2595
|
383 var obj = interfaceContext.getSelectedObject();
|
nicholas@2595
|
384 if (obj == null) {
|
nicholas@2595
|
385 return;
|
nicholas@2595
|
386 }
|
nicholas@2595
|
387 var move = event.originalEvent.targetTouches[0].clientX - 6;
|
nicholas@2459
|
388 var w = $(event.currentTarget).width();
|
nicholas@2595
|
389 move = Math.max(50, move);
|
nicholas@2595
|
390 move = Math.min(w + 50, move);
|
nicholas@2595
|
391 $(obj).css("left", move + "px");
|
nicholas@2595
|
392 interfaceContext.moveObject();
|
nicholas@2595
|
393 });
|
nickjillings@1341
|
394
|
nicholas@2595
|
395 $(document).mouseup(function (event) {
|
nicholas@2595
|
396 event.preventDefault();
|
nicholas@2595
|
397 var obj = interfaceContext.getSelectedObject();
|
nicholas@2595
|
398 if (obj == null) {
|
nicholas@2595
|
399 return;
|
nicholas@2595
|
400 }
|
nicholas@2595
|
401 var interfaceID = obj.parentElement.getAttribute("interfaceid");
|
nicholas@2595
|
402 var trackID = obj.getAttribute("trackindex");
|
nicholas@2595
|
403 if (interfaceContext.hasSelectedObjectMoved() == true) {
|
nicholas@2595
|
404 var l = $(obj).css("left");
|
nicholas@2595
|
405 var id = obj.getAttribute('trackIndex');
|
nicholas@2595
|
406 var time = audioEngineContext.timer.getTestTime();
|
nicholas@2595
|
407 var rate = convSliderPosToRate(obj);
|
nicholas@2595
|
408 audioEngineContext.audioObjects[id].metric.moved(time, rate);
|
nicholas@2595
|
409 interfaceContext.interfaceSliders[interfaceID].metrics[trackID].moved(time, rate);
|
nicholas@2595
|
410 console.log("slider " + id + " moved to " + rate + ' (' + time + ')');
|
nicholas@2595
|
411 obj.setAttribute("slider-value", convSliderPosToRate(obj));
|
nicholas@2595
|
412 } else {
|
nicholas@2595
|
413 var id = Number(obj.attributes['trackIndex'].value);
|
nicholas@2595
|
414 //audioEngineContext.metric.sliderPlayed(id);
|
nicholas@2595
|
415 audioEngineContext.play(id);
|
nicholas@2595
|
416 }
|
nicholas@2595
|
417 interfaceContext.releaseObject();
|
nicholas@2595
|
418 });
|
nicholas@2595
|
419
|
nicholas@2595
|
420 $('.slider').on('touchend', null, function (event) {
|
nicholas@2595
|
421 var obj = interfaceContext.getSelectedObject();
|
nicholas@2595
|
422 if (obj == null) {
|
nicholas@2595
|
423 return;
|
nicholas@2595
|
424 }
|
nicholas@2595
|
425 var interfaceID = obj.parentElement.getAttribute("interfaceid");
|
nicholas@2595
|
426 var trackID = obj.getAttribute("trackindex");
|
nicholas@2595
|
427 if (interfaceContext.hasSelectedObjectMoved() == true) {
|
nicholas@2595
|
428 var l = $(obj).css("left");
|
nicholas@2595
|
429 var id = obj.getAttribute('trackIndex');
|
nicholas@2595
|
430 var time = audioEngineContext.timer.getTestTime();
|
nicholas@2595
|
431 var rate = convSliderPosToRate(obj);
|
nicholas@2595
|
432 audioEngineContext.audioObjects[id].metric.moved(time, rate);
|
nicholas@2595
|
433 interfaceContext.interfaceSliders[interfaceID].metrics[trackID].moved(time, rate);
|
nicholas@2595
|
434 console.log("slider " + id + " moved to " + rate + ' (' + time + ')');
|
nicholas@2595
|
435 }
|
nicholas@2595
|
436 interfaceContext.releaseObject();
|
nicholas@2595
|
437 });
|
nicholas@2595
|
438
|
n@2407
|
439 var interfaceList = audioHolderObject.interfaces.concat(specification.interfaces);
|
nicholas@2595
|
440 for (var k = 0; k < interfaceList.length; k++) {
|
nicholas@2595
|
441 for (var i = 0; i < interfaceList[k].options.length; i++) {
|
nicholas@2595
|
442 if (interfaceList[k].options[i].type == 'show' && interfaceList[k].options[i].name == 'playhead') {
|
n@2407
|
443 var playbackHolder = document.getElementById('playback-holder');
|
nicholas@2595
|
444 if (playbackHolder == null) {
|
n@2407
|
445 playbackHolder = document.createElement('div');
|
n@2407
|
446 playbackHolder.id = "playback-holder";
|
n@2407
|
447 playbackHolder.style.width = "100%";
|
n@2407
|
448 playbackHolder.align = 'center';
|
n@2407
|
449 playbackHolder.appendChild(interfaceContext.playhead.object);
|
n@2407
|
450 feedbackHolder.appendChild(playbackHolder);
|
n@2407
|
451 }
|
nicholas@2595
|
452 } else if (interfaceList[k].options[i].type == 'show' && interfaceList[k].options[i].name == 'page-count') {
|
n@2407
|
453 var pagecountHolder = document.getElementById('page-count');
|
nicholas@2595
|
454 if (pagecountHolder == null) {
|
n@2407
|
455 pagecountHolder = document.createElement('div');
|
n@2407
|
456 pagecountHolder.id = 'page-count';
|
n@2407
|
457 }
|
nicholas@2595
|
458 pagecountHolder.innerHTML = '<span>Page ' + (testState.stateIndex + 1) + ' of ' + testState.stateMap.length + '</span>';
|
n@2407
|
459 var inject = document.getElementById('interface-buttons');
|
n@2407
|
460 inject.appendChild(pagecountHolder);
|
n@2407
|
461 } else if (interfaceList[k].options[i].type == 'show' && interfaceList[k].options[i].name == 'volume') {
|
nicholas@2595
|
462 if (document.getElementById('master-volume-holder') == null) {
|
n@2407
|
463 feedbackHolder.appendChild(interfaceContext.volume.object);
|
n@2407
|
464 }
|
n@2407
|
465 } else if (interfaceList[k].options[i].type == 'show' && interfaceList[k].options[i].name == 'comments') {
|
nicholas@2595
|
466 interfaceContext.commentBoxes.showCommentBoxes(feedbackHolder, true);
|
n@2407
|
467 break;
|
n@2407
|
468 }
|
n@2407
|
469 }
|
n@2407
|
470 }
|
nicholas@2595
|
471
|
nicholas@2595
|
472 $(audioHolderObject.commentQuestions).each(function (index, element) {
|
nicholas@2595
|
473 var node = interfaceContext.createCommentQuestion(element);
|
nicholas@2595
|
474 feedbackHolder.appendChild(node.holder);
|
nicholas@2595
|
475 });
|
nicholas@2595
|
476
|
nicholas@2595
|
477 //testWaitIndicator();
|
nickjillings@1341
|
478 }
|
nickjillings@1341
|
479
|
nicholas@2595
|
480 function interfaceSliderHolder(interfaceObject) {
|
nicholas@2595
|
481 this.sliders = [];
|
nicholas@2595
|
482 this.metrics = [];
|
nicholas@2595
|
483 this.id = document.getElementsByClassName("sliderCanvasDiv").length;
|
nicholas@2595
|
484 this.name = interfaceObject.name;
|
nicholas@2595
|
485 this.interfaceObject = interfaceObject;
|
nicholas@2595
|
486 this.sliderDOM = document.createElement('div');
|
nicholas@2595
|
487 this.sliderDOM.className = 'sliderCanvasDiv';
|
nicholas@2595
|
488 this.sliderDOM.id = 'sliderCanvasHolder-' + this.id;
|
nicholas@2595
|
489
|
nicholas@2595
|
490 var pagetitle = document.createElement('div');
|
nicholas@2595
|
491 pagetitle.className = "pageTitle";
|
nicholas@2595
|
492 pagetitle.align = "center";
|
nicholas@2595
|
493 var titleSpan = document.createElement('span');
|
nicholas@2595
|
494 titleSpan.id = "pageTitle-" + this.id;
|
nicholas@2595
|
495 if (interfaceObject.title != undefined && typeof interfaceObject.title == "string") {
|
nicholas@2595
|
496 titleSpan.textContent = interfaceObject.title;
|
nicholas@2595
|
497 } else {
|
nicholas@2595
|
498 titleSpan.textContent = "Axis " + String(this.id + 1);
|
nicholas@2595
|
499 }
|
nicholas@2595
|
500 pagetitle.appendChild(titleSpan);
|
nicholas@2595
|
501 this.sliderDOM.appendChild(pagetitle);
|
nicholas@2595
|
502
|
nicholas@2595
|
503 // Create the slider box to hold the slider elements
|
nicholas@2595
|
504 this.canvas = document.createElement('div');
|
nicholas@2595
|
505 if (this.name != undefined)
|
nicholas@2595
|
506 this.canvas.id = 'slider-' + this.name;
|
nicholas@2595
|
507 else
|
nicholas@2595
|
508 this.canvas.id = 'slider-' + this.id;
|
nicholas@2595
|
509 this.canvas.setAttribute("interfaceid", this.id);
|
nicholas@2595
|
510 this.canvas.className = 'slider';
|
nicholas@2595
|
511 this.canvas.align = "left";
|
nicholas@2595
|
512 this.canvas.addEventListener('dragover', function (event) {
|
nicholas@2595
|
513 event.preventDefault();
|
nicholas@2595
|
514 event.dataTransfer.effectAllowed = 'none';
|
nicholas@2595
|
515 event.dataTransfer.dropEffect = 'copy';
|
nicholas@2595
|
516 return false;
|
nicholas@2595
|
517 }, false);
|
nicholas@2595
|
518 this.sliderDOM.appendChild(this.canvas);
|
nicholas@2595
|
519
|
nicholas@2595
|
520 // Create the div to hold any scale objects
|
nicholas@2595
|
521 this.scale = document.createElement('div');
|
nicholas@2595
|
522 this.scale.className = 'sliderScale';
|
nicholas@2595
|
523 this.scale.id = 'sliderScaleHolder-' + this.id;
|
nicholas@2595
|
524 this.scale.align = 'left';
|
nicholas@2595
|
525 this.sliderDOM.appendChild(this.scale);
|
nicholas@2595
|
526 var positionScale = this.canvas.style.width.substr(0, this.canvas.style.width.length - 2);
|
nicholas@2595
|
527 var offset = 50;
|
nickjillings@1317
|
528 var dest = document.getElementById("slider-holder").appendChild(this.sliderDOM);
|
nicholas@2595
|
529 for (var scaleObj of interfaceObject.scales) {
|
nicholas@2595
|
530 var position = Number(scaleObj.position) * 0.01;
|
nicholas@2595
|
531 var pixelPosition = (position * $(this.canvas).width()) + offset;
|
nicholas@2595
|
532 var scaleDOM = document.createElement('span');
|
nicholas@2391
|
533 scaleDOM.className = "ape-marker-text";
|
nicholas@2595
|
534 scaleDOM.textContent = scaleObj.text;
|
nicholas@2595
|
535 scaleDOM.setAttribute('value', position)
|
nicholas@2595
|
536 this.scale.appendChild(scaleDOM);
|
nicholas@2595
|
537 scaleDOM.style.left = Math.floor((pixelPosition - ($(scaleDOM).width() / 2))) + 'px';
|
nicholas@2595
|
538 }
|
nicholas@2595
|
539
|
nicholas@2595
|
540 this.createSliderObject = function (audioObject, label) {
|
nicholas@2595
|
541 var trackObj = document.createElement('div');
|
nickjillings@1317
|
542 trackObj.align = "center";
|
nicholas@2595
|
543 trackObj.className = 'track-slider track-slider-disabled track-slider-' + audioObject.id;
|
nicholas@2595
|
544 trackObj.id = 'track-slider-' + this.id + '-' + audioObject.id;
|
nicholas@2595
|
545 trackObj.setAttribute('trackIndex', audioObject.id);
|
nicholas@2595
|
546 if (this.name != undefined) {
|
nicholas@2595
|
547 trackObj.setAttribute('interface-name', this.name);
|
nicholas@2595
|
548 } else {
|
nicholas@2595
|
549 trackObj.setAttribute('interface-name', this.id);
|
nicholas@2595
|
550 }
|
nicholas@2595
|
551 var offset = 50;
|
nicholas@2595
|
552 // Distribute it randomnly
|
nicholas@2595
|
553 var w = window.innerWidth - (offset + 8) * 2;
|
nicholas@2595
|
554 w = Math.random() * w;
|
nicholas@2595
|
555 w = Math.floor(w + (offset + 8));
|
nicholas@2595
|
556 trackObj.style.left = w + 'px';
|
nicholas@2595
|
557 this.canvas.appendChild(trackObj);
|
nicholas@2595
|
558 this.sliders.push(trackObj);
|
nicholas@2595
|
559 this.metrics.push(new metricTracker(this));
|
nicholas@2595
|
560 var labelHolder = document.createElement("span");
|
nickjillings@2168
|
561 labelHolder.textContent = label;
|
nickjillings@2168
|
562 trackObj.appendChild(labelHolder);
|
nicholas@2391
|
563 var rate = convSliderPosToRate(trackObj);
|
nicholas@2595
|
564 this.metrics[this.metrics.length - 1].initialise(rate);
|
nicholas@2595
|
565 trackObj.setAttribute("slider-value", rate);
|
nicholas@2595
|
566 return trackObj;
|
nicholas@2595
|
567 };
|
nicholas@2595
|
568
|
nicholas@2595
|
569 this.resize = function (event) {
|
nicholas@2595
|
570 var width = window.innerWidth;
|
nicholas@2595
|
571 var sliderDiv = this.canvas;
|
nicholas@2595
|
572 var sliderScaleDiv = this.scale;
|
nicholas@2595
|
573 var width = $(sliderDiv).width();
|
nicholas@2391
|
574 var marginsize = 50;
|
nicholas@2595
|
575 // Move sliders into new position
|
nicholas@2595
|
576 for (var index = 0; index < this.sliders.length; index++) {
|
nicholas@2595
|
577 var pix = Number(this.sliders[index].getAttribute("slider-value")) * width;
|
nicholas@2595
|
578 this.sliders[index].style.left = (pix + marginsize) + 'px';
|
nicholas@2595
|
579 }
|
nicholas@2595
|
580
|
nicholas@2595
|
581 // Move scale labels
|
nicholas@2595
|
582 for (var index = 0; index < this.scale.children.length; index++) {
|
nicholas@2595
|
583 var scaleObj = this.scale.children[index];
|
nicholas@2595
|
584 var position = Number(scaleObj.attributes['value'].value);
|
nicholas@2595
|
585 var pixelPosition = (position * width) + marginsize;
|
nicholas@2595
|
586 scaleObj.style.left = Math.floor((pixelPosition - ($(scaleObj).width() / 2))) + 'px';
|
nicholas@2595
|
587 }
|
nicholas@2595
|
588 };
|
nickjillings@1341
|
589 }
|
nickjillings@1341
|
590
|
nicholas@2595
|
591 function sliderObject(audioObject, interfaceObjects, index) {
|
nicholas@2595
|
592 // Create a new slider object;
|
nicholas@2595
|
593 this.parent = audioObject;
|
nicholas@2595
|
594 this.trackSliderObjects = [];
|
nickjillings@2168
|
595 this.label = null;
|
n@2428
|
596 this.playing = false;
|
nicholas@2595
|
597 switch (audioObject.specification.parent.label) {
|
nickjillings@2168
|
598 case "letter":
|
nickjillings@2168
|
599 this.label = String.fromCharCode(97 + index);
|
nickjillings@2168
|
600 break;
|
nickjillings@2168
|
601 case "capital":
|
nickjillings@2168
|
602 this.label = String.fromCharCode(65 + index);
|
nickjillings@2168
|
603 break;
|
nickjillings@2168
|
604 case "none":
|
nickjillings@2168
|
605 this.label = "";
|
nickjillings@2168
|
606 break;
|
nickjillings@2168
|
607 default:
|
nicholas@2595
|
608 this.label = "" + (index + 1);
|
nickjillings@2168
|
609 break;
|
nickjillings@2168
|
610 }
|
nicholas@2595
|
611 for (var i = 0; i < interfaceContext.interfaceSliders.length; i++) {
|
nicholas@2595
|
612 var trackObj = interfaceContext.interfaceSliders[i].createSliderObject(audioObject, this.label);
|
nicholas@2595
|
613 this.trackSliderObjects.push(trackObj);
|
nicholas@2595
|
614 }
|
nickjillings@1341
|
615
|
nicholas@2595
|
616 // Onclick, switch playback to that track
|
nicholas@2595
|
617
|
nicholas@2595
|
618 this.enable = function () {
|
nicholas@2595
|
619 if (this.parent.state == 1) {
|
nicholas@2595
|
620 $(this.trackSliderObjects).each(function (i, trackObj) {
|
nicholas@2595
|
621 $(trackObj).removeClass('track-slider-disabled');
|
nicholas@2595
|
622 });
|
nicholas@2595
|
623 }
|
nicholas@2595
|
624 };
|
nicholas@2595
|
625 this.updateLoading = function (progress) {
|
nicholas@2595
|
626 if (progress != 100) {
|
nicholas@2595
|
627 progress = String(progress);
|
nicholas@2595
|
628 progress = progress.split('.')[0];
|
nicholas@2595
|
629 this.trackSliderObjects[0].children[0].textContent = progress + '%';
|
nicholas@2595
|
630 } else {
|
nicholas@2595
|
631 this.trackSliderObjects[0].children[0].textContent = this.label;
|
nicholas@2595
|
632 }
|
nicholas@2595
|
633 };
|
nicholas@2595
|
634 this.startPlayback = function () {
|
nickjillings@1360
|
635 $('.track-slider').removeClass('track-slider-playing');
|
nicholas@2595
|
636 var name = ".track-slider-" + this.parent.id;
|
nickjillings@1360
|
637 $(name).addClass('track-slider-playing');
|
nickjillings@1360
|
638 $('.comment-div').removeClass('comment-box-playing');
|
nicholas@2595
|
639 $('#comment-div-' + this.parent.id).addClass('comment-box-playing');
|
n@2428
|
640 $('.outside-reference').removeClass('track-slider-playing');
|
n@2428
|
641 this.playing = true;
|
nicholas@2595
|
642
|
n@2428
|
643 if (this.parent.specification.parent.playOne || specification.playOne) {
|
n@2428
|
644 $('.track-slider').addClass('track-slider-disabled');
|
n@2428
|
645 $('.outside-reference').addClass('track-slider-disabled');
|
n@2428
|
646 }
|
nickjillings@1360
|
647 };
|
nicholas@2595
|
648 this.stopPlayback = function () {
|
n@2428
|
649 if (this.playing) {
|
n@2428
|
650 this.playing = false;
|
nicholas@2595
|
651 var name = ".track-slider-" + this.parent.id;
|
n@2428
|
652 $(name).removeClass('track-slider-playing');
|
nicholas@2595
|
653 $('#comment-div-' + this.parent.id).removeClass('comment-box-playing');
|
n@2428
|
654 $('.track-slider').removeClass('track-slider-disabled');
|
n@2428
|
655 $('.outside-reference').removeClass('track-slider-disabled');
|
n@2428
|
656 }
|
nickjillings@1360
|
657 };
|
nicholas@2595
|
658 this.exportXMLDOM = function (audioObject) {
|
nicholas@2595
|
659 // Called by the audioObject holding this element. Must be present
|
nicholas@2595
|
660 var obj = [];
|
nicholas@2595
|
661 $(this.trackSliderObjects).each(function (i, trackObj) {
|
nicholas@2595
|
662 var node = storage.document.createElement('value');
|
nicholas@2595
|
663 node.setAttribute("interface-name", trackObj.getAttribute("interface-name"));
|
nicholas@2595
|
664 node.textContent = convSliderPosToRate(trackObj);
|
nicholas@2595
|
665 obj.push(node);
|
nicholas@2595
|
666 });
|
nicholas@2595
|
667
|
nicholas@2595
|
668 return obj;
|
nicholas@2595
|
669 };
|
nicholas@2595
|
670 this.getValue = function () {
|
nicholas@2595
|
671 return convSliderPosToRate(this.trackSliderObjects[0]);
|
nicholas@2595
|
672 };
|
nicholas@2595
|
673 this.getPresentedId = function () {
|
nicholas@2595
|
674 return this.label;
|
nicholas@2595
|
675 };
|
nicholas@2595
|
676 this.canMove = function () {
|
nicholas@2595
|
677 return true;
|
nicholas@2595
|
678 };
|
nicholas@2595
|
679 this.error = function () {
|
nicholas@2595
|
680 // audioObject has an error!!
|
nickjillings@2113
|
681 this.playback.textContent = "Error";
|
nickjillings@2113
|
682 $(this.playback).addClass("error-colour");
|
nickjillings@2113
|
683 }
|
nickjillings@1341
|
684 }
|
nickjillings@1341
|
685
|
nicholas@2595
|
686 function outsideReferenceDOM(audioObject, index, inject) {
|
nicholas@2595
|
687 this.parent = audioObject;
|
nicholas@2595
|
688 this.outsideReferenceHolder = document.createElement('div');
|
nicholas@2595
|
689 this.outsideReferenceHolder.id = 'outside-reference';
|
nicholas@2595
|
690 this.outsideReferenceHolder.className = 'outside-reference track-slider-disabled';
|
nicholas@2595
|
691 var outsideReferenceHolderspan = document.createElement('span');
|
nicholas@2595
|
692 outsideReferenceHolderspan.textContent = 'Reference';
|
nicholas@2595
|
693 this.outsideReferenceHolder.appendChild(outsideReferenceHolderspan);
|
nicholas@2595
|
694 this.outsideReferenceHolder.setAttribute('track-id', index);
|
nicholas@2595
|
695
|
nicholas@2595
|
696 this.outsideReferenceHolder.onclick = function (event) {
|
nicholas@2595
|
697 audioEngineContext.play(event.currentTarget.getAttribute('track-id'));
|
nicholas@2595
|
698 $('.track-slider').removeClass('track-slider-playing');
|
nickjillings@1341
|
699 $('.comment-div').removeClass('comment-box-playing');
|
nickjillings@1341
|
700 if (event.currentTarget.nodeName == 'DIV') {
|
nicholas@2595
|
701 $(event.currentTarget).addClass('track-slider-playing');
|
nickjillings@1341
|
702 } else {
|
nicholas@2595
|
703 $(event.currentTarget.parentElement).addClass('track-slider-playing');
|
nickjillings@1341
|
704 }
|
nicholas@2595
|
705 };
|
nicholas@2595
|
706 inject.appendChild(this.outsideReferenceHolder);
|
nicholas@2595
|
707 this.enable = function () {
|
nicholas@2595
|
708 if (this.parent.state == 1) {
|
nicholas@2595
|
709 $(this.outsideReferenceHolder).removeClass('track-slider-disabled');
|
nicholas@2595
|
710 }
|
nicholas@2595
|
711 };
|
nicholas@2595
|
712 this.updateLoading = function (progress) {
|
nicholas@2595
|
713 if (progress != 100) {
|
nicholas@2595
|
714 progress = String(progress);
|
nicholas@2595
|
715 progress = progress.split('.')[0];
|
nicholas@2595
|
716 this.outsideReferenceHolder.firstChild.textContent = progress + '%';
|
nicholas@2595
|
717 } else {
|
nicholas@2595
|
718 this.outsideReferenceHolder.firstChild.textContent = "Play Reference";
|
nicholas@2595
|
719 }
|
nicholas@2595
|
720 };
|
nicholas@2595
|
721 this.startPlayback = function () {
|
nickjillings@1360
|
722 $('.track-slider').removeClass('track-slider-playing');
|
nickjillings@1360
|
723 $(this.outsideReferenceHolder).addClass('track-slider-playing');
|
nickjillings@1360
|
724 $('.comment-div').removeClass('comment-box-playing');
|
nickjillings@1360
|
725 };
|
nicholas@2595
|
726 this.stopPlayback = function () {
|
nickjillings@1360
|
727 $(this.outsideReferenceHolder).removeClass('track-slider-playing');
|
nickjillings@1360
|
728 };
|
nicholas@2595
|
729 this.exportXMLDOM = function (audioObject) {
|
nicholas@2595
|
730 return null;
|
nicholas@2595
|
731 };
|
nicholas@2595
|
732 this.getValue = function () {
|
nicholas@2595
|
733 return 0;
|
nicholas@2595
|
734 };
|
nicholas@2595
|
735 this.getPresentedId = function () {
|
nicholas@2595
|
736 return 'reference';
|
nicholas@2595
|
737 };
|
nicholas@2595
|
738 this.canMove = function () {
|
nicholas@2595
|
739 return false;
|
nicholas@2595
|
740 };
|
nicholas@2595
|
741 this.error = function () {
|
nicholas@2595
|
742 // audioObject has an error!!
|
nickjillings@2113
|
743 this.outsideReferenceHolder.textContent = "Error";
|
nickjillings@2113
|
744 $(this.outsideReferenceHolder).addClass("error-colour");
|
nickjillings@2113
|
745 }
|
nickjillings@1341
|
746 }
|
nickjillings@1341
|
747
|
nicholas@2595
|
748 function buttonSubmitClick() {
|
nicholas@2595
|
749 var checks = [];
|
nicholas@2595
|
750 checks = checks.concat(testState.currentStateMap.interfaces[0].options);
|
nicholas@2595
|
751 checks = checks.concat(specification.interfaces.options);
|
nicholas@2595
|
752 var canContinue = true;
|
nickjillings@1341
|
753
|
nicholas@2595
|
754 // Check that the anchor and reference objects are correctly placed
|
nicholas@2595
|
755 if (interfaceContext.checkHiddenAnchor() == false) {
|
nicholas@2595
|
756 return;
|
nicholas@2595
|
757 }
|
nicholas@2595
|
758 if (interfaceContext.checkHiddenReference() == false) {
|
nicholas@2595
|
759 return;
|
nicholas@2595
|
760 }
|
nicholas@2595
|
761
|
nicholas@2595
|
762 for (var i = 0; i < checks.length; i++) {
|
nicholas@2595
|
763 if (checks[i].type == 'check') {
|
nicholas@2595
|
764 switch (checks[i].name) {
|
nicholas@2595
|
765 case 'fragmentPlayed':
|
nicholas@2595
|
766 // Check if all fragments have been played
|
nicholas@2595
|
767 var checkState = interfaceContext.checkAllPlayed();
|
nicholas@2595
|
768 if (checkState == false) {
|
nicholas@2595
|
769 canContinue = false;
|
nicholas@2595
|
770 }
|
nicholas@2595
|
771 break;
|
nicholas@2595
|
772 case 'fragmentFullPlayback':
|
nicholas@2595
|
773 // Check all fragments have been played to their full length
|
nicholas@2595
|
774 var checkState = interfaceContext.checkFragmentsFullyPlayed();
|
nicholas@2595
|
775 if (checkState == false) {
|
nicholas@2595
|
776 canContinue = false;
|
nicholas@2595
|
777 }
|
nicholas@2595
|
778 break;
|
nicholas@2595
|
779 case 'fragmentMoved':
|
nicholas@2595
|
780 // Check all fragment sliders have been moved.
|
nicholas@2595
|
781 var checkState = interfaceContext.checkAllMoved();
|
nicholas@2595
|
782 if (checkState == false) {
|
nicholas@2595
|
783 canContinue = false;
|
nicholas@2595
|
784 }
|
nicholas@2595
|
785 break;
|
nicholas@2595
|
786 case 'fragmentComments':
|
nicholas@2595
|
787 // Check all fragment sliders have been moved.
|
nicholas@2595
|
788 var checkState = interfaceContext.checkAllCommented();
|
nicholas@2595
|
789 if (checkState == false) {
|
nicholas@2595
|
790 canContinue = false;
|
nicholas@2595
|
791 }
|
nicholas@2595
|
792 break;
|
nicholas@2595
|
793 case 'scalerange':
|
nicholas@2595
|
794 // Check the scale is used to its full width outlined by the node
|
nicholas@2595
|
795 var checkState = interfaceContext.checkScaleRange();
|
nicholas@2595
|
796 if (checkState == false) {
|
nicholas@2595
|
797 canContinue = false;
|
nicholas@2595
|
798 }
|
nicholas@2595
|
799 break;
|
nicholas@2595
|
800 default:
|
nicholas@2595
|
801 console.log("WARNING - Check option " + checks[i].name + " is not supported on this interface");
|
nicholas@2595
|
802 break;
|
nicholas@2595
|
803 }
|
nicholas@2595
|
804
|
nicholas@2595
|
805 }
|
nicholas@2595
|
806 if (!canContinue) {
|
nicholas@2595
|
807 break;
|
nicholas@2595
|
808 }
|
nicholas@2595
|
809 }
|
nicholas@2595
|
810
|
nickjillings@1341
|
811 if (canContinue) {
|
nicholas@2595
|
812 if (audioEngineContext.status == 1) {
|
nicholas@2595
|
813 var playback = document.getElementById('playback-button');
|
nicholas@2595
|
814 playback.click();
|
nicholas@2595
|
815 // This function is called when the submit button is clicked. Will check for any further tests to perform, or any post-test options
|
nicholas@2595
|
816 } else {
|
nicholas@2595
|
817 if (audioEngineContext.timer.testStarted == false) {
|
nicholas@2595
|
818 interfaceContext.lightbox.post("Warning", 'You have not started the test! Please click a fragment to begin the test!');
|
nicholas@2595
|
819 return;
|
nicholas@2595
|
820 }
|
nicholas@2595
|
821 }
|
nicholas@2595
|
822 testState.advanceState();
|
nicholas@2595
|
823 }
|
nickjillings@1341
|
824 }
|
nickjillings@1341
|
825
|
nicholas@2595
|
826 function convSliderPosToRate(trackSlider) {
|
nicholas@2595
|
827 var slider = trackSlider.parentElement;
|
nicholas@2595
|
828 var maxPix = $(slider).width();
|
nicholas@2595
|
829 var marginsize = 50;
|
nicholas@2595
|
830 var pix = trackSlider.style.left;
|
nicholas@2595
|
831 pix = pix.substr(0, pix.length - 2);
|
nicholas@2595
|
832 var rate = (pix - marginsize) / maxPix;
|
nicholas@2595
|
833 return rate;
|
nickjillings@1341
|
834 }
|
nickjillings@1341
|
835
|
nicholas@2595
|
836 function resizeWindow(event) {
|
nicholas@2595
|
837 // Function called when the window has been resized.
|
nicholas@2595
|
838 // MANDATORY FUNCTION
|
nicholas@2595
|
839
|
nicholas@2595
|
840 // Resize the slider objects
|
nicholas@2595
|
841 for (var i = 0; i < interfaceContext.interfaceSliders.length; i++) {
|
nicholas@2595
|
842 interfaceContext.interfaceSliders[i].resize(event);
|
nicholas@2595
|
843 }
|
nickjillings@1341
|
844 }
|
nickjillings@1341
|
845
|
nicholas@2595
|
846 function pageXMLSave(store, pageSpecification) {
|
nicholas@2595
|
847 // MANDATORY
|
nicholas@2595
|
848 // Saves a specific test page
|
nicholas@2595
|
849 // You can use this space to add any extra nodes to your XML <audioHolder> saves
|
nicholas@2595
|
850 // Get the current <page> information in store (remember to appendChild your data to it)
|
nicholas@2595
|
851 // pageSpecification is the current page node configuration
|
nicholas@2595
|
852 // To create new XML nodes, use storage.document.createElement();
|
nicholas@2595
|
853
|
nicholas@2595
|
854 if (interfaceContext.interfaceSliders.length == 1) {
|
nicholas@2595
|
855 // If there is only one axis, there only needs to be one metric return
|
nicholas@2595
|
856 return;
|
nicholas@2595
|
857 }
|
nicholas@2595
|
858 var audioelements = store.getElementsByTagName("audioelement");
|
nicholas@2595
|
859 for (var i = 0; i < audioelements.length; i++) {
|
nicholas@2595
|
860 // Have to append the metric specific nodes
|
nicholas@2595
|
861 if (pageSpecification.outsideReference == null || pageSpecification.outsideReference.id != audioelements[i].id) {
|
nicholas@2595
|
862 var inject = audioelements[i].getElementsByTagName("metric");
|
nicholas@2595
|
863 if (inject.length == 0) {
|
nicholas@2595
|
864 inject = storage.document.createElement("metric");
|
nicholas@2595
|
865 } else {
|
nicholas@2595
|
866 inject = inject[0];
|
nicholas@2595
|
867 }
|
nicholas@2595
|
868 for (var k = 0; k < interfaceContext.interfaceSliders.length; k++) {
|
nicholas@2595
|
869 var mrnodes = interfaceContext.interfaceSliders[k].metrics[i].exportXMLDOM(inject);
|
nicholas@2595
|
870 for (var j = 0; j < mrnodes.length; j++) {
|
nicholas@2595
|
871 var name = mrnodes[j].getAttribute("name");
|
nicholas@2595
|
872 if (name == "elementTracker" || name == "elementTrackerFull" || name == "elementInitialPosition" || name == "elementFlagMoved") {
|
nicholas@2595
|
873 mrnodes[j].setAttribute("interface-name", interfaceContext.interfaceSliders[k].name);
|
nicholas@2595
|
874 mrnodes[j].setAttribute("interface-id", k);
|
nicholas@2595
|
875 inject.appendChild(mrnodes[j]);
|
nicholas@2595
|
876 }
|
nicholas@2595
|
877 }
|
nicholas@2595
|
878 }
|
nicholas@2595
|
879 }
|
nicholas@2595
|
880 }
|
nicholas@2595
|
881 }
|