-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgating_instructions.py
59 lines (50 loc) · 2.23 KB
/
gating_instructions.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
"""
Instructions for an understanding experiment.
This module contains strings that are displayed at the start, middle, and end
of an understanding experiment, guiding the participants through the process.
These instructions are displayed in the experiment window and participants
interact via keyboard.
Strings:
----------
begin: A string displayed at the beginning of the experiment. It introduces the
experiment and instructs participants about the task, including how to
interpret stimuli and how to respond using the keyboard.
test: A string displayed after practice trials. It indicates the beginning of
the actual experiment and provides further details about its structure.
end: A string displayed at the end of the experiment, signalling its completion.
Usage:
----------
These strings are typically displayed in a psychopy.visual.Window object using
the psychopy.visual.TextStim method.
Example:
>>> from psychopy import visual, core
>>> win = visual.Window(size=[800, 600])
>>> text = visual.TextStim(win, text=begin)
>>> text.draw()
>>> win.flip()
>>> core.wait(5)
"""
# Instructions
begin = """
Willkommen zum Verständnis-Experiment \n
Sie hören unterschiedlich lange Aufnahmen der Ihnen bekannten Namenssequenzen.
Sie hören zum Beispiel: "Mimmi" oder Sie hören "Mimmi und Mo" etc..
Gleich danach sehen Sie zwei Piktogramme:
1. Drei Figuren zusammen - alle drei kommen gemeinsam.
2. Zwei Figuren zusammen, eine allein - zwei kommen gemeinsam, eine allein.
Bitte entscheiden Sie, welches Piktogramm am besten zur Sequenz passt.
Drücken Sie den Pfeil nach links auf der Tastatur, für das linke Piktogramm.
Drücken Sie den Pfeil nach rechts auf der Tastatur, für das rechte Piktogramm. \n
Drücken Sie die Eingabetaste (Enter), um mit den Übungsbeispielen zu beginnen.
"""
test = """
Das waren die Übungsbeispiele. \n
Falls Sie noch Fragen haben, geben Sie bitte der Versuchsleiterin Bescheid.
Es gibt vier Blöcke und jeder Block dauert ca. 4 Minuten. \n
Sie können nach jedem Block eine Pause machen, wenn Sie das wünschen. \n
Drücken Sie die Eingabetaste (Enter), um mit dem Experiment zu starten.
"""
end = """
Geschafft!\n
Drücken Sie die Eingabetaste (Enter), um das Experiment zu beenden.
"""