/**
* jspsych-similarity.js
* Josh de Leeuw
*
* This plugin create a trial where two images are shown sequentially, and the subject rates their similarity using a slider controlled with the mouse.
*
* documentation: docs.jspsych.org
*
*/
jsPsych.plugins.similarity = (function() {
var plugin = {};
jsPsych.pluginAPI.registerPreload('similarity', 'stimuli', 'image');
plugin.trial = function(display_element, trial) {
// default parameters
trial.labels = (typeof trial.labels === 'undefined') ? ["Not at all similar", "Identical"] : trial.labels;
trial.intervals = trial.intervals || 100;
trial.show_ticks = (typeof trial.show_ticks === 'undefined') ? false : trial.show_ticks;
trial.show_response = trial.show_response || "SECOND_STIMULUS";
trial.timing_first_stim = trial.timing_first_stim || 1000; // default 1000ms
trial.timing_second_stim = trial.timing_second_stim || -1; // -1 = inf time; positive numbers = msec to display second image.
trial.timing_image_gap = trial.timing_image_gap || 1000; // default 1000ms
trial.is_html = (typeof trial.is_html === 'undefined') ? false : trial.is_html;
trial.prompt = (typeof trial.prompt === 'undefined') ? '' : trial.prompt;
// if any trial variables are functions
// this evaluates the function and replaces
// it with the output of the function
trial = jsPsych.pluginAPI.evaluateFunctionParameters(trial);
// this array holds handlers from setTimeout calls
// that need to be cleared if the trial ends early
var setTimeoutHandlers = [];
// show the images
if (!trial.is_html) {
display_element.append($('', {
"src": trial.stimuli[0],
"id": 'jspsych-sim-stim'
}));
} else {
display_element.append($('
', {
"html": trial.stimuli[0],
"id": 'jspsych-sim-stim'
}));
}
if (trial.show_response == "FIRST_STIMULUS") {
show_response_slider(display_element, trial);
}
setTimeoutHandlers.push(setTimeout(function() {
showBlankScreen();
}, trial.timing_first_stim));
function showBlankScreen() {
$('#jspsych-sim-stim').css('visibility', 'hidden');
setTimeoutHandlers.push(setTimeout(function() {
showSecondStim();
}, trial.timing_image_gap));
}
function showSecondStim() {
if (!trial.is_html) {
$('#jspsych-sim-stim').attr('src', trial.stimuli[1]);
} else {
$('#jspsych-sim-stim').html(trial.stimuli[1]);
}
$('#jspsych-sim-stim').css('visibility', 'visible');
if (trial.show_response == "SECOND_STIMULUS") {
show_response_slider(display_element, trial);
}
if (trial.timing_second_stim > 0) {
setTimeoutHandlers.push(setTimeout(function() {
$("#jspsych-sim-stim").css('visibility', 'hidden');
if (trial.show_response == "POST_STIMULUS") {
show_response_slider(display_element, trial);
}
}, trial.timing_second_stim));
}
}
function show_response_slider(display_element, trial) {
var startTime = (new Date()).getTime();
// create slider
display_element.append($('
', {
"id": 'slider',
"class": 'sim'
}));
$("#slider").slider({
value: Math.ceil(trial.intervals / 2),
min: 1,
max: trial.intervals,
step: 1,
});
// show tick marks
if (trial.show_ticks) {
for (var j = 1; j < trial.intervals - 1; j++) {
$('#slider').append('');
}
$('#slider .slidertickmark').each(function(index) {
var left = (index + 1) * (100 / (trial.intervals - 1));
$(this).css({
'position': 'absolute',
'left': left + '%',
'width': '1px',
'height': '100%',
'background-color': '#222222'
});
});
}
// create labels for slider
display_element.append($('