如何在ncurses屏幕中输入单词?

时间:2014-02-14 16:33:37

标签: python ncurses

我首先尝试使用raw_input()函数,但发现它与ncurses兼容 然后我试了window.getch()函数,我可以在屏幕上输入和显示字符,但是无法实现输入。如何在ncurses中输入单词并使用if语句对其进行评估?

例如,我想在ncurses

中意识到这一点
import ncurses
stdscr = curses.initscr()

# ???_input = "cool" # this is the missing input method I want to know
if ???_input == "cool":
    stdscr.addstr(1,1,"Super cool!")
stdscr.refresh()
stdscr.getch()
curses.endwin()

1 个答案:

答案 0 :(得分:13)

函数raw_input( )在curses模式下不起作用,getch()方法返回一个整数;它表示按下的键的ASCII码。如果要从提示符扫描字符串,则无效。您可以使用getstr函数:

  

window.getstr([y, x])

     

使用原始行编辑功能从用户读取字符串。

     

User Input

     

还有一种方法可以检索整个字符串getstr()

curses.echo()            # Enable echoing of characters

# Get a 15-character string, with the cursor on the top line
s = stdscr.getstr(0,0, 15)

我写了raw_input函数如下:

def my_raw_input(stdscr, r, c, prompt_string):
    curses.echo() 
    stdscr.addstr(r, c, prompt_string)
    stdscr.refresh()
    input = stdscr.getstr(r + 1, c, 20)
    return input  #       ^^^^  reading input at next line  

将其称为choice = my_raw_input(stdscr, 5, 5, "cool or hot?")

修改:以下是工作示例:

if __name__ == "__main__":
    stdscr = curses.initscr()
    stdscr.clear()
    choice = my_raw_input(stdscr, 2, 3, "cool or hot?").lower()
    if choice == "cool":
        stdscr.addstr(5,3,"Super cool!")
    elif choice == "hot":
        stdscr.addstr(5, 3," HOT!") 
    else:
        stdscr.addstr(5, 3," Invalid input") 
    stdscr.refresh()
    stdscr.getch()
    curses.endwin()

输出

enter image description here