-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchats.js
319 lines (312 loc) · 8.42 KB
/
chats.js
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
var error = [{
message: "You are too far away to chat with this person.",
resp1: {
text: "Continue."
},
resp2: {
text: ""
},
resp3: {
text: ""
}
}];
var alice = [{
message: "Alice: Hello Friend. I'm playing a game with my friends Bob and Charlene. Do you want to play with us?",
resp1: {
text: "Yes.",
next: {
message: "Alice: Great! One of them only lies and the other only tells the truth. I'm trying to figure out which is which. You should speak to them to find out.",
resp1: { text: "Alright. I'll be right back.", state: 1 },
resp2: { text: "Good-bye.", state: 1 },
resp3: { text: "" }
}
},
resp2: {
text: "No.",
next: {
message: "Alice: Okay, then. Peace out!",
resp1: { text: "Good-bye." },
resp2: { text: "" },
resp3: { text: "" }
}
},
resp3: { text: "Good-bye." }
},
{
message: "Alice: Return once you have spoken to Bob and Charlene.",
resp1: {
text: "Okay. I'll be right back."
},
resp2: {
text: ""
},
resp3: { text: "" }
},
{
message: "Alice: Oh, you should still speak with Charlene.",
resp1: {
text: "Okay. I'll be right back."
},
resp2: {
text: ""
},
resp3: { text: "" }
},
{
message: "Alice: Did you forget to talk to Bob too?",
resp1: {
text: "Yup. I'll be right back."
},
resp2: {
text: ""
},
resp3: { text: "" }
},
{
message: "Alice: Who is the liar?",
resp1: {
text: "Bob.",
next: {
message: "You are correct! Congratulations!",
resp1: {
text: "Thanks! That was fun."
},
resp2: {
text: ""
},
resp3: {
text: ""
}
},
state: 5
},
resp2: {
text: "Charlene.",
next: {
message: "Oh, I'm sorry, but you are wrong.",
resp1: {
text: "Shucks. I thought I figured it out."
},
resp2: {
text: ""
},
resp3: {
text: ""
}
},
state: 5
},
resp3: { text: "I'm not sure. I'll be right back." }
},
{
message: "Thanks for playing with us.",
resp1: {
text: "Good-bye."
},
resp2: {
text: ""
},
resp3: {
text: ""
}
}];
var bobsQuestions = {
message: "Bob: Hello Friend. Ask me any question you like.",
resp1: {
text: "Do you always tell the truth?",
next: {
message: "Bob: Yes, of course.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 2
},
resp2: {
text: "Does Charlene always tell the truth?",
next: {
message: "Bob: Oh no, never.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 2
},
resp3: {
text: "Do both you and Charlene always tell the truth?",
next: {
message: "Bob: Umm, yes we do.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 2
}
};
bobsQuestions.resp1.next.resp1.next = bobsQuestions;
bobsQuestions.resp2.next.resp1.next = bobsQuestions;
bobsQuestions.resp3.next.resp1.next = bobsQuestions;
var bobsQuestions2 = {
message: "Bob: Hello Friend. Ask me any question you like.",
resp1: {
text: "Do you always tell the truth?",
next: {
message: "Bob: Yes, of course.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 4
},
resp2: {
text: "Does Charlene always tell the truth?",
next: {
message: "Bob: Oh no, never.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 4
},
resp3: {
text: "Do both you and Charlene always tell the truth?",
next: {
message: "Bob: Umm, yes we do.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 4
}
};
bobsQuestions2.resp1.next.resp1.next = bobsQuestions2;
bobsQuestions2.resp2.next.resp1.next = bobsQuestions2;
bobsQuestions2.resp3.next.resp1.next = bobsQuestions2;
var bob = [{
message: "Bob: I'm playing a game with my friends. If you want to play talk to Alice.",
resp1: {
text: "Good-bye.",
},
resp2: {
text: "",
},
resp3: {
text: ""
}
},
bobsQuestions,
bobsQuestions,
bobsQuestions2,
bobsQuestions2,
{
message: "Bob: That was fun. I enjoyed being the liar.",
resp1: {
text: "Good-bye.",
},
resp2: {
text: "",
},
resp3: {
text: ""
}
}];
var charlenesQuestions = {
message: "Charlene: Okay, let's play. Ask me any question you like.",
resp1: {
text: "Do you always tell the truth?",
next: {
message: "Charlene: Yes, I do.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 3
},
resp2: {
text: "Does Bob always tell the truth?",
next: {
message: "Charlene: Nope, he's a big liar.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 3
},
resp3: {
text: "Do both you and Bob always tell the truth?",
next: {
message: "Charlene: No, one of us is a liar.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 3
}
};
charlenesQuestions.resp1.next.resp1.next = charlenesQuestions;
charlenesQuestions.resp2.next.resp1.next = charlenesQuestions;
charlenesQuestions.resp3.next.resp1.next = charlenesQuestions;
var charlenesQuestions2 = {
message: "Charlene: Okay, let's play. Ask me any question you like.",
resp1: {
text: "Do you always tell the truth?",
next: {
message: "Charlene: Yes, I do.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 4
},
resp2: {
text: "Does Bob always tell the truth?",
next: {
message: "Charlene: Nope, he's a big liar.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 4
},
resp3: {
text: "Do both you and Bob always tell the truth?",
next: {
message: "Charlene: No, one of us is a liar.",
resp1: { text: "I have more questions" },
resp2: { text: "Good-bye." },
resp3: { text: "" }
},
state: 4
}
};
charlenesQuestions2.resp1.next.resp1.next = charlenesQuestions2;
charlenesQuestions2.resp2.next.resp1.next = charlenesQuestions2;
charlenesQuestions2.resp3.next.resp1.next = charlenesQuestions2;
var charlene = [{
message: "Charlene: We're all playing a game. If you want to join go talk to Alice.",
resp1: {
text: "Good-bye.",
},
resp2: {
text: "",
},
resp3: {
text: ""
}
},
charlenesQuestions,
charlenesQuestions2,
charlenesQuestions2,
charlenesQuestions2,
{
message: "Charlene: What a fun game.",
resp1: {
text: "Good-bye.",
},
resp2: {
text: "",
},
resp3: {
text: ""
}
}];