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
|
"""
Default settings for the stimuli package.
This module contains default values for all optional arguments in the init
function of all classes in this package.
"""
__author__ = 'Florian Krause <florian@expyriment.org, \
Oliver Lindemann <oliver@expyriment.org>'
__version__ = '0.7.0'
__revision__ = '55a4e7e'
__date__ = 'Wed Mar 26 14:33:37 2014 +0100'
import os as _os
import tempfile as _tempfile
# Visual
visual_position = (0, 0)
# Canvas
canvas_colour = None # 'None' is transparent
canvas_position = (0, 0)
# TextLine
textline_text_font = None # 'None' is experiment_text_font
textline_text_size = None # 'None' is experiment_text_size
textline_text_bold = False
textline_text_italic = False
textline_text_underline = False
textline_text_colour = None # 'None' is experiment_text_colour
textline_background_colour = None # 'None' is transparent
textline_position = (0, 0)
# TextBox
textbox_text_font = None # 'None' is experiment_text_font
textbox_text_size = None # 'None' is experiment_text_size
textbox_text_bold = False
textbox_text_italic = False
textbox_text_underline = False
textbox_text_justification = 1
textbox_text_colour = None # 'None' is experiment_text_colour
textbox_background_colour = None # 'None' is transparent
textbox_position = (0, 0)
# TextScreen
textscreen_heading_font = None # 'None' is experiment_heading_font
textscreen_heading_size = None # 'None' is experiment_heading_size
textscreen_heading_bold = False
textscreen_heading_italic = False
textscreen_heading_underline = False
textscreen_heading_colour = None # 'None' is experiment_heading_colour
textscreen_text_font = None # 'None' is experiment_text_font
textscreen_text_size = None # 'None' is experiment_text_size
textscreen_text_bold = False
textscreen_text_italic = False
textscreen_text_underline = False
textscreen_text_colour = None # 'None' is experiment_text_colour
textscreen_text_justification = 1
textscreen_background_colour = None # 'None' is transparent
textscreen_size = None # 'None' is 4/5 of full screen
textscreen_position = (0, 0)
# Frame
frame_colour = None # 'None' is experiment_text_colour
frame_frame_line_width = 5
frame_position = (0, 0)
frame_anti_aliasing = 0
# Ellipse
ellipse_colour = None # 'None' is experiment_text_colour
ellipse_line_width = 0
ellipse_position = (0, 0)
ellipse_anti_aliasing = 0
# FixCross
fixcross_colour = None # 'None' is experiment_text_colour
fixcross_size = (20, 20)
fixcross_line_width = 1
fixcross_position = (0, 0)
fixcross_anti_aliasing = 0
# Circle
circle_colour = None # 'None' is experiment_text_colour
circle_position = (0, 0)
circle_anti_aliasing = 0
circle_line_width = 0
# Dot
dot_colour = None # 'None' is experiment_text_colour
dot_position = (0, 0)
dot_anti_aliasing = 0
# Shape
shape_colour = None # 'None' is experiment_text_colour
shape_position = (0, 0)
shape_anti_aliasing = 0
shape_line_width = 0
# Line
line_colour = None # 'None' is experiment_text_colour
line_anti_aliasing = 0
# Rectangle
rectangle_colour = None # 'None' is experiment_text_colour
rectangle_position = (0, 0)
rectangle_line_width = 0
# Picture
picture_position = (0, 0)
# Video
video_position = [0, 0]
# Tone
tone_frequency = 440
tone_samplerate = 44100
tone_bitdepth = 16
tone_amplitude = 0.5
# Create tmp for compressed stimuli folder
tempdir = _tempfile.gettempdir() + "/expyriment"
try:
_os.mkdir(tempdir)
except:
pass
|