gpt4 book ai didi

c++ - 如何在 C++ 中使用 X11 知道按键?

转载 作者:行者123 更新时间:2023-12-04 19:00:10 24 4
gpt4 key购买 nike

我的目标:
我正在制作 C++ 程序,但缺少一些非常重要的东西,
程序需要知道按下了哪个键但我不知道有什么办法。
问题:
经过一些研究,获取按键的最原生方式似乎是使用 X11 .
关于键盘输入的一切Xlib manual正在使用事件,
但是 我不知道如何处理事件!
有没有办法在不使用事件的情况下知道按键?
或者如何使用 X11 事件?

如果需要任何澄清,请添加评论或建议编辑

最佳答案

有两种(甚至更多)方法可以实现它:
不推荐的硬方式
它具有所需的功能,但不推荐使用,因为它速度较慢且使用更多代码行。

uint32_t PressedKeys[8];

bool RefreshPressedKeys() {
while(XPending(X11Display)) {
XEvent KeyEvent;
XNextEvent(X11Display,&KeyEvent);
if(KeyEvent.type==KeyPress) {
uint32_t KeyEventCode=KeyEvent.xkey.keycode;
for(uint8_t i=0;i<8;i++) {
if(PressedKeys[i]==0) {
PressedKeys[i]=KeyEventCode;
break;
}
}
}else if(KeyEvent.type==KeyRelease) {
uint32_t KeyEventCode=KeyEvent.xkey.keycode;
for(uint8_t i=0;i<8;i++) {
if(PressedKeys[i]==KeyEventCode) {
PressedKeys[i]=0;
break;
}
}
}
}
return true;
}

uint32_t GetAPressedKey() { //Get a pressed key, won't always the last pressed key
for(uint8_t i=0;i<8;i++) {
if(PressedKeys[i]!=0) return PressedKeys[i]; //Returns the first pressed key found
}
return 0; //Or 0 when no key found
}

bool IsKeyPressed(uint32_t KeyFilter) { //Is Key Pressed?
for(uint8_t i=0;i<8;i++) {
if(PressedKeys[i]==KeyFilter) return true; //Returns true if the key is pressed
}
return false; //Else false
}

int main() {
uint8_t Key;
XSelectInput(X11Display,X11Window,KeyPressMask|KeyReleaseMask); //Enables keyboard input
while(1) {
Key = GetPressedKey(); //Gets the pressed key's number
std::cout << Key << '\n'; //Displays the number
/* Some code using the Key var */
}
return 0;
}

推荐的简单方法
程序 可能更复杂起初理解但 更好因为它理论上可以同时处理“无限”数量的按键。
int main() {
XSelectInput(Pixel.GetX11Display(),Pixel.GetX11Window(),KeyPressMask|KeyReleaseMask);
while(1) {
while(XPending(Pixel.GetX11Display())) { //Repeats until all events are computed
XEvent KeyEvent;
XNextEvent(Pixel.GetX11Display(),&KeyEvent); //Gets exactly one event
if(KeyEvent.type==KeyPress) {
uint32_t KeyEventCode=KeyEvent.xkey.keycode; //Gets the key code, NOT HIS CHAR EQUIVALENT
std::cout << KeyEventCode << '\n'; //Displays the key code

/* Code handling a Keypress event */

} else if(KeyEvent.type==KeyRelease) {
uint32_t KeyEventCode=KeyEvent.xkey.keycode;
std::cout << KeyEventCode << '\n'; //Displays the key code

/* Code handling a KeyRelease event */

}
}

/* General code */

}
}
这两个程序是我手写的;因为我没有测试它们,所以我可能犯了一个错误,但它应该是类似的。
这些是copyleft,你不需要相信我:)
对于发现的任何错误或代码澄清,请发表评论或建议编辑。

关于c++ - 如何在 C++ 中使用 X11 知道按键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59969881/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com