-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTirggerWisker.m
164 lines (133 loc) · 5.85 KB
/
TirggerWisker.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
% this script do not need the prepared movie text.
% Niki 2016/4/1
% add drift_grating to make texture.
% Niki 2016/6/29.
% use grating to make texture frame by frame. To cope with out of memory
% problem on 32 bit system. But this may suffer timing precision. We solve
% this problem by storing texture into cell array rather than 3-D matrix.
% Niki 2016/6/29.
clear;clc
% define parameters of drift grating texture:
TriggerDuration = 2; % seconds, this should be large enough to allow compute tex for the upcoming stimuli.
PreStimDuration = 3;
WhiskerTriggerDuration = 1;% seconds
ITI = 10;
TriggerWidth = 60; % pixel size of Trigger Stingal (a white square on the bottom right corner on the screen)
NumTrials = 10;
TrialOnset = cumsum(rand(NumTrials,1)*2+ITI+PreStimDuration+WhiskerTriggerDuration+TriggerDuration)-WhiskerTriggerDuration-PreStimDuration-TriggerDuration;
try
Screen('Preference', 'SkipSyncTests', 1);
% This script calls Psychtoolbox commands available only in OpenGL-based
% versions of the Psychtoolbox. (So far, the OS X Psychtoolbox is the
% only OpenGL-base Psychtoolbox.) The Psychtoolbox command AssertPsychOpenGL will issue
% an error message if someone tries to execute this script on a computer without
% an OpenGL Psychtoolbox
AssertOpenGL;
% Get the list of screens and choose the one with the highest screen number.
% Screen 0 is, by definition, the display with the menu bar. Often when
% two monitors are connected the one without the menu bar is used as
% the stimulus display. Chosing the display with the highest dislay number is
% a best guess about where you want the stimulus displayed.
screens=Screen('Screens');
screenNumber=max(screens);
% Find the color values which correspond to white and black: Usually
% black is always 0 and white 255, but this rule is not true if one of
% the high precision framebuffer modes is enabled via the
% PsychImaging() commmand, so we query the true values via the
% functions WhiteIndex and BlackIndex:
white=WhiteIndex(screenNumber);
black=BlackIndex(screenNumber);
% Round gray to integral number, to avoid roundoff artifacts with some
% graphics cards:
gray=round((white+black)/2);
% This makes sure that on floating point framebuffers we still get a
% well defined gray. It isn't strictly neccessary in this demo:
if gray == white
gray=white / 2;
end
% Open a double buffered fullscreen window and select a gray background
% color:
[w, screenRect]=Screen('OpenWindow',screenNumber, black);
HideCursor
ListenChar(2) % suppress input from keybroad to appear in the command window or script
frameRate=Screen('FrameRate',screenNumber);
% If MacOSX does not know the frame rate the 'FrameRate' will return 0.
% That usually means we run on a flat panel with 60 Hz fixed refresh
% rate:
if frameRate == 0
frameRate=60;
end
% right bottom:
TriggerRect2 = [screenRect([3,4])-TriggerWidth, screenRect([3,4])]';
% right top:
TriggerRect = [screenRect(3)-TriggerWidth, screenRect([2,3]), TriggerWidth]';
% run this just when testing. Saving onset time of each frame may cause
% memory problem.
% frame_onset = nan(framesPerTrial,NumTrials);
actual_trial_onset = nan(2, NumTrials);
while 1
WaitSecs(0.2);
[~, ~, keyCode] = KbCheck();
if any(strcmp(KbName(keyCode), {'ESCAPE','Escape','ESC','esc'}))
ListenChar(1)
sca;
return;
elseif any(strcmp(KbName(keyCode), {'space','s'}))
break
end
end
% Draw the 1st frame:
% draw background, comment if use black as background:
%Screen('Fillrect', w, gray);
DrawFormattedText(w, 'Start', 'center', 'center', white);
vbl = Screen('Flip',w);
startSecs = Screen('Flip',w, vbl+1);
for i_trial = 1:NumTrials
% Draw Trigger:
Screen('Fillrect', w, white, TriggerRect);
% Perform initial Flip to sync us to the VBL and for getting an initial
% VBL-Timestamp as timing baseline for our redraw loop:
[vbl, actual_trial_onset(1,i_trial)]=Screen('Flip', w, startSecs+TrialOnset(i_trial));
% Trigger disappear:
vbl=Screen('Flip', w, startSecs+TrialOnset(i_trial)+TriggerDuration);
% draw whisker trigger:
Screen('Fillrect', w, white, TriggerRect2)
[vbl, actual_trial_onset(2,i_trial)]= Screen('Flip', w, vbl+PreStimDuration);
% whisker trigger disappear:
[vbl]= Screen('Flip', w, vbl + WhiskerTriggerDuration);
% iti:
vbl2 = Screen('Flip', w);
while 1&&vbl2<vbl+1
vbl2 = WaitSecs(0.2);
[~, ~, keyCode] = KbCheck();
if any(strcmp(KbName(keyCode), {'ESCAPE','Escape','ESC','esc'}))
ListenChar(1)
sca;
return;
end
end
end
WaitSecs(ITI);
Priority(0);
% Close all textures. This is not strictly needed, as
% Screen('CloseAll') would do it anyway. However, it avoids warnings by
% Psychtoolbox about unclosed textures. The warnings trigger if more
% than 10 textures are open at invocation of Screen('CloseAll')
Screen('Close');
% Close window:
Screen('CloseAll');
ListenChar(1);
ShowCursor;
% difonset = diff(frame_onset);
% plot(difonset);
% title(['total duration: ' num2str(range(frame_onset(:)))])
actual_trial_onset=actual_trial_onset-startSecs;
plot(bsxfun(@minus, actual_trial_onset',TrialOnset))
save(['PlayMovieDriftGratingStimInfo',datestr(now,'yyyymmddTHHMMSS')],'actual_trial_onset','TrialOnset','TFList')
catch
Screen('CloseAll');
Priority(0);
ListenChar(1);
ShowCursor;
psychrethrow(psychlasterror);
end %try..catch..