typedefunionSDL_Event{Uint32type;/**< Event type, shared with all events */SDL_CommonEventcommon;/**< Common event data */SDL_DisplayEventdisplay;/**< Window event data */SDL_WindowEventwindow;/**< Window event data */// 键盘事件的信息SDL_KeyboardEventkey;/**< Keyboard event data */// 鼠标事件的信息SDL_MouseButtonEventbutton;/**< Mouse button event data */SDL_MouseMotionEventmotion;/**< Mouse motion event data */}
boolbQuit=false;while(!bQuit){while(SDL_PollEvent(&windowEvent)){switch(windowEvent.type){caseSDL_QUIT:bQuit=true;break;caseSDL_KEYDOWN:if(windowEvent.key.keysym.sym==SDLK_SPACE){cout<<"user click space \n";}break;default:break;}}}
boolbQuit=false;while(!bQuit){while(SDL_PollEvent(&windowEvent)){switch(windowEvent.type){caseSDL_QUIT:bQuit=true;break;caseSDL_MOUSEBUTTONDOWN:printf("button index is %d\n",windowEvent.button.button);break;default:break;}}}
以上代码就是监听鼠标点击事件,并且打印出点击按键的 index ,鼠标的左键、右键和中间滚轮按下去对应的 index 不同。
boolbQuit=false;while(!bQuit){while(SDL_PollEvent(&windowEvent)){switch(windowEvent.type){caseSDL_QUIT:bQuit=true;break;caseSDL_CUSTOM_EVENT:cout<<"receive user custom event\n";break;default:break;}}}