-
Notifications
You must be signed in to change notification settings - Fork 0
/
ET_MW_DEV_lastrun.py
1256 lines (1133 loc) · 55.6 KB
/
ET_MW_DEV_lastrun.py
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
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import psychopy
psychopy.useVersion('2022.2.5')
# --- Import packages ---
from psychopy import locale_setup
from psychopy import prefs
from psychopy import sound, gui, visual, core, data, event, logging, clock, colors, layout, iohub, hardware
from psychopy.constants import (NOT_STARTED, STARTED, PLAYING, PAUSED,
STOPPED, FINISHED, PRESSED, RELEASED, FOREVER)
import numpy as np # whole numpy lib is available, prepend 'np.'
from numpy import (sin, cos, tan, log, log10, pi, average,
sqrt, std, deg2rad, rad2deg, linspace, asarray)
from numpy.random import random, randint, normal, shuffle, choice as randchoice
import os # handy system and path functions
import sys # to get file system encoding
import psychopy.iohub as io
from psychopy.hardware import keyboard
from __future__ import division
from __future__ import print_function
import pylink
import os
import platform
import random
import time
import sys
from EyeLinkCoreGraphicsPsychoPy import EyeLinkCoreGraphicsPsychoPy
from psychopy import visual, core, event, monitors, gui
from PIL import Image # for preparing the Host backdrop image
from string import ascii_letters, digits
# Ensure that relative paths start from the same directory as this script
_thisDir = os.path.dirname(os.path.abspath(__file__))
os.chdir(_thisDir)
# Store info about the experiment session
psychopyVersion = '2022.2.5'
expName = 'COPY_Eyetracking_MW_reading6_08_noP_WORKING' # from the Builder filename that created this script
expInfo = {
'participant': '',
'session': '001',
}
expInfo['date'] = data.getDateStr() # add a simple timestamp
expInfo['expName'] = expName
expInfo['psychopyVersion'] = psychopyVersion
# Data file name stem = absolute path + name; later add .psyexp, .csv, .log, etc
filename = _thisDir + os.sep + u'data/%s_%s_%s' % (expInfo['participant'], expName, expInfo['date'])
# An ExperimentHandler isn't essential but helps with data saving
thisExp = data.ExperimentHandler(name=expName, version='',
extraInfo=expInfo, runtimeInfo=None,
originPath='D:\\Lab Research\\BAR Lab\\VR\\Code\\Leilani MW Eyetracking\\ET_MW_DEV_lastrun.py',
savePickle=True, saveWideText=True,
dataFileName=filename)
# save a log file for detail verbose info
logFile = logging.LogFile(filename + '.log', level=logging.EXP)
logging.console.setLevel(logging.WARNING) # this outputs to the screen, not a file
endExpNow = False # flag for 'escape' or other condition => quit the exp
frameTolerance = 0.001 # how close to onset before 'same' frame
# Start Code - component code to be run after the window creation
# --- Setup the Window ---
win = visual.Window(
size=[1280, 800], fullscr=True, screen=0,
winType='pyglet', allowStencil=False,
monitor='testMonitor', color=[1.0000, 1.0000, 1.0000], colorSpace='rgb',
blendMode='avg', useFBO=True,
units='height')
win.mouseVisible = False
# store frame rate of monitor if we can measure it
expInfo['frameRate'] = win.getActualFrameRate()
if expInfo['frameRate'] != None:
frameDur = 1.0 / round(expInfo['frameRate'])
else:
frameDur = 1.0 / 60.0 # could not measure, so guess
# create a default keyboard (e.g. to check for escape)
defaultKeyboard = keyboard.Keyboard(backend='iohub')
# --- Initialize components for Routine "Calibration_Instructions" ---
Cal_Instruct1 = visual.TextStim(win=win, name='Cal_Instruct1',
text="EYETRACKER CALIBRATION\n\nNow that you're fitted with the eyetracker, there will be some calibration points shown on the screen. Please follow the center of the targets with your eyes while keeping your head still. \n\nThe researcher may then need to make adjustments to the eyetracker. Please let them know if you're uncomfortable.\n\n(press spacebar to continue)",
font='Open Sans',
pos=(0, 0), height=0.05, wrapWidth=None, ori=0.0,
color=[-1.0000, -1.0000, -1.0000], colorSpace='rgb', opacity=None,
languageStyle='LTR',
depth=0.0);
Calibration_text_resp = keyboard.Keyboard()
# --- Initialize components for Routine "Launch" ---
# Run 'Begin Experiment' code from code
# import what we need to generate a random number
import random, xlrd
import time
# Use the machine time as a seed to generate a random number from (allows for closer to "truly random" numbers)
random.seed(time.process_time())
# set variable myRand to a random number (either 1 or 2); myRandP (EITHER 3 OR 4)
rand = random.randint(1, 2) # random number for choosing experimental condition order
randP = random.randint(3, 4) # random number for choosing reading pages order
# set new variable 'currCondition' depending on what random number we generated
if rand == 1:
# 50% chance of being in the PC condition
currCondition = "PC"
elif rand == 2:
# 50% chance of being in the SC condition
currCondition = "SC"
# CREATE A VARIABLE CALLED currConditionP and set it depending on randP
if randP == 3:
# 50% chance of being Tropo pages
currConditionP = "Tropo"
elif randP == 4:
# 50% chance of being Life pages
currConditionP = "Life"
# For testing purposes we can set our condition and pages here.
# Just comment out the two lines below to run the experiment randomly.
currCondition = "SC"
# currConditionP = "Tropo"
# --- Initialize components for Routine "MW_def" ---
MWdefInstr = visual.ImageStim(
win=win,
name='MWdefInstr',
image='sin', mask=None, anchor='center',
ori=0.0, pos=(0, 0), size=(1, 0.8),
color=[1, 1, 1], colorSpace='rgb', opacity=None,
flipHoriz=False, flipVert=False,
texRes=128.0, interpolate=True, depth=0.0)
MWdefInstr_key_resp = keyboard.Keyboard()
# --- Initialize components for Routine "IntroExp" ---
text = visual.TextStim(win=win, name='text',
text=probeMessage,
font='Open Sans',
pos=(0, 0), height=0.05, wrapWidth=None, ori=0.0,
color='white', colorSpace='rgb', opacity=1.0,
languageStyle='LTR',
depth=0.0);
IntroExp_key_resp = keyboard.Keyboard()
# --- Initialize components for Routine "PageSkipping" ---
NoSkipping = visual.TextStim(win=win, name='NoSkipping',
text='Please read at your normal pace and do not skip pages.\n\n\n(press spacebar to continue)',
font='Open Sans',
pos=(0, 0), height=0.05, wrapWidth=None, ori=0.0,
color='white', colorSpace='rgb', opacity=None,
languageStyle='LTR',
depth=0.0);
key_Skip = keyboard.Keyboard()
# --- Initialize components for Routine "Reading" ---
# Run 'Begin Experiment' code from code_3
##ONE TIME INITIALIZATION START
# setting a bunch of defaults here (we will reset these in every practice or reading loop)
opacityImage1 = 0 # PC image opacity (by default our probe and intentionality images are hidden)
opacityImage2 = 0 # SC image opacity
time1 = 0 # variables for recording response time data
time2 = 0
resp1 = 0 # variables for recording key press data
resp2 = 0
printNow = 0 # used to trigger data writing to output file
keys = "" # stores keypress values
# these three variables are used to start our timers at the right spot and avoid some edge cases
firstLoop2 = True
firstRoutine2 = True
timerStarted2 = False
# start two clocks
mainTimer2 = core.Clock() # this one just runs for the whole PracticeTrial loop
probeTimer2 = core.Clock() # this one stops and restarts every time one of our probe/intentionality images pops up
myCount = 1 # this counts up and tells which value from the probe list we should use
# import some stuff just in case
import random, copy
from random import randint
from decimal import *
import csv
from numpy import *
from psychopy import core, event
event.getKeys() # clear the keyboard buffer just in case they recently pressed a relevant key
##ONE TIME INITIALIZATION END
# Counter for iterating through our probe2 list
myCount2 = 1
event.clearEvents() # clear events just in case they recently pressed a relevant key
# here's a list of the time in seconds between probes
# change this to adjust the probes for the Reading loop
probe2 = [0, 91, 112, 74, 98, 113, 62, 92, 79, 76, 62]
# first item in probe, 0, never happens because myCount starts at 1
Reading_key_resp = keyboard.Keyboard()
imagePages = visual.ImageStim(
win=win,
name='imagePages',
image='sin', mask=None, anchor='center',
ori=0.0, pos=(0, 0), size=(0.85, 0.85),
color=[1, 1, 1], colorSpace='rgb', opacity=1.0,
flipHoriz=False, flipVert=False,
texRes=128.0, interpolate=True, depth=-2.0)
PCProbe = visual.ImageStim(
win=win,
name='PCProbe',
image='images/PC_v2.png', mask=None, anchor='center',
ori=0.0, pos=(0, 0), size=(1, 0.85),
color=[1, 1, 1], colorSpace='rgb', opacity=1.0,
flipHoriz=False, flipVert=False,
texRes=128.0, interpolate=True, depth=-3.0)
SCProbe = visual.ImageStim(
win=win,
name='SCProbe',
image='images/SC_v2.png', mask=None, anchor='center',
ori=0, pos=(0, 0), size=(1, 0.85),
color=[1, 1, 1], colorSpace='rgb', opacity=1.0,
flipHoriz=False, flipVert=False,
texRes=128, interpolate=True, depth=-4.0)
# --- Initialize components for Routine "EYE_RECORD_STOP" ---
EYE_Record_STOP = hardware.eyetracker.EyetrackerControl(
tracker=eyetracker,
actionType='Stop Only'
)
# --- Initialize components for Routine "blank" ---
textInterval = visual.TextStim(win=win, name='textInterval',
text=None,
font='Open Sans',
pos=(0, 0), height=0.1, wrapWidth=None, ori=0.0,
color='white', colorSpace='rgb', opacity=None,
languageStyle='LTR',
depth=0.0);
# --- Initialize components for Routine "EndText" ---
EndExpText = visual.TextStim(win=win, name='EndExpText',
text="Thank you for participating in this experiment!\n\nPlease let the research assistant know if you would like to be debriefed.\n\nThank you!\n\n(Press 'space' to continue)",
font='Open Sans',
pos=(0, 0), height=0.05, wrapWidth=None, ori=0.0,
color='white', colorSpace='rgb', opacity=None,
languageStyle='LTR',
depth=0.0);
key_resp = keyboard.Keyboard()
# Create some handy timers
globalClock = core.Clock() # to track the time since experiment started
routineTimer = core.Clock() # to track time remaining of each (possibly non-slip) routine
# --- Prepare to start Routine "Calibration_Instructions" ---
continueRoutine = True
routineForceEnded = False
# update component parameters for each repeat
Calibration_text_resp.keys = []
Calibration_text_resp.rt = []
_Calibration_text_resp_allKeys = []
# keep track of which components have finished
Calibration_InstructionsComponents = [Cal_Instruct1, Calibration_text_resp]
for thisComponent in Calibration_InstructionsComponents:
thisComponent.tStart = None
thisComponent.tStop = None
thisComponent.tStartRefresh = None
thisComponent.tStopRefresh = None
if hasattr(thisComponent, 'status'):
thisComponent.status = NOT_STARTED
# reset timers
t = 0
_timeToFirstFrame = win.getFutureFlipTime(clock="now")
frameN = -1
# --- Run Routine "Calibration_Instructions" ---
while continueRoutine:
# get current time
t = routineTimer.getTime()
tThisFlip = win.getFutureFlipTime(clock=routineTimer)
tThisFlipGlobal = win.getFutureFlipTime(clock=None)
frameN = frameN + 1 # number of completed frames (so 0 is the first frame)
# update/draw components on each frame
# *Cal_Instruct1* updates
if Cal_Instruct1.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
Cal_Instruct1.frameNStart = frameN # exact frame index
Cal_Instruct1.tStart = t # local t and not account for scr refresh
Cal_Instruct1.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(Cal_Instruct1, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'Cal_Instruct1.started')
Cal_Instruct1.setAutoDraw(True)
# *Calibration_text_resp* updates
waitOnFlip = False
if Calibration_text_resp.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
Calibration_text_resp.frameNStart = frameN # exact frame index
Calibration_text_resp.tStart = t # local t and not account for scr refresh
Calibration_text_resp.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(Calibration_text_resp, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'Calibration_text_resp.started')
Calibration_text_resp.status = STARTED
# keyboard checking is just starting
waitOnFlip = True
win.callOnFlip(Calibration_text_resp.clock.reset) # t=0 on next screen flip
win.callOnFlip(Calibration_text_resp.clearEvents, eventType='keyboard') # clear events on next screen flip
if Calibration_text_resp.status == STARTED and not waitOnFlip:
theseKeys = Calibration_text_resp.getKeys(keyList=['space'], waitRelease=False)
_Calibration_text_resp_allKeys.extend(theseKeys)
if len(_Calibration_text_resp_allKeys):
Calibration_text_resp.keys = _Calibration_text_resp_allKeys[-1].name # just the last key pressed
Calibration_text_resp.rt = _Calibration_text_resp_allKeys[-1].rt
# a response ends the routine
continueRoutine = False
# check for quit (typically the Esc key)
if endExpNow or defaultKeyboard.getKeys(keyList=["escape"]):
core.quit()
# check if all components have finished
if not continueRoutine: # a component has requested a forced-end of Routine
routineForceEnded = True
break
continueRoutine = False # will revert to True if at least one component still running
for thisComponent in Calibration_InstructionsComponents:
if hasattr(thisComponent, "status") and thisComponent.status != FINISHED:
continueRoutine = True
break # at least one component has not yet finished
# refresh the screen
if continueRoutine: # don't flip if this routine is over or we'll get a blank screen
win.flip()
# --- Ending Routine "Calibration_Instructions" ---
for thisComponent in Calibration_InstructionsComponents:
if hasattr(thisComponent, "setAutoDraw"):
thisComponent.setAutoDraw(False)
# check responses
if Calibration_text_resp.keys in ['', [], None]: # No response was made
Calibration_text_resp.keys = None
thisExp.addData('Calibration_text_resp.keys', Calibration_text_resp.keys)
if Calibration_text_resp.keys != None: # we had a response
thisExp.addData('Calibration_text_resp.rt', Calibration_text_resp.rt)
thisExp.nextEntry()
# the Routine "Calibration_Instructions" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
# --- Prepare to start Routine "Launch" ---
continueRoutine = True
routineForceEnded = False
# update component parameters for each repeat
# keep track of which components have finished
LaunchComponents = []
for thisComponent in LaunchComponents:
thisComponent.tStart = None
thisComponent.tStop = None
thisComponent.tStartRefresh = None
thisComponent.tStopRefresh = None
if hasattr(thisComponent, 'status'):
thisComponent.status = NOT_STARTED
# reset timers
t = 0
_timeToFirstFrame = win.getFutureFlipTime(clock="now")
frameN = -1
# --- Run Routine "Launch" ---
while continueRoutine:
# get current time
t = routineTimer.getTime()
tThisFlip = win.getFutureFlipTime(clock=routineTimer)
tThisFlipGlobal = win.getFutureFlipTime(clock=None)
frameN = frameN + 1 # number of completed frames (so 0 is the first frame)
# update/draw components on each frame
# check for quit (typically the Esc key)
if endExpNow or defaultKeyboard.getKeys(keyList=["escape"]):
core.quit()
# check if all components have finished
if not continueRoutine: # a component has requested a forced-end of Routine
routineForceEnded = True
break
continueRoutine = False # will revert to True if at least one component still running
for thisComponent in LaunchComponents:
if hasattr(thisComponent, "status") and thisComponent.status != FINISHED:
continueRoutine = True
break # at least one component has not yet finished
# refresh the screen
if continueRoutine: # don't flip if this routine is over or we'll get a blank screen
win.flip()
# --- Ending Routine "Launch" ---
for thisComponent in LaunchComponents:
if hasattr(thisComponent, "setAutoDraw"):
thisComponent.setAutoDraw(False)
# the Routine "Launch" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
# set up handler to look after randomisation of conditions etc
MWdefinitions = data.TrialHandler(nReps=1.0, method='sequential',
extraInfo=expInfo, originPath=-1,
trialList=data.importConditions(InstrFile),
seed=None, name='MWdefinitions')
thisExp.addLoop(MWdefinitions) # add the loop to the experiment
thisMWdefinition = MWdefinitions.trialList[0] # so we can initialise stimuli with some values
# abbreviate parameter names if possible (e.g. rgb = thisMWdefinition.rgb)
if thisMWdefinition != None:
for paramName in thisMWdefinition:
exec('{} = thisMWdefinition[paramName]'.format(paramName))
for thisMWdefinition in MWdefinitions:
currentLoop = MWdefinitions
# abbreviate parameter names if possible (e.g. rgb = thisMWdefinition.rgb)
if thisMWdefinition != None:
for paramName in thisMWdefinition:
exec('{} = thisMWdefinition[paramName]'.format(paramName))
# --- Prepare to start Routine "MW_def" ---
continueRoutine = True
routineForceEnded = False
# update component parameters for each repeat
MWdefInstr.setImage(chInstrSlide)
MWdefInstr_key_resp.keys = []
MWdefInstr_key_resp.rt = []
_MWdefInstr_key_resp_allKeys = []
# keep track of which components have finished
MW_defComponents = [MWdefInstr, MWdefInstr_key_resp]
for thisComponent in MW_defComponents:
thisComponent.tStart = None
thisComponent.tStop = None
thisComponent.tStartRefresh = None
thisComponent.tStopRefresh = None
if hasattr(thisComponent, 'status'):
thisComponent.status = NOT_STARTED
# reset timers
t = 0
_timeToFirstFrame = win.getFutureFlipTime(clock="now")
frameN = -1
# --- Run Routine "MW_def" ---
while continueRoutine:
# get current time
t = routineTimer.getTime()
tThisFlip = win.getFutureFlipTime(clock=routineTimer)
tThisFlipGlobal = win.getFutureFlipTime(clock=None)
frameN = frameN + 1 # number of completed frames (so 0 is the first frame)
# update/draw components on each frame
# *MWdefInstr* updates
if MWdefInstr.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
MWdefInstr.frameNStart = frameN # exact frame index
MWdefInstr.tStart = t # local t and not account for scr refresh
MWdefInstr.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(MWdefInstr, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'MWdefInstr.started')
MWdefInstr.setAutoDraw(True)
# *MWdefInstr_key_resp* updates
if MWdefInstr_key_resp.status == NOT_STARTED and t >= 0.0 - frameTolerance:
# keep track of start time/frame for later
MWdefInstr_key_resp.frameNStart = frameN # exact frame index
MWdefInstr_key_resp.tStart = t # local t and not account for scr refresh
MWdefInstr_key_resp.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(MWdefInstr_key_resp, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.addData('MWdefInstr_key_resp.started', t)
MWdefInstr_key_resp.status = STARTED
# keyboard checking is just starting
MWdefInstr_key_resp.clock.reset() # now t=0
if MWdefInstr_key_resp.status == STARTED:
theseKeys = MWdefInstr_key_resp.getKeys(keyList=['space', ], waitRelease=False)
_MWdefInstr_key_resp_allKeys.extend(theseKeys)
if len(_MWdefInstr_key_resp_allKeys):
MWdefInstr_key_resp.keys = _MWdefInstr_key_resp_allKeys[-1].name # just the last key pressed
MWdefInstr_key_resp.rt = _MWdefInstr_key_resp_allKeys[-1].rt
# a response ends the routine
continueRoutine = False
# check for quit (typically the Esc key)
if endExpNow or defaultKeyboard.getKeys(keyList=["escape"]):
core.quit()
# check if all components have finished
if not continueRoutine: # a component has requested a forced-end of Routine
routineForceEnded = True
break
continueRoutine = False # will revert to True if at least one component still running
for thisComponent in MW_defComponents:
if hasattr(thisComponent, "status") and thisComponent.status != FINISHED:
continueRoutine = True
break # at least one component has not yet finished
# refresh the screen
if continueRoutine: # don't flip if this routine is over or we'll get a blank screen
win.flip()
# --- Ending Routine "MW_def" ---
for thisComponent in MW_defComponents:
if hasattr(thisComponent, "setAutoDraw"):
thisComponent.setAutoDraw(False)
# the Routine "MW_def" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
thisExp.nextEntry()
# completed 1.0 repeats of 'MWdefinitions'
# --- Prepare to start Routine "IntroExp" ---
continueRoutine = True
routineForceEnded = False
# update component parameters for each repeat
IntroExp_key_resp.keys = []
IntroExp_key_resp.rt = []
_IntroExp_key_resp_allKeys = []
# keep track of which components have finished
IntroExpComponents = [text, IntroExp_key_resp]
for thisComponent in IntroExpComponents:
thisComponent.tStart = None
thisComponent.tStop = None
thisComponent.tStartRefresh = None
thisComponent.tStopRefresh = None
if hasattr(thisComponent, 'status'):
thisComponent.status = NOT_STARTED
# reset timers
t = 0
_timeToFirstFrame = win.getFutureFlipTime(clock="now")
frameN = -1
# --- Run Routine "IntroExp" ---
while continueRoutine:
# get current time
t = routineTimer.getTime()
tThisFlip = win.getFutureFlipTime(clock=routineTimer)
tThisFlipGlobal = win.getFutureFlipTime(clock=None)
frameN = frameN + 1 # number of completed frames (so 0 is the first frame)
# update/draw components on each frame
# *text* updates
if text.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
text.frameNStart = frameN # exact frame index
text.tStart = t # local t and not account for scr refresh
text.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(text, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'text.started')
text.setAutoDraw(True)
# *IntroExp_key_resp* updates
waitOnFlip = False
if IntroExp_key_resp.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
IntroExp_key_resp.frameNStart = frameN # exact frame index
IntroExp_key_resp.tStart = t # local t and not account for scr refresh
IntroExp_key_resp.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(IntroExp_key_resp, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'IntroExp_key_resp.started')
IntroExp_key_resp.status = STARTED
# keyboard checking is just starting
waitOnFlip = True
win.callOnFlip(IntroExp_key_resp.clock.reset) # t=0 on next screen flip
win.callOnFlip(IntroExp_key_resp.clearEvents, eventType='keyboard') # clear events on next screen flip
if IntroExp_key_resp.status == STARTED and not waitOnFlip:
theseKeys = IntroExp_key_resp.getKeys(keyList=['space'], waitRelease=False)
_IntroExp_key_resp_allKeys.extend(theseKeys)
if len(_IntroExp_key_resp_allKeys):
IntroExp_key_resp.keys = _IntroExp_key_resp_allKeys[-1].name # just the last key pressed
IntroExp_key_resp.rt = _IntroExp_key_resp_allKeys[-1].rt
# a response ends the routine
continueRoutine = False
# check for quit (typically the Esc key)
if endExpNow or defaultKeyboard.getKeys(keyList=["escape"]):
core.quit()
# check if all components have finished
if not continueRoutine: # a component has requested a forced-end of Routine
routineForceEnded = True
break
continueRoutine = False # will revert to True if at least one component still running
for thisComponent in IntroExpComponents:
if hasattr(thisComponent, "status") and thisComponent.status != FINISHED:
continueRoutine = True
break # at least one component has not yet finished
# refresh the screen
if continueRoutine: # don't flip if this routine is over or we'll get a blank screen
win.flip()
# --- Ending Routine "IntroExp" ---
for thisComponent in IntroExpComponents:
if hasattr(thisComponent, "setAutoDraw"):
thisComponent.setAutoDraw(False)
# check responses
if IntroExp_key_resp.keys in ['', [], None]: # No response was made
IntroExp_key_resp.keys = None
thisExp.addData('IntroExp_key_resp.keys', IntroExp_key_resp.keys)
if IntroExp_key_resp.keys != None: # we had a response
thisExp.addData('IntroExp_key_resp.rt', IntroExp_key_resp.rt)
thisExp.nextEntry()
# the Routine "IntroExp" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
# define target for calibration
calibrationTarget = visual.TargetStim(win,
name='calibrationTarget',
radius=0.01, fillColor='', borderColor='black', lineWidth=2.0,
innerRadius=0.0035, innerFillColor='green', innerBorderColor='black',
innerLineWidth=2.0,
colorSpace='rgb', units=None
)
# define parameters for calibration
calibration = hardware.eyetracker.EyetrackerCalibration(win,
eyetracker, calibrationTarget,
units=None, colorSpace='rgb',
progressMode='time', targetDur=1.5, expandScale=1.5,
targetLayout='FIVE_POINTS', randomisePos=True,
textColor='white',
movementAnimation=False, targetDelay=1.0
)
# run calibration
calibration.run()
# clear any keypresses from during calibration so they don't interfere with the experiment
defaultKeyboard.clearEvents()
# the Routine "calibration" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
# --- Prepare to start Routine "PageSkipping" ---
continueRoutine = True
routineForceEnded = False
# update component parameters for each repeat
key_Skip.keys = []
key_Skip.rt = []
_key_Skip_allKeys = []
# keep track of which components have finished
PageSkippingComponents = [NoSkipping, key_Skip]
for thisComponent in PageSkippingComponents:
thisComponent.tStart = None
thisComponent.tStop = None
thisComponent.tStartRefresh = None
thisComponent.tStopRefresh = None
if hasattr(thisComponent, 'status'):
thisComponent.status = NOT_STARTED
# reset timers
t = 0
_timeToFirstFrame = win.getFutureFlipTime(clock="now")
frameN = -1
# --- Run Routine "PageSkipping" ---
while continueRoutine:
# get current time
t = routineTimer.getTime()
tThisFlip = win.getFutureFlipTime(clock=routineTimer)
tThisFlipGlobal = win.getFutureFlipTime(clock=None)
frameN = frameN + 1 # number of completed frames (so 0 is the first frame)
# update/draw components on each frame
# *NoSkipping* updates
if NoSkipping.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
NoSkipping.frameNStart = frameN # exact frame index
NoSkipping.tStart = t # local t and not account for scr refresh
NoSkipping.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(NoSkipping, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'NoSkipping.started')
NoSkipping.setAutoDraw(True)
# *key_Skip* updates
waitOnFlip = False
if key_Skip.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
key_Skip.frameNStart = frameN # exact frame index
key_Skip.tStart = t # local t and not account for scr refresh
key_Skip.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(key_Skip, 'tStartRefresh') # time at next scr refresh
key_Skip.status = STARTED
# keyboard checking is just starting
waitOnFlip = True
win.callOnFlip(key_Skip.clock.reset) # t=0 on next screen flip
win.callOnFlip(key_Skip.clearEvents, eventType='keyboard') # clear events on next screen flip
if key_Skip.status == STARTED and not waitOnFlip:
theseKeys = key_Skip.getKeys(keyList=['space'], waitRelease=False)
_key_Skip_allKeys.extend(theseKeys)
if len(_key_Skip_allKeys):
key_Skip.keys = _key_Skip_allKeys[-1].name # just the last key pressed
key_Skip.rt = _key_Skip_allKeys[-1].rt
# a response ends the routine
continueRoutine = False
# check for quit (typically the Esc key)
if endExpNow or defaultKeyboard.getKeys(keyList=["escape"]):
core.quit()
# check if all components have finished
if not continueRoutine: # a component has requested a forced-end of Routine
routineForceEnded = True
break
continueRoutine = False # will revert to True if at least one component still running
for thisComponent in PageSkippingComponents:
if hasattr(thisComponent, "status") and thisComponent.status != FINISHED:
continueRoutine = True
break # at least one component has not yet finished
# refresh the screen
if continueRoutine: # don't flip if this routine is over or we'll get a blank screen
win.flip()
# --- Ending Routine "PageSkipping" ---
for thisComponent in PageSkippingComponents:
if hasattr(thisComponent, "setAutoDraw"):
thisComponent.setAutoDraw(False)
# check responses
if key_Skip.keys in ['', [], None]: # No response was made
key_Skip.keys = None
thisExp.addData('key_Skip.keys', key_Skip.keys)
if key_Skip.keys != None: # we had a response
thisExp.addData('key_Skip.rt', key_Skip.rt)
thisExp.nextEntry()
# the Routine "PageSkipping" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
# set up handler to look after randomisation of conditions etc
ReadingLoop = data.TrialHandler(nReps=1.0, method='sequential',
extraInfo=expInfo, originPath=-1,
trialList=data.importConditions(stimFile),
seed=None, name='ReadingLoop')
thisExp.addLoop(ReadingLoop) # add the loop to the experiment
thisReadingLoop = ReadingLoop.trialList[0] # so we can initialise stimuli with some values
# abbreviate parameter names if possible (e.g. rgb = thisReadingLoop.rgb)
if thisReadingLoop is not None:
for paramName in thisReadingLoop:
exec('{} = thisReadingLoop[paramName]'.format(paramName))
for thisReadingLoop in ReadingLoop:
currentLoop = ReadingLoop
# abbreviate parameter names if possible (e.g. rgb = thisReadingLoop.rgb)
if thisReadingLoop != None:
for paramName in thisReadingLoop:
exec('{} = thisReadingLoop[paramName]'.format(paramName))
# --- Prepare to start Routine "Reading" ---
continueRoutine = True
routineForceEnded = False
# update component parameters for each repeat
# Run 'Begin Routine' code from code_3
# Reset a bunch of our defaults at the start of this loop. We only do this once.
# This stops the values from our previous practice loop from affecting this reading loop.
if firstRoutine2:
firstRoutine2 = False
mainTimer2.reset(0)
probeTimer2.reset(0)
timerStarted2 = True
Reading_key_resp.keys = []
Reading_key_resp.rt = []
_Reading_key_resp_allKeys = []
imagePages.setImage(ChPage)
# keep track of which components have finished
ReadingComponents = [Reading_key_resp, imagePages, PCProbe, SCProbe]
for thisComponent in ReadingComponents:
thisComponent.tStart = None
thisComponent.tStop = None
thisComponent.tStartRefresh = None
thisComponent.tStopRefresh = None
if hasattr(thisComponent, 'status'):
thisComponent.status = NOT_STARTED
# reset timers
t = 0
_timeToFirstFrame = win.getFutureFlipTime(clock="now")
frameN = -1
# --- Run Routine "Reading" ---
while continueRoutine:
# get current time
t = routineTimer.getTime()
tThisFlip = win.getFutureFlipTime(clock=routineTimer)
tThisFlipGlobal = win.getFutureFlipTime(clock=None)
frameN = frameN + 1 # number of completed frames (so 0 is the first frame)
# update/draw components on each frame
# Run 'Each Frame' code from code_3
keys = event.getKeys()
if (mainTimer2.getTime() > 1080) and timerStarted2:
continueRoutine = False # quit every routine once the main timer goes over 18 minutes
if firstLoop2:
keys = []
event.clearEvents()
if currCondition == 'SC':
if Reading_key_resp.keys == 'space':
continueRoutine = False
if '1' in keys:
opacityImage2 = 1
TimeAbs = mainTimer2.getTime()
TimeSinceLast = probeTimer2.getTime()
keys = []
event.clearEvents()
if (opacityImage2 == 1) and ('u' in keys or 'i' in keys):
opacityImage2 = 0
time2 = mainTimer2.getTime() - TimeAbs
resp2 = keys[0]
keys = []
event.clearEvents()
printNow = 1
if printNow == 1:
thisExp.addData('probe_appeared',
TimeAbs) # log the time that the SC probe appeared (user pressed '1' key)
thisExp.addData('time_since_last_probe',
TimeSinceLast) # log time since last probe. Should be time since start of experiment if this is the first probe
thisExp.addData('response_delay', time2) # log delay from probe appearing to response key being pressed
thisExp.addData('probe_key_response', resp2) # log the key response to the probe
thisExp.addData('condition', currCondition) # save the current condition
thisExp.nextEntry() # if we do not move to the next line in the data file, then any other probes that occur before the end of this routine will overwrite our previous probe data
probeTimer2.reset(0)
time1 = 0
time2 = 0
resp1 = 0
resp2 = 0
printNow = 0
if currCondition == 'PC':
if Reading_key_resp.keys == 'space':
continueRoutine = False
if opacityImage1 != 1 and (len(probe2) > myCount2) and probeTimer2.getTime() >= probe2[myCount2]:
opacityImage1 = 1
TimeAbs = mainTimer2.getTime()
TimeSinceLast = probeTimer2.getTime() # get the time since the last probe popped up
if opacityImage1 == 1 and ('0' in keys or 'i' in keys or 'u' in keys):
opacityImage1 = 0
time1 = mainTimer2.getTime() - TimeAbs
resp1 = keys[0]
keys = []
event.clearEvents()
printNow = 1
if printNow == 1:
printNow = 0
thisExp.addData('probe_appeared', TimeAbs) # log the time that the PC probe appeared
thisExp.addData('time_since_last_probe',
TimeSinceLast) # log time since last probe. Should be time since start of experiment if this is the first probe
thisExp.addData('response_delay', time1) # log delay from probe appearing to response key being pressed
thisExp.addData('probe_key_response', resp1) # log the key response to the probe
thisExp.addData('condition', currCondition) # save the current condition
thisExp.nextEntry() # if we do not move to the next line in the data file, then any other probes that occur before the end of this routine will overwrite our previous probe data
probeTimer2.reset(0)
time1 = 0
time2 = 0
resp1 = 0
resp2 = 0
myCount2 = myCount2 + 1
firstLoop2 = False
# *Reading_key_resp* updates
waitOnFlip = False
if Reading_key_resp.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
Reading_key_resp.frameNStart = frameN # exact frame index
Reading_key_resp.tStart = t # local t and not account for scr refresh
Reading_key_resp.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(Reading_key_resp, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'Reading_key_resp.started')
Reading_key_resp.status = STARTED
# keyboard checking is just starting
waitOnFlip = True
win.callOnFlip(Reading_key_resp.clock.reset) # t=0 on next screen flip
win.callOnFlip(Reading_key_resp.clearEvents, eventType='keyboard') # clear events on next screen flip
if Reading_key_resp.status == STARTED and not waitOnFlip:
theseKeys = Reading_key_resp.getKeys(keyList=['space', ], waitRelease=False)
_Reading_key_resp_allKeys.extend(theseKeys)
if len(_Reading_key_resp_allKeys):
Reading_key_resp.keys = _Reading_key_resp_allKeys[-1].name # just the last key pressed
Reading_key_resp.rt = _Reading_key_resp_allKeys[-1].rt
# *imagePages* updates
if imagePages.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
imagePages.frameNStart = frameN # exact frame index
imagePages.tStart = t # local t and not account for scr refresh
imagePages.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(imagePages, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'imagePages.started')
imagePages.setAutoDraw(True)
# *PCProbe* updates
if PCProbe.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
PCProbe.frameNStart = frameN # exact frame index
PCProbe.tStart = t # local t and not account for scr refresh
PCProbe.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(PCProbe, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'PCProbe.started')
PCProbe.setAutoDraw(True)
if PCProbe.status == STARTED: # only update if drawing
PCProbe.setOpacity(opacityImage1, log=False)
# *SCProbe* updates
if SCProbe.status == NOT_STARTED and tThisFlip >= 0.0 - frameTolerance:
# keep track of start time/frame for later
SCProbe.frameNStart = frameN # exact frame index
SCProbe.tStart = t # local t and not account for scr refresh
SCProbe.tStartRefresh = tThisFlipGlobal # on global time
win.timeOnFlip(SCProbe, 'tStartRefresh') # time at next scr refresh
# add timestamp to datafile
thisExp.timestampOnFlip(win, 'SCProbe.started')
SCProbe.setAutoDraw(True)
if SCProbe.status == STARTED: # only update if drawing
SCProbe.setOpacity(opacityImage2, log=False)
# check for quit (typically the Esc key)
if endExpNow or defaultKeyboard.getKeys(keyList=["escape"]):
core.quit()
# check if all components have finished
if not continueRoutine: # a component has requested a forced-end of Routine
routineForceEnded = True
break
continueRoutine = False # will revert to True if at least one component still running
for thisComponent in ReadingComponents:
if hasattr(thisComponent, "status") and thisComponent.status != FINISHED:
continueRoutine = True
break # at least one component has not yet finished
# refresh the screen
if continueRoutine: # don't flip if this routine is over or we'll get a blank screen
win.flip()
# --- Ending Routine "Reading" ---
for thisComponent in ReadingComponents:
if hasattr(thisComponent, "setAutoDraw"):
thisComponent.setAutoDraw(False)
# check responses
if Reading_key_resp.keys in ['', [], None]: # No response was made
Reading_key_resp.keys = None
ReadingLoop.addData('Reading_key_resp.keys', Reading_key_resp.keys)
if Reading_key_resp.keys != None: # we had a response
ReadingLoop.addData('Reading_key_resp.rt', Reading_key_resp.rt)
# the Routine "Reading" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
thisExp.nextEntry()
# completed 1.0 repeats of 'ReadingLoop'
# define target for validation
validationTarget = visual.TargetStim(win,
name='validationTarget',
radius=0.05, fillColor=[1.0000, 1.0000, 1.0000], borderColor='black',
lineWidth=5.0,
innerRadius=0.01, innerFillColor='green', innerBorderColor='black',
innerLineWidth=5.0,
colorSpace='rgb', units=None
)
# define parameters for validation
validation = iohub.ValidationProcedure(win,
target=validationTarget,
gaze_cursor='green',
positions='FIVE_POINTS', randomize_positions=True,
expand_scale=1.5, target_duration=1.5,
enable_position_animation=True, target_delay=1.0,
progress_on_key=None, text_color='auto',
show_results_screen=True, save_results_screen=True,
color_space='rgb', unit_type=None
)
# run validation
validation.run()
# clear any keypresses from during validation so they don't interfere with the experiment
defaultKeyboard.clearEvents()
# the Routine "validation" was not non-slip safe, so reset the non-slip timer
routineTimer.reset()
# --- Prepare to start Routine "EYE_RECORD_STOP" ---
continueRoutine = True
routineForceEnded = False
# update component parameters for each repeat
# keep track of which components have finished
EYE_RECORD_STOPComponents = [EYE_Record_STOP]
for thisComponent in EYE_RECORD_STOPComponents:
thisComponent.tStart = None
thisComponent.tStop = None
thisComponent.tStartRefresh = None
thisComponent.tStopRefresh = None
if hasattr(thisComponent, 'status'):