annotate interfaces/horizontal-sliders.js @ 2607:342ef7948c47

#37. All interfaces use interfaceContext.getLabel to generate labels
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Mon, 14 Nov 2016 16:12:34 +0000
parents 464c6c6692d6
children 22efb2d04bc9
rev   line source
nickjillings@1343 1 // Once this is loaded and parsed, begin execution
nickjillings@1343 2 loadInterface();
nickjillings@1343 3
nickjillings@1343 4 function loadInterface() {
nicholas@2538 5 // Use this to do any one-time page / element construction. For instance, placing any stationary text objects,
nicholas@2538 6 // holding div's, or setting up any nodes which are present for the entire test sequence
nicholas@2538 7
nicholas@2538 8 // The injection point into the HTML page
nicholas@2538 9 interfaceContext.insertPoint = document.getElementById("topLevelBody");
nicholas@2538 10 var testContent = document.createElement('div');
nicholas@2538 11 testContent.id = 'testContent';
nicholas@2538 12
nicholas@2538 13 // Create the top div for the Title element
nicholas@2538 14 var titleAttr = specification.title;
nicholas@2538 15 var title = document.createElement('div');
nicholas@2538 16 title.className = "title";
nicholas@2538 17 title.align = "center";
nicholas@2538 18 var titleSpan = document.createElement('span');
nicholas@2538 19 titleSpan.id = "test-title";
nicholas@2538 20
nicholas@2538 21 // Set title to that defined in XML, else set to default
nicholas@2538 22 if (titleAttr != undefined) {
nicholas@2538 23 titleSpan.textContent = titleAttr;
nicholas@2538 24 } else {
nicholas@2538 25 titleSpan.textContent = 'Listening test';
nicholas@2538 26 }
nicholas@2538 27 // Insert the titleSpan element into the title div element.
nicholas@2538 28 title.appendChild(titleSpan);
nicholas@2538 29
nicholas@2538 30 var pagetitle = document.createElement('div');
nicholas@2538 31 pagetitle.className = "pageTitle";
nicholas@2538 32 pagetitle.align = "center";
nicholas@2538 33 var titleSpan = document.createElement('span');
nicholas@2538 34 titleSpan.id = "pageTitle";
nicholas@2538 35 pagetitle.appendChild(titleSpan);
nicholas@2538 36
nicholas@2538 37 // Create Interface buttons!
nicholas@2538 38 var interfaceButtons = document.createElement('div');
nicholas@2538 39 interfaceButtons.id = 'interface-buttons';
nicholas@2538 40 interfaceButtons.style.height = '25px';
nicholas@2538 41
nicholas@2538 42 // Create playback start/stop points
nicholas@2538 43 var playback = document.createElement("button");
nicholas@2538 44 playback.innerHTML = 'Stop';
nicholas@2538 45 playback.id = 'playback-button';
nicholas@2538 46 playback.style.float = 'left';
nicholas@2538 47 // onclick function. Check if it is playing or not, call the correct function in the
nicholas@2538 48 // audioEngine, change the button text to reflect the next state.
nicholas@2538 49 playback.onclick = function () {
nicholas@2538 50 if (audioEngineContext.status == 1) {
nicholas@2538 51 audioEngineContext.stop();
nicholas@2538 52 this.innerHTML = 'Stop';
nickjillings@1343 53 var time = audioEngineContext.timer.getTestTime();
nickjillings@1343 54 console.log('Stopped at ' + time); // DEBUG/SAFETY
nicholas@2538 55 }
nicholas@2538 56 };
nicholas@2538 57 // Create Submit (save) button
nicholas@2538 58 var submit = document.createElement("button");
nicholas@2538 59 submit.innerHTML = 'Next';
nicholas@2538 60 submit.onclick = buttonSubmitClick;
nicholas@2538 61 submit.id = 'submit-button';
nicholas@2538 62 submit.style.float = 'left';
nicholas@2538 63 // Append the interface buttons into the interfaceButtons object.
nicholas@2538 64 interfaceButtons.appendChild(playback);
nicholas@2538 65 interfaceButtons.appendChild(submit);
nicholas@2538 66
nicholas@2396 67 // Create outside reference holder
nicholas@2396 68 var outsideRef = document.createElement("div");
nicholas@2396 69 outsideRef.id = "outside-reference-holder";
nicholas@2538 70
nicholas@2538 71 // Create a slider box
nicholas@2538 72 var sliderBox = document.createElement('div');
nicholas@2538 73 sliderBox.style.width = "100%";
nicholas@2538 74 sliderBox.style.height = window.innerHeight - 200 + 12 + 'px';
nicholas@2538 75 sliderBox.style.marginBottom = '10px';
nicholas@2538 76 sliderBox.id = 'slider';
nicholas@2538 77 var scaleHolder = document.createElement('div');
nicholas@2538 78 scaleHolder.id = "scale-holder";
nicholas@2538 79 scaleHolder.style.marginLeft = "107px";
nicholas@2538 80 sliderBox.appendChild(scaleHolder);
nicholas@2538 81 var scaleText = document.createElement('div');
nicholas@2538 82 scaleText.id = "scale-text-holder";
nicholas@2538 83 scaleText.style.height = "25px";
nicholas@2538 84 scaleText.style.width = "100%";
nicholas@2538 85 scaleHolder.appendChild(scaleText);
nicholas@2538 86 var scaleCanvas = document.createElement('canvas');
nicholas@2538 87 scaleCanvas.id = "scale-canvas";
nicholas@2538 88 scaleCanvas.style.marginLeft = "100px";
nicholas@2538 89 scaleHolder.appendChild(scaleCanvas);
nicholas@2538 90 var sliderObjectHolder = document.createElement('div');
nicholas@2538 91 sliderObjectHolder.id = 'slider-holder';
nicholas@2538 92 sliderObjectHolder.align = "center";
nicholas@2538 93 sliderBox.appendChild(sliderObjectHolder);
nicholas@2538 94
nicholas@2538 95 // Global parent for the comment boxes on the page
nicholas@2538 96 var feedbackHolder = document.createElement('div');
nicholas@2538 97 feedbackHolder.id = 'feedbackHolder';
nicholas@2538 98
nicholas@2538 99 testContent.style.zIndex = 1;
nicholas@2538 100 interfaceContext.insertPoint.innerHTML = ""; // Clear the current schema
nicholas@2538 101
nicholas@2538 102 // Inject into HTML
nicholas@2538 103 testContent.appendChild(title); // Insert the title
nicholas@2538 104 testContent.appendChild(pagetitle);
nicholas@2538 105 testContent.appendChild(interfaceButtons);
nicholas@2396 106 testContent.appendChild(outsideRef);
nicholas@2538 107 testContent.appendChild(sliderBox);
nicholas@2538 108 testContent.appendChild(feedbackHolder);
nicholas@2538 109 interfaceContext.insertPoint.appendChild(testContent);
nickjillings@1343 110
nicholas@2538 111 // Load the full interface
nicholas@2538 112 testState.initialise();
nicholas@2538 113 testState.advanceState();
nickjillings@1343 114 };
nickjillings@1343 115
nicholas@2538 116 function loadTest(page) {
nicholas@2538 117 // Called each time a new test page is to be build. The page specification node is the only item passed in
nicholas@2538 118 var id = page.id;
nicholas@2538 119
nicholas@2538 120 var feedbackHolder = document.getElementById('feedbackHolder');
nicholas@2381 121 feedbackHolder.innerHTML = "";
nicholas@2538 122
nicholas@2538 123 var interfaceObj = page.interfaces;
nicholas@2538 124 if (interfaceObj.length > 1) {
nicholas@2538 125 console.log("WARNING - This interface only supports one <interface> node per page. Using first interface node");
nicholas@2538 126 }
nicholas@2538 127 interfaceObj = interfaceObj[0];
nicholas@2538 128
nicholas@2470 129 // Set the page title
nicholas@2470 130 if (typeof page.title == "string" && page.title.length > 0) {
nicholas@2470 131 document.getElementById("test-title").textContent = page.title
nicholas@2470 132 }
nicholas@2538 133
nicholas@2538 134 if (interfaceObj.title != null) {
nicholas@2538 135 document.getElementById("pageTitle").textContent = interfaceObj.title;
nicholas@2538 136 }
nicholas@2538 137
nicholas@2538 138 // Delete outside reference
nicholas@2538 139 document.getElementById("outside-reference-holder").innerHTML = "";
nicholas@2538 140
nicholas@2538 141 var sliderBox = document.getElementById('slider-holder');
nicholas@2538 142 sliderBox.innerHTML = "";
nicholas@2538 143
nicholas@2538 144 var commentBoxPrefix = "Comment on track";
nicholas@2538 145 if (interfaceObj.commentBoxPrefix != undefined) {
nicholas@2538 146 commentBoxPrefix = interfaceObj.commentBoxPrefix;
nicholas@2538 147 }
nicholas@2538 148 var loopPlayback = page.loop;
nicholas@2538 149
nicholas@2538 150 $(page.commentQuestions).each(function (index, element) {
nicholas@2538 151 var node = interfaceContext.createCommentQuestion(element);
nicholas@2538 152 feedbackHolder.appendChild(node.holder);
nicholas@2538 153 });
nicholas@2538 154
nicholas@2538 155 // Find all the audioElements from the audioHolder
nicholas@2538 156 var index = 0;
nicholas@2607 157 var labelType = page.label;
nicholas@2607 158 if (labelType == "default") {
nicholas@2607 159 labelType = "number";
nicholas@2607 160 }
nicholas@2607 161 $(page.audioElements).each(function (pageIndex, element) {
nicholas@2538 162 // Find URL of track
nicholas@2538 163 // In this jQuery loop, variable 'this' holds the current audioElement.
nicholas@2538 164
nicholas@2538 165 var audioObject = audioEngineContext.newTrack(element);
nicholas@2538 166 if (element.type == 'outside-reference') {
nicholas@2538 167 // Construct outside reference;
nicholas@2538 168 var orNode = new interfaceContext.outsideReferenceDOM(audioObject, index, document.getElementById("outside-reference-holder"));
nicholas@2538 169 audioObject.bindInterface(orNode);
nicholas@2538 170 } else {
nicholas@2538 171 // Create a slider per track
nicholas@2607 172 var label = interfaceContext.getLabel(labelType, index, page.labelStart);
nicholas@2538 173 var sliderObj = new sliderObject(audioObject, label);
nicholas@2538 174
nicholas@2538 175 if (typeof page.initialPosition === "number") {
nicholas@2538 176 // Set the values
nicholas@2538 177 sliderObj.slider.value = page.initalPosition;
nicholas@2538 178 } else {
nicholas@2538 179 // Distribute it randomnly
nicholas@2538 180 sliderObj.slider.value = Math.random();
nicholas@2538 181 }
nicholas@2538 182 sliderBox.appendChild(sliderObj.holder);
nicholas@2538 183 audioObject.bindInterface(sliderObj);
nickjillings@2117 184 interfaceContext.commentBoxes.createCommentBox(audioObject);
nicholas@2538 185 index += 1;
nicholas@2538 186 }
nicholas@2538 187
nicholas@2538 188 });
n@2407 189 var interfaceOptions = specification.interfaces.options.concat(interfaceObj.options);
nicholas@2538 190 for (var option of interfaceOptions) {
nicholas@2538 191 if (option.type == "show") {
nicholas@2538 192 switch (option.name) {
n@2407 193 case "playhead":
n@2407 194 var playbackHolder = document.getElementById('playback-holder');
nicholas@2538 195 if (playbackHolder == null) {
n@2407 196 playbackHolder = document.createElement('div');
n@2407 197 playbackHolder.style.width = "100%";
n@2407 198 playbackHolder.align = 'center';
n@2407 199 playbackHolder.appendChild(interfaceContext.playhead.object);
n@2407 200 feedbackHolder.appendChild(playbackHolder);
n@2407 201 }
n@2407 202 break;
n@2407 203 case "page-count":
n@2407 204 var pagecountHolder = document.getElementById('page-count');
nicholas@2538 205 if (pagecountHolder == null) {
n@2407 206 pagecountHolder = document.createElement('div');
n@2407 207 pagecountHolder.id = 'page-count';
n@2407 208 }
nicholas@2538 209 pagecountHolder.innerHTML = '<span>Page ' + (testState.stateIndex + 1) + ' of ' + testState.stateMap.length + '</span>';
n@2407 210 var inject = document.getElementById('interface-buttons');
n@2407 211 inject.appendChild(pagecountHolder);
n@2407 212 break;
n@2407 213 case "volume":
nicholas@2538 214 if (document.getElementById('master-volume-holder') == null) {
n@2407 215 feedbackHolder.appendChild(interfaceContext.volume.object);
n@2407 216 }
n@2407 217 break;
n@2407 218 case "comments":
nicholas@2538 219 interfaceContext.commentBoxes.showCommentBoxes(feedbackHolder, true);
n@2407 220 break;
n@2407 221 }
n@2407 222 }
nickjillings@1316 223 }
nicholas@2538 224 // Auto-align
nicholas@2538 225 resizeWindow(null);
nickjillings@1343 226 }
nickjillings@1343 227
nicholas@2538 228 function sliderObject(audioObject, label) {
nicholas@2538 229 // An example node, you can make this however you want for each audioElement.
nicholas@2538 230 // However, every audioObject (audioEngineContext.audioObject) MUST have an interface object with the following
nicholas@2538 231 // You attach them by calling audioObject.bindInterface( )
nicholas@2538 232 this.parent = audioObject;
nicholas@2538 233
nicholas@2538 234 this.holder = document.createElement('div');
nicholas@2538 235 this.title = document.createElement('div');
nicholas@2538 236 this.slider = document.createElement('input');
nicholas@2538 237 this.play = document.createElement('button');
nicholas@2538 238
nicholas@2538 239 this.holder.className = 'track-slider';
nicholas@2538 240 this.holder.style.width = window.innerWidth - 200 + 'px';
nicholas@2538 241 this.holder.appendChild(this.title);
nicholas@2538 242 this.holder.appendChild(this.slider);
nicholas@2538 243 this.holder.appendChild(this.play);
nicholas@2538 244 this.holder.setAttribute('trackIndex', audioObject.id);
nicholas@2538 245 this.title.textContent = label;
nicholas@2538 246 this.title.className = 'track-slider-title';
nicholas@2538 247
nicholas@2538 248 this.slider.type = "range";
nicholas@2538 249 this.slider.className = "track-slider-range track-slider-not-moved";
nicholas@2538 250 this.slider.min = "0";
nicholas@2538 251 this.slider.max = "1";
nicholas@2538 252 this.slider.step = "0.01";
nicholas@2538 253 this.slider.style.width = window.innerWidth - 420 + 'px';
nicholas@2538 254 this.slider.onchange = function () {
nicholas@2538 255 var time = audioEngineContext.timer.getTestTime();
nicholas@2538 256 var id = Number(this.parentNode.getAttribute('trackIndex'));
nicholas@2538 257 audioEngineContext.audioObjects[id].metric.moved(time, this.value);
nicholas@2538 258 console.log('slider ' + id + ' moved to ' + this.value + ' (' + time + ')');
nicholas@2538 259 $(this).removeClass('track-slider-not-moved');
nicholas@2538 260 };
nicholas@2538 261
nicholas@2538 262 this.play.className = 'track-slider-button';
nicholas@2538 263 this.play.textContent = "Loading...";
nicholas@2538 264 this.play.value = audioObject.id;
nicholas@2538 265 this.play.disabled = true;
nicholas@2538 266 this.play.setAttribute("playstate", "ready");
nicholas@2538 267 this.play.onclick = function (event) {
nicholas@2538 268 var id = Number(event.currentTarget.value);
nicholas@2538 269 //audioEngineContext.metric.sliderPlayed(id);
nicholas@2538 270 if (event.currentTarget.getAttribute("playstate") == "ready") {
nicholas@2538 271 audioEngineContext.play(id);
nicholas@2538 272 } else if (event.currentTarget.getAttribute("playstate") == "playing") {
nicholas@2538 273 audioEngineContext.stop();
nicholas@2538 274 }
nicholas@2538 275 };
nicholas@2538 276 this.resize = function (event) {
nicholas@2538 277 this.holder.style.width = window.innerWidth - 200 + 'px';
nicholas@2538 278 this.slider.style.width = window.innerWidth - 420 + 'px';
nicholas@2538 279 };
nicholas@2538 280 this.enable = function () {
nicholas@2538 281 // This is used to tell the interface object that playback of this node is ready
nicholas@2538 282 this.play.disabled = false;
nicholas@2538 283 this.play.textContent = "Play";
nicholas@2538 284 $(this.slider).removeClass('track-slider-disabled');
nicholas@2538 285 };
nicholas@2538 286 this.updateLoading = function (progress) {
nicholas@2538 287 // progress is a value from 0 to 100 indicating the current download state of media files
nicholas@2538 288 };
nicholas@2538 289 this.startPlayback = function () {
nickjillings@1360 290 // Called when playback has begun
nicholas@2538 291 this.play.setAttribute("playstate", "playing");
nickjillings@1360 292 $(".track-slider").removeClass('track-slider-playing');
nicholas@2538 293 $(this.holder).addClass('track-slider-playing');
nicholas@2538 294 var outsideReference = document.getElementById('outside-reference');
nicholas@2538 295 if (outsideReference != null) {
nicholas@2538 296 $(outsideReference).removeClass('track-slider-playing');
nicholas@2538 297 }
nickjillings@1360 298 };
nicholas@2538 299 this.stopPlayback = function () {
nickjillings@1360 300 // Called when playback has stopped. This gets called even if playback never started!
nicholas@2538 301 this.play.setAttribute("playstate", "ready");
nickjillings@1360 302 $(this.holder).removeClass('track-slider-playing');
nickjillings@1360 303 };
nicholas@2538 304 this.getValue = function () {
nicholas@2538 305 // Return the current value of the object. If there is no value, return 0
nicholas@2538 306 return this.slider.value;
nicholas@2538 307 };
nicholas@2538 308 this.getPresentedId = function () {
nicholas@2538 309 // Return the presented ID of the object. For instance, the APE has sliders starting from 0. Whilst AB has alphabetical scale
nicholas@2538 310 return this.title.textContent;
nicholas@2538 311 };
nicholas@2538 312 this.canMove = function () {
nicholas@2538 313 // Return either true or false if the interface object can be moved. AB / Reference cannot, whilst sliders can and therefore have a continuous scale.
nicholas@2538 314 // These are checked primarily if the interface check option 'fragmentMoved' is enabled.
nicholas@2538 315 return true;
nicholas@2538 316 };
nicholas@2538 317 this.exportXMLDOM = function (audioObject) {
nicholas@2538 318 // Called by the audioObject holding this element to export the interface <value> node.
nicholas@2538 319 // If there is no value node (such as outside reference), return null
nicholas@2538 320 // If there are multiple value nodes (such as multiple scale / 2D scales), return an array of nodes with each value node having an 'interfaceName' attribute
nicholas@2538 321 // Use storage.document.createElement('value'); to generate the XML node.
nicholas@2538 322 var node = storage.document.createElement('value');
nickjillings@1347 323 node.textContent = this.slider.value;
nickjillings@1347 324 return node;
nicholas@2538 325 };
nicholas@2538 326 this.error = function () {
nicholas@2538 327 // audioObject has an error!!
nickjillings@2113 328 this.playback.textContent = "Error";
nickjillings@2113 329 $(this.playback).addClass("error-colour");
nickjillings@2113 330 }
nickjillings@1343 331 };
nickjillings@1343 332
nicholas@2538 333 function resizeWindow(event) {
nicholas@2538 334 // Called on every window resize event, use this to scale your page properly
nicholas@2538 335
nicholas@2538 336 var numObj = document.getElementsByClassName('track-slider').length;
nicholas@2538 337 var totalHeight = (numObj * 125) - 25;
nicholas@2538 338 document.getElementById('scale-holder').style.width = window.innerWidth - 220 + 'px';
nicholas@2538 339 // Cheers edge for making me delete a canvas every resize.
nicholas@2538 340 var canvas = document.getElementById('scale-canvas');
nicholas@2381 341 var new_canvas = document.createElement("canvas");
nicholas@2381 342 new_canvas.id = 'scale-canvas';
nicholas@2381 343 new_canvas.style.marginLeft = "100px";
nicholas@2381 344 canvas.parentElement.appendChild(new_canvas);
nicholas@2381 345 canvas.parentElement.removeChild(canvas);
nicholas@2538 346 new_canvas.width = window.innerWidth - 420;
nicholas@2538 347 new_canvas.height = totalHeight;
nicholas@2538 348 for (var i in audioEngineContext.audioObjects) {
nicholas@2538 349 if (audioEngineContext.audioObjects[i].specification.type != 'outside-reference') {
nicholas@2538 350 audioEngineContext.audioObjects[i].interfaceDOM.resize(event);
nicholas@2538 351 }
nicholas@2538 352 }
nicholas@2538 353 document.getElementById("slider").style.height = totalHeight + 50 + 'px';
nicholas@2538 354 drawScale();
nickjillings@1343 355 }
nickjillings@1343 356
nicholas@2538 357 function drawScale() {
nicholas@2538 358 var interfaceObj = testState.currentStateMap.interfaces[0];
nicholas@2538 359 var scales = testState.currentStateMap.interfaces[0].scales;
nicholas@2538 360 scales = scales.sort(function (a, b) {
nicholas@2538 361 return a.position - b.position;
nicholas@2538 362 });
nicholas@2538 363 var canvas = document.getElementById('scale-canvas');
nicholas@2538 364 var ctx = canvas.getContext("2d");
nicholas@2538 365 var height = canvas.height;
nicholas@2538 366 var width = canvas.width;
nicholas@2538 367 var textHolder = document.getElementById('scale-text-holder');
nicholas@2538 368 textHolder.innerHTML = "";
nicholas@2538 369 ctx.fillStyle = "#000000";
nicholas@2538 370 ctx.setLineDash([1, 4]);
nicholas@2538 371 for (var scale of scales) {
nicholas@2538 372 var posPercent = scale.position / 100.0;
nicholas@2538 373 var posPix = Math.round(width * posPercent);
nicholas@2538 374 if (posPix <= 0) {
nicholas@2538 375 posPix = 1;
nicholas@2538 376 }
nicholas@2538 377 if (posPix >= width) {
nicholas@2538 378 posPix = width - 1;
nicholas@2538 379 }
nicholas@2538 380 ctx.moveTo(posPix, 0);
nicholas@2538 381 ctx.lineTo(posPix, height);
nicholas@2538 382 ctx.stroke();
nicholas@2538 383
nicholas@2538 384 var text = document.createElement('div');
nicholas@2538 385 text.align = "center";
nicholas@2538 386 var textC = document.createElement('span');
nicholas@2538 387 textC.textContent = scale.text;
nicholas@2538 388 text.appendChild(textC);
nicholas@2538 389 text.className = "scale-text";
nicholas@2538 390 textHolder.appendChild(text);
nicholas@2538 391 text.style.width = Math.ceil($(text).width()) + 'px';
nicholas@2538 392 text.style.left = (posPix + 100 - ($(text).width() / 2)) + 'px';
nicholas@2538 393 }
nickjillings@1343 394 }
nickjillings@1343 395
nickjillings@1343 396 function buttonSubmitClick() // TODO: Only when all songs have been played!
nickjillings@1343 397 {
nicholas@2538 398 var checks = [];
nicholas@2538 399 checks = checks.concat(testState.currentStateMap.interfaces[0].options);
nicholas@2538 400 checks = checks.concat(specification.interfaces.options);
nicholas@2538 401 var canContinue = true;
nickjillings@1343 402
nicholas@2538 403 // Check that the anchor and reference objects are correctly placed
nicholas@2538 404 if (interfaceContext.checkHiddenAnchor() == false) {
nicholas@2538 405 return;
nicholas@2538 406 }
nicholas@2538 407 if (interfaceContext.checkHiddenReference() == false) {
nicholas@2538 408 return;
nicholas@2538 409 }
nicholas@2538 410
nicholas@2538 411 for (var i = 0; i < checks.length; i++) {
nicholas@2538 412 if (checks[i].type == 'check') {
nicholas@2538 413 switch (checks[i].name) {
nicholas@2538 414 case 'fragmentPlayed':
nicholas@2538 415 // Check if all fragments have been played
nicholas@2538 416 var checkState = interfaceContext.checkAllPlayed();
nicholas@2538 417 if (checkState == false) {
nicholas@2538 418 canContinue = false;
nicholas@2538 419 }
nicholas@2538 420 break;
nicholas@2538 421 case 'fragmentFullPlayback':
nicholas@2538 422 // Check all fragments have been played to their full length
nicholas@2538 423 var checkState = interfaceContext.checkAllPlayed();
nicholas@2538 424 if (checkState == false) {
nicholas@2538 425 canContinue = false;
nicholas@2538 426 }
nicholas@2538 427 console.log('NOTE: fragmentFullPlayback not currently implemented, performing check fragmentPlayed instead');
nicholas@2538 428 break;
nicholas@2538 429 case 'fragmentMoved':
nicholas@2538 430 // Check all fragment sliders have been moved.
nicholas@2538 431 var checkState = interfaceContext.checkAllMoved();
nicholas@2538 432 if (checkState == false) {
nicholas@2538 433 canContinue = false;
nicholas@2538 434 }
nicholas@2538 435 break;
nicholas@2538 436 case 'fragmentComments':
nicholas@2538 437 // Check all fragment sliders have been moved.
nicholas@2538 438 var checkState = interfaceContext.checkAllCommented();
nicholas@2538 439 if (checkState == false) {
nicholas@2538 440 canContinue = false;
nicholas@2538 441 }
nicholas@2538 442 break;
nicholas@2538 443 case 'scalerange':
nicholas@2538 444 // Check the scale has been used effectively
nicholas@2538 445 var checkState = interfaceContext.checkScaleRange(checks[i].min, checks[i].max);
nicholas@2538 446 if (checkState == false) {
nicholas@2538 447 canContinue = false;
nicholas@2538 448 }
nicholas@2538 449 break;
nicholas@2538 450 default:
nicholas@2538 451 console.log("WARNING - Check option " + checks[i].check + " is not supported on this interface");
nicholas@2538 452 break;
nicholas@2538 453 }
nicholas@2538 454
nicholas@2538 455 }
nicholas@2538 456 if (!canContinue) {
nicholas@2538 457 break;
nicholas@2538 458 }
nicholas@2538 459 }
nicholas@2538 460
nickjillings@1343 461 if (canContinue) {
nicholas@2538 462 if (audioEngineContext.status == 1) {
nicholas@2538 463 var playback = document.getElementById('playback-button');
nicholas@2538 464 playback.click();
nicholas@2538 465 // This function is called when the submit button is clicked. Will check for any further tests to perform, or any post-test options
nicholas@2538 466 } else {
nicholas@2538 467 if (audioEngineContext.timer.testStarted == false) {
nicholas@2538 468 interfaceContext.lightbox.post("Warning", 'You have not started the test! Please press start to begin the test!');
nicholas@2538 469 return;
nicholas@2538 470 }
nicholas@2538 471 }
nicholas@2538 472 testState.advanceState();
nicholas@2538 473 }
nickjillings@1343 474 }
nickjillings@1343 475
nicholas@2538 476 function pageXMLSave(store, pageSpecification) {
nicholas@2538 477 // MANDATORY
nicholas@2538 478 // Saves a specific test page
nicholas@2538 479 // You can use this space to add any extra nodes to your XML <audioHolder> saves
nicholas@2538 480 // Get the current <page> information in store (remember to appendChild your data to it)
nicholas@2538 481 // pageSpecification is the current page node configuration
nicholas@2538 482 // To create new XML nodes, use storage.document.createElement();
nicholas@2538 483 }