mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
163 lines
5.5 KiB
JavaScript
163 lines
5.5 KiB
JavaScript
/**
|
|
* jspsych-serial-reaction-time
|
|
* Josh de Leeuw
|
|
*
|
|
* plugin for running a serial reaction time task
|
|
*
|
|
* documentation: docs.jspsych.org
|
|
*
|
|
**/
|
|
|
|
jsPsych.plugins["serial-reaction-time-mouse"] = (function() {
|
|
|
|
var plugin = {};
|
|
|
|
plugin.trial = function(display_element, trial) {
|
|
|
|
trial.grid = trial.grid || [[1,1,1,1]];
|
|
trial.grid_square_size = trial.grid_square_size || 100;
|
|
trial.target_color = trial.target_color || "#999";
|
|
trial.response_ends_trial = (typeof trial.response_ends_trial === 'undefined') ? true : trial.response_ends_trial;
|
|
trial.pre_target_duration = (typeof trial.pre_target_duration === 'undefined') ? 0 : trial.pre_target_duration;
|
|
trial.trial_duration = trial.trial_duration || -1; // if -1, then wait for response forever
|
|
trial.fade_duration = (typeof trial.fade_duration === 'undefined') ? -1 : trial.fade_duration;
|
|
trial.allow_nontarget_responses = (typeof trial.allow_nontarget_responses === 'undefined') ? false : trial.allow_nontarget_responses;
|
|
trial.prompt = (typeof trial.prompt === 'undefined') ? "" : trial.prompt;
|
|
|
|
var startTime = -1;
|
|
var response = {
|
|
rt: -1,
|
|
row: -1,
|
|
column: -1
|
|
}
|
|
|
|
// display stimulus
|
|
var stimulus = this.stimulus(trial.grid, trial.grid_square_size);
|
|
display_element.innerHTML = stimulus;
|
|
|
|
|
|
if(trial.pre_target_duration <= 0){
|
|
showTarget();
|
|
} else {
|
|
jsPsych.pluginAPI.setTimeout(function(){
|
|
showTarget();
|
|
}, trial.pre_target_duration);
|
|
}
|
|
|
|
//show prompt if there is one
|
|
if (trial.prompt !== "") {
|
|
display_element.innerHTML += trial.prompt;
|
|
}
|
|
|
|
function showTarget(){
|
|
var resp_targets;
|
|
<<<<<<< HEAD
|
|
<<<<<<< HEAD
|
|
if(!trial.allow_nontarget_responses){
|
|
=======
|
|
if(trial.allow_nontarget_responses){
|
|
>>>>>>> update srt mouse with extra option
|
|
=======
|
|
if(!trial.allow_nontarget_responses){
|
|
>>>>>>> fix backwards plugin
|
|
resp_targets = [display_element.querySelector('#jspsych-serial-reaction-time-stimulus-cell-'+trial.target[0]+'-'+trial.target[1])]
|
|
} else {
|
|
resp_targets = display_element.querySelectorAll('.jspsych-serial-reaction-time-stimulus-cell');
|
|
}
|
|
for(var i=0; i<resp_targets.length; i++){
|
|
resp_targets[i].addEventListener('mousedown', function(e){
|
|
if(startTime == -1){
|
|
return;
|
|
} else {
|
|
var info = {}
|
|
info.row = e.currentTarget.getAttribute('data-row');
|
|
info.column = e.currentTarget.getAttribute('data-column');
|
|
info.rt = Date.now() - startTime;
|
|
after_response(info);
|
|
}
|
|
});
|
|
}
|
|
|
|
startTime = Date.now();
|
|
|
|
if(trial.fade_duration == -1){
|
|
display_element.querySelector('#jspsych-serial-reaction-time-stimulus-cell-'+trial.target[0]+'-'+trial.target[1]).style.backgroundColor = trial.target_color;
|
|
} else {
|
|
display_element.querySelector('#jspsych-serial-reaction-time-stimulus-cell-'+trial.target[0]+'-'+trial.target[1]).style.transition = "background-color "+trial.fade_duration;
|
|
display_element.querySelector('#jspsych-serial-reaction-time-stimulus-cell-'+trial.target[0]+'-'+trial.target[1]).style.backgroundColor = trial.target_color;
|
|
}
|
|
|
|
if(trial.trial_duration > -1){
|
|
jsPsych.pluginAPI.setTimeout(endTrial, trial.trial_duration);
|
|
}
|
|
|
|
}
|
|
|
|
function endTrial() {
|
|
|
|
// kill any remaining setTimeout handlers
|
|
jsPsych.pluginAPI.clearAllTimeouts();
|
|
|
|
// gather the data to store for the trial
|
|
var trial_data = {
|
|
"rt": response.rt,
|
|
"grid": JSON.stringify(trial.grid),
|
|
"target": JSON.stringify(trial.target),
|
|
"response_row": response.row,
|
|
"response_column": response.column,
|
|
"correct": response.row == trial.target[0] && response.column == trial.target[1]
|
|
};
|
|
|
|
// clear the display
|
|
display_element.innerHTML = '';
|
|
|
|
// move on to the next trial
|
|
jsPsych.finishTrial(trial_data);
|
|
|
|
};
|
|
|
|
// function to handle responses by the subject
|
|
function after_response(info) {
|
|
|
|
// only record first response
|
|
response = response.rt == -1 ? info : response;
|
|
|
|
if (trial.response_ends_trial) {
|
|
endTrial();
|
|
}
|
|
};
|
|
|
|
};
|
|
|
|
plugin.stimulus = function(grid, square_size, target, target_color, labels) {
|
|
var stimulus = "<div id='jspsych-serial-reaction-time-stimulus' style='margin:auto; display: table; table-layout: fixed; border-spacing:"+square_size/4+"px'>";
|
|
for(var i=0; i<grid.length; i++){
|
|
stimulus += "<div class='jspsych-serial-reaction-time-stimulus-row' style='display:table-row;'>";
|
|
for(var j=0; j<grid[i].length; j++){
|
|
var classname = 'jspsych-serial-reaction-time-stimulus-cell';
|
|
|
|
stimulus += "<div class='"+classname+"' id='jspsych-serial-reaction-time-stimulus-cell-"+i+"-"+j+"' "+
|
|
"data-row="+i+" data-column="+j+" "+
|
|
"style='width:"+square_size+"px; height:"+square_size+"px; display:table-cell; vertical-align:middle; text-align: center; cursor: pointer; font-size:"+square_size/2+"px;";
|
|
if(grid[i][j] == 1){
|
|
stimulus += "border: 2px solid black;"
|
|
}
|
|
if(typeof target !== 'undefined' && target[0] == i && target[1] == j){
|
|
stimulus += "background-color: "+target_color+";"
|
|
}
|
|
stimulus += "'>";
|
|
if(typeof labels !=='undefined' && labels[i][j] !== false){
|
|
stimulus += labels[i][j]
|
|
}
|
|
stimulus += "</div>";
|
|
}
|
|
stimulus += "</div>";
|
|
}
|
|
stimulus += "</div>";
|
|
|
|
return stimulus
|
|
}
|
|
|
|
return plugin;
|
|
})();
|