-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathFastRFMapperStateInfo.m
More file actions
281 lines (244 loc) · 9.22 KB
/
FastRFMapperStateInfo.m
File metadata and controls
281 lines (244 loc) · 9.22 KB
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
%JORDI RFMAP state configuration file, this gets loaded by opticka via runExperiment class
% io = datapixx (digital I/O to plexon)
% s = screenManager
% sM = State Machine
% eT = eyelink manager
% lJ = LabJack (reward trigger to Crist reward system)
% bR = behavioural record plot
% me.stimuli = our list of stimuli
% tS = general simple struct to hold variables for this run
%
%------------General Settings-----------------
tS.rewardTime = 75; %TTL time in milliseconds
tS.useTask = true;
tS.checkKeysDuringStimulus = false;
tS.recordEyePosition = false;
tS.askForComments = false;
tS.saveData = false; %*** save behavioural and eye movement data? ***
tS.dummyEyelink = true; %==use mouse as a dummy eyelink, good for testing away from the lab.
tS.useMagStim = false; %enable the magstim manager
tS.name = 'jordirfmapper';
%-----enable the magstimManager which uses FOI2 of the LabJack
if tS.useMagStim
mS = magstimManager('lJ',lJ,'defaultTTL',2);
mS.stimulateTime = 240;
mS.frequency = 0.7;
mS.rewardTime = 25;
open(mS);
end
%------------Eyetracker Settings-----------------
tS.fixX = 0;
tS.fixY = 0;
me.lastXPosition = tS.fixX;
me.lastYPosition = tS.fixY;
tS.firstFixInit = 1;
tS.firstFixTime = 0.25;
tS.firstFixRadius = 2;
tS.stimulusFixTime = 0.5;
tS.strict = true;
%------------------------Eyelink setup--------------------------
eT.name = tS.name;
if tS.saveData == true; eT.recordData = true; end% save EDF file?
if tS.dummyEyelink; eT.isDummy = true; end%*** use dummy or real eyelink? ***
eT.sampleRate = 250;
eT.remoteCalibration = true; % manual calibration?
eT.calibrationStyle = 'HV5'; % calibration style
eT.modify.calibrationtargetcolour = [1 1 0];
eT.modify.calibrationtargetsize = 0.5;
eT.modify.calibrationtargetwidth = 0.01;
eT.modify.waitformodereadytime = 500;
eT.modify.devicenumber = -1; % -1 = use any keyboard
% X, Y, FixInitTime, FixTime, Radius, StrictFix
eT.updateFixationValues(tS.fixX, tS.fixY, tS.firstFixInit, tS.firstFixTime, tS.firstFixRadius, true);
%randomise stimulus variables every trial?
me.stimuli.choice = [];
me.stimuli.stimulusTable = [];
% allows using arrow keys to control this table during the main loop
% ideal for mapping receptive fields so we can twiddle parameters
me.stimuli.controlTable = [];
me.stimuli.tableChoice = 1;
% this allows us to enable subsets from our stimulus list
% numbers are the stimuli in the opticka UI
me.stimuli.stimulusSets = {[1,2]};
me.stimuli.setChoice = 1;
showSet(me.stimuli);
%----------------------State Machine States-------------------------
% these are our functions that will execute as the stateMachine runs,
% in the scope of the runExperiemnt object.
%pause entry
pauseEntryFcn = {
@()hide(me.stimuli);
@()drawBackground(s); %blank the display
@()rstop(io);
@()setOffline(eT); % set eyelink offline [tobii ignores this]
@()stopRecording(eT);
@()edfMessage(eT,'TRIAL_RESULT -10');
@()fprintf('\n===>>>ENTER PAUSE STATE\n');
@()needFlip(me, false);
};
%pause exit
pauseExitFcn = { @()rstart(io); }; %lets unpause the plexon!...
prefixEntryFcn = { @()needFlip(me, true); };
prefixFcn = {}; %@()draw(me.stimuli);
%fixate entry
fixEntryFcn = {
@()statusMessage(eT,'Initiate Fixation...'); %status text on the eyelink
@()sendTTL(io,3);
@()updateFixationValues(eT,tS.fixX,tS.fixY,[],tS.firstFixTime); %reset
@()setOffline(eT); % set eyelink offline [tobii ignores this]
@()show(me.stimuli{2});
@()edfMessage(eT,'V_RT MESSAGE END_FIX END_RT');
@()edfMessage(eT,['TRIALID ' num2str(getTaskIndex(me))]);
@()startRecording(eT); %fire up eyelink
@()doSyncTime(me); %EDF sync message
@()draw(me.stimuli); %draw stimulus
};
%fix within
fixFcn = {
@()draw(me.stimuli); %draw stimulus
};
%test we are fixated for a certain length of time
initFixFcn = {
@()testSearchHoldFixation(eT,'stimulus','incorrect');
};
%exit fixation phase
fixExitFcn = {
@()statusMessage(eT,'Show Stimulus...');
@()updateFixationValues(eT,[],[],[],tS.stimulusFixTime); %reset a maintained fixation of 1 second
@()show(me.stimuli);
@()edfMessage(eT,'END_FIX');
};
%what to run when we enter the stim presentation state
stimEntryFcn = { @()doStrobe(me,true); };
%what to run when we are showing stimuli
stimFcn = {
@()draw(me.stimuli);
@()finishDrawing(s);
@()animate(me.stimuli); % animate stimuli for subsequent draw
};
%test we are maintaining fixation
maintainFixFcn = { @()testSearchHoldFixation(eT,'correct','breakfix'); };
%as we exit stim presentation state
stimExitFcn = {
@()setStrobeValue(me,inf);
@()doStrobe(me,true);
};
%if the subject is correct (small reward)
correctEntryFcn = {
@()timedTTL(lJ,0,tS.rewardTime); % labjack sends a TTL to Crist reward system
@()sendTTL(io,4);
@()statusMessage(eT,'Correct! :-)');
@()edfMessage(eT,'END_RT');
@()stopRecording(eT);
@()edfMessage(eT,'TRIAL_RESULT 1');
@()hide(me.stimuli);
@()drawTimedSpot(s, 0.5, [0 1 0 1]);
};
%correct stimulus
correctFcn = {
@()drawTimedSpot(s, 0.5, [0 1 0 1]);
};
%when we exit the correct state
correctExitFcn = {
@()setOffline(eT); % set eyelink offline [tobii ignores this]
@()updatePlot(bR, me); %update our behavioural plot
@()updateVariables(me,[],[],true); %randomise our stimuli, set strobe value too
@()update(me.stimuli); %update our stimuli ready for display
@()getStimulusPositions(me.stimuli); %make a struct the eT can use for drawing stim positions
@()trackerClearScreen(eT);
@()trackerDrawFixation(eT); %draw fixation window on eyelink computer
@()trackerDrawStimuli(eT,me.stimuli.stimulusPositions); %draw location of stimulus on eyelink
@()drawTimedSpot(s, 0.5, [0 1 0 1], 0.2, true); %reset the timer on the green spot
};
%incorrect entry
incEntryFcn = {
@()statusMessage(eT,'Incorrect :-('); %status message on eyelink
@()sendTTL(io,6);
@()edfMessage(eT,'END_RT');
@()stopRecording(eT);
@()edfMessage(eT,'TRIAL_RESULT 0');
@()hide(me.stimuli);
};
%our incorrect stimulus
incFcn = [];
%incorrect / break exit
incExitFcn = {
@()setOffline(eT); % set eyelink offline [tobii ignores this]
@()updatePlot(bR, me); %update our behavioural plot, must come before updateTask() / updateVariables()
@()updateVariables(me,[],[],false);
@()update(me.stimuli); %update our stimuli ready for display
@()trackerClearScreen(eT);
@()trackerDrawFixation(eT); %draw fixation window on eyelink computer
@()trackerDrawStimuli(eT); %draw location of stimulus on eyelink
};
%break entry
breakEntryFcn = {
@()statusMessage(eT,'Broke Fixation :-('); status message on eyelink
@()sendTTL(io,5);
@()edfMessage(eT,'END_RT');
@()stopRecording(eT);
@()edfMessage(eT,'TRIAL_RESULT -1');
@()hide(me.stimuli);
};
%--------------------calibration function
calibrateFcn = {
@()drawBackground(s); %blank the display
@()stopRecording(eT); % stop recording in eyelink [tobii ignores this]
@()setOffline(eT); % set eyelink offline [tobii ignores this]
@()trackerSetup(eT) % enter tracker calibrate/validate setup mode
};
%--------------------drift offset function
offsetFcn = {
@()drawBackground(s); %blank the display
@()stopRecording(eT); % stop recording in eyelink [tobii ignores this]
@()setOffline(eT); % set eyelink offline [tobii ignores this]
@()driftOffset(eT) % enter tracker calibrate/validate setup mode
};
%--------------------drift correction function
driftFcn = {
@()drawBackground(s); %blank the display
@()stopRecording(eT); % stop recording in eyelink [tobii ignores this]
@()setOffline(eT); % set eyelink offline [tobii ignores this]
@()driftCorrection(eT) % enter tracker calibrate/validate setup mode
};
%----------------------allow override
overrideFcn = { @()keyOverride(me); };
%----------------------show 1deg size grid
gridFcn = {
@()drawGrid(s);
@()drawScreenCenter(s);
};
%screenflash
flashFcn = {
@()drawBackground(s);
@()flashScreen(s, 0.2); % fullscreen flash mode for visual background activity detection
};
%magstim
magstimFcn = { @()rstop(io);
@()drawBackground(s);
@()stimulate(mS); % run the magstim
};
magstimExitFcn = { @()rstart(io); };%lets unpause the plexon!...
%----------------------State Machine Table-------------------------
disp('================>> Building state info file <<================')
%specify our cell array that is read by the stateMachine
stateInfoTmp = {
'name' 'next' 'time' 'entryFcn' 'withinFcn' 'transitionFcn' 'exitFcn';
'pause' 'fixate' inf pauseEntryFcn [] [] pauseExitFcn;
'prefix' 'fixate' 0.5 prefixEntryFcn prefixFcn [] [];
'fixate' 'incorrect' 1 fixEntryFcn fixFcn initFixFcn fixExitFcn;
'stimulus' 'incorrect' 2 stimEntryFcn stimFcn maintainFixFcn stimExitFcn;
'incorrect' 'prefix' 0.5 incEntryFcn incFcn [] incExitFcn;
'breakfix' 'prefix' 0.5 breakEntryFcn incFcn [] incExitFcn;
'correct' 'prefix' 0.5 correctEntryFcn correctFcn [] correctExitFcn;
'calibrate' 'pause' 0.5 calibrateFcn [] [] [];
'override' 'pause' 0.5 overrideFcn [] [] [];
'flash' 'pause' 0.5 flashFcn [] [] [];
'magstim' 'prefix' 0.5 [] magstimFcn [] magstimExitFcn;
'showgrid' 'pause' 10 [] gridFcn [] [];
};
disp(stateInfoTmp)
disp('================>> Loaded state info file <<================')
clear pauseEntryFcn fixEntryFcn fixFcn initFixFcn fixExitFcn stimFcn maintainFixFcn incEntryFcn ...
incFcn incExitFcn breakEntryFcn breakFcn correctEntryFcn correctFcn correctExitFcn ...
calibrateFcn offsetFcn driftFcn overrideFcn flashFcn gridFcn