SDL_KEYDOWN and key recognition not working properly

懵懂的女人 提交于 2019-12-02 08:15:16

You call SDL_PollEvent() only once, so it gives the event which occurred first which might not be SDL_KEYDOWN.
You must make a main loop to handle your events:

SDL_Event event;
bool quit=false;    
while(!quit)
{
    while(SDL_PollEvent(&event)
    {
        if(event.type==SDL_KEYDOWN)
        {
             ....
        }
        else if(event.type==SDL_QUIT)
        {
            quit=true;
        }
    }
}

This loop takes care of the events which you don't care about(for e.g. MOUSEMOTION).

And you can also use switch with event.type if you are going to handle many different types of events.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!