Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Updated testjoystick for SDL 2.0 API - patch from simon
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 14, 2012
1 parent 0306a67 commit b5cb5f9
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 87 deletions.
2 changes: 1 addition & 1 deletion test/Makefile.in
Expand Up @@ -110,7 +110,7 @@ testiconv$(EXE): $(srcdir)/testiconv.c
testime$(EXE): $(srcdir)/testime.c $(srcdir)/common.c testime$(EXE): $(srcdir)/testime.c $(srcdir)/common.c
$(CC) -o $@ $(srcdir)/testime.c $(srcdir)/common.c $(CFLAGS) $(LIBS) @SDL_TTF_LIB@ $(CC) -o $@ $(srcdir)/testime.c $(srcdir)/common.c $(CFLAGS) $(LIBS) @SDL_TTF_LIB@


testjoystick$(EXE): $(srcdir)/testjoystick.c testjoystick$(EXE): $(srcdir)/testjoystick.c $(srcdir)/common.c
$(CC) -o $@ $? $(CFLAGS) $(LIBS) $(CC) -o $@ $? $(CFLAGS) $(LIBS)


testkeys$(EXE): $(srcdir)/testkeys.c testkeys$(EXE): $(srcdir)/testkeys.c
Expand Down
183 changes: 97 additions & 86 deletions test/testjoystick.c
Expand Up @@ -17,14 +17,10 @@
#include <string.h> #include <string.h>


#include "SDL.h" #include "SDL.h"
#include "common.h"


#ifdef __IPHONEOS__ static CommonState *state;
#define SCREEN_WIDTH 320 static SDL_BlendMode blendMode = SDL_BLENDMODE_NONE;
#define SCREEN_HEIGHT 480
#else
#define SCREEN_WIDTH 640
#define SCREEN_HEIGHT 480
#endif


#define MAX_NUM_AXES 6 #define MAX_NUM_AXES 6
#define MAX_NUM_HATS 2 #define MAX_NUM_HATS 2
Expand All @@ -41,31 +37,13 @@ WatchJoystick(SDL_Joystick * joystick)
{ {
SDL_Window *window = NULL; SDL_Window *window = NULL;
SDL_Renderer *screen = NULL; SDL_Renderer *screen = NULL;
SDL_Rect viewport;
SDL_Event event;

const char *name = NULL; const char *name = NULL;
int done = 0; int done = 0;
SDL_Event event;
int i; int i;


/* Create a window to display joystick axis position */
window = SDL_CreateWindow("Joystick Test", SDL_WINDOWPOS_CENTERED,
SDL_WINDOWPOS_CENTERED, SCREEN_WIDTH,
SCREEN_HEIGHT, SDL_WINDOW_SHOWN);
if (window == NULL) {
fprintf(stderr, "Couldn't create window: %s\n", SDL_GetError());
return;
}

screen = SDL_CreateRenderer(window, -1, 0);
if (screen == NULL) {
fprintf(stderr, "Couldn't create renderer: %s\n", SDL_GetError());
SDL_DestroyWindow(window);
return;
}

SDL_SetRenderDrawColor(screen, 0x00, 0x00, 0x00, SDL_ALPHA_OPAQUE);
SDL_RenderClear(screen);
SDL_RenderPresent(screen);

/* Print info about the joystick we are watching */ /* Print info about the joystick we are watching */
name = SDL_JoystickName(SDL_JoystickIndex(joystick)); name = SDL_JoystickName(SDL_JoystickIndex(joystick));
printf("Watching joystick %d: (%s)\n", SDL_JoystickIndex(joystick), printf("Watching joystick %d: (%s)\n", SDL_JoystickIndex(joystick),
Expand All @@ -76,10 +54,6 @@ WatchJoystick(SDL_Joystick * joystick)


/* Loop, getting joystick events! */ /* Loop, getting joystick events! */
while (!done) { while (!done) {
/* blank screen, set up for drawing this frame. */
SDL_SetRenderDrawColor(screen, 0x00, 0x00, 0x00, SDL_ALPHA_OPAQUE);
SDL_RenderClear(screen);

while (SDL_PollEvent(&event)) { while (SDL_PollEvent(&event)) {
switch (event.type) { switch (event.type) {
case SDL_JOYAXISMOTION: case SDL_JOYAXISMOTION:
Expand Down Expand Up @@ -127,80 +101,96 @@ WatchJoystick(SDL_Joystick * joystick)
break; break;
} }
} }

/* Update visual joystick state */ /* Update visual joystick state */
SDL_SetRenderDrawColor(screen, 0x00, 0xFF, 0x00, SDL_ALPHA_OPAQUE); for (i = 0; i < state->num_windows; ++i) {
for (i = 0; i < SDL_JoystickNumButtons(joystick); ++i) { screen = state->renderers[i];
if (SDL_JoystickGetButton(joystick, i) == SDL_PRESSED) {
DrawRect(screen, i * 34, SCREEN_HEIGHT - 34, 32, 32);
}
}


SDL_SetRenderDrawColor(screen, 0xFF, 0x00, 0x00, SDL_ALPHA_OPAQUE); /* Erase previous axes */
for (i = 0; i < SDL_JoystickNumAxes(joystick) / 2; ++i) { SDL_SetRenderDrawColor(screen, 0x00, 0x00, 0x00, SDL_ALPHA_OPAQUE);
/* Draw the X/Y axis */ SDL_RenderClear(screen);
int x, y;
x = (((int) SDL_JoystickGetAxis(joystick, i * 2 + 0)) + 32768); /* Query the sizes */
x *= SCREEN_WIDTH; SDL_RenderGetViewport(screen, &viewport);
x /= 65535;
if (x < 0) { SDL_SetRenderDrawColor(screen, 0x00, 0xFF, 0x00, SDL_ALPHA_OPAQUE);
x = 0; for (i = 0; i < SDL_JoystickNumButtons(joystick); ++i) {
} else if (x > (SCREEN_WIDTH - 16)) { if (SDL_JoystickGetButton(joystick, i) == SDL_PRESSED) {
x = SCREEN_WIDTH - 16; DrawRect(screen, i * 34, viewport.h - 34, 32, 32);
} }
y = (((int) SDL_JoystickGetAxis(joystick, i * 2 + 1)) + 32768);
y *= SCREEN_HEIGHT;
y /= 65535;
if (y < 0) {
y = 0;
} else if (y > (SCREEN_HEIGHT - 16)) {
y = SCREEN_HEIGHT - 16;
} }


DrawRect(screen, x, y, 16, 16); SDL_SetRenderDrawColor(screen, 0xFF, 0x00, 0x00, SDL_ALPHA_OPAQUE);
} for (i = 0; i < SDL_JoystickNumAxes(joystick) / 2; ++i) {
/* Draw the X/Y axis */
int x, y;
x = (((int) SDL_JoystickGetAxis(joystick, i * 2 + 0)) + 32768);
x *= viewport.w ;
x /= 65535;
if (x < 0) {
x = 0;
} else if (x > (viewport.w - 16)) {
x = viewport.w - 16;
}
y = (((int) SDL_JoystickGetAxis(joystick, i * 2 + 1)) + 32768);
y *= viewport.h;
y /= 65535;
if (y < 0) {
y = 0;
} else if (y > (viewport.h - 16)) {
y = viewport.h - 16;
}


SDL_SetRenderDrawColor(screen, 0x00, 0x00, 0xFF, SDL_ALPHA_OPAQUE); DrawRect(screen, x, y, 16, 16);
for (i = 0; i < SDL_JoystickNumHats(joystick); ++i) {
/* Derive the new position */
int x = SCREEN_WIDTH/2;
int y = SCREEN_HEIGHT/2;
const Uint8 hat_pos = SDL_JoystickGetHat(joystick, i);

if (hat_pos & SDL_HAT_UP) {
y = 0;
} else if (hat_pos & SDL_HAT_DOWN) {
y = SCREEN_HEIGHT-8;
} }


if (hat_pos & SDL_HAT_LEFT) { SDL_SetRenderDrawColor(screen, 0x00, 0x00, 0xFF, SDL_ALPHA_OPAQUE);
x = 0; for (i = 0; i < SDL_JoystickNumHats(joystick); ++i) {
} else if (hat_pos & SDL_HAT_RIGHT) { /* Derive the new position */
x = SCREEN_WIDTH-8; int x = viewport.w/2;
int y = viewport.h/2;
const Uint8 hat_pos = SDL_JoystickGetHat(joystick, i);

if (hat_pos & SDL_HAT_UP) {
y = 0;
} else if (hat_pos & SDL_HAT_DOWN) {
y = viewport.h-8;
}

if (hat_pos & SDL_HAT_LEFT) {
x = 0;
} else if (hat_pos & SDL_HAT_RIGHT) {
x = viewport.w-8;
}

DrawRect(screen, x, y, 8, 8);
} }


DrawRect(screen, x, y, 8, 8); SDL_RenderPresent(screen);
} }

SDL_RenderPresent(screen);
} }

SDL_DestroyRenderer(screen);
SDL_DestroyWindow(window);
} }


int int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
const char *name; const char *name;
int i; int i, joy=-1;
SDL_Joystick *joystick; SDL_Joystick *joystick;


/* Initialize SDL (Note: video is required to start event loop) */ /* Initialize SDL (Note: video is required to start event loop) */
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0) { if (SDL_Init(SDL_INIT_JOYSTICK) < 0) {
fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError()); fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError());
exit(1); exit(1);
} }


/* Initialize test framework */
state = CommonCreateState(argv, SDL_INIT_VIDEO | SDL_INIT_JOYSTICK);
if (!state) {
fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError());
return 1;
}

/* Print information about the joysticks */ /* Print information about the joysticks */
printf("There are %d joysticks attached\n", SDL_NumJoysticks()); printf("There are %d joysticks attached\n", SDL_NumJoysticks());
for (i = 0; i < SDL_NumJoysticks(); ++i) { for (i = 0; i < SDL_NumJoysticks(); ++i) {
Expand All @@ -219,17 +209,38 @@ main(int argc, char *argv[])
} }
} }


if (argv[1]) { for (i = 1; i < argc;) {
joystick = SDL_JoystickOpen(atoi(argv[1])); int consumed;

consumed = CommonArg(state, i);
if (consumed == 0) {
consumed = -1;
if (SDL_isdigit(*argv[i])) {
joy = SDL_atoi(argv[i]);
consumed = 1;
}
}
if (consumed < 0) {
return 1;
}
i += consumed;
}
if (!CommonInit(state)) {
return 2;
}

if (joy > -1) {
joystick = SDL_JoystickOpen(joy);
if (joystick == NULL) { if (joystick == NULL) {
printf("Couldn't open joystick %d: %s\n", atoi(argv[1]), printf("Couldn't open joystick %d: %s\n", joy,
SDL_GetError()); SDL_GetError());
} else { } else {
WatchJoystick(joystick); WatchJoystick(joystick);
SDL_JoystickClose(joystick); SDL_JoystickClose(joystick);
} }
} }
SDL_QuitSubSystem(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK); SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
CommonQuit(state);


return (0); return (0);
} }

0 comments on commit b5cb5f9

Please sign in to comment.