-
Notifications
You must be signed in to change notification settings - Fork 1
/
TemplateApplication.py
341 lines (299 loc) · 19.6 KB
/
TemplateApplication.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
# This file is a BCPy2000 application developer file,
# for use with BCPy2000
# http://bci2000.org/downloads/BCPy2000/BCPy2000.html
#
# Author: Chadwick Boulay
# chadwick.boulay@gmail.com
#
#===============================================================================
# With the inclusion of some extensions, and without too much modification,
# this BCPy2000 application should support many combinations of the following experimental pieces:
# -TMS or nerve stimulation
# -Task progression contingent on a specified signal remaining within a specified range for some specified duration
# -The amplitude of the specified signal and the desired range may or may not be displayed.
# -Real-time feedback of a brain-signal
# -Feedback may be on-screen or through an external device
# -Feedback of an evoked potential
# -Feedback properties may use information from previous ERPs (e.g., residual of a multivariable model)
#===============================================================================
import numpy as np
from random import randint, uniform, random, shuffle
from math import ceil
import time
import VisionEgg
import SigTools
from AppTools.Boxes import box
from AppTools.Displays import fullscreen
from AppTools.StateMonitors import addstatemonitor, addphasemonitor
from AppTools.Shapes import Disc
from GatingExtension import GatingApp
from ContinuousFeedbackExtension import FeedbackApp
from MagstimExtension import MagstimApp
from DigitimerExtension import DigitimerApp
from ERPExtension import ERPApp
class BciApplication(BciGenericApplication):
def Description(self):
return "Template application"
#############################################################
def Construct(self):
#See here for already defined params and states http://bci2000.org/wiki/index.php/Contributions:BCPy2000#CurrentBlock
#See further details http://bci2000.org/wiki/index.php/Technical_Reference:Parameter_Definition
params = [
"PythonApp:Design list GoCueText= 2 Imagery Rest % % % // Text for cues. Defines N targets",
"PythonApp:Design int ClusterTargets= 1 1 0 % // Size of pseudorandomized target clusters or cycle(0)",
"PythonApp:Design matrix TargetRange= {1 2} {Min Max} -100.0 -80.0 80.0 100.0 0 -100 100 //Row for each target, Cols for Min(-100), Max(+100)",
"PythonApp:Design float PreRunDuration= 5.0 5.0 0.0 100.0 // PreRunDelay before the task starts",
"PythonApp:Design float IntertrialDur= 0.5 0.5 0.0 100.0 // Intertrial duration in seconds",
"PythonApp:Design float BaselineDur= 4.0 4.0 0.0 100.0 // Baseline duration in seconds",
"PythonApp:Design float GoCueDur= 1.0 1.0 0.0 100.0 // GoCue duration in seconds",
"PythonApp:Design float TaskDur= 6.0 6.0 0.0 100.0 // Min task duration in seconds",
"PythonApp:Design float TaskRand= 3.0 3.0 0.0 100.0 // Additional min randomization in seconds",
"PythonApp:Design float TaskMax= 0.0 9.0 0.0 100.0 // Max task duration in seconds (0 for no max)",
"PythonApp:Design float ResponseDur= 0.2 0.2 0.0 100.0 // Response duration in seconds (unless ERP)",
"PythonApp:Design float StopCueDur= 1.0 1.0 0.0 100.0 // StopCue duration in seconds",
"PythonApp:Display int ScreenId= -1 -1 % % // on which screen should the stimulus window be opened - use -1 for last",
"PythonApp:Display float WindowSize= 0.8 1.0 0.0 1.0 // size of the stimulus window, proportional to the screen",
]
states = [
#===================================================================
# "Intertrial 1 0 0 0",
"Baseline 1 0 0 0",
"GoCue 1 0 0 0",
"Task 1 0 0 0",
# "Response 1 0 0 0",
# "StopCue 1 0 0 0",
"TargetClass 4 0 0 0", #Set to target int in gocue and 0 in stopcue
"LastTargetClass 4 0 0 0", #Set to target int in gocue, not turned off. Needed for baseline feedback and inrange.
"TaskMinNBlocks 12 0 0 0",
#"TrialPhase 4 0 0 0",#TrialPhase unnecessary. Use built-in PresentationPhase
#===================================================================
]
#=======================================================================
# Since we cannot evaluate the parameter value before Construct is run,
# we must assume the user may wish to include all extensions, thus we
# extend params and states here for all extensions. You may comment out
# the lines corresponding to the extensions you know you will not use.
# You should also comment out their imports at the top.
# Then save this as a new Application.py file.
#=======================================================================
params.extend(GatingApp.params)
params.extend(MagstimApp.params)
params.extend(DigitimerApp.params)
params.extend(ERPApp.params)
params.extend(FeedbackApp.params)
states.extend(GatingApp.states)
states.extend(MagstimApp.states)
states.extend(DigitimerApp.states)
states.extend(ERPApp.states)
states.extend(FeedbackApp.states)
return params,states
#############################################################
def Preflight(self, sigprops):
#Setup screen
siz = float(self.params['WindowSize'])
screenid = int(self.params['ScreenId']) # ScreenId 0 is the first screen, 1 the second, -1 the last
fullscreen(scale=siz, id=screenid, frameless_window=(siz==1)) # only use a borderless window if the window is set to fill the whole screen
self.nclasses = len(self.params['GoCueText'])#Must be defined in Preflight because it is used by extension preflight.
n_trials = self.params['TrialsPerBlock'].val * self.params['BlocksPerRun'].val
trials_per_class = int(n_trials / self.nclasses)
if self.params['ClusterTargets'].val>0 and not (trials_per_class % self.params['ClusterTargets'].val == 0):
raise EndUserError, "ClusterTargets must be a integer factor of the number of trials per target"
#If using gating or visual feedback, check that the target ranges make sense.
if ('GatingEnable' in self.params and int(self.params['GatingEnable'].val) or ('ContFeedbackEnable' in self.params and self.params['ContFeedbackEnable'].val)==1):
targrange=self.params['TargetRange'].val
if targrange.shape[0] != self.nclasses: raise EndUserError, "TargetRange must have entries for each target"
if targrange.shape[1]!=2: raise EndUserError, "TargetRange must have Min and Max values"
if any([ar[(0,0)] > ar[(0,1)] for ar in targrange]): raise EndUserError, "TargetRange must be in increasing order"
self.target_range=np.asarray(targrange,dtype='float64')
if 'GatingEnable' in self.params: GatingApp.preflight(self, sigprops)
if 'MSEnable' in self.params: MagstimApp.preflight(self, sigprops)
if 'DigitimerEnable' in self.params: DigitimerApp.preflight(self, sigprops)
if 'ERPDatabaseEnable' in self.params: ERPApp.preflight(self, sigprops)
if 'ContFeedbackEnable' in self.params: FeedbackApp.preflight(self, sigprops)
#############################################################
def Initialize(self, indim, outdim):
#=======================================================================
# Set the list of TargetClasss (pseudorandomized)
#=======================================================================
n_trials = self.params['TrialsPerBlock'].val * self.params['BlocksPerRun'].val
classes_per_cluster = self.params['ClusterTargets'].val
trials_per_class = int(n_trials / self.nclasses)
if classes_per_cluster == 0: #We will cycle through targets.
self.target_codes = [item for sublist in [range(self.nclasses) for j in range(trials_per_class)] for item in sublist]
self.target_codes = [x+1 for x in self.target_codes]
elif classes_per_cluster ==1:
self.target_codes = [1 + x / trials_per_class for x in range(n_trials)] #Forcing int yields e.g., [0,0,0,1,1,1,2,2,2]
shuffle(self.target_codes)
else:
n_clusters = trials_per_class / classes_per_cluster
temp = []
for cc in range(n_clusters):
temp2 = [[j for jj in range(classes_per_cluster)] for j in range(self.nclasses)] #Generate a list of clusters, one per target
shuffle(temp2) #Shuffle the list of clusters
temp.append(temp2) #Append the list of clusters to what we have already.
self.target_codes = 1 + [x2 for x3 in [item for sublist in temp for item in sublist] for x2 in x3] #Flatten
#=======================================================================
# Screen
#=======================================================================
self.screen.color = (0,0,0) #let's have a black background
self.scrw,self.scrh = self.screen.size #Get the screen dimensions.
#===================================================================
# Create a box object as the coordinate frame for the screen.
# Manipulate its properties to get positional information for stimuli.
#===================================================================
scrsiz = min(self.scrw,self.scrh)
siz = (scrsiz, scrsiz)
b = box(size=siz, position=(self.scrw/2.0,self.scrh/2.0), sticky=True)
center = b.map((0.5,0.5), 'position')
self.positions = {'origin': np.matrix(center)} #Save the origin for later.
#=======================================================================
# Register the basic stimuli.
#=======================================================================
self.stimulus('cue', z=5, stim=VisualStimuli.Text(text='?', position=center, anchor='center', color=(1,1,1), font_size=50, on=False))
self.stimulus('fixation', z=4.2, stim=Disc(position=center, radius=5, color=(1,1,1), on=False))
#=======================================================================
# Make a few variables easier to access.
#=======================================================================
self.eegfs = self.nominal['SamplesPerSecond'] #Sampling rate
self.spb = self.nominal['SamplesPerPacket'] #Samples per block/packet
self.block_dur = 1000*self.spb/self.eegfs#duration (ms) of a sample block
self.taskMaxNBlocks = self.params['TaskMax'].val * self.eegfs / self.spb#Task will always go to response after this many blocks, even if extensions not ready
#=======================================================================
# State monitors for debugging.
#=======================================================================
if int(self.params['ShowSignalTime']):
# turn on state monitors iff the packet clock is also turned on
addstatemonitor(self, 'Running', showtime=True)
addstatemonitor(self, 'CurrentBlock')
addstatemonitor(self, 'CurrentTrial')
addstatemonitor(self, 'TargetClass')
addstatemonitor(self, 'LastTargetClass')
addstatemonitor(self, 'TaskMinNBlocks')
addphasemonitor(self, 'phase', showtime=True)
m = addstatemonitor(self, 'fs_reg')
m.func = lambda x: '% 6.1fHz' % x._regfs.get('SamplesPerSecond', 0)
m.pargs = (self,)
m = addstatemonitor(self, 'fs_avg')
m.func = lambda x: '% 6.1fHz' % x.estimated.get('SamplesPerSecond',{}).get('global', 0)
m.pargs = (self,)
m = addstatemonitor(self, 'fs_run')
m.func = lambda x: '% 6.1fHz' % x.estimated.get('SamplesPerSecond',{}).get('running', 0)
m.pargs = (self,)
m = addstatemonitor(self, 'fr_run')
m.func = lambda x: '% 6.1fHz' % x.estimated.get('FramesPerSecond',{}).get('running', 0)
m.pargs = (self,)
if 'MSEnable' in self.params: MagstimApp.initialize(self, indim, outdim)
if 'DigitimerEnable' in self.params: DigitimerApp.initialize(self, indim, outdim)
if 'GatingEnable' in self.params: GatingApp.initialize(self, indim, outdim)
if 'ERPDatabaseEnable' in self.params: ERPApp.initialize(self, indim, outdim)
if 'ContFeedbackEnable' in self.params: FeedbackApp.initialize(self, indim, outdim)
#############################################################
def Halt(self):
if 'MSEnable' in self.params: MagstimApp.halt(self)
if 'DigitimerEnable' in self.params: DigitimerApp.halt(self)
if 'GatingEnable' in self.params: GatingApp.halt(self)
if 'ERPDatabaseEnable' in self.params: ERPApp.halt(self)
if 'ContFeedbackEnable' in self.params: FeedbackApp.halt(self)
#############################################################
def StartRun(self):
#if int(self.params['ShowFixation']):
self.states['LastTargetClass'] = self.target_codes[0]
self.stimuli['fixation'].on = True
if 'MSEnable' in self.params: MagstimApp.startrun(self)
if 'DigitimerEnable' in self.params: DigitimerApp.startrun(self)
if 'GatingEnable' in self.params: GatingApp.startrun(self)
if 'ERPDatabaseEnable' in self.params: ERPApp.startrun(self)
if 'ContFeedbackEnable' in self.params: FeedbackApp.startrun(self)
#############################################################
def StopRun(self):
if 'MSEnable' in self.params: MagstimApp.stoprun(self)
if 'DigitimerEnable' in self.params: DigitimerApp.stoprun(self)
if 'GatingEnable' in self.params: GatingApp.stoprun(self)
if 'ERPDatabaseEnable' in self.params: ERPApp.stoprun(self)
if 'ContFeedbackEnable' in self.params: FeedbackApp.stoprun(self)
#############################################################
def Phases(self):
# define phase machine using calls to self.phase and self.design
self.phase(name='preRun', next='intertrial', duration=self.params['PreRunDuration'].val*1000.0)
self.phase(name='intertrial', next='baseline', duration=self.params['IntertrialDur'].val*1000.0)
self.phase(name='baseline', next='gocue', duration=self.params['BaselineDur'].val*1000.0)
self.phase(name='gocue', next='task', duration=self.params['GoCueDur'].val*1000.0)
self.phase(name='task', next='response',duration=None)
self.phase(name='response', next='stopcue',\
duration=None if int(self.params['ERPDatabaseEnable']) else self.params['ResponseDur'].val*1000.0)
self.phase(name='stopcue', next='intertrial', duration=self.params['StopCueDur'].val*1000.0)
#self.phase(name='postRun', duration=1.0)
self.design(start='preRun', new_trial='intertrial')
#############################################################
def Transition(self, phase):
# present stimuli and update state variables to record what is going on
#=======================================================================
# #Update some states
# self.states['Intertrial'] = int(phase in ['intertrial'])
self.states['Baseline'] = int(phase in ['baseline'])
self.states['GoCue'] = int(phase in ['gocue'])
self.states['Task'] = int(phase in ['task'])
# self.states['Response'] = int(phase in ['response'])
# self.states['StopCue'] = int(phase in ['stopcue'])
#=======================================================================
if phase == 'intertrial':
pass
elif phase == 'baseline':
pass
#Do I need the new TargetClass in baseline for any of the addons?
#If not, then it belongs in gocue for consistency with regular BCI2000 modules.
elif phase == 'gocue':
self.states['TargetClass'] = self.target_codes[self.states['CurrentTrial']-1]
t = self.states['TargetClass'] #It's useful to pull from states in case "enslave states" is used.
self.states['LastTargetClass'] = t#LastTargetClass maintains throughout baseline.
self.stimuli['cue'].text = self.params['GoCueText'][t-1]
elif phase == 'task':
task_length = self.params['TaskDur'].val + random()*self.params['TaskRand'].val
self.states['TaskMinNBlocks'] = task_length * self.eegfs / self.spb
elif phase == 'response':
pass
elif phase == 'stopcue':
self.stimuli['cue'].text = "Relax"
self.states['TargetClass'] = 0 #Note we don't turn off the LastTargetClass
self.stimuli['cue'].on = (phase in ['gocue', 'stopcue'])
if 'MSEnable' in self.params: MagstimApp.transition(self, phase)
if 'DigitimerEnable' in self.params: DigitimerApp.transition(self, phase)
if 'GatingEnable' in self.params: GatingApp.transition(self, phase)
if 'ERPDatabaseEnable' in self.params: ERPApp.transition(self, phase)
if 'ContFeedbackEnable' in self.params: FeedbackApp.transition(self, phase)
#############################################################
def Process(self, sig):
#Process is called on every packet
#Phase transitions occur independently of packets
#Therefore it is not desirable to use phases for application logic in Process
if 'MSEnable' in self.params: MagstimApp.process(self, sig)
if 'DigitimerEnable' in self.params: DigitimerApp.process(self, sig)
if 'ERPDatabaseEnable' in self.params: ERPApp.process(self, sig)
if 'ContFeedbackEnable' in self.params: FeedbackApp.process(self, sig)
if 'GatingEnable' in self.params: GatingApp.process(self, sig)
#If we are in Task, and we are using GatingApp or MagstimApp or DigitimerApp
if self.taskMaxNBlocks>0 and self.in_phase('task', min_packets=self.taskMaxNBlocks):
self.change_phase('response')
elif self.in_phase('task', min_packets=self.states['TaskMinNBlocks']):
criteria_met = not 'GatingEnable' in self.params or not int(self.params['GatingEnable']) or self.states['GatingOK']
magstim_ready = not 'MSEnable' in self.params or not int(self.params['MSEnable']) or self.states['MagstimReady']
digitimer_ready = not 'DigitimerEnable' in self.params or not int(self.params['DigitimerEnable']) or self.states['DigitimerReady']
if criteria_met and magstim_ready and digitimer_ready:
self.change_phase('response')
#If we are in Response and we are using ERPApp and the ERP has been collected
if self.in_phase('response') and \
'ERPDatabaseEnable' in self.params and int(self.params['ERPDatabaseEnable']) and self.states['ERPCollected']:
self.change_phase('stopcue')
#############################################################
def Frame(self, phase):
# update stimulus parameters if they need to be animated on a frame-by-frame basis
pass
#############################################################
def Event(self, phase, event):
if 'MSEnable' in self.params: MagstimApp.event(self, phase, event)
if 'DigitimerEnable' in self.params: DigitimerApp.event(self, phase, event)
if 'GatingEnable' in self.params: GatingApp.event(self, phase, event)
if 'ERPDatabaseEnable' in self.params: ERPApp.event(self, phase, event)
if 'ContFeedbackEnable' in self.params: FeedbackApp.event(self, phase, event)
#################################################################
#################################################################