wrap text without creating newline in middle of word

This commit is contained in:
ch0ccyra1n 2024-09-19 14:06:24 -07:00
parent 7322c36043
commit 49b9faedab

View file

@ -1,16 +1,19 @@
#!/usr/bin/env python
import yaml
import textwrap
wrapper = textwrap.TextWrapper(break_long_words=False)
def validate_encounter(encounter):
run_encounter(encounter)
def run_encounter(encounter):
if 'scenario' in encounter:
print(encounter['scenario'])
print(wrapper.fill(text=encounter['scenario']))
if 'choices' in encounter:
for choice in range(len(encounter['choices'])):
print(f"{choice}. {encounter['choices'][choice]}")
print(wrapper.fill(text=f"{choice}. {encounter['choices'][choice]}"))
playerChoice = int(input("> "))
if playerChoice >= 0 and playerChoice <= 9:
if encounter['choices'][playerChoice] == "Exit game":