Created
August 11, 2013 19:39
-
-
Save ToadKing/6206545 to your computer and use it in GitHub Desktop.
sdl event testcase
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <SDL/SDL.h> | |
| #include <emscripten.h> | |
| // bug - SDL_GetKeyboardState doesn't return scancodes, it returns keycodes, so acts exactly like | |
| // SDL_GetKeyState instead | |
| #define SDL_GetKeyState SDL_GetKeyboardState | |
| int result = 0; | |
| int loop1() | |
| { | |
| unsigned i; | |
| int r = 0; | |
| // method 1: SDL_PollEvent loop | |
| SDL_Event e; | |
| while (SDL_PollEvent(&e)); | |
| const Uint8 *keys = SDL_GetKeyState(NULL); | |
| if (keys[SDLK_LEFT]) | |
| r = 1; | |
| return r; | |
| } | |
| int loop2() | |
| { | |
| unsigned i; | |
| int r = 0; | |
| // method 2: SDL_PumpEvents | |
| SDL_PumpEvents(); | |
| const Uint8 *keys = SDL_GetKeyState(NULL); | |
| if (keys[SDLK_RIGHT]) | |
| r = 2; | |
| return r; | |
| } | |
| int main(int argc, char *argv[]) | |
| { | |
| SDL_Init(SDL_INIT_EVERYTHING); | |
| SDL_SetVideoMode(600, 400, 32, SDL_SWSURFACE); | |
| emscripten_run_script("keydown(37);"); // left | |
| result += loop1(); | |
| emscripten_run_script("keydown(39);"); // right | |
| result += loop2(); | |
| REPORT_RESULT(); | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment