improve choice presentation
This commit is contained in:
parent
b3c406a233
commit
be3f868d7b
2 changed files with 21 additions and 18 deletions
31
main.py
31
main.py
|
@ -1,27 +1,26 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
import save
|
|
||||||
|
|
||||||
def validate_encounter(encounter):
|
def validate_encounter(encounter):
|
||||||
match encounter:
|
run_encounter(encounter)
|
||||||
case "items":
|
|
||||||
raise ValueError("'items' is not a valid encounter")
|
|
||||||
case "exit":
|
|
||||||
exit()
|
|
||||||
case _:
|
|
||||||
run_encounter(encounter)
|
|
||||||
|
|
||||||
def run_encounter(encounter):
|
def run_encounter(encounter):
|
||||||
print(encounter['scenario'])
|
if 'scenario' in encounter:
|
||||||
print(encounter['choices'])
|
print(encounter['scenario'])
|
||||||
playerChoice = int(input())
|
if 'choices' in encounter:
|
||||||
if playerChoice >= 0 and playerChoice <= 9:
|
for choice in range(len(encounter['choices'])):
|
||||||
validate_encounter(game[encounter['choices'][playerChoice]])
|
print(f"{choice}. {encounter['choices'][choice]}")
|
||||||
else:
|
playerChoice = int(input("> "))
|
||||||
raise ValueError("Input is invalid\n")
|
if playerChoice >= 0 and playerChoice <= 9:
|
||||||
|
if encounter['choices'][playerChoice] == "Exit game":
|
||||||
|
exit()
|
||||||
|
else:
|
||||||
|
validate_encounter(game[encounter['choices'][playerChoice]])
|
||||||
|
elif "goto" in encounter:
|
||||||
|
validate_encounter(game[encounter['goto']])
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
with open("sample.yaml", "r") as file:
|
with open("sample.yaml", "r") as file:
|
||||||
game = yaml.safe_load(file)
|
game = yaml.safe_load(file)
|
||||||
validate_encounter(game['Title Screen'])
|
validate_encounter(game['entrypoint'])
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
|
entrypoint:
|
||||||
|
scenario: "This is the entrypoint. Normally you shouldn't have scenario or choices."
|
||||||
|
goto: "titlescreen"
|
||||||
|
|
||||||
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."
|
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"]
|
choices: ["eat salad"]
|
||||||
|
|
||||||
eat salad:
|
eat salad:
|
||||||
scenario: "You ate the salad."
|
scenario: "You ate the salad. The salad was poisoned. You died."
|
||||||
choices: ["exit"]
|
choices: ["Exit game"]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue