2019-05-12 11:22:27 -04:00
|
|
|
require 'timeout'
|
|
|
|
|
|
|
|
class Reline::GeneralIO
|
2019-05-31 20:05:58 -04:00
|
|
|
RAW_KEYSTROKE_CONFIG = {}.freeze
|
2019-05-31 11:34:38 -04:00
|
|
|
|
2019-05-12 11:22:27 -04:00
|
|
|
@@buf = []
|
|
|
|
|
|
|
|
def self.input=(val)
|
|
|
|
@@input = val
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.getc
|
2019-05-24 10:38:40 -04:00
|
|
|
unless @@buf.empty?
|
|
|
|
return @@buf.shift
|
|
|
|
end
|
2019-05-12 11:22:27 -04:00
|
|
|
c = nil
|
|
|
|
loop do
|
|
|
|
result = select([@@input], [], [], 0.1)
|
|
|
|
next if result.nil?
|
|
|
|
c = @@input.read(1)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
c&.ord
|
|
|
|
end
|
|
|
|
|
2019-05-24 10:38:40 -04:00
|
|
|
def self.ungetc(c)
|
|
|
|
@@buf.unshift(c)
|
|
|
|
end
|
|
|
|
|
2019-05-12 11:22:27 -04:00
|
|
|
def self.get_screen_size
|
|
|
|
[1, 1]
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.cursor_pos
|
|
|
|
Reline::CursorPos.new(1, 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.move_cursor_column(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.move_cursor_up(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.move_cursor_down(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.erase_after_cursor
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.scroll_down(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.clear_screen
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.set_screen_size(rows, columns)
|
|
|
|
end
|
|
|
|
|
2019-08-29 02:21:00 -04:00
|
|
|
def self.set_winch_handler(&handler)
|
|
|
|
end
|
|
|
|
|
2019-05-12 11:22:27 -04:00
|
|
|
def self.prep
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.deprep(otio)
|
|
|
|
end
|
|
|
|
end
|