Вот чистая рубиновая реализация получения позиции курсора:
require 'io/console'
class Cursor
class << self
def pos
res = ''
$stdin.raw do |stdin|
$stdout << "\e[6n"
$stdout.flush
while (c = stdin.getc) != 'R'
res << c if c
end
end
m = res.match /(?<row>\d+);(?<column>\d+)/
{ row: Integer(m[:row]), column: Integer(m[:column]) }
end
end
end
puts Cursor.pos #=> {:row=>25, :column=>1}
tput u7
был заменен эхом от \e[6n
до $stdout
. Вероятно, он менее переносим, но помогает нам использовать только код ruby.