将 getch() 响应转换为 ascii 字符
我在 Linux 上使用 ncurses。我使用 getch() 从输入流获取下一个按下的键,但它返回一个数字而不是字母。
在对谷歌进行研究后,我发现 getch() 不是标准的,所以我不知道该怎么做。
我需要键 0-9、tab、ctrl、p、v、m、l、a、b、c、d、e、f 和箭头键以及 0xff、0x4F00、0x4700、0x4800、0x5000、0x4D00 :, 0x4B00、0x4900、0x5100。这些是针对 getch() 返回值的 if 语句中使用的内容。
这是我尝试重新创建的程序的 Windows 版本中的代码。
unsigned long nr;
if( GetNumberOfConsoleInputEvents(ConH,&nr) )
{
if( nr > 0 )
{
INPUT_RECORD ipr;
ReadConsoleInput(ConH,&ipr,1,&nr);
if( ipr.EventType == KEY_EVENT && ipr.Event.KeyEvent.bKeyDown )
{
int key = ipr.Event.KeyEvent.uChar.AsciiChar;
if( key == 0 ) key = ipr.Event.KeyEvent.wVirtualScanCode<<8;
return key;
}
}
}
return 0;
是否有一个函数可以对 getch() 的结果使用,以便我可以获得实际按下的键,类似于上面看到的 .AsciiChar ?
I am using ncurses on linux. I use getch() to get the next key pressed from the input stream but it returns a number not a letter.
After doing research on google I have found that getch() is not standard so I am at a loss of what to do.
I need the keys 0-9, tab, ctrl, p,v,m,l,a,b,c,d,e,f, and the arrow keys as well as 0xff, 0x4F00, 0x4700, 0x4800, 0x5000, 0x4D00:, 0x4B00, 0x4900, 0x5100. These are what are uses in if statments against the returned valus of getch().
this is the code in the windows version of the program am trying to recreate.
unsigned long nr;
if( GetNumberOfConsoleInputEvents(ConH,&nr) )
{
if( nr > 0 )
{
INPUT_RECORD ipr;
ReadConsoleInput(ConH,&ipr,1,&nr);
if( ipr.EventType == KEY_EVENT && ipr.Event.KeyEvent.bKeyDown )
{
int key = ipr.Event.KeyEvent.uChar.AsciiChar;
if( key == 0 ) key = ipr.Event.KeyEvent.wVirtualScanCode<<8;
return key;
}
}
}
return 0;
Is there a function i can use on the result of getch() so i can get the actual key pressed, something like the .AsciiChar seen above ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
主要编辑摆脱以前的例子,尝试这个大的例子。
getch()
的返回值可以是 ASCII 字符,也可以是某些特殊键的curses 名称。这里有一个程序可以清楚地说明这一点:
参考:
MAJOR EDIT Get rid of previous examples, try this large one.
The return value from
getch()
is either an ASCII character, or the curses name for some special key.Here is a program that might make the point clear:
References: