Sha256: 53195a0b6a716767088f709afdd3a23cf96a3197e81ac04b4cbb381a09064952

Contents?: true

Size: 1.27 KB

Versions: 6

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

require "fiddle"

module TTY
  class Reader
    module WinAPI
      include Fiddle

      CRT_HANDLE = Fiddle::Handle.new("msvcrt") rescue Fiddle::Handle.new("crtdll")

      # Get a character from the console without echo.
      #
      # @return [String]
      #   return the character read
      #
      # @api public
      def getch
        @@getch ||= Fiddle::Function.new(CRT_HANDLE["_getch"], [], TYPE_INT)
        @@getch.call
      end
      module_function :getch

      # Gets a character from the console with echo.
      #
      # @return [String]
      #   return the character read
      #
      # @api public
      def getche
        @@getche ||= Fiddle::Function.new(CRT_HANDLE["_getche"], [], TYPE_INT)
        @@getche.call
      end
      module_function :getche

      # Check the console for recent keystroke. If the function
      # returns a nonzero value, a keystroke is waiting in the buffer.
      #
      # @return [Integer]
      #   return a nonzero value if a key has been pressed. Otherwirse,
      #   it returns 0.
      #
      # @api public
      def kbhit
        @@kbhit ||= Fiddle::Function.new(CRT_HANDLE["_kbhit"], [], TYPE_INT)
        @@kbhit.call
      end
      module_function :kbhit
    end # WinAPI
  end # Reader
end # TTY

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
tty-reader-0.9.0 lib/tty/reader/win_api.rb
lotrd-0.1.9 vendor/cache/ruby/2.6.0/gems/tty-reader-0.8.0/lib/tty/reader/win_api.rb
lotrd-0.1.8 vendor/cache/ruby/2.6.0/gems/tty-reader-0.8.0/lib/tty/reader/win_api.rb
lotrd-0.1.6 vendor/cache/ruby/2.6.0/gems/tty-reader-0.8.0/lib/tty/reader/win_api.rb
lotrd-0.1.5 vendor/cache/ruby/2.6.0/gems/tty-reader-0.8.0/lib/tty/reader/win_api.rb
tty-reader-0.8.0 lib/tty/reader/win_api.rb