-
Notifications
You must be signed in to change notification settings - Fork 0
/
NCM_Experiment.py
358 lines (297 loc) · 15.3 KB
/
NCM_Experiment.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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
This experiment was created using PsychoPy2 Experiment Builder (v1.85.1),
on Wed Jul 26 20:20:27 2017
If you publish work using this script please cite the PsychoPy publications:
Peirce, JW (2007) PsychoPy - Psychophysics software in Python.
Journal of Neuroscience Methods, 162(1-2), 8-13.
Peirce, JW (2009) Generating stimuli for neuroscience using PsychoPy.
Frontiers in Neuroinformatics, 2:10. doi: 10.3389/neuro.11.010.2008
XX Make GUI copy of Demos
XX Allow Both Demo to take subid as input
XX Add additional checkboxes
XX Fix block based
-Results data for Faces Block goes back to the faces /data folder
-The DMS task calls a single letter list up, I need to recreate this list so that 9 letters are included.
-I think I will have each block dynamically make a selection of trials. So if the list of all trials has 10
trials per load then this should be straightforward.
-Change the selection method to random so that a random ordering from the list is used for the block.
I can create a dictionary of the rows to select for each load level, or be more dynamic.
Add functionality to the checkboxes
Add button to "lock-in" a subject ID to prevent it from being accidentally changed"
"""
from __future__ import absolute_import, division
from psychopy import locale_setup, gui, visual, core, data, event, logging
from psychopy.constants import (NOT_STARTED, STARTED, PLAYING, PAUSED,
STOPPED, FINISHED, PRESSED, RELEASED, FOREVER)
import os # handy system and path functions
import sys # to get file system encoding
import wx
import numpy as np
# Ensure that relative paths start from the same directory as this script
_thisDir = os.path.dirname(os.path.abspath(__file__)).decode(sys.getfilesystemencoding())
os.chdir(_thisDir)
# import parameters from a config file
sys.path.append(os.path.join(_thisDir, 'ConfigFiles'))
# Check to see if the output data folder has been identified
try:
# try to lod the config file
from BehavioralDataFolder import *
# See if the variable is in it
print('Data being saved to: %s'%(BehavioralDataFolder))
if not os.path.exists(BehavioralDataFolder):
raise ValueError('Folder does not exist.')
except:
DDapp = wx.PySimpleApp()
dialog = wx.DirDialog(None, "Choose a top level data outut directory:",style=wx.DD_DEFAULT_STYLE | wx.DD_NEW_DIR_BUTTON)
if dialog.ShowModal() == wx.ID_OK:
print(dialog.GetPath())
dialog.Destroy()
# write the selected folder to the config file
fid = open(os.path.join(_thisDir, 'ConfigFiles','BehavioralDataFolder.py'),'w')
fid.write('BehavioralDataFolder = \'%s\''%(dialog.GetPath()))
fid.close()
BehavioralDataFolder = dialog.GetPath()
# https://www.tutorialspoint.com/wxpython/wxpython_buttons.htm
# https://groups.google.com/forum/#!topic/psychopy-users/3V8YUAwsdIs
class Mywin(wx.Frame):
def __init__(self, parent, title):
# size = (width, height)
# Create the GUI window
super(Mywin, self).__init__(parent, title = title,size = (400,600))
panel = wx.Panel(self)
vbox = wx.BoxSizer(wx.VERTICAL)
# Static Text
TitleFont = wx.Font(18, wx.ROMAN, wx.ITALIC, wx.ALIGN_CENTER)
TitleBox = wx.StaticBox(panel, -1, size = (380,50), pos = (10, 0))
# Create the title
self.title1 = wx.StaticText(panel, -1, label = "Neural Cognitive Mapping", pos = (30,15))
self.title1.SetFont(TitleFont)
# Create a box around the title
TiltleBox2 = wx.StaticBox(panel, -1, size = (360,40), pos = (20, 45))
# Create an input for the Participant ID
self.PartIDLabel = wx.StaticText(panel, -1, label = "Participant ID:", pos = (40,55))
self.PartID = wx.TextCtrl(panel,-1,'9999999',size=(100,30),pos = (200,48))
# Create a box for the Face task buttons
FacesBox = wx.StaticBox(panel, -1, size = (340,140), pos = (30,80))
# create a label for the faces box
self.title2 = wx.StaticText(panel, -1, label = "Face Tasks", pos = (50,90))
# Create a box for the letters buttons
LettersBox = wx.StaticBox(panel, -1, size = (340,140), pos = (30,215))
# Create a label for the letters box
self.title3 = wx.StaticText(panel, -1, label = "Letter Tasks", pos = (50,220))
## FACES BUTTONS
# Button FRT DEMO
self.btn = wx.Button(panel,-1,"Demo", pos = (45,110))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.OnClickedFRTDemo)
# Checkbox for FRT DEMO
self.FRTDEMOCB = wx.CheckBox(panel, -1, label = "", pos = (140,110))
# Button FRT STAIRCASE
self.btn = wx.Button(panel,-1,"Staircase", pos = (45,140))
self.FRTStairCaseCapText = wx.StaticText(panel, -1, label = "Capacity = ", pos = (170,140))
self.FRTStairCaseCapText = wx.StaticText(panel, -1, label = "0000000", pos = (250,140))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.OnClickedFRTStair)
# Checkbox for FRT staircase
self.FRTStairCB = wx.CheckBox(panel, -1, label = "", pos = (140,140))
# Manual entry button for FRT Capacity
self.btn = wx.Button(panel,-1,"Enter", pos = (317,132),size = (45,13))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.OnClickedFRTCapEnter)
# self.btn = wx.Button(panel,-1,"Load", pos = (317,150),size = (45,13))
# Button FRT BLOCK
self.btn = wx.Button(panel,-1,"Block", pos = (45,170))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.OnClickedFRTBlock)
# Checkbox for FRT BLOCK
self.FRTBlockCB = wx.CheckBox(panel, -1, label = "", pos = (140,170))
## LETTERS BUTTONS
# Button DMS DEMO
self.btn = wx.Button(panel,-1,"Demo", pos = (45,240))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.OnClickedDMSDemo)
# Checkbox for DMS Demo
self.DMSDEMOCB = wx.CheckBox(panel, -1, label = "", pos = (140,240))
# Button DMS STAIRCASE
self.btn = wx.Button(panel,-1,"Staircase", pos = (45,270))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.OnClickedDMSStair)
self.DMSStairCaseCapText = wx.StaticText(panel, -1, label = "Capacity = ", pos = (170,270))
self.DMSStairCaseCapText = wx.StaticText(panel, -1, label = "0000000", pos = (250,270))
# Checkbox for DMS staircase
self.DMSStairCB = wx.CheckBox(panel, -1, label = "", pos = (140,270))
# Manual entry button for DMS Capacity
self.btn = wx.Button(panel,-1,"Enter", pos = (317,270),size = (45,13))
#self.btn = wx.Button(panel,-1,"Enter", pos = (317,132),size = (45,13))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.OnClickedDMSCapEnter)
# Button DMS BLOCK
self.btn = wx.Button(panel,-1,"Block", pos = (45,300))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.OnClickedDMSBlock)
# Checkbox for DMS staircase
self.DMSBlockCB = wx.CheckBox(panel, -1, label = "", pos = (140,300))
# Create a Close button to close the GUI
self.btn = wx.Button(panel,-1,"Close", pos = (140,460))
vbox.Add(self.btn,0,wx.ALIGN_CENTER)
self.btn.Bind(wx.EVT_BUTTON,self.CloseGUI)
# Create Default values for the load levels for the two tasks
self.FRTBlockLoadLevels = '0.0 0.1 0.2 0.3 0.4 0.5'
self.DMSBlockLoadLevels = '1 2 3 5 6 7'
self.Centre()
self.Show()
self.Fit()
# Here I have passed a paramater to the call of the task.
# In the program you would add the following to use the input arguments
# dlg = gui.DlgFromDict(dictionary=expInfo, title=sys.argv[1])
# Run the Faces demo
def OnClickedFRTDemo(self, event):
btn = event.GetEventObject().GetLabel()
print "Label of pressed button = ",btn
core.shellCall([sys.executable, "FRTPsychopyFiles/FRTDemo_GUI.py", self.PartID.GetValue()])
self.FRTDEMOCB.SetValue(True)
# run the faces staircase
def OnClickedFRTStair(self, event):
btn = event.GetEventObject().GetLabel()
print "Label of pressed button = ",btn
self.FRTStairCaseDateStr = data.getDateStr()
core.shellCall([sys.executable, "FRTPsychopyFiles/FRTStairCase_v1.py", self.PartID.GetValue()])
# after the task is run read the capicity file
self.LoadFRTCapacity(self)
def LoadFRTCapacity(self, event):
self.FRTStairCB.SetValue(True)
task = 'FRTstair_'
dateStr = self.FRTStairCaseDateStr
#dateStr = "2017_Jul_27_1536"
PartID = self.PartID.GetValue()
#fileName = task + PartID + "_"+ dateStr
DropBoxFolder = BehavioralDataFolder
# os.path.join('/Users','jasonsteffener','Dropbox','steffenercolumbia','Projects','MyProjects','NeuralCognitiveMapping')
# OutDir = '..' + os.sep + 'data' + os.sep + PartDataFolder + os.sep
OutDir = os.path.join(DropBoxFolder, PartID)
# OutDir = '..' + os.sep + 'data' + os.sep + PartID + os.sep
CapFile=open(OutDir + os.sep+'CAPACITY_%s%s_%s.txt' % (task, PartID, dateStr),'r')
#CapFile = open(os.path.join("data","CAPACITY_" + fileName + ".txt"),'r')
# Read the capcity from the file and make it a local variable
self.FRTStairCaseCap = CapFile.read()
# Set the GUI label for capacity
self.FRTStairCaseCapText.SetLabel(self.FRTStairCaseCap)
# close the file
CapFile.close()
# remove the file
# os.Remove(os.path.join("data","CAPACITY_" + fileName + ".txt"))
# Once the capacity is loaded, calculate the load levels
self.FRTBlockLoadLevels = self.CreateFRTList(self.FRTStairCaseCap)
def OnClickedFRTBlock(self, event):
btn = event.GetEventObject().GetLabel()
print "Label of pressed button = ",btn
print self.PartID.GetValue()
print self.FRTBlockLoadLevels
core.shellCall([sys.executable, "FRTPsychopyFiles/FRT_Adaptive.py", self.PartID.GetValue(), self.FRTBlockLoadLevels])
self.FRTBlockCB.SetValue(True)
def LoadDMSCapacity(self, event):
# self.DMSStairCB.SetValue(True)
# task = 'DMSstair_'
# dateStr = self.DMSStairCaseDateStr
# #dateStr = "2017_Jul_27_1536"
# PartID = self.PartID.GetValue()
# #fileName = task + PartID + "_"+ dateStr
# OutDir = '..' + os.sep + 'data' + os.sep + PartID + os.sep
# CapFile=open(OutDir + 'CAPACITY_%s%s_%s.txt' % (task, PartID, dateStr),'r')
self.DMSStairCB.SetValue(True)
task = 'DMSstair_'
dateStr = self.DMSStairCaseDateStr
#dateStr = "2017_Jul_27_1536"
PartID = self.PartID.GetValue()
#fileName = task + PartID + "_"+ dateStr
DropBoxFolder = BehavioralDataFolder
# os.path.join('/Users','jasonsteffener','Dropbox','steffenercolumbia','Projects','MyProjects','NeuralCognitiveMapping')
# OutDir = '..' + os.sep + 'data' + os.sep + PartDataFolder + os.sep
OutDir = os.path.join(DropBoxFolder, PartID)
# OutDir = '..' + os.sep + 'data' + os.sep + PartID + os.sep
CapFile=open(OutDir + os.sep+'CAPACITY_%s%s_%s.txt' % (task, PartID, dateStr),'r')
self.DMSStairCaseCap = CapFile.read()
self.DMSStairCaseCapText.SetLabel(self.DMSStairCaseCap)
CapFile.close()
#os.Remove(os.path.join("data","CAPACITY_" + fileName + ".txt"))
self.DMSBlockLoadLevels = self.CreateDMSList(self.DMSStairCaseCap)
def OnClickedDMSDemo(self, event):
btn = event.GetEventObject().GetLabel()
print "Label of pressed button = ",btn
core.shellCall([sys.executable, "DMSPsychopyFiles/DMSDemo_GUI.py", self.PartID.GetValue(),'60'])
self.DMSDEMOCB.SetValue(True)
def OnClickedDMSStair(self, event):
self.DMSStairCaseDateStr = data.getDateStr()
btn = event.GetEventObject().GetLabel()
print "Label of pressed button = ",btn
core.shellCall([sys.executable, "DMSPsychopyFiles/DMSStairCase_v4_forBehav.py", self.PartID.GetValue()])
self.LoadDMSCapacity(self)
def OnClickedDMSBlock(self, event):
btn = event.GetEventObject().GetLabel()
print "Label of pressed button = ",btn
print self.PartID.GetValue()
print self.DMSBlockLoadLevels
DropBoxFolder = BehavioralDataFolder
# os.path.join('/Users','jasonsteffener','Dropbox','steffenercolumbia','Projects','MyProjects','NeuralCognitiveMapping')
PartDataFolder = os.path.join(DropBoxFolder, self.PartID.GetValue())
print('Saving data to:\n\t%s'%(PartDataFolder))
#core.shellCall([sys.executable, "DMSPsychopyFiles/DMS_Adaptive_v2.py", self.PartID.GetValue(), self.DMSBlockLoadLevels])
core.shellCall([sys.executable, "DMSPsychopyFiles/DMS_Adaptive5Load_v4.py", self.PartID.GetValue(), PartDataFolder, self.DMSBlockLoadLevels, '60', 'BehRun1'])
self.DMSBlockCB.SetValue(True)
def CreateDMSList(self, DMSCapacity):
Limit = int(round(float(DMSCapacity) + 1))
if Limit > 9:
Limit = 9
elif Limit < 6:
Limit = 6
DMSList = {}
DMSList['6']=[1,2,3,4,5,6]
DMSList['7']=[1,2,3,5,6,7]
DMSList['8']=[1,2,4,5,7,8]
DMSList['9']=[1,2,4,6,8,9]
OutList = DMSList[str(Limit)]
OutList = ' '.join(str(e) for e in OutList)
return OutList
def CreateFRTList(self, FRTCapacity):
# Made a small change here so that the capacity will be load level 5.
Limit = np.float(FRTCapacity)*1.25
#FRTList = range(0,6,1)Limit,Limit/(6-1))
FRTList = np.array(range(0,6,1))/(6.0-1)*Limit
# Convert this array to a string so it can be passed as an argument
FRTList = ' '.join(str(e) for e in FRTList)
return FRTList
def ManualEntryCapacity(self,Range):
myDlg = gui.Dlg(title=u"NCM Lab", labelButtonOK=' OK ', labelButtonCancel=' Cancel ',)
myDlg.addField(u'Capacity:')
myDlg.show() # show dialog and wait for OK or Cancel
Capacity = -9999
if myDlg.OK: # then the user pressed OK
thisInfo = myDlg.data
if (float(thisInfo[0]) >= float(Range[0])) and (float(thisInfo[0]) <= float(Range[1])):
print "Capacity = " + str(thisInfo)
Capacity = float(thisInfo[0])
else:
print "Out of Range"
else:
print 'user cancelled'
return str(Capacity)
def OnClickedFRTCapEnter(self,event):
self.FRTStairCaseCap = self.ManualEntryCapacity([0.0, 1.0])
self.FRTStairCaseCapText.SetLabel(self.FRTStairCaseCap)
self.FRTBlockLoadLevels = self.CreateFRTList(self.FRTStairCaseCap)
def OnClickedDMSCapEnter(self,event):
self.DMSStairCaseCap = self.ManualEntryCapacity([0.0, 9.0])
self.DMSStairCaseCapText.SetLabel(self.DMSStairCaseCap)
self.DMSBlockLoadLevels = self.CreateDMSList(self.DMSStairCaseCap)
def CloseGUI(self,event):
self.Close()
app = wx.App()
Mywin(None, 'NCM Lab')
app.MainLoop()
#import sys
#from psychopy import core
#core.shellCall([sys.executable, "20150418_memo_1a.py"])
#core.shellCall([sys.executable, "20150418_memo_1b.py"])
#core.shellCall([sys.executable, "20150418_memo_1c.py"])