/usr/share/pyshared/libopensesame/generic_response.py is in opensesame 0.27.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #-*- coding:utf-8 -*-
"""
This file is part of OpenSesame.
OpenSesame is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenSesame is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenSesame. If not, see <http://www.gnu.org/licenses/>.
"""
import random
import openexp.keyboard
import openexp.mouse
from libopensesame import exceptions, debug
class generic_response:
"""
Deals with overlapping functionality for items that are able to process a
reponse.
"""
auto_response = "a"
process_feedback = False
def prepare_timeout(self):
"""Prepares the response timeout"""
if self.get("timeout") == "infinite":
self._timeout = None
else:
try:
self._timeout = int(self.get("timeout"))
except:
raise exceptions.runtime_error( \
"'%s' is not a valid timeout in keyboard_response '%s'. Expecting a positive integer or 'infinite'." \
% (self.get("timeout"), self.name))
if self._timeout < 0:
raise exceptions.runtime_error( \
"'%s' is not a valid timeout in keyboard_response '%s'. Expecting a positive integer or 'infinite'." \
% (self.get("timeout"), self.name))
def auto_responder(self, dev=u'keyboard'):
"""
Mimicks participant responses.
Keyword arguments:
dev -- The device that should be simulated. (default=u'keyboard')
Returns:
A simulated (response_time, response) tuple
"""
if self._timeout == None:
self.sleep(random.randint(200, 1000))
else:
self.sleep(random.randint(min(self._timeout, 200), self._timeout))
if self._allowed_responses == None:
resp = self.auto_response
else:
resp = random.choice(self._allowed_responses)
debug.msg("generic_response.auto_responder(): responding '%s'" % resp)
if dev == u'mouse':
pos = random.randint(0, self.get('width')), random.randint( \
0, self.get('height'))
return resp, pos, self.time()
return resp, self.time()
def auto_responder_mouse(self):
"""An ugly hack to make auto-response work for mouse_response items."""
return self.auto_responder(dev=u'mouse')
def process_response_keypress(self, retval):
"""Process a keypress response"""
self.experiment.start_response_interval = self.sri
key, self.experiment.end_response_interval = retval
self.experiment.response = self.sanitize(key)
self.synonyms = self._keyboard.synonyms(self.experiment.response)
def process_response_mouseclick(self, retval):
"""Process a mouseclick response"""
self.experiment.start_response_interval = self.sri
self.experiment.response, pos, self.experiment.end_response_interval = \
retval
self.synonyms = self._mouse.synonyms(self.experiment.response)
if pos != None:
self.experiment.cursor_x = pos[0]
self.experiment.cursor_y = pos[1]
else:
self.experiment.cursor_x = 'NA'
self.experiment.cursor_y = 'NA'
def process_response(self):
"""A generic method for handling response collection"""
# Wait for a fixed duration
retval = self._duration_func()
self.synonyms = None
# If the duration function did not give any kind of return value
# there is no response to process
if retval == None:
return
process_func = "process_response_%s" % self.get("duration")
if hasattr(self, process_func):
exec("self.%s(retval)" % process_func)
else:
raise exceptions.runtime_error( \
"Don't know how to process responses for duration '%s' in item '%s'" \
% (self.get("duration"), self.name))
self.response_bookkeeping()
def response_bookkeeping(self):
"""Do some bookkeeping for the response"""
# The respone and response_time variables are always set, for every
# response item
self.experiment.set("response_time", \
self.experiment.end_response_interval - \
self.experiment.start_response_interval)
self.experiment.set("response_%s" % self.get("name"), \
self.get("response"))
self.experiment.set("response_time_%s" % self.get("name"), \
self.get("response_time"))
self.experiment.start_response_interval = None
# But correctness information is only set for dedicated response items,
# such as keyboard_response items, because otherwise we might confound
# the feedback
if self.process_feedback:
debug.msg("processing feedback for '%s'" % self.name)
if self.has("correct_response"):
# If a correct_response has been defined, we use it to determine
# accuracy etc.
correct_response = self.get("correct_response")
if hasattr(self, "synonyms") and self.synonyms != None:
if correct_response in self.synonyms or \
self.unistr(correct_response) in self.synonyms:
self.experiment.correct = 1
self.experiment.total_correct += 1
else:
self.experiment.correct = 0
else:
if self.experiment.response in (correct_response, \
self.unistr(correct_response)):
self.experiment.correct = 1
self.experiment.total_correct += 1
else:
self.experiment.correct = 0
else:
# If a correct_response hasn't been defined, we simply set
# correct to undefined
self.experiment.correct = "undefined"
# Do some response bookkeeping
self.experiment.total_response_time += self.experiment.response_time
self.experiment.total_responses += 1
self.experiment.set("acc", 100.0 * self.experiment.total_correct / \
self.experiment.total_responses)
self.experiment.set("avg_rt", self.experiment.total_response_time / \
self.experiment.total_responses)
self.experiment.set("accuracy", self.experiment.acc)
self.experiment.set("average_response_time", self.experiment.avg_rt)
self.experiment.set("correct_%s" % self.get("name"), \
self.get("correct"))
def set_sri(self, reset=False):
"""
Sets the start of the response interval
Keyword arguments:
reset -- determines whether the start of the response interval should
be reset to the start of the current item (default=False)
"""
if reset:
self.sri = self.get("time_%s" % self.name)
self.experiment.start_response_interval = self.get("time_%s" % \
self.name)
if self.experiment.start_response_interval == None:
self.sri = self.get("time_%s" % self.name)
else:
self.sri = self.experiment.start_response_interval
def prepare_timeout(self):
"""Prepare the response timeout"""
# Set the timeout
if not self.has("timeout") or self.get("timeout") == "infinite":
self._timeout = None
else:
try:
self._timeout = int(self.get("timeout"))
except:
raise exceptions.runtime_error( \
"'%s' is not a valid timeout in item '%s'. Expecting a positive integer or 'infinite'." \
% (self.get("timeout"), self.name))
if self._timeout < 0:
raise exceptions.runtime_error( \
"'%s' is not a valid timeout in item '%s'. Expecting a positive integer or 'infinite'." \
% (self.get("timeout"), self.name))
def prepare_compensation(self):
"""Prepare the duration compensation"""
# Prepare the compensation function
if self.has("compensation"):
try:
self._compensation = int(self.get("compensation"))
except:
raise exceptions.runtime_error( \
"Variable 'compensation' should be numeric and not '%s' in %s item '%s'" \
% (self.get("compensation"), self.item_type, self.name))
else:
self._compensation = 0
def prepare_allowed_responses(self):
"""Prepare the allowed responses"""
# Prepare the allowed responses
dur = self.get("duration")
if self.has("allowed_responses"):
if dur == "keypress":
# Prepare valid keypress responses
l = self.experiment.unistr(self.get("allowed_responses")).split( \
";")
self._allowed_responses = l
elif dur == "mouseclick":
# Prepare valid mouseclick responses
self._allowed_responses = []
for r in self.experiment.unistr(self.get( \
"allowed_responses")).split(";"):
if r in self.resp_codes.values():
for code, resp in self.resp_codes.items():
if resp == r:
self._allowed_responses.append(code)
else:
try:
r = int(r)
if r in self.resp_codes:
self._allowed_responses.append(r)
else:
raise exceptions.runtime_error( \
"Unknown allowed_response '%s' in mouse_response item '%s'" \
% (r, self.name))
except ValueError:
raise exceptions.runtime_error( \
"Unknown allowed_response '%s' in mouse_response item '%s'" \
% (r, self.name))
# If allowed responses are provided, the list should not be empty
if len(self._allowed_responses) == 0:
raise exceptions.runtime_error( \
"'%s' are not valid allowed responses in keyboard_response '%s'" \
% (self.get("allowed_responses"), self.name))
else:
self._allowed_responses = None
def prepare_duration(self):
"""Prepare the duration"""
if type(self.get("duration")) == int:
# Prepare a duration in milliseconds
self._duration = int(self.get("duration"))
if self._duration == 0:
self._duration_func = self.dummy
else:
self.prepare_compensation()
if self._compensation != 0:
self._duration_func = self.sleep_for_comp_duration
else:
self._duration_func = self.sleep_for_duration
else:
# Prepare a special duration, such as 'keypress', which are
# handles by special functions
prepare_func = "prepare_duration_%s" % self.get("duration")
if hasattr(self, prepare_func):
exec("self.%s()" % prepare_func)
else:
raise exceptions.runtime_error( \
"'%s' is not a valid duration in item '%s'" % \
(self.get("duration"), self.name))
def prepare_duration_keypress(self):
"""Prepare a keypress duration"""
self._keyboard = openexp.keyboard.keyboard(self.experiment)
if self.experiment.auto_response:
self._duration_func = self.auto_responder
else:
self._keyboard.set_timeout(self._timeout)
self._keyboard.set_keylist(self._allowed_responses)
self._duration_func = self._keyboard.get_key
def prepare_duration_mouseclick(self):
"""Prepare a mouseclick duration"""
self._mouse = openexp.mouse.mouse(self.experiment)
if self.experiment.auto_response:
self._duration_func = self.auto_responder_mouse
else:
# Prepare mouseclick
self._mouse.set_timeout(self._timeout)
self._mouse.set_buttonlist(self._allowed_responses)
self._duration_func = self._mouse.get_click
def prepare(self):
"""A generic method for preparing a response item"""
self.prepare_timeout()
self.prepare_allowed_responses()
self.prepare_duration()
def sleep_for_duration(self):
"""Sleep for a specified time"""
self.sleep(self._duration)
def sleep_for_comp_duration(self):
"""Sleep for a specified time, taking the compensation into account"""
self.sleep(self._duration - self._compensation)
def var_info(self):
"""
Return a list of dictionaries with variable descriptions
Returns:
A list of (name, description) tuples
"""
l = []
l.append( ("response", "[Depends on response]") )
l.append( ("response_time", "[Depends on response]") )
l.append( ("response_%s" % self.get("name", _eval=False), \
"[Depends on response]") )
l.append( ("response_time_%s" % self.get("name", _eval=False), \
"[Depends on response]") )
if self.process_feedback:
l.append( ("correct", "[Depends on response]") )
l.append( ("correct_%s" % self.get("name", _eval=False), \
"[Depends on response]") )
l.append( ("average_response_time", "[Depends on response]") )
l.append( ("avg_rt", "[Depends on response]") )
l.append( ("accuracy", "[Depends on response]") )
l.append( ("acc", "[Depends on response]") )
return l
|