improve choice presentation

This commit is contained in:
ch0ccyra1n 2024-09-11 11:47:00 -07:00
parent b3c406a233
commit be3f868d7b
2 changed files with 21 additions and 18 deletions

23
main.py
View file

@ -1,27 +1,26 @@
#!/usr/bin/env python
import yaml
import save
def validate_encounter(encounter):
match encounter:
case "items":
raise ValueError("'items' is not a valid encounter")
case "exit":
exit()
case _:
run_encounter(encounter)
def run_encounter(encounter):
if 'scenario' in encounter:
print(encounter['scenario'])
print(encounter['choices'])
playerChoice = int(input())
if 'choices' in encounter:
for choice in range(len(encounter['choices'])):
print(f"{choice}. {encounter['choices'][choice]}")
playerChoice = int(input("> "))
if playerChoice >= 0 and playerChoice <= 9:
validate_encounter(game[encounter['choices'][playerChoice]])
if encounter['choices'][playerChoice] == "Exit game":
exit()
else:
raise ValueError("Input is invalid\n")
validate_encounter(game[encounter['choices'][playerChoice]])
elif "goto" in encounter:
validate_encounter(game[encounter['goto']])
if __name__ == '__main__':
with open("sample.yaml", "r") as file:
game = yaml.safe_load(file)
validate_encounter(game['Title Screen'])
validate_encounter(game['entrypoint'])

View file

@ -1,8 +1,12 @@
entrypoint:
scenario: "This is the entrypoint. Normally you shouldn't have scenario or choices."
goto: "titlescreen"
titlescreen:
scenario: "Welcome to the sample game! There's not much here to do, but this will be used to demonstrate examples.\nBefore you is a table with a salad."
choices: ["eat salad"]
eat salad:
scenario: "You ate the salad."
choices: ["exit"]
scenario: "You ate the salad. The salad was poisoned. You died."
choices: ["Exit game"]