【问题标题】:Python (linux) Text based game input errorPython(linux)基于文本的游戏输入错误
【发布时间】:2018-08-17 03:10:49
【问题描述】:

我一直在开发一款基于文本的冒险游戏。当我尝试创建 EVENTS 而不是简单地依赖大量的 PRINT 字符串时,我已经对其进行了几次修改,但似乎无法得到我想要的结果。每当我选择我想要的选项(在这种情况下为门 1),然后是以下选项,输入无响应或给我一个错误。下面是门 1 的部分代码。稍微清楚一点将不胜感激!

def main():
import sys
from colorama import init
init()
init(autoreset=True)
from colorama import Fore, Back, Style

def run_event(event):
    text, choices = event
    text_lines = text.split("\n")
    for line in text_lines:
        print(Style.BRIGHT + line)
        print()
    choices = choices.strip()
    choices_lines = choices.split("\n")
    for num, line in enumerate(choices_lines):
        print(Fore.GREEN + Style.BRIGHT + str(num + 1) + ". " + line)
        print()
    return colored_input()

def colored_input():
    return input(Fore.YELLOW + Style.BRIGHT + "> ")
print ("")
print ("")
print ("                                                                           WELCOME TO THE MAZE                                   ")
print ("")
print ("")
print ("You have found yourself stuck within a dark room, inside this room are 5 doors.. Your only way out..")
print ("")
print ("Do you want to enter door 1,2,3,4, or 5?")
print ("")

EVENT_DOOR1 = ("""
Theres an alien eating what appears to be a human arm, though its so damaged it's hard to be sure. There is a knife next to the alien.
what do you want to do?
""","""
Go for the knife
Attack alien before it notices you
""")

EVENT_ALIEN = ("""
You approach the knife slowly, While the alien is distracted. You finally reach the knife, but as you look up, the alien stares back at you.
You make a move to stab the alien, but he is too quick. With one swift motion, the alien thrusts you into the air.
You land hard, as the alien makes it's way towards you again. What should you do?
""", """
Accept defeat?
Last ditch effort?
""")

EVENT_ALIEN2 = ("""
You catch the alien off-guard. He stumbled and hisses in your direction. You scream in terror before he grabs the knife, and punctures your throat as he rips off your limbs.")
You died.. GAME OVER.. Mistakes can't be made this soon.. OUCH
""")

door = colored_input()
if door == "1":
    run_event(EVENT_DOOR1)

alien = colored_input()
if alien == "1":
    run_event(EVENT_ALIEN)
elif alien == "2":
    run_event(EVENT_ALIEN2)

    restart=input("Start over? Yes or No? ").lower()
    if restart == "yes":
        sys.stderr.write("\x1b[2J\x1b[H")
        main()

    else:
        exit()

main()

【问题讨论】:

    标签: python linux events input adventure


    【解决方案1】:

    run_event 函数在返回时不必要地再次调用 colored_input(),导致脚本在等待另一个输入时无响应。删除return colored_input() 行,你的代码就可以工作了。

    还请注意,您应该在分配给EVENT_ALIEN2 的单项元组中添加一个逗号;否则它将被评估为字符串:

    EVENT_ALIEN2 = ("""
    You catch the alien off-guard. He stumbled and hisses in your direction. You scream in terror before he grabs the knife, and punctures your throat as he rips off your limbs.")
    You died.. GAME OVER.. Mistakes can't be made this soon.. OUCH
    """,)
    

    【讨论】:

    • 感谢您的回复!非常有帮助。不敢相信我忽略了哈哈。我还有一个问题,如果可能的话,是否可以进行任何更改来修复格式?例如, 2. 选项总是有一个空格。 @blhsing
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-06-13
    • 1970-01-01
    • 1970-01-01
    • 2021-06-25
    • 1970-01-01
    相关资源
    最近更新 更多