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
|
"""
Default settings for the control 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'
from expyriment.misc import constants as _constants
initialize_delay = 10 # After approximately 10 seconds Python is timecritical
auto_create_subject_id = False
goodbye_text = "Ending experiment..."
goodbye_delay = 3000
fast_quit = False
quit_key = _constants.K_ESCAPE
pause_key = _constants.K_p
open_gl = True
window_mode = False
window_size = (800, 600)
event_logging = 1 # 1 = default, 2 = extensive, 0 or False = off
stdout_logging = True
audiosystem_autostart = True
audiosystem_sample_rate = 44100
audiosystem_bit_depth = -16 # Negative values mean signed sample values
audiosystem_channels = 2
audiosystem_buffer_size = 2048
_mode_settings = None
|