26 lines
858 B
Python
26 lines
858 B
Python
#!/usr/bin/env python
|
|
|
|
import yaml
|
|
|
|
def validate_encounter(encounter):
|
|
run_encounter(encounter)
|
|
|
|
def run_encounter(encounter):
|
|
if 'scenario' in encounter:
|
|
print(encounter['scenario'])
|
|
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:
|
|
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__':
|
|
with open("sample.yaml", "r") as file:
|
|
game = yaml.safe_load(file)
|
|
validate_encounter(game['entrypoint'])
|