o
    Ph&                     @   s`   d Z ddlmZ ddlZddlZddlZddlmZ ddlm	Z	 ddlm
Z G dd	 d	eZ
dS )
z7Module containing Windows version of :class:`Terminal`.    )absolute_importN)win32   )WINSZ)Terminalc                       sR   e Zd ZdZ fddZdddZedd Zej	d	d
 Z
ej	dd Z  ZS )r   z&Windows subclass of :class:`Terminal`.c                    s4   t jr
tt|  S t }|dv r|t 7 }|S )aJ  
        Read, decode, and return the next byte from the keyboard stream.

        :rtype: unicode
        :returns: a single unicode character, or ``u''`` if a multi-byte
            sequence has not yet been fully received.

        For versions of Windows 10.0.10586 and later, the console is expected
        to be in ENABLE_VIRTUAL_TERMINAL_INPUT mode and the default method is
        called.

        For older versions of Windows, msvcrt.getwch() is used. If the received
        character is ``\x00`` or ``\xe0``, the next character is
        automatically retrieved.
        )    à)r   VTMODE_SUPPORTEDsuperr   getchmsvcrtgetwch)selfrtn	__class__ O/var/www/html/env_mimamsha/lib/python3.10/site-packages/blessed/win_terminal.pyr      s   zTerminal.getchNc                 C   sD   t   |pd }	 t rdS |dur|t   k r	 dS t d q	)a  
        Return whether a keypress has been detected on the keyboard.

        This method is used by :meth:`inkey` to determine if a byte may
        be read using :meth:`getch` without blocking.  This is implemented
        by wrapping msvcrt.kbhit() in a timeout.

        :arg float timeout: When ``timeout`` is 0, this call is
            non-blocking, otherwise blocking indefinitely until keypress
            is detected when None (default). When ``timeout`` is a
            positive number, returns after ``timeout`` seconds have
            elapsed (float).
        :rtype: bool
        :returns: True if a keypress is awaiting to be read on the keyboard
            attached to this terminal.
        r   TNg{Gz?F)timer   kbhitsleep)r   timeoutendr   r   r   r   .   s   
zTerminal.kbhitc                 C   s   t | }t|j|jdddS )a  
        Return named tuple describing size of the terminal by ``fd``.

        :arg int fd: file descriptor queries for its window size.
        :rtype: WINSZ
        :returns: named tuple describing size of the terminal

        WINSZ is a :class:`collections.namedtuple` instance, whose structure
        directly maps to the return value of the :const:`termios.TIOCGWINSZ`
        ioctl return value. The return parameters are:

            - ``ws_row``: width of terminal by its number of character cells.
            - ``ws_col``: height of terminal by its number of character cells.
            - ``ws_xpixel``: width of terminal by pixels (not accurate).
            - ``ws_ypixel``: height of terminal by pixels (not accurate).
        r   )ws_rowws_col	ws_xpixel	ws_ypixel)r   get_terminal_sizer   linescolumns)fdwindowr   r   r   _winsizeK   s   

zTerminal._winsizec              
   c   v    | j dur6t| j }t|}| j}t| zd| _dV  W t|| || _dS t|| || _w dV  dS )a  
        Allow each keystroke to be read immediately after it is pressed.

        This is a context manager for ``jinxed.w32.setcbreak()``.

        .. note:: You must explicitly print any user input you would like
            displayed.  If you provide any kind of editing, you must handle
            backspace and other line-editing control functions in this mode
            as well!

        **Normally**, characters received from the keyboard cannot be read
        by Python until the *Return* key is pressed. Also known as *cooked* or
        *canonical input* mode, it allows the tty driver to provide
        line-editing before shuttling the input to your program and is the
        (implicit) default terminal mode set by most unix shells before
        executing programs.
        NF)_keyboard_fdr   get_osfhandler   get_console_mode_line_buffered	setcbreakset_console_moder   
filehandle	save_modesave_line_bufferedr   r   r   cbreaka   s   




zTerminal.cbreakc              
   c   r#   )a  
        A context manager for ``jinxed.w32.setcbreak()``.

        Although both :meth:`break` and :meth:`raw` modes allow each keystroke
        to be read immediately after it is pressed, Raw mode disables
        processing of input and output.

        In cbreak mode, special input characters such as ``^C`` are
        interpreted by the terminal driver and excluded from the stdin stream.
        In raw mode these values are receive by the :meth:`inkey` method.
        NF)r$   r   r%   r   r&   r'   setrawr)   r*   r   r   r   raw   s   




zTerminal.raw)N)__name__
__module____qualname____doc__r   r   staticmethodr"   
contextlibcontextmanagerr.   r0   __classcell__r   r   r   r   r      s    


%r   )r4   
__future__r   r   r   r6   jinxedr   terminalr   r   	_Terminalr   r   r   r   <module>   s   