今天我进一步进入this Python roguelike tutorial,并进入清单。截至目前,我可以拿起物品并使用它们。唯一的问题是,当访问库存时,它只能在瞬间可见,即使我使用了console_wait_for_keypress(True)
功能。我不确定为什么它会消失。这是显示菜单的代码(在本例中为库存):
def menu(header,options,width):
if len(options)>26: raise ValueError('Cannot have a menu with more than 26 options.')
header_height=libtcod.console_get_height_rect(con,0,0,width,SCREEN_HEIGHT,header)
height=len(options)+header_height
window=libtcod.console_new(width,height)
libtcod.console_set_default_foreground(window,libtcod.white)
libtcod.console_print_rect_ex(window,0,0,width,height,libtcod.BKGND_NONE,libtcod.LEFT,header)
y=header_height
letter_index=ord('a')
for option_text in options:
text='('+chr(letter_index)+')'+option_text
libtcod.console_print_ex(window,0,y,libtcod.BKGND_NONE,libtcod.LEFT,text)
y+=1
letter_index+=1
x=SCREEN_WIDTH/2-width/2
y=SCREEN_HEIGHT/2-height/2
libtcod.console_blit(window,0,0,width,height,0,x,y,1.0,0.7)
libtcod.console_flush()
key=libtcod.console_wait_for_keypress(True)
index=key.c-ord('a')
if index>=0 and index<len(options): return index
return None
我很感激任何人的帮助或输入这个问题。
答案 0 :(得分:0)
它可能与您按下某个键时具有事件的旧版本库相关,而当您释放该事件时则与另一个事件有关。因此,当您松开钥匙时,这可能会导致它出现和消失。
因此,如果按住键,请尝试查看屏幕是否保持打开状态。
答案 1 :(得分:0)
wait_for_keypress
确实触发了发布和发布事件。要解决此问题,请将wait_for_keypress
替换为sys_wait_for_event
,指定仅在按下事件时触发。