forked from sci-sim/sci-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sim_template_example.txt
executable file
·133 lines (107 loc) · 3.08 KB
/
sim_template_example.txt
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
# each choice is a link
simulation_name = {template example}
simulation_password = {pass}
simulation_description = {this is the description}
simulation_preview_picture = {Katzville.jpg}
# First page
page = [
page_name = {Choose Patient} # this does not appear on the page
heading_big = {This is the heading that will go on top. Headings indicate bigger, bolder text}
text = {This is just text. everything entered will be in the order you make declarations}
choice_limit = 1
choice_limit_page = {Patient Evaluation Summary}
choice = [
# this is the text that goes with the choice
prompt = {
name: Mr. Smith
sex: male
age: 25
chief_complaint: Burning feet and toes
}
goes_to_page = {Examine Mr. Smith}
]
choice = [
prompt = {
Ms. JONES
Sex: female
Age: 45
Chief Complaint: Check up
}
goes_to_page = {Examine Ms. Jones}
]
]
page = [
page_name = {Examine Mr. Smith}
heading_big = {Patient Profile #1 Mr. Smith}
heading_small = {Dialoge with Mr. Smith}
text = {
Doctor: What brings you here today?
Mr. Smith: My feet and toes feel like they're burning!
}
heading_small = {What would you like to do now?}
choice_limit = {5}
choice_limit_page = {Choose Patient}
choice = [
prompt = {Listen to the patient's heart}
goes_to_page = {Listen to Mr. Smith's Heart}
]
choice = [
prompt = {Listen to the patient's lungs}
goes_to_page = {Listen to Mr. Smith's Lungs}
]
choice = [
binary = {Check patient's height, weight, and BMI}
goes_to_page = {Check Mr. Smiths Height, Weight, and BMI}
]
choice = [
binary = {Examine the patient's feet for sores}
goes_to_page = {Examine Mr. Smith's feet for sores}
]
choice = [
binary = {Check the patient's blood sugar}
goes_to_page = {Check Mr. Smith's Blood Sugar}
]
]
page = [
page_name = {Listen to Mr. Smith's Heart}
media = {normal_sounding_clip.mp3} # the value would be the name of the file
media = {weird_sounding_clip.mp3}
choice = [
# binary indicates that this will be a prompt that needs a yes/no response
binary = {Do you think your patient's heart sounds normal?}
goes_to_page = {Examine Mr. Smith}
]
]
page = [
page_name = {Listen to Mr. Smith's Lungs}
media = {normal_sounding_clip.mp3} # the value would be the name of the file
media = {weird_sounding_clip.mp3}
choice = [
binary = {Do you think your patient's lungs sounds normal?}
goes_to_page = {Examine Mr. Smith}
]
]
page = [
page_name = {Check Mr. Smith's Height, Weight, and BMI}
add_to_notebook = {Mr. Smith's height is X, weight is Y making their BMI Z. Your patient is normal weight}
goes_to_page = {Examine Mr. Smith}
]
page = [
page_name = {Examine Mr. Smith's feet for sores}
media = {healthy_feel.jpg}
choice = [
binary = {Do you think Mr. Smith's feet are healthy?}
goes_to_page = {Examine Mr. Smith}
]
]
page = [
page_name = {Check Mr. Smith's Blood Sugar}
]
page = [
page_name = {Examine Ms. Jones}
add_to_notebook = {"We're adding stuff from ms. jones"}
]
page = [
page_name = {Check Mr. Smiths Height, Weight, and BMI}
add_to_notebook = {"We're adding stuff from ms. jones"}
]