概述
c++ 小游戏如何实现斜方向移动(同时检测两个按键
问题:在控制player移动时使用_getch()获取按键->判断->更改坐标。但无法同时获取两个按键事件
改进:使用GetKeyState(nVirtKey)检测是否按下对应虚拟键
#define isKeyPressed(nVirtKey) (GetKeyState(nVirtKey) & (1<<(sizeof(SHORT)*8-1))) != 0
using namespace std;
int main() {
const char* str = "hello world";
while (1) {
if (isKeyPressed(87))
cout << "w down";
else if(!isKeyPressed(87))
cout << "w up";
cout << endl;
if (isKeyPressed(68))
cout << "d down";
else if (!isKeyPressed(68))
cout << "d up";
system("cls");
}
system("pause");
}
结果:按下w,不按d
最后
以上就是疯狂耳机为你收集整理的c++ 小游戏如何实现斜方向移动(同时检测两个按键的全部内容,希望文章能够帮你解决c++ 小游戏如何实现斜方向移动(同时检测两个按键所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复