mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00

Plugins now have a consistent internal structure, with better variable scoping. This version breaks backward compatibility due to a change in the syntax of how experiment objects are declared.
114 lines
2.4 KiB
JavaScript
Executable File
114 lines
2.4 KiB
JavaScript
Executable File
// jspsych.js - a jQuery plugin for running psychology experiments
|
|
//
|
|
// Josh de Leeuw and Drew Hendrickson
|
|
// Percepts and Concepts Lab, Indiana University
|
|
//
|
|
(function( $ ) {
|
|
$.fn.jsPsych = function(options) {
|
|
// build main options list before element iteration
|
|
var opts = $.extend({}, $.fn.jsPsych.defaults, options);
|
|
// exp structure
|
|
var exp_blocks = [];
|
|
var curr_block = 0;
|
|
// execute experiment
|
|
return this.each(function() {
|
|
$this = $(this);
|
|
|
|
// take the experiment structure and dynamically create a set of blocks
|
|
exp_blocks = new Array(opts["experiment_structure"].length);
|
|
|
|
for(var i = exp_blocks.length-1; i>=0; i--)
|
|
{
|
|
var trials = "undefined";
|
|
|
|
for(var j = 0; j < opts["plugins"].length; j++)
|
|
{
|
|
if(opts["experiment_structure"][i]["type"] == opts["plugins"][j]["type"])
|
|
{
|
|
trials = opts["plugins"][j]["src"]["create"].call(null, opts["experiment_structure"][i]);
|
|
}
|
|
}
|
|
|
|
exp_blocks[i] = createBlock(trials);
|
|
|
|
}
|
|
|
|
// run the first block
|
|
exp_blocks[0].next();
|
|
});
|
|
//
|
|
// private functions //
|
|
//
|
|
function nextBlock()
|
|
{
|
|
curr_block += 1;
|
|
if(curr_block == exp_blocks.length)
|
|
{
|
|
finishExperiment();
|
|
} else {
|
|
exp_blocks[curr_block].next();
|
|
}
|
|
}
|
|
|
|
function createBlock(trial_list)
|
|
{
|
|
var block = {
|
|
trial_idx: -1,
|
|
|
|
trials: trial_list,
|
|
|
|
data: [],
|
|
|
|
next: function() {
|
|
this.trial_idx = this.trial_idx+1;
|
|
|
|
curr_trial = trial_list[this.trial_idx];
|
|
|
|
if ( typeof curr_trial == "undefined"){
|
|
return this.done();
|
|
}
|
|
|
|
do_trial(this, curr_trial);
|
|
},
|
|
|
|
done: nextBlock
|
|
}
|
|
|
|
return block;
|
|
}
|
|
|
|
function finishExperiment()
|
|
{
|
|
var all_data = [];
|
|
for(var i=0;i<exp_blocks.length;i++)
|
|
{
|
|
all_data[i] = exp_blocks[i].data;
|
|
}
|
|
|
|
opts["finish"].apply((new Object()), [all_data]);
|
|
}
|
|
|
|
function do_trial(block, trial)
|
|
{
|
|
for(var j = 0; j < opts["plugins"].length; j++)
|
|
{
|
|
if(trial.type == opts["plugins"][j]["type"])
|
|
{
|
|
opts["plugins"][j]["src"]["trial"].call(this, $this, block, trial, 1);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
//
|
|
// default parameters //
|
|
//
|
|
$.fn.jsPsych.defaults = {
|
|
// overall experiment parameters
|
|
experiment_structure: [],
|
|
plugins: []
|
|
};
|
|
}) (jQuery);
|
|
|
|
|
|
|