Skip to content
Permalink
Browse files
Merge pull request #3 from lycette2/remotes/origin/emily2
Merge
  • Loading branch information
lycette2 committed Oct 2, 2020
2 parents 9904635 + b49d32f commit 9576db6805cb643e3d9ef8b834f72c49943f0e82
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 32 deletions.
Binary file not shown.
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}
BIN +88 KB .vs/slnx.sqlite
Binary file not shown.
Binary file not shown.
@@ -1,33 +1,28 @@

#Module formatting into story dictionary, 0:text where 0 is the index number of the module and text is the text of the module. \n=linebreak
story={0:"You are reading a magazine. The phone rings.\n (1)continue reading the magazine and ignore the call \n (2)Inspect the room \n (3)you pick up the phone", 1:"[{You pick up the phone section}]", 2:"hi", 3:"OOOP", 4: "AAAAAA"}
y = 0
moduleProgressList = []

while True:
if y > -1:
moduleProgressList.append(y) #Adds the current module to the list of travelled modules
text = story[y]
print(text) #Displays module text based on y value recieved
x = input("Your choice is...")
if x.isdigit() == False: #This determines whether the value input is a digit
while x.isdigit() ==False:
print("This is an invalid input")
x = input("Your choice is...")
choiceNumber = int(x)
y = choiceNumber #y is the target module as chosen by the user input
else:
while y != int or ( y < 0):
print("This is an invalid input")
x = input("Your choice is...")
if x.isdigit() == False:
while x.isdigit() ==False:
print("This is an invalid input")
x = input("Your choice is...")
choiceNumber = int(x)
y = choiceNumber #This ensures that only valid numbers




#Module formatting into story dictionary, 0:text where 0 is the index number of the module and text is the text of the module. \n=linebreak
story={0:"You are reading a magazine. The phone rings.\n (1)Continue reading the magazine and ignore the call \n (2)Inspect the room \n (3)You pick up the phone", 1:"[{You pick up the phone section}]", 2:"hi", 3:"OOOP", 4: "AAAAAA"}
y = 0
moduleProgressList = []

while True:
if y > -1:
moduleProgressList.append(y) #Adds the current module to the list of travelled modules
text = story[y]
print(text) #Displays module text based on y value recieved
x = input("Your choice is...")
if x.isdigit() == False: #This determines whether the value input is a digit
while x.isdigit() ==False:
print("This is an invalid input")
x = input("Your choice is...")
choiceNumber = int(x)
y = choiceNumber #y is the target module as chosen by the user input
else:
while y != int or ( y < 0):
print("This is an invalid input")
x = input("Your choice is...")
if x.isdigit() == False:
while x.isdigit() ==False:
print("This is an invalid input")
x = input("Your choice is...")
choiceNumber = int(x)
y = choiceNumber #This ensures that only valid numbers

0 comments on commit 9576db6

Please sign in to comment.