mirror of
https://github.com/chocolate-doom/joytest.git
synced 2024-11-22 04:11:47 +00:00
170 lines
3.4 KiB
C
170 lines
3.4 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "SDL.h"
|
|
|
|
FILE *logfile;
|
|
|
|
void LogPrintf(char *s, ...)
|
|
{
|
|
va_list args;
|
|
|
|
va_start(args, s);
|
|
vprintf(s, args);
|
|
va_end(args);
|
|
|
|
va_start(args, s);
|
|
vfprintf(logfile, s, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void ProcessAxisMotion(SDL_Event *ev)
|
|
{
|
|
static int lastjoy = -1, lastaxis, lastdirection;
|
|
int direction;
|
|
|
|
direction = ev->jaxis.value > 0;
|
|
|
|
if (ev->jaxis.which == lastjoy && ev->jaxis.axis == lastaxis
|
|
&& direction == lastdirection)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Only print a message when pushed to the extreme
|
|
if (abs(ev->jaxis.value) < 30000)
|
|
{
|
|
return;
|
|
}
|
|
|
|
LogPrintf("%i: Axis %i pushed to extreme: %i\n",
|
|
ev->jaxis.which, ev->jaxis.axis, ev->jaxis.value);
|
|
|
|
lastjoy = ev->jaxis.which;
|
|
lastaxis = ev->jaxis.axis;
|
|
lastdirection = direction;
|
|
}
|
|
|
|
void ProcessBallMotion(SDL_Event *ev)
|
|
{
|
|
LogPrintf("%i: Ball %i motion: %i, %i\n",
|
|
ev->jball.which, ev->jball.ball, ev->jball.xrel, ev->jball.yrel);
|
|
}
|
|
|
|
char *HatDirection(int value)
|
|
{
|
|
switch (value)
|
|
{
|
|
case SDL_HAT_UP:
|
|
return "UP";
|
|
case SDL_HAT_DOWN:
|
|
return "DOWN";
|
|
case SDL_HAT_LEFT:
|
|
return "LEFT";
|
|
case SDL_HAT_RIGHT:
|
|
return "RIGHT";
|
|
default:
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
void ProcessHatMotion(SDL_Event *ev)
|
|
{
|
|
char *dirstr;
|
|
|
|
dirstr = HatDirection(ev->jhat.value);
|
|
|
|
if (dirstr != NULL)
|
|
{
|
|
LogPrintf("%i: Hat %i moved to %s\n", ev->jhat.which, ev->jhat.hat,
|
|
dirstr);
|
|
}
|
|
}
|
|
|
|
void ProcessButtonDown(SDL_Event *ev)
|
|
{
|
|
LogPrintf("%i: Button %i pressed\n",
|
|
ev->jbutton.which, ev->jbutton.button);
|
|
}
|
|
|
|
void StartJoysticks(void)
|
|
{
|
|
SDL_Joystick *js;
|
|
int i;
|
|
|
|
// Open all joysticks.
|
|
|
|
LogPrintf("%i joysticks:\n", SDL_NumJoysticks());
|
|
|
|
for (i = 0 ; i < SDL_NumJoysticks(); ++i)
|
|
{
|
|
LogPrintf("\t#%i: '%s'\n", i, SDL_JoystickName(i));
|
|
|
|
js = SDL_JoystickOpen(i);
|
|
LogPrintf("\t\taxes: %i\n", SDL_JoystickNumAxes(js));
|
|
LogPrintf("\t\tbuttons: %i\n", SDL_JoystickNumButtons(js));
|
|
LogPrintf("\t\tballs: %i\n", SDL_JoystickNumBalls(js));
|
|
LogPrintf("\t\thats: %i\n", SDL_JoystickNumHats(js));
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
SDL_Event ev;
|
|
|
|
SDL_Init(SDL_INIT_JOYSTICK|SDL_INIT_VIDEO);
|
|
|
|
if (SDL_NumJoysticks() == 0)
|
|
{
|
|
fprintf(stderr, "Found no joysticks to configure!\n");
|
|
return 1;
|
|
}
|
|
|
|
SDL_SetVideoMode(400, 200, 0, 0);
|
|
SDL_WM_SetCaption("Close this window to quit.", NULL);
|
|
|
|
logfile = fopen("joytest.log", "w");
|
|
|
|
StartJoysticks();
|
|
|
|
for (;;)
|
|
{
|
|
SDL_PumpEvents();
|
|
SDL_WaitEvent(&ev);
|
|
switch (ev.type)
|
|
{
|
|
case SDL_QUIT:
|
|
goto exitloop;
|
|
|
|
case SDL_KEYDOWN:
|
|
if (ev.key.keysym.sym == SDLK_ESCAPE)
|
|
{
|
|
goto exitloop;
|
|
}
|
|
break;
|
|
|
|
case SDL_JOYAXISMOTION:
|
|
ProcessAxisMotion(&ev);
|
|
break;
|
|
|
|
case SDL_JOYBALLMOTION:
|
|
ProcessBallMotion(&ev);
|
|
break;
|
|
|
|
case SDL_JOYHATMOTION:
|
|
ProcessHatMotion(&ev);
|
|
break;
|
|
|
|
case SDL_JOYBUTTONDOWN:
|
|
ProcessButtonDown(&ev);
|
|
break;
|
|
}
|
|
}
|
|
exitloop:
|
|
|
|
SDL_Quit();
|
|
fclose(logfile);
|
|
|
|
return 0;
|
|
}
|
|
|