-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcyo.js
488 lines (286 loc) · 13.2 KB
/
cyo.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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
(()=>{
let uid = 0;
const utility = {
getMarker (element) { if (element.attributes.length === 0) return null; return utility.isNegated(element) ? element.attributes[1].nodeName : element.attributes[0].nodeName },
isNegated (element) { if (element.attributes.length === 0) return false; return element.attributes[0].nodeName === "not"},
filterAncestors (node, selector) {
let ancestors = [];
let parent = node.parentNode;
while (parent) {
if (selector(parent)) {
ancestors = [...ancestors, parent];
}
parent = parent.parentNode;
}
return ancestors;
},
getConditions (element) {
return utility.filterAncestors(element, ancestor => {
return ancestor.tagName === "CONDITION"
})
.map(conditionElement => ({
name: utility.getMarker(conditionElement),
negated: utility.isNegated(conditionElement)
}));
},
conditionFulfilled (condition, flags) {
let triggered = flags.includes(condition.name);
let parsed = (condition.negated) ? !triggered : triggered;
return parsed;
},
conditionsFulfilled (conditions, flags) {
return (conditions.every(condition=>utility.conditionFulfilled(condition, flags)))
},
async loadPage(url, pageDirectory = "") {
const pageData = {};
const req = await fetch(pageDirectory + (pageDirectory ? "/" : "") + url);
if (req.status === 200) {
let text = await req.text();
console.info(`Page loaded successfully: ${url}.`)
if (url.split('.')[1] === "txt") {
// text = text.replace(/\n\s*\n/g, '\n');
text = text.split("\n").join("<br>");
text += "<br>";
}
const element = document.createElement("page");
element.innerHTML = text;
pageData.element = element;
} else {
console.warn(`Could not load page from url "${url}". Story may not work correctly.`)
pageData.element = document.createElement("section");
pageData.element.innerHTML = "((MISSING PAGE))"
return pageData;
}
return pageData;
}
}
const tools = {
repairChoices(storyData) {
for (let page of storyData.pages) {
for (let choice of page.choices) {
if (!storyData.pages.find(page => page.name === choice.target)) {
if (storyData.pages.find(page => page.name === choice.target + ".html")) {
choice.target = choice.target + ".html";
} else if (storyData.pages.find(page => page.name === choice.target + ".txt")) {
choice.target = choice.target + ".txt";
} else {
console.warn(`A choice "${choice.target}" on page ${page.name} points to a target that does not exist. Please check to see that the name on your choice and target page match. Please make sure any pages you want to load are included in your index.html file, as well.`)
choice.disabled = true;
}
}
}
}
}
}
const feedback = {
verifyPage(pageData){
if (!pageData.element) {
console.warn(`A page could not be loaded: "${pageData.name}".`);
return;
}
const choiceElements = pageData.element.getElementsByTagName("choice");
if (choiceElements.length === 0) {
console.warn(`Page ${pageData.name} contains no choices. The story will end here.`)
}
for (let element of choiceElements) {
if (element.attributes.length === 0) {
console.warn(`Page ${pageData.name} contains a choice with no target. Try something like this: <choice buy-milk>Buy milk.</choice>.`)
}
}
},
verifyStory(storyData){
if (storyData.pages.length === 0) {
console.warn(`Story named ${storyData.name} has no pages.`);
}
},
}
/*
_____
| __ \
| |__) |_ _ _ __ ___ ___ _ __
| ___/ _` | '__/ __|/ _ \ '__|
| | | (_| | | \__ \ __/ |
|_| \__,_|_| |___/\___|_|
*/
async function parseStory(storyElement) {
async function parsePage(pageElement, pageDirectory = "") {
let pageData = {
id: uid++,
name: utility.getMarker(pageElement),
choices: [],
events: [],
conditions:[],
restarts:[]
}
if (pageData.name && pageData.name.includes('.')) {
pageData = {...pageData, ... await utility.loadPage(pageData.name, pageDirectory)};
} else {
pageData.element = pageElement;
}
feedback.verifyPage(pageData);
for (let choiceElement of pageData.element.getElementsByTagName("choice")) {
const id = uid++;
choiceElement.setAttribute("id", id);
pageData.choices = [...pageData.choices, {
target: utility.getMarker(choiceElement),
element: choiceElement,
conditions: utility.getConditions(choiceElement)
}];
}
for (let restartElement of pageData.element.getElementsByTagName("restart")) {
const id = uid++;
restartElement.setAttribute("id", id);
pageData.restarts = [...pageData.choices, {
element: restartElement,
conditions: utility.getConditions(restartElement)
}];
}
for (let eventElement of pageData.element.getElementsByTagName("event")) {
pageData.events = [...pageData.events, {
name: utility.getMarker(eventElement),
conditions: utility.getConditions(eventElement)
}]
}
for (let conditionElement of pageData.element.getElementsByTagName("condition")) {
const id = uid++;
conditionElement.setAttribute("id", id);
const name = utility.getMarker(conditionElement);
const negated = utility.isNegated(conditionElement)
pageData.conditions = [...pageData.conditions, {
id,
name,
negated,
element: conditionElement,
conditions: [{name, negated}, ... utility.getConditions(conditionElement)]
}]
}
return pageData;
}
const storyData = {
name: utility.getMarker(storyElement),
element: storyElement,
pages: [],
flags: [],
config: {
pageDirectory: ""
}
};
const settings = ["pageDirectory"];
for (setting of settings) {
const config = storyElement.getElementsByTagName(setting)[0];
if (config) {
storyData.config[settings] = utility.getMarker(config);
}
}
for (let pageElement of storyElement.getElementsByTagName("page")) {
storyData.pages = [...storyData.pages, await parsePage(pageElement, storyData.config.pageDirectory)];
}
feedback.verifyStory(storyData);
tools.repairChoices(storyData);
console.log(storyData);
return storyData;
};
/*
_____ _ _
| __ \ | | (_)
| |__) |___ _ __ __| | ___ _ __ _ _ __ __ _
| _ // _ \ '_ \ / _` |/ _ \ '__| | '_ \ / _` |
| | \ \ __/ | | | (_| | __/ | | | | | | (_| |
|_| \_\___|_| |_|\__,_|\___|_| |_|_| |_|\__, |
__/ |
|___/
*/
async function drawPage(pageData, container, choiceHandler, flags, restartHandler){
container.innerHTML += pageData.element.innerHTML;
for (let element of [
...container.getElementsByTagName("choice"),
...container.getElementsByTagName("restart"),
...container.getElementsByTagName("condition")
]) {
element.style.display = "none";
if (element.previousSibling.tagName == "BR") {
element.previousSibling.style.display = "none";
}
}
for (let condition of pageData.conditions) {
if (utility.conditionsFulfilled(condition.conditions, flags)) {
const conditionElement = document.createElement("article");
conditionElement.innerHTML = condition.element.innerHTML;
const node = container.querySelector(`condition[id='${condition.id}']`);
node.parentNode.insertBefore(conditionElement, node);
}
}
for (let choice of pageData.choices) {
if (utility.conditionsFulfilled(choice.conditions, flags)) {
const choiceElement = document.createElement("button");
choiceElement.innerHTML = choice.element.innerHTML;
choiceElement.disabled = choice.disabled;
choiceElement.addEventListener("click", async ()=>{
await choiceHandler(choice);
});
container.append(choiceElement);
}
}
for (let restart of pageData.restarts) {
if (utility.conditionsFulfilled(restart.conditions, flags)) {
const restartElement = document.createElement("button");
restartElement.innerHTML = restart.element.innerHTML;
restartElement.addEventListener("click", async ()=>{
await restartHandler();
});
container.append(restartElement);
}
}
}
/**
*
_____ _ _
|_ _| (_) |
| | _ __ _| |_
| | | '_ \| | __|
_| |_| | | | | |_
|_____|_| |_|_|\__|
*/
(async function init(){
const data = {
stories: []
};
let storyElements = document.getElementsByTagName("story");
if (storyElements.length === 0) {
console.warn("You are seeing this message because cyo.js is loaded but your document does not contain any <story/> tags. Please put any CYO adventures you make in a <story/> tag.")
}
for (let storyElement of storyElements) {
storyElement.style.display = "none";
}
for (let storyElement of storyElements) {
const storyData = await parseStory(storyElement);
data.stories = [...data.stories, storyData];
}
for (let story of data.stories) {
story.container = document.createElement("section");
story.element.parentNode.append(story.container);
story.element.parentNode.insertBefore(story.element, story.container);
const restartHandler = async () => {
console.log("RESTARTING THIS PUPPER");
story.flags = [];
story.container.innerHTML = "";
const targetPage = story.pages[0];
await drawPage(targetPage, story.container, choiceHandler, story.flags, restartHandler);
}
const choiceHandler = async (choice) => {
for (let button of story.container.getElementsByTagName("button")) {
button.style.display = "none";
}
const targetPage = story.pages.find(page => page.name === choice.target);
for (let event of targetPage.events) {
if (utility.conditionsFulfilled(event.conditions, story.flags)) {
story.flags = [event.name, ... story.flags]
}
}
await drawPage(targetPage, story.container, choiceHandler, story.flags, restartHandler);
};
const page = story.pages[0];
await drawPage(page, story.container, choiceHandler, story.flags, restartHandler);
}
})();
})();