Wiki Page Content

Differences between revisions 1 and 2
Revision 1 as of 2010-03-18 01:41:37
Size: 1107
Editor: SheenaSmith
Comment: create page, add content (Rev 5540)
Revision 2 as of 2010-08-27 23:12:45
Size: 1461
Editor: SheenaSmith
Comment: update content (old wiki)
Deletions are marked like this. Additions are marked like this.
Line 29: Line 29:
You can add your code example here int delta_x, delta_y;
SDL_Joystick *joy;
.
.
.
SDL_JoystickUpdate();
if(SDL_JoystickGetBall(joy, 0, &delta_x, &delta_y)==-1)
  printf("TrackBall Read Error!\n");
printf("Trackball Delta- X:%d, Y:%d\n", delta_x, delta_y);
Line 33: Line 41:
''You can add useful comments here'' *<<BR>>Trackballs can only return relative motion since the last call to [[SDL_JoystickGetBall]](), these motion deltas are placed into '''dx''' and '''dy'''. <<BR>>*
Line 36: Line 44:
 .[[SDL_JoystickNumBalls]] *

DRAFT

SDL_JoystickGetBall

Use this function to get the ball axis change since the last poll.

Syntax

int SDL_JoystickGetBall(SDL_Joystick* joystick,
                        int           ball,
                        int*          dx,
                        int*          dy)

Function Parameters

joystick

a pointer to a structure containing joystick information ???

ball

the ball indices index; starts at index 0

dx

the difference in the x axis since the last poll

dy

the difference in the y axis since the last poll

Return Value

Returns 0 on success, or -1 if you passed it invalid parameters; call SDL_GetError() for more information.

Code Examples

int delta_x, delta_y;
SDL_Joystick *joy;
.
.
.
SDL_JoystickUpdate();
if(SDL_JoystickGetBall(joy, 0, &delta_x, &delta_y)==-1)
  printf("TrackBall Read Error!\n");
printf("Trackball Delta- X:%d, Y:%d\n", delta_x, delta_y);

Remarks

*
Trackballs can only return relative motion since the last call to SDL_JoystickGetBall(), these motion deltas are placed into dx and dy.
*


CategoryAPI, CategoryJoystick

None: SDL_JoystickGetBall (last edited 2015-05-31 19:12:46 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit