// timing parameters: [intertrial gap, optional length to display target]
// if optional length to display target is missing, then target is displayed until subject responds.
(function( $ ) {
jsPsych.categorize_unknown = (function(){
var plugin = {};
plugin.create = function(params) {
cu_stims = params["stimuli"];
trials = new Array(cu_stims.length);
for(var i = 0; i < trials.length; i++)
{
trials[i] = {};
trials[i]["type"] = "categorize_unknown";
trials[i]["a_path"] = cu_stims[i];
trials[i]["timing"] = params["timing"];
trials[i]["choices"] = params["choices"];
if(params["prompt"] != undefined){
trials[i]["prompt"] = params["prompt"];
}
if(params["data"]!=undefined){
trials[i]["data"] = params["data"][i];
}
}
return trials;
}
plugin.trial = function($this, block, trial, part)
{
switch(part){
case 1:
p1_time = (new Date()).getTime();
$this.append($('
', {
"src": trial.a_path,
"class": 'cu'
}));
if(trial.timing[1]!=undefined){
setTimeout(function(){plugin.trial($this, block, trial, part + 1);}, trial.timing[1]);
} else {
//show prompt here
$this.append(trial.prompt);
plugin.trial($this, block, trial, part + 1);
}
break;
case 2:
p2_time = (new Date()).getTime();
if(trial.timing[1]!=undefined){
$('.cu').remove();
$this.append(trial.prompt);
}
startTime = (new Date()).getTime();
var resp_func = function(e) {
var flag = false;
// check if the key is any of the options, or if it is an accidental keystroke
for(var i=0;i