如何在 Ruby 中捕获按键操作?

发布于 2024-12-02 14:52:57 字数 327 浏览 1 评论 0原文

在 Ruby 中,我需要一个简单的线程,每次按下按键时都会运行一些代码。有办法做到这一点吗?

我需要能够捕获 Page UpPage Down

这是我尝试过的:

#!/usr/bin/env ruby

Thread.new do
  while c = STDIN.getc
    puts c.chr
  end
end

loop do
  puts Time.new
  sleep 0.7
end

这几乎有效。只有 1 个问题,每次击键后都需要按回车键。我猜这是因为缓冲 IO。

In Ruby, I need a simple thread that would run some code every time a key in pressed. Is there a way to do that?

I need to be able to capture the Page Up and Page Down

Here is what I tried:

#!/usr/bin/env ruby

Thread.new do
  while c = STDIN.getc
    puts c.chr
  end
end

loop do
  puts Time.new
  sleep 0.7
end

This almost works. There is only 1 issue, one needs to hit return after every key stroke. I guess this is because of buffered IO.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美的太阳 2024-12-09 14:52:57

您可以使用curses库来捕获按键而无需缓冲。

require 'curses'

Curses.noecho # do not show typed keys
Curses.init_screen
Curses.stdscr.keypad(true) # enable arrow keys (required for pageup/down)

loop do
  case Curses.getch
  when Curses::Key::PPAGE
    Curses.setpos(0,0)
    Curses.addstr("Page Up")
  when Curses::Key::NPAGE
    Curses.setpos(0,0)
    Curses.addstr("Page Dn")
  end
end

关键代码在这里:

http://ruby-doc.org/stdlib /libdoc/curses/rdoc/index.html

您可以在 github 上找到更长的示例:

https://github.com/grosser/tic_tac_toe/blob/master/bin/tic_tac_toe

You can use the curses library to capture key presses without buffering.

require 'curses'

Curses.noecho # do not show typed keys
Curses.init_screen
Curses.stdscr.keypad(true) # enable arrow keys (required for pageup/down)

loop do
  case Curses.getch
  when Curses::Key::PPAGE
    Curses.setpos(0,0)
    Curses.addstr("Page Up")
  when Curses::Key::NPAGE
    Curses.setpos(0,0)
    Curses.addstr("Page Dn")
  end
end

The key codes are here:

http://ruby-doc.org/stdlib/libdoc/curses/rdoc/index.html

You can find a longer example on github:

https://github.com/grosser/tic_tac_toe/blob/master/bin/tic_tac_toe

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文