我正在尝试确定是否可以使用箭头键并将它们转换为宽字符。我使用conio.h作为其getch()函数,我喜欢它与相似函数相比如何工作,并且必须调用它两次以检索箭头键。
按下箭头键返回0xE0(-32)作为第一个字符,然后{Left ='K',Up ='H',Right ='M',Down ='P'}
所以我一直试图找到一种方法将两个角色合并为一个。这是我想出的最接近的事情。但功能键不起作用,无论按下功能键,它总是返回相同的值。 {F1-12 = 0,箭头= 224}我拉出了可靠的Windows计算器,并确定224相当于二进制的-32。我只是把它放到一个字节并使用十进制系统并且去了100 + 124并且它是= -32。
所以也许有人可以帮我弄清楚转换为什么只考虑数组中的第一个字符。我肯定做错了什么。足够的谈话,对不起,如果是这样的话会持续太久,现在这里是代码。
#include <iostream>
#include <stdio.h>
#include <windows.h>
#include <wincon.h>
#include <conio.h>
#include <cwchar>
/**int main()
{
int N;
char C;
wchar_t R;
while(true)
{
while(!kbhit()){}
//C = getch();
//if((R == 0) || (R == 224))
std::cout << R << std::endl;
N = R;
std::cout << R << " = " << N << std::endl;
}
}*/
int main()
{
int N = 0;
char C[2];
wchar_t R;
mbstate_t mbst;
while(true)
{
mbrlen(NULL,0,&mbst);
memset(&mbst,0,sizeof(mbst));
for(int i = 0; i < 2; ++i)
{
while(!kbhit()){}
C[i] = getch();
N = C[i];
switch(N)
{
case 0:
break;
case -32:
break;
default:
//input needs to be converted
mbrtowc(&R,C,2,&mbst);
N = R;
std::cout << R << " = " << N << std::endl;
i = 3;
break;
}
}
}
}
编辑:
我找到了一种使用union来组合2个字节的方法。我发布这篇文章时,我不知道工会是什么。联合允许我为两种不同的数据类型使用相同的内存空间。它是如何工作的 - http://www.cplusplus.com/doc/tutorial/other_data_types/
答案 0 :(得分:0)
我能够解决自己的问题,但不是我尝试过的方式。如果有人想帮助弄清楚我做错了什么,那就太好了。
至于将每个键作为唯一的2字节变量读取,我能够解决这个问题。我发现了一个关于移位的问题,并用它来组合我的两个字符。然后我发现数字没有正确组合,我发现这是因为我使用的是签名字符而不是无符号字符。我不想使用无符号字符,所以我找到了一个使用union的新解决方案。
这是我的工会解决方案。这很简单。
#include <iostream>
#include <conio.h> //getch() & kbhit()
#include "rndgen.h"
#define FN_ESCAPE 27
#define FN_UP_ARROW 18656
#define FN_DOWN_ARROW 20704
#define FN_LEFT_ARROW 19424
#define FN_RIGHT_ARROW 19936
//This union allows for two 8-bit values to be read as one 16-bit value
union wide_char
{
short wide_C;
char C[2];
};
//Function waits for a key to be pressed
inline short key_wait()
{
wchar_t R;
wide_char user_input;
user_input.wide_C = 0;
//Loop twice, or until code causes the loop to exit
//Two times are neccessary for function keys unfortunately
for(int i = 0; i < 2; ++i)
{
//While there isn't a key pressed, loop doing nothing
while(!kbhit()){}
//Grab the next key from the buffer
//Since the loop is done, there must be at least one
user_input.C[i] = getch();
switch(user_input.C[i])
{
case 0:
case -32:
//The key pressed is a Function key because it matches one of these two cases
//This means getch() must be called twice
//Break switch, run the for loop again ++i
break;
default:
R = user_input.wide_C;
return R;
break;
}
}
return -1;
}
wide_C按此顺序返回C [2]的位{C [1],C [0]}这很好,因为它意味着F1-12可以唯一读取(F1的第一个字符串返回为0) -12)它可能可以用wchar_t代替短路,但我想为什么修复一些没有破坏的东西。如果我决定在针对不同程序的新解决方案中重新实现代码,我可能会这样做。
这也意味着a-Z&amp; 0-9都可以作为常规字符值读取。