/*************************************************************************** Joystick test ***************************************************************************/ #include #include "Private.h" #include "Engine.h" #include "Keyboard.h" /** Main */ int main(int argc, char *argv[]) { #if EM_USE_SDL cerr << "Joystick test" << endl; Engine* engine = new Engine(argc, argv); int njoystick = SDL_NumJoysticks(); cerr << njoystick << " joysticks were found." << endl; if (njoystick != 0) { cerr << "The names of the joysticks are:" << endl; for(int a=0; atick(); engine->render(); engine->swap(); } delete(engine); #else #warning "this is sdl specific test" #endif return 0; } #if EM_USE_ALLEGRO END_OF_MAIN(); #endif