oni-engine/main.py

30 lines
992 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python
import yaml
import textwrap
2024-09-30 12:56:43 -07:00
wrapper = textwrap.TextWrapper(break_long_words=False, replace_whitespace=False)
def validate_encounter(encounter):
2024-09-11 11:47:00 -07:00
run_encounter(encounter)
def run_encounter(encounter):
2024-09-11 11:47:00 -07:00
if 'scenario' in encounter:
print(wrapper.fill(text=encounter['scenario']))
2024-09-11 11:47:00 -07:00
if 'choices' in encounter:
for choice in range(len(encounter['choices'])):
print(wrapper.fill(text=f"{choice}. {encounter['choices'][choice]}"))
2024-09-11 11:47:00 -07:00
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__':
2024-09-19 14:00:54 -07:00
with open("game.yaml", "r") as file:
game = yaml.safe_load(file)
2024-09-11 11:47:00 -07:00
validate_encounter(game['entrypoint'])