jsPsych/plugins/jspsych-animation.js

197 lines
6.2 KiB
JavaScript

/**
* jsPsych plugin for showing animations and recording keyboard responses
* Josh de Leeuw
*
* documentation: docs.jspsych.org
*/
jsPsych.plugins.animation = (function() {
var plugin = {};
jsPsych.pluginAPI.registerPreload('animation', 'stimuli', 'image');
plugin.info = {
name: 'animation',
description: '',
parameters: {
stimuli: {
type: jsPsych.plugins.parameterType.STRING,
pretty_name: 'Stimuli',
default: undefined,
array: true,
description: 'The images to be displayed.'
},
frame_time: {
type: jsPsych.plugins.parameterType.INT,
pretty_name: 'Frame time',
default: 250,
description: 'Duration to display each image.'
},
frame_isi: {
type: jsPsych.plugins.parameterType.INT,
pretty_name: 'Frame gap',
default: 0,
description: 'Length of gap to be shown between each image.'
},
sequence_reps: {
type: jsPsych.plugins.parameterType.INT,
pretty_name: 'Sequence repetitions',
default: 1,
description: 'Number of times to show entire sequence.'
},
choices: {
type: jsPsych.plugins.parameterType.KEYCODE,
pretty_name: 'Choices',
default: jsPsych.ALL_KEYS,
array: true,
description: 'Keys subject uses to respond to stimuli.'
},
prompt: {
type: jsPsych.plugins.parameterType.STRING,
pretty_name: 'Prompt',
default: null,
description: 'Any content here will be displayed below stimulus.'
},
render_on_canvas: {
type: jsPsych.plugins.parameterType.BOOL,
pretty_name: 'Render on canvas',
default: true,
description: 'If true, the images will be drawn onto a canvas element (prevents blank screen between consecutive images in some browsers).'+
'If false, the image will be shown via an img element.'
}
}
}
plugin.trial = function(display_element, trial) {
var interval_time = trial.frame_time + trial.frame_isi;
var animate_frame = -1;
var reps = 0;
var startTime = performance.now();
var animation_sequence = [];
var responses = [];
var current_stim = "";
if (trial.render_on_canvas) {
// first clear the display element (because the render_on_canvas method appends to display_element instead of overwriting it with .innerHTML)
if (display_element.hasChildNodes()) {
// can't loop through child list because the list will be modified by .removeChild()
while (display_element.firstChild) {
display_element.removeChild(display_element.firstChild);
}
}
var canvas = document.createElement("canvas");
canvas.id = "jspsych-animation-image";
canvas.style.margin = 0;
canvas.style.padding = 0;
display_element.insertBefore(canvas, null);
var ctx = canvas.getContext("2d");
if (trial.prompt !== null) {
var prompt_div = document.createElement("div");
prompt_div.id = "jspsych-animation-prompt";
prompt_div.style.visibility = "hidden";
prompt_div.innerHTML = trial.prompt;
display_element.insertBefore(prompt_div, canvas.nextElementSibling);
}
}
var animate_interval = setInterval(function() {
var showImage = true;
if (!trial.render_on_canvas) {
display_element.innerHTML = ''; // clear everything
}
animate_frame++;
if (animate_frame == trial.stimuli.length) {
animate_frame = 0;
reps++;
if (reps >= trial.sequence_reps) {
endTrial();
clearInterval(animate_interval);
showImage = false;
}
}
if (showImage) {
show_next_frame();
}
}, interval_time);
function show_next_frame() {
if (trial.render_on_canvas) {
display_element.querySelector('#jspsych-animation-image').style.visibility = 'visible';
var img = new Image();
img.src = trial.stimuli[animate_frame];
canvas.height = img.naturalHeight;
canvas.width = img.naturalWidth;
ctx.drawImage(img,0,0);
if (trial.prompt !== null) {
prompt_div.style.visibility = "visible";
}
} else {
// show image
display_element.innerHTML = '<img src="'+trial.stimuli[animate_frame]+'" id="jspsych-animation-image"></img>';
if (trial.prompt !== null) {
display_element.innerHTML += trial.prompt;
}
}
current_stim = trial.stimuli[animate_frame];
// record when image was shown
animation_sequence.push({
"stimulus": trial.stimuli[animate_frame],
"time": performance.now() - startTime
});
if (trial.frame_isi > 0) {
jsPsych.pluginAPI.setTimeout(function() {
display_element.querySelector('#jspsych-animation-image').style.visibility = 'hidden';
current_stim = 'blank';
// record when blank image was shown
animation_sequence.push({
"stimulus": 'blank',
"time": performance.now() - startTime
});
}, trial.frame_time);
}
}
var after_response = function(info) {
responses.push({
key_press: info.key,
rt: info.rt,
stimulus: current_stim
});
// after a valid response, the stimulus will have the CSS class 'responded'
// which can be used to provide visual feedback that a response was recorded
display_element.querySelector('#jspsych-animation-image').className += ' responded';
}
// hold the jspsych response listener object in memory
// so that we can turn off the response collection when
// the trial ends
var response_listener = jsPsych.pluginAPI.getKeyboardResponse({
callback_function: after_response,
valid_responses: trial.choices,
rt_method: 'performance',
persist: true,
allow_held_key: false
});
function endTrial() {
jsPsych.pluginAPI.cancelKeyboardResponse(response_listener);
var trial_data = {
"animation_sequence": JSON.stringify(animation_sequence),
"responses": JSON.stringify(responses)
};
jsPsych.finishTrial(trial_data);
}
};
return plugin;
})();