forked from expfactory-experiments/local-global-shape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiment.js
323 lines (302 loc) · 11 KB
/
experiment.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
/* ************************************ */
/* Define helper functions */
/* ************************************ */
function evalAttentionChecks() {
var check_percent = 1
if (run_attention_checks) {
var attention_check_trials = jsPsych.data.getTrialsOfType('attention-check')
var checks_passed = 0
for (var i = 0; i < attention_check_trials.length; i++) {
if (attention_check_trials[i].correct === true) {
checks_passed += 1
}
}
check_percent = checks_passed / attention_check_trials.length
}
return check_percent
}
var randomDraw = function(lst) {
var index = Math.floor(Math.random() * (lst.length))
return lst[index]
}
var makeTrialList = function(len, stim, data) {
//choice array: numeric key codes for the numbers 1-4
var choice_array = choices
// 1 is a switch trial: ensure half the trials are switch trials
var switch_trials = jsPsych.randomization.repeat([0, 1], len / 2)
//create test array
output_list = []
//randomize first trial
var trial_index = jsPsych.randomization.shuffle(['global', 'local'])[0]
if (trial_index == 'global') {
tmpi = Math.floor(Math.random() * (stim.length / 2))
} else {
tmpi = Math.floor(Math.random() * (stim.length / 2)) + stim.length / 2
}
var tmp_obj = {}
tmp_obj.stimulus = stim[tmpi]
var tmp_data = $.extend({}, data[tmpi])
tmp_data.switch = 0
tmp_data.correct_response = choice_array[task_shapes.indexOf(data[tmpi][trial_index + '_shape'])]
tmp_obj.data = tmp_data
output_list.push(tmp_obj)
/* randomly sample from either the global or local stimulus lists (first and half part of the stim/data arrays)
On stay trials randomly select an additional stimulus from that array. On switch trials choose from the other list. */
for (i = 1; i < switch_trials.length; i++) {
tmp_obj = {}
if (switch_trials[i] == 1) {
if (trial_index == 'global') {
trial_index = 'local'
} else {
trial_index = 'global'
}
}
if (trial_index == 'global') {
tmpi = Math.floor(Math.random() * (stim.length / 2))
} else {
tmpi = Math.floor(Math.random() * (stim.length / 2)) + stim.length / 2
}
tmp_obj.stimulus = stim[tmpi]
tmp_data = $.extend({}, data[tmpi])
tmp_data.switch = switch_trials[i]
tmp_data.correct_response = choice_array[task_shapes.indexOf(data[tmpi][trial_index +
'_shape'
])]
tmp_obj.data = tmp_data
output_list.push(tmp_obj)
}
return output_list
}
var getInstructFeedback = function() {
return '<div class = centerbox><p class = center-block-text>' + feedback_instruct_text +
'</p></div>'
}
/* ************************************ */
/* Define experimental variables */
/* ************************************ */
// generic task variables
var run_attention_checks = false
var attention_check_thresh = 0.65
var sumInstructTime = 0 //ms
var instructTimeThresh = 0 ///in seconds
// task specific variables
var choices = [49, 50, 51, 52]
var current_trial = 0
var task_colors = jsPsych.randomization.shuffle(['blue', 'black'])
var task_shapes = ['circle', 'X', 'triangle', 'square']
var path = 'images/'
var prefix = '<div class = centerbox><img src = "'
var postfix = '"</img></div>'
var stim = []
var data = []
var images = []
for (c = 0; c < task_colors.length; c++) {
if (c === 0) {
condition = 'global'
} else {
condition = 'local'
}
for (g = 0; g < task_shapes.length; g++) {
for (l = 0; l < task_shapes.length; l++) {
images.push([path + task_colors[c] + '_' + task_shapes[g] + 'of' + task_shapes[l] +
's.png'])
stim.push(prefix + path + task_colors[c] + '_' + task_shapes[g] + 'of' + task_shapes[l] +
's.png' + postfix)
data.push({
condition: condition,
global_shape: task_shapes[g],
local_shape: task_shapes[l]
})
}
}
}
//preload images
jsPsych.pluginAPI.preloadImages(images)
//Set up experiment stimulus order
var practice_trials = makeTrialList(36, stim, data)
for (i = 0; i < practice_trials.length; i++) {
practice_trials[i].key_answer = practice_trials[i].data.correct_response
}
var test_trials = makeTrialList(96, stim, data)
/* ************************************ */
/* Set up jsPsych blocks */
/* ************************************ */
// Set up attention check node
var attention_check_block = {
type: 'attention-check',
data: {
trial_id: "attention_check"
},
timing_response: 180000,
response_ends_trial: true,
timing_post_trial: 200
}
var attention_node = {
timeline: [attention_check_block],
conditional_function: function() {
return run_attention_checks
}
}
//Set up post task questionnaire
var post_task_block = {
type: 'survey-text',
data: {
trial_id: "post task questions"
},
questions: ['<p class = center-block-text style = "font-size: 20px">Please summarize what you were asked to do in this task.</p>',
'<p class = center-block-text style = "font-size: 20px">Do you have any comments about this task?</p>'],
rows: [15, 15],
columns: [60,60]
};
/* define static blocks */
var end_block = {
type: 'poldrack-text',
data: {
trial_id: "end",
exp_id: 'local_global_shape'
},
timing_response: 180000,
text: '<div class = centerbox><p class = center-block-text>Thanks for completing this task!</p><p class = center-block-text>Press <strong>enter</strong> to continue.</p></div>',
cont_key: [13],
timing_post_trial: 0
};
var feedback_instruct_text =
'Welcome to the experiment. This experiment will take about 8 minutes. Press <strong>enter</strong> to begin.'
var feedback_instruct_block = {
type: 'poldrack-text',
cont_key: [13],
data: {
trial_id: "instruction"
},
text: getInstructFeedback,
timing_post_trial: 0,
timing_response: 180000
};
/// This ensures that the subject does not read through the instructions too quickly. If they do it too quickly, then we will go over the loop again.
var instructions_block = {
type: 'poldrack-instructions',
data: {
trial_id: "instruction"
},
pages: [
'<div class = centerbox><p class = block-text>In this experiment you will see blue or black shapes made up of smaller shapes, like the image below. All of the smaller shapes will always be the same shape. Both the large shape and the smaller shapes can either be a circle, X, triangle or square.</p><div class = instructionImgBox><img src = "images/blue_squareofcircles.png" height = 200 width = 200></img></div></div>',
'<div class = centerbox><p class = block-text>Your task is to respond based on how many lines either the large or small shapes have, depending on the color. If the shape is ' +
task_colors[0] + ' respond based on how many lines the large shape has. If the shape is ' +
task_colors[1] +
' respond based on how many lines the small shape has.</p><p class = block-text>Use the number keys to respond 1 for a circle, 2 for an X, 3 for a triangle and 4 for a square.</p></div>',
'<div class = centerbox><p class = block-text>For instance, for the shape below you would press 3 because it is ' +
task_colors[1] +
' which means you should respond based on the smaller shapes. If the shape was instead ' +
task_colors[0] +
' you would press 2.</p><div class = instructionImgBox><img src = "images/' +
task_colors[1] + '_Xoftriangles.png" height = 200 width = 200></img></div></div>'
],
allow_keys: false,
show_clickable_nav: true,
timing_post_trial: 1000
};
var instruction_node = {
timeline: [feedback_instruct_block, instructions_block],
/* This function defines stopping criteria */
loop_function: function(data) {
for (i = 0; i < data.length; i++) {
if ((data[i].trial_type == 'poldrack-instructions') && (data[i].rt != -1)) {
rt = data[i].rt
sumInstructTime = sumInstructTime + rt
}
}
if (sumInstructTime <= instructTimeThresh * 1000) {
feedback_instruct_text =
'Read through instructions too quickly. Please take your time and make sure you understand the instructions. Press <strong>enter</strong> to continue.'
return true
} else if (sumInstructTime > instructTimeThresh * 1000) {
feedback_instruct_text =
'Done with instructions. Press <strong>enter</strong> to continue.'
return false
}
}
}
var start_practice_block = {
type: 'poldrack-text',
timing_response: 180000,
data: {
trial_id: "practice_intro"
},
text: '<div class = centerbox><p class = center-block-text>We will start with some practice. During practice you will get feedback about whether you responded correctly. You will not get feedback during the rest of the experiment.</p><p class = center-block-text>Press <strong>enter</strong> to begin.</p></div>',
cont_key: [13],
timing_post_trial: 1000
};
var start_test_block = {
type: 'poldrack-text',
timing_response: 180000,
data: {
trial_id: "test_intro"
},
text: '<div class = centerbox><p class = center-block-text>We will now start the test. Remember, if the shape is ' +
task_colors[0] + ' respond based on how many lines the large shape has. If the shape is ' +
task_colors[1] +
' respond based on how many lines the small shape has.</p><p class = center-block-text>Press <strong>enter</strong> to begin.</p></div>',
cont_key: [13],
timing_post_trial: 1000,
on_finish: function() {
current_trial = 0
}
};
/* define practice block */
var practice_block = {
type: 'poldrack-categorize',
timeline: practice_trials,
is_html: true,
data: {
trial_id: "stim",
exp_stage: "practice"
},
correct_text: '<div class = centerbox><div style="color:green"; class = center-text>Correct!</div></div>',
incorrect_text: '<div class = centerbox><div style="color:red"; class = center-text>Incorrect</div></div>',
timeout_message: '<div class = centerbox><div class = center-text>Respond faster!</div></div>',
choices: choices,
timing_feedback_duration: 1000,
show_stim_with_feedback: false,
timing_response: 2000,
timing_post_trial: 500,
on_finish: function(data) {
jsPsych.data.addDataToLastTrial({
trial_num: current_trial
})
current_trial += 1
}
}
/* define test block */
var test_block = {
type: 'poldrack-single-stim',
timeline: test_trials,
data: {
trial_id: "stim",
exp_stage: "test"
},
is_html: true,
choices: choices,
timing_post_trial: 500,
timing_response: 2000,
on_finish: function(data) {
correct = false
if (data.key_press === data.correct_response) {
correct = true
}
jsPsych.data.addDataToLastTrial({
correct: correct,
trial_num: current_trial
})
current_trial += 1
}
};
/* create experiment definition array */
var local_global_shape_experiment = [];
local_global_shape_experiment.push(instruction_node);
local_global_shape_experiment.push(start_practice_block);
local_global_shape_experiment.push(practice_block);
local_global_shape_experiment.push(start_test_block);
local_global_shape_experiment.push(test_block);
local_global_shape_experiment.push(attention_node)
local_global_shape_experiment.push(post_task_block)
local_global_shape_experiment.push(end_block);