annotate interfaces/horizontal-sliders.js @ 2839:6fef1ec04d1f

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