zoukankan      html  css  js  c++  java
  • Python 命令行非阻塞输入

        很久很久以前,系windows平台下,用C语言写过一款贪食蛇游戏,cmd界面,用kbhit()函数实现非阻塞输入。系windows平台下用python依然可以调用msvcrt.khbit实现非阻塞监听。但系喺linux下面就冇呢支歌仔唱。

        随手google咗一下,基本上都用select实现非阻塞监听,但问题是,监听的是用select之后是不能像getchar()那样,即时收到单个字符的输入,必须要等待回车。

        经过努力不怠咁google... [好吧,还是google。没有google什么也做不了。]

        最后系一大堆英文资料入面,拼凑出如下可用的代码,实现了单个字符非阻塞输入。

        show code below.

    #!/usr/bin/python
    # -*- coding: utf-8 -*-
    """ python non blocking input
    """
    __author__ = 'Zagfai'
    __version__=  '2013-09-13'
    
    import sys
    import select
    from time import sleep
    import termios
    import tty
    
    old_settings = termios.tcgetattr(sys.stdin)
    tty.setcbreak(sys.stdin.fileno())
    while True:
        sleep(.001)
        if select.select([sys.stdin], [], [], 0) == ([sys.stdin], [], []):
            c = sys.stdin.read(1)
            if c == 'x1b': break
            sys.stdout.write(c)
            sys.stdout.flush()
    termios.tcsetattr(sys.stdin, termios.TCSADRAIN, old_settings)
    
    print raw_input('123:')


        其中用到两个模块,分别系termios、tty,用来控制tty的输入模式,由行输入变为单字符。

        END.

  • 相关阅读:
    OpenStack trove原理及配置实践
    [转]在首席架构师手里,应用架构如此设计
    Servlet入门(一),超级详细!!!看完就会!!!!
    Redis入门
    Linux笔记02—Linux进阶应用
    Linux笔记01—linux基础入门
    Linux笔记00—计算机概论
    Linux上安装jdk
    SpringBoot入门
    排查问题的五个步骤
  • 原文地址:https://www.cnblogs.com/james1207/p/3339582.html
Copyright © 2011-2022 走看看