generated from cogtoolslab/project_template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
jspsych-video-overlay-button-response.js
397 lines (358 loc) · 13.7 KB
/
jspsych-video-overlay-button-response.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
/**
* jspsych-video-overlay-button-response
* Josh de Leeuw
*
* plugin for playing a video file and getting a button response.
*
* ADAPTED to hide the video after stopping it—DO NOT simply overwrite.
*
* documentation: docs.jspsych.org
*
**/
jsPsych.plugins["video-overlay-button-response"] = (function() {
var plugin = {};
jsPsych.pluginAPI.registerPreload('video-overlay-button-response', 'overlay', 'image');
// jsPsych.pluginAPI.registerPreload('video-overlay-button-response', 'stimulus', 'video'); // for some reason the preloading of videos is currently broken
plugin.info = {
name: 'video-overlay-button-response',
description: '',
parameters: {
stimulus: {
type: jsPsych.plugins.parameterType.VIDEO,
pretty_name: 'Video',
default: undefined,
description: 'The video file to play.'
},
overlay: {
type: jsPsych.plugins.parameterType.IMAGE,
pretty_name: 'Overlay',
default: null,
description: 'The overlay to place over the video before it starts.'
},
choices: {
type: jsPsych.plugins.parameterType.STRING,
pretty_name: 'Choices',
default: undefined,
array: true,
description: 'The labels for the buttons.'
},
button_html: {
type: jsPsych.plugins.parameterType.STRING,
pretty_name: 'Button HTML',
default: '<button class="jspsych-btn">%choice%</button>',
array: true,
description: 'The html of the button. Can create own style.'
},
prompt: {
type: jsPsych.plugins.parameterType.STRING,
pretty_name: 'Prompt',
default: null,
description: 'Any content here will be displayed below the buttons.'
},
width: {
type: jsPsych.plugins.parameterType.INT,
pretty_name: 'Width',
default: '',
description: 'The width of the video in pixels.'
},
height: {
type: jsPsych.plugins.parameterType.INT,
pretty_name: 'Height',
default: '',
description: 'The height of the video display in pixels.'
},
autoplay: {
type: jsPsych.plugins.parameterType.BOOL,
pretty_name: 'Autoplay',
default: false,
description: 'If true, the video will begin playing as soon as it has loaded.'
},
controls: {
type: jsPsych.plugins.parameterType.BOOL,
pretty_name: 'Controls',
default: false,
description: 'If true, the subject will be able to pause the video or move the playback to any point in the video.'
},
start: {
type: jsPsych.plugins.parameterType.FLOAT,
pretty_name: 'Start',
default: 0,
description: 'Time to start the clip.'
},
stop: {
type: jsPsych.plugins.parameterType.FLOAT,
pretty_name: 'Stop',
default: null,
description: 'Time to stop the clip.'
},
overlay_time: {
type: jsPsych.plugins.parameterType.FLOAT,
pretty_name: 'OverlayTime',
default: 3.,
description: 'How long to show the first frame and the overlay.'
},
blink_time: {
type: jsPsych.plugins.parameterType.FLOAT,
pretty_name: 'OverlayTime',
default: 250,
description: 'Length of blinks in milliseconds.'
},
rate: {
type: jsPsych.plugins.parameterType.FLOAT,
pretty_name: 'Rate',
default: 1,
description: 'The playback rate of the video. 1 is normal, <1 is slower, >1 is faster.'
},
trial_ends_after_video: {
type: jsPsych.plugins.parameterType.BOOL,
pretty_name: 'End trial after video finishes',
default: false,
description: 'If true, the trial will end immediately after the video finishes playing.'
},
trial_duration: {
type: jsPsych.plugins.parameterType.INT,
pretty_name: 'Trial duration',
default: null,
description: 'How long to show trial before it ends.'
},
margin_vertical: {
type: jsPsych.plugins.parameterType.STRING,
pretty_name: 'Margin vertical',
default: '0px',
description: 'The vertical margin of the button.'
},
margin_horizontal: {
type: jsPsych.plugins.parameterType.STRING,
pretty_name: 'Margin horizontal',
default: '8px',
description: 'The horizontal margin of the button.'
},
response_ends_trial: {
type: jsPsych.plugins.parameterType.BOOL,
pretty_name: 'Response ends trial',
default: true,
description: 'If true, the trial will end when subject makes a response.'
},
response_allowed_while_playing: {
type: jsPsych.plugins.parameterType.BOOL,
pretty_name: 'Response allowed while playing',
default: false,
description: 'If true, then responses are allowed while the video is playing. '+
'If false, then the video must finish playing before a response is accepted.'
}
}
}
plugin.trial = function(display_element, trial) {
// setup stimulus
var video_html = '<div>'
video_html += '<video id="jspsych-video-overlay-button-response-stimulus"';
if(trial.width) {
video_html += ' width="'+trial.width+'"';
}
if(trial.height) {
video_html += ' height="'+trial.height+'"';
}
// if(trial.autoplay & (trial.start == null)){
// // if autoplay is true and the start time is specified, then the video will start automatically
// // via the play() method, rather than the autoplay attribute, to prevent showing the first frame
// video_html += " autoplay ";
// }
if(trial.controls){
video_html +=" controls ";
}
// if (trial.start !== null) {
// // hide video element when page loads if the start time is specified,
// // to prevent the video element from showing the first frame
// video_html += ' style="visibility: hidden;"';
// }
video_html +=">";
//preloading blobs doesn't work for safari
//HACK turn off preloading for Safari
var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); // https://stackoverflow.com/questions/7944460/detect-safari-browser#23522755
var video_preload_blob = jsPsych.pluginAPI.getVideoBuffer(trial.stimulus[0]);
if(isSafari){
video_preload_blob = false;
console.log("Turning off preloading for Safari. Additional delay possible.");
}
if(!video_preload_blob) {
for(var i=0; i<trial.stimulus.length; i++){
var file_name = trial.stimulus[i];
if (DEBUG_MODE){console.log("Loading stim "+file_name);}
if(file_name.indexOf('?') > -1){
file_name = file_name.substring(0, file_name.indexOf('?'));
}
var type = file_name.substr(file_name.lastIndexOf('.') + 1);
type = type.toLowerCase();
if (type == "mov") {
console.warn('Warning: video-overlay-button-response plugin does not reliably support .mov files.')
}
video_html+='<source src="' + file_name + '" type="video/'+type+'">';
}
}
video_html += "</video>";
//save the html using only the video
video_html_1 = video_html;
//add the image
if (trial.overlay != null){
overlay_html = '<image id="jspsych-video-overlay-button-response-overlay"';
if(trial.width) {
overlay_html += ' width="'+trial.width+'"';
}
if(trial.height) {
overlay_html += ' height="'+trial.height+'"';
}
overlay_html += 'src="' + trial.overlay + '"';
overlay_html += 'style = "position: absolute; margin-left: -' + trial.width + 'px;"';
overlay_html += '/image>';
//done adding the image
video_html += overlay_html;
}
video_html_2 = "</div>";
//display buttons
var buttons = [];
if (Array.isArray(trial.button_html)) {
if (trial.button_html.length == trial.choices.length) {
buttons = trial.button_html;
} else {
console.error('Error in video-overlay-button-response plugin. The length of the button_html array does not equal the length of the choices array');
}
} else {
for (var i = 0; i < trial.choices.length; i++) {
buttons.push(trial.button_html);
}
}
video_html_2 += '<div id="jspsych-video-overlay-button-response-btngroup">';
for (var i = 0; i < trial.choices.length; i++) {
var str = buttons[i].replace(/%choice%/g, trial.choices[i]);
video_html_2 += '<div class="jspsych-video-overlay-button-response-button" style="cursor: pointer; display: inline-block; margin:'+trial.margin_vertical+' '+trial.margin_horizontal+'" id="jspsych-video-overlay-button-response-button-' + i +'" data-choice="'+i+'">'+str+'</div>';
}
video_html_2 += '</div>';
// add prompt if there is one
if (trial.prompt !== null) {
video_html_2 += trial.prompt;
}
display_element.innerHTML = video_html_1 + overlay_html + video_html_2;
var video_element = display_element.querySelector('#jspsych-video-overlay-button-response-stimulus');
var overlay_element = display_element.querySelector('#jspsych-video-overlay-button-response-overlay');
if(video_preload_blob){video_element.src = video_preload_blob;}
disable_buttons();
video_element.onended = function(){
if(trial.trial_ends_after_video){
end_trial();
} else if (!trial.response_allowed_while_playing) {
enable_buttons();
}
}
video_element.playbackRate = trial.rate;
if(trial.stop !== null){
video_element.addEventListener('timeupdate', function(e){
var currenttime = video_element.currentTime;
if(currenttime >= trial.stop){
video_element.pause();
video_element.style.visibility = "hidden"; //hide the video after stop
enable_buttons(); //enable response after video stopped
}
})
}
var start_time = performance.now();
//wait and then start the trial
if (trial.overlay != null){
jsPsych.pluginAPI.setTimeout(hide_overlay_and_start,trial.overlay_time*1000);
} else{
hide_overlay_and_start();
}
//set up blinks
if (trial.overlay != null){
hidden = true;
_.range(0,trial.overlay_time*1000,trial.blink_time).forEach(
t => {
if(hidden){
jsPsych.pluginAPI.setTimeout(() => {overlay_element.hidden = true;}, t);}
else{
jsPsych.pluginAPI.setTimeout(() => {overlay_element.hidden = false;}, t);}
hidden = !hidden;
}
)
}
function hide_overlay_and_start() {
overlay_element.hidden = true;
video_element.play();
}
if(trial.response_allowed_while_playing){
enable_buttons();
} else {
disable_buttons();
}
// store response
var response = {
rt: null,
button: null
};
// function to end trial when it is time
function end_trial() {
// kill any remaining setTimeout handlers
jsPsych.pluginAPI.clearAllTimeouts();
// stop the video file if it is playing
// remove any remaining end event handlers
display_element.querySelector('#jspsych-video-overlay-button-response-stimulus').pause();
display_element.querySelector('#jspsych-video-overlay-button-response-stimulus').onended = function() {};
// gather the data to store for the trial
var trial_data = {
rt: response.rt,
stimulus: trial.stimulus,
response: trial.choices[response.button] //return the button label instead of index
};
// 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(choice) {
// measure rt
var end_time = performance.now();
var rt = end_time - start_time;
response.button = parseInt(choice);
response.rt = rt;
// 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
video_element.className += ' responded';
// disable all the buttons after a response
disable_buttons();
if (trial.response_ends_trial) {
end_trial();
}
}
function button_response(e){
var choice = e.currentTarget.getAttribute('data-choice'); // don't use dataset for jsdom compatibility
after_response(choice);
}
function disable_buttons() {
var btns = document.querySelectorAll('.jspsych-video-overlay-button-response-button');
for (var i=0; i<btns.length; i++) {
var btn_el = btns[i].querySelector('button');
if(btn_el){
btn_el.disabled = true;
}
btns[i].removeEventListener('click', button_response);
}
}
function enable_buttons() {
var btns = document.querySelectorAll('.jspsych-video-overlay-button-response-button');
for (var i=0; i<btns.length; i++) {
var btn_el = btns[i].querySelector('button');
if(btn_el){
btn_el.disabled = false;
}
btns[i].addEventListener('click', button_response);
}
}
// end trial if time limit is set
if (trial.trial_duration !== null) {
jsPsych.pluginAPI.setTimeout(function() {
end_trial();
}, trial.trial_duration);
}
};
return plugin;
})();