/usr/share/pyshared/libopensesame/sketchpad.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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 | #-*- 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/>.
"""
from libopensesame import item, exceptions, generic_response, debug
import openexp.canvas
import openexp.exceptions
class sketchpad(item.item, generic_response.generic_response):
"""
Sketchpad item
TODO
The term 'item' is used for sketchpad 'elements'. This is confusing, because
'item' is also used for the higher level items, such as sketchpads. This
terminology should be changed. Furthermore, the sketchpad elements should
ideally be handled by separate classes, rather than the chaotic ad-hoc
implementation here and in the libqtopensesame.widgets.sketchpad_widget.
"""
description = u'Displays stimuli'
def __init__(self, name, experiment, string=None):
"""
Constructor.
Arguments:
name -- The name of the item.
experiment -- The experiment.
Keyword arguments:
string -- The item definition string. (default=None)
"""
self.duration = "keypress"
self.start_response_interval = "no"
self.items = []
self.numeric_attrs = "x", "y", "x1", "y1", "r", "w", "h", "scale", \
"font_size", "penwidth", "arrow_size", "center", "fill", "orient", \
"freq", "phase", "stdev", "size"
item.item.__init__(self, name, experiment, string)
def unfix_coordinates(self, item):
"""
Interprets the coordinates based on whether 'coordinates' is set to
absolute or relative. Raw coordinates -> Raw/ relative
Arguments:
item -- a sketchpad element
Returns:
The 'unfixed' sketchpad element
"""
item = item.copy()
if self.get("coordinates") == "relative":
for var in item:
if type(item[var]) in (int, float):
if var in ["x", "x1", "x2"]:
item[var] -= self.get("width") / 2
if var in ["y", "y1", "y2"]:
item[var] -= self.get("height") / 2
return item
def fix_coordinates(self, item):
"""
Interprets the coordinates based on whether 'coordinates' is set to
absolute or relative. Raw/ relative -> Raw coordinates
Arguments:
item -- a sketchpad element
Returns:
The 'fixed' sketchpad element
"""
item = item.copy()
if self.get("coordinates") == "relative":
for var in item:
if type(item[var]) in (int, float):
if var in ["x", "x1", "x2"]:
item[var] += self.get("width") / 2
if var in ["y", "y1", "y2"]:
item[var] += self.get("height") / 2
return item
def check_type(self, item):
"""
Checks whether the attributes of an element are valid
Arguments:
item -- a sketchpad element
Exceptions:
Throws a runtime_error if an attribute which should be numeric is not
"""
for attr in item:
if attr in self.numeric_attrs and type(item[attr]) == str:
raise exceptions.runtime_error( \
"'%s' should be numeric, not '%s', in sketchpad '%s'" % \
(attr, item[attr], self.name))
def prepare(self):
"""
Draw the canvas, so we can show it without delay in the run phase
Returns:
True on success, False on failure
"""
item.item.prepare(self)
# Build the canvas. Do not catch errors in debug mode
if debug.enabled:
self.canvas = openexp.canvas.canvas(self.experiment, \
self.get("background"), self.get("foreground"), auto_prepare=False)
else:
try:
self.canvas = openexp.canvas.canvas(self.experiment, \
self.get("background"), self.get("foreground"), auto_prepare= \
False)
except ValueError as e:
raise exceptions.runtime_error( \
"Failed to create a canvas. This could be because the foreground or background color is not valid.")
# Walk through all items and only shown the if the show-if criterion is
# met (if any)
for _item in self.items:
if eval(self.compile_cond(_item["show_if"])):
# Replace all variables by the actual values. In text, floats should
# be rounded, but not in other variables
tmp = {}
for var in _item:
if var == "text":
tmp[var] = self.eval_text(_item[var], round_float=True)
else:
tmp[var] = self.eval_text(_item[var])
# Check if the types are proper
self.check_type(tmp)
# Translate the coordinates to absolute (if necessary)
_item = self.fix_coordinates(tmp)
# Set the foreground color and the penwidth
try:
self.canvas.set_fgcolor(_item["color"])
except ValueError as e:
raise exceptions.runtime_error( \
"'%s' is not a valid color in sketchpad '%s'" % \
(_item["color"], self.name))
self.canvas.set_penwidth(_item["penwidth"])
# Draw the items
if _item["type"] == "rect":
self.canvas.rect(_item["x"], _item["y"], _item["w"], \
_item["h"], _item["fill"] == 1)
elif _item["type"] == "circle":
self.canvas.ellipse(_item["x"]-0.5*_item["r"], \
_item["y"]-0.5*_item["r"], _item["r"], _item["r"], \
_item["fill"] == 1)
elif _item["type"] == "ellipse":
self.canvas.ellipse(_item["x"], _item["y"], _item["w"], \
_item["h"], _item["fill"] == 1)
elif _item["type"] == "fixdot":
self.canvas.fixdot(_item["x"], _item["y"])
elif _item["type"] == "arrow":
self.canvas.arrow(_item["x1"], _item["y1"], _item["x2"], \
_item["y2"], _item["arrow_size"])
elif _item["type"] == "line":
self.canvas.line(_item["x1"], _item["y1"], _item["x2"], \
_item["y2"])
elif _item["type"] == "textline":
self.canvas.set_font(_item["font_family"], \
_item["font_size"], _item['font_italic'] == 'yes', \
_item['font_bold'] == 'yes')
self.canvas.text(_item["text"], _item["center"] == 1, \
_item["x"], _item["y"], html=_item["html"]==u"yes")
elif _item["type"] == "image":
try:
self.canvas.image(self.experiment.get_file( \
_item["file"]), _item["center"] == 1, _item["x"], \
_item["y"], _item["scale"])
except openexp.exceptions.canvas_error as e:
# Drawing an image can fail because the image format is
# not recognized or because the image file cannot be
# found
if self.experiment.file_in_pool(_item["file"]):
raise exceptions.runtime_error( \
"'%s' is not a supported image format in sketchpad '%s'" \
% (_item["file"], self.name))
else:
raise exceptions.runtime_error( \
"'%s' could not be found in sketchpad '%s'. Make sure that the file is present in the file pool (or specify the full location of the image in the script editor)." \
% (_item["file"], self.name))
elif _item["type"] == "gabor":
self.canvas.gabor(_item["x"], _item["y"], _item["orient"], \
_item["freq"], _item["env"], _item["size"], \
_item["stdev"], _item["phase"], _item["color1"], \
_item["color2"], _item["bgmode"])
elif _item["type"] == "noise":
self.canvas.noise_patch(_item["x"], _item["y"], \
_item["env"], _item["size"], _item["stdev"], \
_item["color1"], _item["color2"], _item["bgmode"])
if self.start_response_interval == "yes":
self._reset = True
else:
self._reset = False
self.canvas.prepare()
generic_response.generic_response.prepare(self)
return True
def run(self):
"""
Show the canvas
Returns:
True on success, False on failure
"""
self.set_item_onset(self.canvas.show())
self.set_sri(self._reset)
self.process_response()
return True
def parse_item(self, l, line):
"""
A generic parse attribute, which reads the definition of an element
Arguments:
l -- a list of words
line -- the definition line
Returns:
A sketchpad element
"""
item = {}
item["penwidth"] = 1
item["color"] = self.get("foreground", _eval=False)
item["type"] = u"undefined"
item["fill"] = 0
item["arrow_size"] = 20
item["center"] = 1
item["scale"] = 1.0
item["font_family"] = self.get('font_family', _eval=False)
item["font_size"] = self.get('font_size', _eval=False)
item["font_italic"] = self.get('font_italic', _eval=False)
item["font_bold"] = self.get('font_bold', _eval=False)
item["orient"] = 0
item["freq"] = 0.1
item["env"] = u"gaussian"
item["size"] = 96
item["stdev"] = 12
item["phase"] = 0
item["color1"] = u"white"
item["color2"] = u"black"
item["bgmode"] = u"avg"
item["html"] = u"yes"
item["show_if"] = u"always"
for i in l:
j = i.find("=")
if j != -1:
# UGLY HACK: if the string appears to be plain text,
# rather than a keyword, for example something like
# 'accuracy = [acc]%', do not parse it as a keyword-
# value pair. The string needs to occur only once in
# the full line, both quoted and unquoted.
q = "\"" + i + "\""
if line.count(q) == 1 and line.count(i) == 1:
debug.msg("'%s' does not appear to be a keyword-value pair in string '%s'" \
% (i, line))
else:
var = i[:j]
val = i[j+1:]
item[var] = self.auto_type(val)
return item
def parse_rect_ellipse(self, line, l, item, item_type):
"""
Parse a rectangle
Arguments:
line -- a definition line
l -- a definition list
item -- sketchpad element to finish
item_type -- type of the current item
Returns:
A finished sketchpad element
"""
if len(l) < 6:
raise exceptions.script_error("Invalid draw %s command '%s', expecting 'draw %s [x] [y] [w] [h]'" \
% (item_type, line, item_type))
item["type"] = item_type
item["x"] = self.auto_type(l[2])
item["y"] = self.auto_type(l[3])
item["w"] = self.auto_type(l[4])
item["h"] = self.auto_type(l[5])
return item
def parse_circle(self, line, l, item):
"""
Parse a circle
Arguments:
line -- a definition line
l -- a definition list
item -- sketchpad element to finish
Returns:
A finished sketchpad element
"""
if len(l) < 5:
raise exceptions.script_error("Invalid draw circle command '%s', expecting 'draw circle [x] [y] [r]'" \
% line)
item["type"] = u"circle"
item["x"] = self.auto_type(l[2])
item["y"] = self.auto_type(l[3])
item["r"] = self.auto_type(l[4])
return item
def parse_fixdot(self, line, l, item):
"""
Parse fixation dot
Arguments:
line -- a definition line
l -- a definition list
item -- sketchpad element to finish
Returns:
A finished sketchpad element
"""
item["type"] = u"fixdot"
if len(l) > 3:
item["x"] = self.auto_type(l[2])
item["y"] = self.auto_type(l[3])
else:
item["x"] = self.get("width") / 2
item["y"] = self.get("height") / 2
return item
def parse_line_arrow(self, line, l, item, item_type):
"""
Parse a line or arrow
Arguments:
line -- a definition line
l -- a definition list
item -- sketchpad element to finish
item_type -- type of the current item
Returns:
A finished sketchpad element
"""
if len(l) < 6:
raise exceptions.script_error("Invalid draw %s command '%s', expecting 'draw %s [x1] [y1] [x2] [y2]'" \
% (item_type, line, item_type))
item["type"] = item_type
item["x1"] = self.auto_type(l[2])
item["y1"] = self.auto_type(l[3])
item["x2"] = self.auto_type(l[4])
item["y2"] = self.auto_type(l[5])
return item
def parse_textline(self, line, l, item):
"""
Parse text
Arguments:
line -- a definition line
l -- a definition list
item -- sketchpad element to finish
Returns:
A finished sketchpad element
"""
if len(l) < 3:
raise exceptions.script_error("Invalid draw textline command '%s', expecting 'draw textline [x] [y] [text]' or 'draw textline [text]'" \
% line)
item["type"] = u"textline"
try:
item["x"] = self.auto_type(l[2])
item["y"] = self.auto_type(l[3])
item["text"] = l[4]
except:
item["x"] = self.get("width") / 2
item["y"] = self.get("height") / 2
item["text"] = l[2]
return item
def parse_image(self, line, l, item):
"""
Parse image
Arguments:
line -- a definition line
l -- a definition list
item -- sketchpad element to finish
Returns:
A finished sketchpad element
"""
if len(l) < 3:
raise exceptions.script_error("Invalid draw image command '%s', expecting 'draw image [x] [y] [file]' or 'draw textline [file]'" \
% line)
item["type"] = u"image"
try:
item["x"] = self.auto_type(l[2])
item["y"] = self.auto_type(l[3])
item["file"] = l[4]
except:
item["x"] = self.get("width") / 2
item["y"] = self.get("height") / 2
item["file"] = l[2]
return item
def parse_gabor(self, line, l, item):
"""
Parse Gabor patch
Arguments:
line -- a definition line
l -- a definition list
item -- sketchpad element to finish
Returns:
A finished sketchpad element
"""
if len(l) < 4:
raise exceptions.script_error("Invalid draw image command '%s', expecting 'draw gabor [x] [y] [orient] [freq]'" \
% line)
item["type"] = u"gabor"
item["x"] = self.auto_type(l[2])
item["y"] = self.auto_type(l[3])
return item
def parse_noise(self, line, l, item):
"""
Parse noise patch
Arguments:
line -- a definition line
l -- a definition list
item -- sketchpad element to finish
Returns:
A finished sketchpad element
"""
if len(l) < 4:
raise exceptions.script_error("Invalid draw image command '%s', expecting 'draw noise [x] [y]'" \
% line)
item["type"] = u"noise"
item["x"] = self.auto_type(l[2])
item["y"] = self.auto_type(l[3])
return item
def from_string(self, string):
"""
Read a sketchpad from string
Arguments:
string -- the unicode string containing the sketchpad definition
"""
for line in string.split(u'\n'):
if not self.parse_variable(line):
l = self.split(line)
if len(l) > 0:
if l[0] == u'draw':
if len(l) == 1:
raise exceptions.script_error( \
"Incomplete draw command '%s'" % line)
item = self.parse_item(l, line)
if l[1] in ("circle",):
item = self.parse_circle(line, l, item)
elif l[1] in ("rectangle", "rect"):
item = self.parse_rect_ellipse(line, l, item, \
"rect")
elif l[1] in ("fixdot", "fixation"):
item = self.parse_fixdot(line, l, item)
elif l[1] in ("ellipse", "oval"):
item = self.parse_rect_ellipse(line, l, item, \
"ellipse")
elif l[1] in ("arrow",):
item = self.parse_line_arrow(line, l, item, "arrow")
elif l[1] in ("line",):
item = self.parse_line_arrow(line, l, item, "line")
elif l[1] in ("textline",):
item = self.parse_textline(line, l, item)
elif l[1] in ("image", "bitmap"):
item = self.parse_image(line, l, item)
elif l[1] in ("gabor"):
item = self.parse_gabor(line, l, item)
elif l[1] in ("noise"):
item = self.parse_noise(line, l, item)
else:
raise exceptions.script_error( \
"Unknown draw command '%s'" % line)
self.items.append(item)
else:
raise exceptions.script_error("Unknown command '%s'" \
% line)
def relativize(self, item, compensation, varlist):
"""
Reset coordinates so that 0, 0 is the center
"""
for var in varlist:
if var in item:
item[var] -= compensation
return item
def item_to_string(self, _item):
"""
Encode an element as string
Arguments:
_item -- the sketchpad element
Returns:
A definition unicode string
"""
if _item["type"] == "rect":
return u"draw rect %s %s %s %s fill=%s penwidth=%s color=%s show_if=\"%s\"" \
% (_item["x"], _item["y"], _item["w"], _item["h"], \
_item["fill"], _item["penwidth"], _item["color"], \
_item["show_if"])
elif _item["type"] == "circle":
return u"draw circle %s %s %s fill=%s penwidth=%s color=%s show_if=\"%s\"" \
% (_item["x"], _item["y"], _item["r"], _item["fill"], \
_item["penwidth"], _item["color"], _item["show_if"])
elif _item["type"] == "ellipse":
return u"draw ellipse %s %s %s %s fill=%s penwidth=%s color=%s show_if=\"%s\"" \
% (_item["x"], _item["y"], _item["w"], _item["h"], \
_item["fill"], _item["penwidth"], _item["color"], \
_item["show_if"])
elif _item["type"] == "fixdot":
return u"draw fixdot %s %s color=%s show_if=\"%s\"" % (_item["x"], \
_item["y"], _item["color"], _item["show_if"])
elif _item["type"] == "arrow":
return u"draw arrow %s %s %s %s penwidth=%s color=%s arrow_size=%s show_if=\"%s\"" \
% (_item["x1"], _item["y1"], _item["x2"], _item["y2"], \
_item["penwidth"], _item["color"], _item["arrow_size"], \
_item["show_if"])
elif _item["type"] == "line":
return u"draw line %s %s %s %s penwidth=%s color=%s show_if=\"%s\"" \
% (_item["x1"], _item["y1"], _item["x2"], _item["y2"], \
_item["penwidth"], _item["color"], _item["show_if"])
elif _item["type"] == "textline":
return u"draw textline %s %s \"%s\" center=%s color=%s font_family=\"%s\" font_size=%s font_italic=%s font_bold=%s show_if=\"%s\" html=\"%s\"" \
% (_item["x"], _item["y"], \
self.experiment.sanitize(_item["text"]), _item["center"], \
_item["color"], _item["font_family"], _item["font_size"], \
_item["font_italic"], _item["font_bold"], _item["show_if"], \
_item["html"])
elif _item["type"] == "image":
return u"draw image %s %s \"%s\" scale=%s center=%s show_if=\"%s\"" \
% (_item["x"], _item["y"], _item["file"], _item["scale"], \
_item["center"], _item["show_if"])
elif _item["type"] == "gabor":
return u"draw gabor %(x)s %(y)s orient=%(orient)s freq=%(freq)s env=%(env)s size=%(size)s stdev=%(stdev)s phase=%(phase)s color1=%(color1)s color2=%(color2)s bgmode=%(bgmode)s show_if=\"%(show_if)s\"" \
% _item
elif _item["type"] == "noise":
return u"draw noise %(x)s %(y)s env=%(env)s size=%(size)s stdev=%(stdev)s color1=%(color1)s color2=%(color2)s bgmode=%(bgmode)s show_if=\"%(show_if)s\"" \
% _item
def to_string(self):
"""
Encode sketchpad as string
Returns:
A definition string
"""
s = item.item.to_string(self, self.item_type)
for _item in self.items:
s += u"\t%s\n" % self.item_to_string(_item)
return s
def var_info(self):
"""
Return a list of dictionaries with variable descriptions
Returns:
A list of (name, description) tuples
"""
l = item.item.var_info(self)
if self.get("duration", _eval=False) in ["keypress", "mouseclick"]:
l += generic_response.generic_response.var_info(self)
return l
|