-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunTrial.m
438 lines (242 loc) · 10.5 KB
/
runTrial.m
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
function [Behav, Logs, TrialSettings] = runTrial(Settings, BlockSettings, TrialSettings)
% Selects a subset of dots in the two clouds to display each frame. Whilst displaying this the
% function monitors for a response.
%% Initialisation
% Defensive programming
if length(TrialSettings) ~= 1; error('Bug'); end
if length(BlockSettings) ~= 1; error('Bug'); end
if ~any(TrialSettings.StimLoc == [1 2]); error('Bug'); end
% Assign the number of dots in the two clouds
if TrialSettings.StimLoc == 1; assign = [1, -1];
elseif TrialSettings.StimLoc == 2; assign = [-1, 1];
end
dotsMean1 = TrialSettings.RefVal + (assign(1) * (0.5 * Settings.Dots.Diff));
dotsMean2 = TrialSettings.RefVal + (assign(2) * (0.5 * Settings.Dots.Diff));
% Measure trial duration for debugging
trialStart = tic;
% Intialise vars
response = NaN;
Logs.Timestamps.Clear = NaN(1, 4);
Logs.Timestamps.Fixation = NaN(1, 2);
Logs.Timestamps.FixAppearTimeMes2 = NaN;
Logs.Timestamps.ForceResp = NaN(1, 4);
Logs.Timestamps.Frames = NaN(10 * Settings.Timing.Fps, 4);
TrialSettings.DotsSet1 =[];
TrialSettings.DotsSet2 = [];
%for convenience...
screenCenter = [ Settings.WinArea(3)/2 ; Settings.WinArea(4)/2 ];
dotSize = Settings.Dots.Size;
dotColour = Settings.Colour.Dots;
fps = Settings.Timing.Fps;
framesISI = Settings.Timing.FramesISI;
%code to use for square dots depends on whether on experimental machine or in office
if Settings.ExperimentalMachine == 1
dotCode = 0;
else
dotCode = 4;
end
% Wait until all keys are released
pressed = 1;
while pressed
[~, ~, buttons, ~, ~, ~] = GetMouse;
if ~any(buttons)
pressed = 0;
end
end
%% Present fixation cross
Screen('DrawLines', Settings.Win, ...
[screenCenter(1) screenCenter(1) (3*dotSize)+screenCenter(1) (-3*dotSize)+screenCenter(1);
(3*dotSize)+screenCenter(2) (-3*dotSize)+screenCenter(2) screenCenter(2) screenCenter(2)],...
1.2*dotSize, [255 255 255]);
[fixAppearTime, ~, fixFlipEndTime, ~, ~] = Screen('Flip', Settings.Win);
% Timestamps and timing info
Logs.Timestamps.FixAppearTimeMes2 = GetSecs;
Logs.Timestamps.Fixation = [fixAppearTime, fixFlipEndTime];
Logs.StimulusOnset = fixAppearTime + (framesISI*(1/fps));
%% Present the stimulus
%Present dots until a response or until the max number of frames has elapsed
for iFrame = 1 : TrialSettings.FramesToPresent
% Select dots to be active this frame
[TrialSettings, Logs] = selectActiveDots(Logs, TrialSettings, Settings, dotsMean1, dotsMean2);
% Prepare the next frame ready for flipping later
active1 = Settings.Dots.Locations1(:, logical(TrialSettings.DotsSet1(:, iFrame)));
active2 = Settings.Dots.Locations2(:, logical(TrialSettings.DotsSet2(:, iFrame)));
% Prepare fixation cross
Screen('DrawLines', Settings.Win, ...
[screenCenter(1) screenCenter(1) (3*dotSize)+screenCenter(1) (-3*dotSize)+screenCenter(1);
(3*dotSize)+screenCenter(2) (-3*dotSize)+screenCenter(2) screenCenter(2) screenCenter(2)],...
1.2*dotSize, [255 255 255]);
% Defensive programming
if any(isempty([active1 active2]))
sca
error('Bug')
end
% Draw the dots
Screen('DrawDots',Settings.Win, [active1, active2], dotSize, dotColour, [0 0], dotCode);
%Monitor the mouse for a press, until it is time for the next frame
timeForFlip = Logs.StimulusOnset + ((iFrame-1)*(1/fps));
while GetSecs < timeForFlip - 0.005
%monitor the mouse
[~, ~, buttons, ~, ~, ~] = GetMouse;
if buttons(1); response = 1;
elseif buttons(3); response = 2;
end
if ~isnan(response)
Rt = GetSecs;
break
end
end
%Flip the screen to show the next frame, unless a key has been pressed while we were waiting to
%present the next frame
if ~isnan(response)
framesPresented = iFrame -1;
break
end
% Flip
[VBLtime, ~, flipEndTime, ~, ~] = Screen('Flip', Settings.Win);
Logs.Timestamps.Frames(iFrame, 1) = VBLtime;
Logs.Timestamps.Frames(iFrame, 2) = VBLtime - Logs.StimulusOnset;
Logs.Timestamps.Frames(iFrame, 3) = VBLtime - timeForFlip;
Logs.Timestamps.Frames(iFrame, 4) = flipEndTime;
% Check whether need to allocate a larger array to store the
% timestamps
if iFrame == size(Logs.Timestamps.Frames, 1)
Logs.Timestamps.Frames = ...
[Logs.Timestamps.Frames; NaN(10 * Settings.Timing.Fps, 4)];
end
end
%If no response has been made we still need to mointor the final frame
if isnan(response)
iFrame = iFrame + 1;
timeForFlip = Logs.StimulusOnset + ((iFrame-1)*(1/fps));
% This is the flip that will clear the screen and present the red fixation cross
% Draw a red fixation cross ready for the case that no response is made. It indicates a response
% must be made.
Screen('FillRect', Settings.Win, Settings.Colour.Background);
Screen('DrawLines', Settings.Win, ...
[screenCenter(1) screenCenter(1) (9*dotSize)+screenCenter(1) (-9*dotSize)+screenCenter(1);
(9*dotSize)+screenCenter(2) (-9*dotSize)+screenCenter(2) screenCenter(2) screenCenter(2)],...
2*dotSize, [255 0 0]);
while GetSecs < timeForFlip - 0.005
% Monitor mouse
[~, ~, buttons, ~, ~, ~] = GetMouse;
if buttons(1); response = 1;
elseif buttons(3); response = 2;
end
if ~isnan(response)
Rt = GetSecs;
framesPresented = size(TrialSettings.DotsSet1, 2);
break
end
end
end
%% Force a response if necessary
if isnan(response)
% All the frames were shown.
framesPresented = size(TrialSettings.DotsSet1, 2);
% Flip to show the red fixation cross
[Logs.Timestamps.ForceResp(1), ~, Logs.Timestamps.ForceResp(4), ~, ~] = ...
Screen('Flip', Settings.Win, timeForFlip -0.005);
Logs.Timestamps.ForceResp(2) = Logs.Timestamps.ForceResp(1) - Logs.StimulusOnset;
Logs.Timestamps.ForceResp(3) = Logs.Timestamps.ForceResp(1) - timeForFlip;
% Give time to respond
timeForFlip = timeForFlip + Settings.ForcedResposeWindow;
% Monitor while we wait for a response
while GetSecs < timeForFlip - 0.005
% Monitor mouse
[~, ~, buttons, ~, ~, ~] = GetMouse;
if buttons(1); response = 1;
elseif buttons(3); response = 2;
end
if ~isnan(response)
Rt = GetSecs;
% Bring forward the time that the screen will be cleared.
timeForFlip = GetSecs + 0.01;
break
end
end
end
%% Clear screen
% Clear screen
Screen('FillRect', Settings.Win, Settings.Colour.Background);
[Logs.Timestamps.Clear(1), ~, Logs.Timestamps.Clear(4), ~, ~] = ...
Screen('Flip', Settings.Win, timeForFlip -0.005);
Logs.Timestamps.Clear(2) = Logs.Timestamps.Clear(1) - Logs.StimulusOnset;
Logs.Timestamps.Clear(3) = Logs.Timestamps.Clear(1) - timeForFlip;
%% Store data and provide speed feedback if required
% Response during fixation cross
if ~isnan(response) && (Rt - Logs.StimulusOnset < 0)
collectConf = false;
waitTime = 6;
accuracy = NaN;
relativeRT = Rt - Logs.StimulusOnset;
text4disp = 'Please don''t click before the dots appear';
textColour = [255 255 255];
% No response made
elseif isnan(response)
collectConf = false;
waitTime = 2;
accuracy = NaN;
Rt = NaN;
relativeRT = NaN;
text4disp = 'Too slow';
textColour = [255 0 0];
% There was a response
else
% We are in fixed response block and the response was too early
if (BlockSettings.BlockType == 2) && ...
((Rt - Logs.StimulusOnset) < ((1/fps) * TrialSettings.FramesToPresent))
collectConf = false;
waitTime = 2;
accuracy = NaN;
relativeRT = Rt - Logs.StimulusOnset;
text4disp = 'Too early';
textColour = [255 0 0];
% We are in the fixed response block and response was permitted, or in the free response block
else
collectConf = true;
waitTime = 0.4;
% It was correct
if response == TrialSettings.StimLoc
accuracy = 1;
relativeRT = Rt - Logs.StimulusOnset;
text4disp = [];
textColour = [0 255 0];
% It was incorrect.
else
% Defensive programming
if ~any(response == [1 2]); error('Bug'); end
accuracy = 0;
relativeRT = Rt - Logs.StimulusOnset;
text4disp = [];
textColour = [255 255 255];
end
end
end
%% Collect confidence report
if collectConf
confidence = collectConfReport(Settings);
else
confidence = NaN;
end
%% Display results
Screen('TextSize', Settings.Win, Settings.Text.Size2);
DrawFormattedText(Settings.Win, text4disp, 'center', 'center', textColour, 1000, 0, 0, 1.3);
Screen('Flip', Settings.Win);
WaitSecs(waitTime)
%% Finish up
%store behavioural results
Behav = struct( 'Response', response, ...
'Accuracy', accuracy, ...
'Rt', Rt, ...
'RelativeRT', relativeRT, ...
'Conf', confidence, ...
'FramesPresented', framesPresented);
%log trial duration
Logs.TrialDuration = toc(trialStart);
% Logs.Timestamps.Frames is preallocated, and may be bigger than necessary
% because of this. Trim down to size.
toKeep = ~all(isnan(Logs.Timestamps.Frames), 2);
Logs.Timestamps.Frames = Logs.Timestamps.Frames(toKeep, :);
% Defensive programming: The indicies to keep should be in a clump. Check this.
if sum(abs(diff(toKeep))) ~= 1 && sum(abs(diff(toKeep))) ~= 0; error('Bug'); end