This repository has been archived by the owner on Nov 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
experiment.html
750 lines (683 loc) · 32.8 KB
/
experiment.html
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
<!DOCTYPE html>
<html lang="en" style="background: #C0C0C0;height: 100%;">
<head>
<title>Psychology Study</title>
<meta charset="utf-8">
<script src="libs/jquery-min.js" type="text/javascript"></script>
<script src="libs/underscore-min.js" type="text/javascript"></script>
<script src="rms.js" type="text/javascript"></script>
<script src="jspsych.js" type="text/javascript"></script>
<script src="plugins/jspsych-brms.js" type="text/javascript"></script>
<script src="plugins/jspsych-image-cpt.js" type="text/javascript"></script>
<script src="plugins/jspsych-survey-likert.js" type="text/javascript"></script>
<script src="plugins/jspsych-survey-multi-choice.js" type="text/javascript"></script>
<script src="plugins/jspsych-survey-multi-select.js" type="text/javascript"></script>
<script src="plugins/jspsych-survey-text.js" type="text/javascript"></script>
<script src="plugins/jspsych-instructions.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/jspsych.css" type="text/css"></link>
<script>
// Shuffle list function
function shuffle(array) {
let currentIndex = array.length,
randomIndex;
// While there remain elements to shuffle...
while (currentIndex != 0) {
// Pick a remaining element...
let randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex--;
// And swap it with the current element.
[array[currentIndex], array[randomIndex]] = [
array[randomIndex], array[currentIndex]
];
}
return array;
}
// Downlowd file function
function download(filename, text) {
let element = document.createElement('a');
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
element.setAttribute('download', filename);
element.style.display = 'none';
document.body.appendChild(element);
element.click();
document.body.removeChild(element);
}
// Create survey trials add 3 quesions in each trial
function getSurveyTrials(survey_type, survey_name, questions, survey_direction, labels) {
let survey_trials = [];
for (let i = 0; i < questions.length; i += 3) {
survey_trials.push({
questions: [{
labels: labels,
prompt: questions[i],
required: true
}, {
labels: labels,
prompt: questions[i + 1],
required: true
}, {
labels: labels,
prompt: questions[i + 2],
required: true
}],
type: survey_type,
direction: survey_direction,
name: survey_name + "_" + i
});
}
return survey_trials;
}
let subjectNumber = 0;
// Create start experiment trials, surveys and instructions
const start = [{
pages: [
"השאלות וההוראות לניסוי מנוסחות בלשון נקבה, אך מתייחסות לשני המינים."
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "gender_instructions"
}, {
questions: [{
options: ["גבר", "אישה", "אחר"],
prompt: "כיצד את מגדירה עצמך?",
required: true
}, {
options: ["ימין", "שמאל", "אחר"],
prompt: "מהי היד הדומיננטית שלך?",
required: true
}, {
options: ["עברית", "ערבית", "אנגלית", "אחר"],
prompt: "מהי שפת האם שלך?",
required: true
}],
type: "survey-multi-choice",
direction: "rtl",
name: "question_start_1"
}, {
questions: [{
rows: 1.0,
columns: 2.0,
value: "",
prompt: "מהו גילך?",
required: true
}, {
rows: 1.0,
columns: 2.0,
value: "",
prompt: "מספר נבדקת?",
required: true,
}],
type: "survey-text",
direction: "rtl",
on_finish: function(data) {
const obj = JSON.parse(data.responses);
subjectNumber = obj.Q1;
},
name: "age_subject_q"
}, {
questions: [{
options: ["כן", "לא"],
prompt: "האם אובחנת בעבר כלוקה בהפרעת קשב?",
required: true
}],
type: "survey-multi-choice",
direction: "rtl",
name: "attention_1"
}, {
questions: [{
labels: ["1", "2", "3", "4", "5", "6", "7", "8", "9"],
prompt: "במידה ולא, מ-1 עד 9 עד כמה את חשה שיש לך הפרעת קשב?",
required: false
}],
type: "survey-likert",
direction: "rtl",
name: "attention_2"
}];
// Create ASRS instructions
const asrs_instructions = {
pages: [
"עבור כל אחד מהמצבים המתוארים בהיגדים הבאים, אנא סמני עד כמה זה מאפיין אותך<br>השתמשי בסולם הדירוג שלפניך הנע בין \"אף פעם לא\" לבין \"לעיתים תכופות מאד\""
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "intro_asrs"
};
// Create ASRS survey trials
function createAsrsTrials() {
const asrsQuestions_1 = [
"באיזו תכיפות את/ה מתקשה להשלים את הפרטים הקטנים של פרויקט, מהרגע בו החלקים המאתגרים הסתיימו?",
"באיזו תכיפות את/ה מתקשה ליצור סדר בדברים, כאשר את/ה מבצע/ת משימה המצריכה ארגון?",
"באיזו תכיפות את/ה מתקשה בזכירת פגישות או התחייבויות?",
"כאשר מוטלת עלייך משימה המצריכה חשיבה מרובה, באיזו תכיפות את נמנעת או דוחה את התחלתה?",
"באיזו תכיפות את מתפתלת או מניעה בקוצר רוח את ידייך או רגלייך, כאשר עלייך לשבת במקום למשך זמן ארוך?",
"באיזו תכיפות את מרגישה פעילה יתר על המידה או מרגישה צורך לעשות דברים, כאילו את פועלת על ידי מנוע?",
];
const asrsQuestions_2 = [
"באיזו תכיפות את מבצעת שגיאות הנובעות מרשלנות, כאשר עלייך לעבוד על פרויקט משעמם או קשה?",
"באיזו תכיפות את מתקשה בשמירה על ריכוז, כאשר את מבצעת עבודה משעממת או עבודה החוזרת על עצמה?",
"באיזו תכיפות את מתקשה להתרכז במה שאנשים אומרים לך, אפילו כאשר הם מדברים אלייך באופן ישיר?",
"באיזו תכיפות את מאבדת חפצים או מתקשה במציאתם, בעבודה או בבית?",
"באיזו תכיפות דעתך מוסחת על ידי פעילות או רעש בסביבתך?",
"באיזו תכיפות את קמה ממושבך במהלך פגישה או בכל סיטואציה אחרת, בה מצופה ממך להישאר במקומך?",
"באיזו תכיפות את מרגישה חסרת-מנוחה או קצרת רוח?",
"באיזו תכיפות את מתקשה להירגע ולהשתחרר כאשר יש לך זמן לעצמך?",
"באיזו תכיפות את מוצאת את עצמך מדברת יותר מידי כאשר את בסיטואציה חברתית?",
"כאשר את במהלך שיחה, באיזו תכיפות את מוצאת את עצמך מסיימת משפטים של האנשים עימם את מדברת, לפני שהם מסיימים אותם בעצמם?",
"באיזו תכיפות את מתקשה לחכות לתורך בסיטואציות בהן את נדרשת לכך?",
"באיזו תכיפות את מפריעה לאחרים כאשר הם עסוקים?"
]
const asrsLabels = [
"אף פעם ולא",
"לעיתים רחוקות",
"לפעמים",
"לעיתים קרובות",
"לעיתים תכופות מאוד"
]
asrs_1 = getSurveyTrials("survey-likert", "ASRS_1", asrsQuestions_1, "rtl", asrsLabels);
asrs_2 = getSurveyTrials("survey-likert", "ASRS_2", asrsQuestions_2, "rtl", asrsLabels);
return [...asrs_1, ...asrs_2];
}
// Create RMS trials instructions
const rms_instructions = {
pages: [
"בניסוי זה יוצגו ריבועים צבעוניים מרצדים, ומדי פעם יופיעו עליהם גירויים שונים. מטרתך היא לזהות היכן מופיע גירוי – האם מימין או משמאל לנקודה בה את מתמקדת במסך.",
"קצב הופעת הגירויים בניסוי מאוד משתנה. לפעמים הגירויים יופיעו במהירות בזה אחר זה, ולפעמים ייקח להם זמן. ",
"חשוב לנו מאוד לדעת מתי בדיוק התחילו להופיע הגירויים. לכן נבקש ממך למקד את המבט בצלב שבמרכז המסך, וללחוץ על מקש התשובה ברגע שאת יודעת את התשובה. אנא היי הכי מדוייקת והכי מהירה שאת יכולה להיות. ",
"אם ראית גירוי משמאל מרכז המסך, יש ללחוץ על המקש Q אם ראית גירוי מימין למרכז המסך, יש ללחוץ על המקש P.",
"כעת נעשה אימון קצר למטלה כדי לוודא שההוראות מובנות, במידה וישנן שאלות את מוזמנת לפנות לנסיין"
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "rms_instructions"
};
// Create RMS main trials instuctions
const rms_main_instructions = {
pages: [
"כעת נתחיל את המטלה. נבקשך לשבת בנוחות ככל האפשר ולמקם את האצבעות על שני המקשים P-ו Q. כשאת מוכנה, הקישי המשך."
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "rms_main_instructions"
};
let rms_errors = 0;
// Create RMS practice trials>>>>
function getRmsPracticeTrials(images, block) {
rms_trials = []
// For each image create RMS trial
shuffle(images).forEach(element => {
rms_trials.push({
type: "bRMS",
stimulus: element,
choices: ["q", "p"],
response_ends_trial: true,
post_trial_gap: 400,
stimulus_opacity: 0.3,
right_up: ['P'],
left_down: ['Q'],
stimulus_block: block,
validate: true,
validationCorrect: "images/validations/correct.png",
validationIncorrect: "images/validations/incorrect.png",
on_finish: function(data) {
if (data.correct == false) {
rms_errors++;
}
}
});
});
return rms_trials;
}
// Create RMS trials
function getRmsTrials(images, block) {
rms_trials = []
// For each image create RMS trial
shuffle(images).forEach(element => {
rms_trials.push({
type: "bRMS",
stimulus: element,
choices: ["q", "p"],
response_ends_trial: true,
post_trial_gap: 400,
stimulus_opacity: 0.3,
right_up: ['P'],
left_down: ['Q'],
stimulus_block: block,
validate: false,
validationCorrect: "images/validations/correct.png",
validationIncorrect: "images/validations/incorrect.png"
});
});
return rms_trials;
}
// Create RMS control trials
function getRmsControlTrials(images, block) {
rms_trials = []
// For each image create RMS trial
shuffle(images).forEach(element => {
rms_trials.push({
type: "bRMS",
stimulus: element,
rms_type: "control",
choices: ["q", "p"],
response_ends_trial: true,
post_trial_gap: 400,
stimulus_opacity: 0.3,
right_up: ['P'],
left_down: ['Q'],
stimulus_block: block,
validate: false,
validationCorrect: "images/validations/correct.png",
validationIncorrect: "images/validations/incorrect.png"
});
});
return rms_trials;
}
// CPT instructions
const cpt_instructions = {
pages: [
"בחלק הבא, יוצגו על המסך צורות שונות בצבעים שונים. עלייך ללחוץ על מקש הרווח אך ורק כשתראי ריבוע אדום",
"כעת נעשה אימון קצר למטלה כדי לוודא שההוראות מובנות, במידה וישנן שאלות את מוזמנת לפנות לנסיין"
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "cpt_instructions_1"
}
// CPT aftar practice instractions
const cpt_main_instructions = {
pages: [
"כעת נתחיל את המטלה. נבקשך לשבת בנוחות ככל האפשר ולמקם את ידך על מקש הרווח. כשאת מוכנה, הקישי המשך."
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "instructions_2"
}
// Create CPT trials
function createCpt(cptPercent, otherPercent, trialCount, ifValidate) {
const cptGaps = [1000, 1500, 2000, 2500];
const cptDuration = 100;
const size = 1.8;
const stimulusShape = "square";
const stimulusColor = "red";
const otherShapes = ["circle", "triangle", "star"];
const otherColors = ["yellow", "green", "blue"];
const cpt_main_instructions = {
pages: [
"כעת נתחיל את המטלה. נבקשך לשבת בנוחות ככל האפשר ולמקם את ידך על מקש הרווח. כשאת מוכנה, הקישי המשך."
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "instructions_2"
}
let gaps = [];
for (let i = 0; i < (trialCount / cptGaps.length); i++) {
cptGaps.forEach(element => {
gaps.push(element);
});
}
gaps = shuffle(gaps);
cpt_trials = [];
for (let i = 0; i < Math.floor(trialCount * cptPercent); i++) {
cpt_trials.push({
type: "image-cpt",
stimulus: "images/cpt/" + stimulusShape + "_" + stimulusColor + ".png",
validationCorrect: "images/validations/correct.png",
validationIncorrect: "images/validations/incorrect.png",
isStimulus: true,
response_ends_trial: false,
trial_duration: gaps.pop() + cptDuration,
stimulus_duration: cptDuration,
choices: [32],
validate: ifValidate
});
}
others = [];
for (let i = 0; i < Math.ceil((Math.floor(trialCount * otherPercent) / 3)); i++) {
otherShapes.forEach(currentShape => {
others.push({
type: "image-cpt",
stimulus: "images/cpt/" + currentShape + "_" + stimulusColor + ".png",
validationCorrect: "images/validations/correct.png",
validationIncorrect: "images/validations/incorrect.png",
isStimulus: false,
response_ends_trial: false,
trial_duration: gaps.pop() + cptDuration,
stimulus_duration: cptDuration,
choices: [32],
validate: ifValidate
});
});
}
others.slice(0, Math.floor(trialCount * otherPercent)).forEach(element => {
cpt_trials.push(element);
});
others = [];
for (let i = 0; i < Math.ceil((Math.floor(trialCount * otherPercent) / 3)); i++) {
otherColors.forEach(currentColor => {
others.push({
type: "image-cpt",
stimulus: "images/cpt/" + stimulusShape + "_" + currentColor + ".png",
validationCorrect: "images/validations/correct.png",
validationIncorrect: "images/validations/incorrect.png",
isStimulus: false,
response_ends_trial: false,
trial_duration: gaps.pop() + cptDuration,
stimulus_duration: cptDuration,
choices: [32],
validate: ifValidate
});
});
}
others.slice(0, Math.floor(trialCount * otherPercent)).forEach(element => {
cpt_trials.push(element);
});
maxValue = trialCount - cpt_trials.length;
let count = 0;
for (count = 0; count < maxValue; count += 9) {
for (let i = 0; i < otherShapes.length; i++) {
for (let j = 0; j < otherColors.length; j++) {
cpt_trials.push({
type: "image-cpt",
stimulus: "images/cpt/" + otherShapes[i] + "_" + otherColors[j] + ".png",
validationCorrect: "images/validations/correct.png",
validationIncorrect: "images/validations/incorrect.png",
isStimulus: false,
trial_duration: gaps.pop() + cptDuration,
stimulus_duration: cptDuration,
response_ends_trial: false,
choices: [32],
validate: ifValidate
});
}
}
}
return cpt_trials.slice(0, trialCount);
}
// Create end experimnt trials
const end = [{
questions: [{
labels: [
"1",
"2",
"3",
"4",
"5"
],
prompt: "מ-1 עד-5, עד כמה הייתה ברורה לך המטלה עם הריבועים המרצדים?",
required: true
}],
type: "survey-likert",
direction: "rtl",
name: "LAST_1"
}, {
questions: [{
options: [
"כן",
"לא"
],
prompt: "האם הייתה לך איזושהי אסטרטגיה?",
required: true
}],
type: "survey-multi-choice",
direction: "rtl",
name: "LAST_2"
}, {
questions: [{
rows: 7.0,
columns: 7.0,
value: "",
prompt: "אם כן, מהי?",
required: true
}],
type: "survey-text",
name: "LAST_3"
}, {
questions: [{
labels: [
"1",
"2",
"3",
"4",
"5"
],
prompt: "מ-1 עד-5, עד כמה הייתה ברורה לך המטלה בה היית צריכה להקיש למראה ריבוע אדום?",
required: true
}],
type: "survey-likert",
direction: "rtl",
name: "LAST_4"
}, {
questions: [{
options: [
"כן",
"לא"
],
prompt: "האם הייתה לך איזושהי אסטרטגיה?",
required: true
}],
type: "survey-multi-choice",
direction: "rtl",
name: "LAST_5"
}, {
questions: [{
rows: 7.0,
columns: 7.0,
value: "",
prompt: "אם כן, מהי?",
required: true
}],
type: "survey-text",
name: "LAST_6"
}, {
questions: [{
labels: [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
prompt: "בהשוואה לנהגת הממוצעת, כיצד היית מגדירה את הנהיגה שלך? כך ש-1 אומר הרבה מתחת לממוצע ו-7 אומר הרבה מעבר לממוצע?",
required: false
}],
type: "survey-likert",
direction: "rtl",
name: "DRIVE_1"
}, {
questions: [{
rows: 2.0,
columns: 1.0,
value: "",
prompt: "להערכתך, בכמה תאונות דרכים היית מעורבת <bold> כנהגת </bold> במהלך שלושת השנים האחרונות כולל תאונות קטנות וללא נזק",
required: false
}],
type: "survey-text",
name: "DRIVE_2"
}, {
questions: [{
rows: 2.0,
columns: 1.0,
value: "",
prompt: "להערכתך, בכמה תאונות דרכים היית מעורבת <bold> כהולכת רגל </bold> במהלך שלושת השנים האחרונות כולל תאונות קטנות וללא נזק",
required: true
}],
type: "survey-text",
name: "WALK"
}, {
pages: [
"תודה שהשתתפת בניסוי, לחצי על המשך לסיום הניסוי."
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "end_instructions"
}];
// create CPT timeline
let cptTimeline = [];
// Add cpt practice instructions
cptTimeline.push(cpt_instructions);
// Create CPT trials (practice) and add to timeline
shuffle(createCpt(0.3, 0.175, 15, true)).forEach(function(trial) {
cptTimeline.push(trial);
});
// Add cpt main instructions
cptTimeline.push(cpt_main_instructions)
// Create CPT trials (main) and add to timeline
shuffle(createCpt(0.3, 0.175, 320, false)).forEach(function(trial) {
cptTimeline.push(trial);
});
// Create RMS timeline
//All Practice stimulus
const rms_training_again_instructions = {
pages: [
"נראה שתוצאות האימון שלך לא היו מספיק טובות. בבקשה תקראי לנסיין שיסביר לך שנית את המטלה ותנסי שוב.",
"במידה ובאימון הבא תקבלי עוד פעם תוצאות לא טובות, הניסוי יפסיק ותקבלי את התשלום או הקרדיט היחסיים לזמן ששהית בניסוי"
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
name: "instructions_rms_again"
}
const rms_training_second_catch = {
pages: [
"נראה שאין שיפור בתוצאות האימון. הניסוי נגמר, אנא קראי לנסיין."
],
show_clickable_nav: true,
type: "instructions",
direction: "rtl",
on_finish: function(data) {
jsPsych.endExperiment();
},
name: "instructions_rms_again"
}
const if_rms_trial_2 = {
timeline: [rms_training_second_catch],
conditional_function: function() {
console.log(rms_errors);
return (rms_errors > 3);
}
}
// All practice trials, same picture for 15 times
const imagesPractice = ["images/rms/f42887_e_001.jpg",
"images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg",
"images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg",
"images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg",
"images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg",
"images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg", "images/rms/f42887_e_001.jpg"
];
// All main task stimulus, not reverted
const imagesMain = [
"images/rms/f42887_e_001.jpg", "images/rms/f42887_e_005.jpg", "images/rms/f42887_e_015.jpg",
"images/rms/f42887_e_025.jpg", "images/rms/f42887_e_028.jpg", "images/rms/f42887_e_053.jpg",
"images/rms/f42887_e_058.jpg", "images/rms/f42887_e_064.jpg", "images/rms/f42887_e_072.jpg",
"images/rms/f42887_e_080.jpg", "images/rms/f42887_e_098.jpg", "images/rms/f42887_e_103.jpg",
"images/rms/f42887_e_121.jpg", "images/rms/f42887_e_127.jpg", "images/rms/f42887_e_140.jpg",
"images/rms/f42887_e_156.jpg", "images/rms/f42887_e_161.jpg", "images/rms/f42887_e_180.jpg",
"images/rms/f42887_e_202.jpg", "images/rms/f42887_e_241.jpg", "images/rms/f42887_e_245.jpg",
"images/rms/f42887_e_252.jpg", "images/rms/f42887_e_258.jpg", "images/rms/f42887_e_259.jpg",
"images/rms/f42887_e_278.jpg", "images/rms/f42887_e_289.jpg", "images/rms/f42887_e_293.jpg",
"images/rms/f42887_e_295.jpg", "images/rms/f42887_e_296.jpg", "images/rms/f42887_e_297.jpg",
"images/rms/f42887_e_298.jpg"
];
// All main task stimulus, reverted
const imagesMainReversed = [
"images/rms/f42887_e_001_1.jpg", "images/rms/f42887_e_005_1.jpg", "images/rms/f42887_e_015_1.jpg",
"images/rms/f42887_e_025_1.jpg", "images/rms/f42887_e_028_1.jpg", "images/rms/f42887_e_053_1.jpg",
"images/rms/f42887_e_058_1.jpg", "images/rms/f42887_e_064_1.jpg", "images/rms/f42887_e_072_1.jpg",
"images/rms/f42887_e_080_1.jpg", "images/rms/f42887_e_098_1.jpg", "images/rms/f42887_e_103_1.jpg",
"images/rms/f42887_e_121_1.jpg", "images/rms/f42887_e_127_1.jpg", "images/rms/f42887_e_140_1.jpg",
"images/rms/f42887_e_156_1.jpg", "images/rms/f42887_e_161_1.jpg", "images/rms/f42887_e_180_1.jpg",
"images/rms/f42887_e_202_1.jpg", "images/rms/f42887_e_241_1.jpg", "images/rms/f42887_e_245_1.jpg",
"images/rms/f42887_e_252_1.jpg", "images/rms/f42887_e_258_1.jpg", "images/rms/f42887_e_259_1.jpg",
"images/rms/f42887_e_278_1.jpg", "images/rms/f42887_e_289_1.jpg", "images/rms/f42887_e_293_1.jpg",
"images/rms/f42887_e_295_1.jpg", "images/rms/f42887_e_296_1.jpg", "images/rms/f42887_e_297_1.jpg",
"images/rms/f42887_e_298_1.jpg"
];
// Create RMS timeline
let rmsTimeline = [];
// Add Rms instructions
rmsTimeline.push(rms_instructions);
// Create all RMS practice trials
const trainingRmsTrials = getRmsPracticeTrials(imagesPractice, "training");
const if_rms_trial = {
timeline: [rms_training_again_instructions, ...shuffle(trainingRmsTrials), if_rms_trial_2],
conditional_function: function() {
if (rms_errors > 3) {
rms_errors = 0;
return true;
} else {
return false;
}
}
};
// Add all practice trials to RMS timeline in random order (using shuffle function)
shuffle(trainingRmsTrials).forEach(function(trial) {
rmsTimeline.push(trial);
});
rmsTimeline.push(if_rms_trial);
// Add RMS instuctions (for main trials)
rmsTimeline.push(rms_main_instructions);
// Create all RMS main trials (reverted and not reverted together)
const allMainRmsTrials = getRmsTrials(imagesMain, "main").concat(getRmsTrials(imagesMainReversed, "reversed"));
// Add all main trials to RMS timeline in random order (using shuffle function)
shuffle(allMainRmsTrials).forEach(function(trial) {
rmsTimeline.push(trial);
});
let rmsControlTimeline = [];
// Add RMS control instructions
rmsControlTimeline.push(rms_instructions);
// Create all RMS control trials
const rmsControlTrials = getRmsControlTrials(imagesMain, "control_main").concat(getRmsControlTrials(imagesMainReversed, "control_reversed"));
// Add all control trials to RMS timeline in random order (using shuffle function)
shuffle(rmsControlTrials).forEach(function(trial) {
rmsControlTimeline.push(trial);
});
// The final timeline for the experiment
let experiment_timeline = []
// Add start to timeline
start.forEach(function(element) {
experiment_timeline.push(element);
});
// Add main parts to timeline the order changed if subject number is even or odd
const order = subjectNumber % 2 == 0 ? [cptTimeline, rmsTimeline] : [rmsTimeline, cptTimeline];
shuffle(order).forEach(function(part) {
part.forEach(function(element) {
experiment_timeline.push(element);
});
});
// Add control parts to timeline in random order (using shuffle function)
shuffle([rmsControlTimeline]).forEach(function(part) {
part.forEach(function(element) {
experiment_timeline.push(element);
});
});
// Add ASRS to timeline in random order (using shuffle function)
experiment_timeline.push(asrs_instructions);
shuffle(createAsrsTrials()).forEach(function(trial) {
experiment_timeline.push(trial);
});
// Add end to timeline
end.forEach(function(trial) {
experiment_timeline.push(trial);
});
// experiment_timeline = [...rmsControlTimeline]
// Init experiment (and run it)
jsPsych.init({
timeline: experiment_timeline,
fullscreen: true,
on_finish: function() {
// Download subject data as .csv file
download("data.csv", jsPsych.data.get().csv());
}
});
</script>
</head>
</head>