Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/test_render/Pad.cpp @ 221:d61fded0729e
Cameraの設定、Makefile 修正
author | gongo@gendarme.local |
---|---|
date | Tue, 10 Feb 2009 01:47:12 +0900 |
parents | |
children |
line wrap: on
line source
#include <stdio.h> #include "Keyboard.h" #include "Joystick.h" /** * Joystick があればそれを使い、 * 無ければキーボードを返す */ Pad* create_controller(void) { if (SDL_NumJoysticks()) { SDL_Joystick *joy = SDL_JoystickOpen(0); if (!joy) { printf("%s: failed to open joystick", __FUNCTION__); printf("Instead use Keyboard\n"); return new Keyboard; } else { printf("Use Joystick\n"); return new Joystick(joy); } } else { printf("Use Keyboard\n"); return new Keyboard; } }