Skip to content

Commit 5ab2d86

Browse files
committed
Add Readme, and fix paths
1 parent 9db6e8d commit 5ab2d86

File tree

3 files changed

+3
-43
lines changed

3 files changed

+3
-43
lines changed

README.org

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- See Pictures for assets.
1+
- Frontend Prototype for an interactive story. Uses SVG with clickable paths.

index-with-svg.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<script>
2222
async function fetchStory() {
23-
const response = await fetch('data/story.json');
23+
const response = await fetch('story.json');
2424
const data = await response.json();
2525
console.log("Data", data);
2626
return data.parts;

story.json

+1-41
Original file line numberDiff line numberDiff line change
@@ -1,41 +1 @@
1-
{
2-
"parts": {
3-
"1": {
4-
"text": "You are at a fork in the road. Do you go left or right?",
5-
"choices": [
6-
{"text": "Left", "svg": "<rect width='50' height='50' style='fill:blue;' />", "nextPart": 2},
7-
{"text": "Right", "svg": "<circle cx='25' cy='25' r='25' style='fill:green;' />", "nextPart": 3}
8-
]
9-
},
10-
"2": {
11-
"text": "You took the left path and found a river. Do you swim across or walk along the bank?",
12-
"choices": [
13-
{"text": "Swim", "svg": "<rect width='50' height='50' style='fill:blue;' />", "nextPart": 4},
14-
{"text": "Walk", "svg": "<circle cx='25' cy='25' r='25' style='fill:green;' />", "nextPart": 5}
15-
]
16-
},
17-
"3": {
18-
"text": "You took the right path and found a mountain. Do you climb it or walk around it?",
19-
"choices": [
20-
{"text": "Climb", "svg": "<rect width='50' height='50' style='fill:blue;' />", "nextPart": 6},
21-
{"text": "Walk Around", "svg": "<circle cx='25' cy='25' r='25' style='fill:green;' />", "nextPart": 7}
22-
]
23-
},
24-
"4": {
25-
"text": "You swam across the river and reached a village. The end.",
26-
"choices": []
27-
},
28-
"5": {
29-
"text": "You walked along the bank and found a bridge. The end.",
30-
"choices": []
31-
},
32-
"6": {
33-
"text": "You climbed the mountain and saw a beautiful sunset. The end.",
34-
"choices": []
35-
},
36-
"7": {
37-
"text": "You walked around the mountain and found a cave. The end.",
38-
"choices": []
39-
}
40-
}
41-
}
1+
{"parts":{"1":{"choices":[{"nextPart":2,"svg":"<rect width='50' height='50' style='fill:blue;' />","text":"Left"},{"nextPart":3,"svg":"<circle cx='25' cy='25' r='25' style='fill:green;' />","text":"Right"}],"text":"Hello traveller. You are at a fork in the road. Do you go left or right?"},"2":{"choices":[{"nextPart":4,"svg":"<rect width='50' height='50' style='fill:blue;' />","text":"Swim"},{"nextPart":5,"svg":"<circle cx='25' cy='25' r='25' style='fill:green;' />","text":"Walk"}],"text":"You took the left path and found a river. Do you swim across or walk along the bank?"},"3":{"choices":[{"nextPart":6,"svg":"<rect width='50' height='50' style='fill:blue;' />","text":"Climb"},{"nextPart":7,"svg":"<circle cx='25' cy='25' r='25' style='fill:green;' />","text":"Walk Around"}],"text":"You took the right path and found a mountain. Do you climb it or walk around it?"},"4":{"choices":[],"text":"You swam across the river and reached a village. The end."},"5":{"choices":[],"text":"You walked along the bank and found a bridge. The end."},"6":{"choices":[],"text":"You climbed the mountain and saw a beautiful sunset. The end."},"7":{"choices":[],"text":"You walked around the mountain and found a cave. The end."}}}

0 commit comments

Comments
 (0)