File: GetBall.cpp

package info (click to toggle)
psychtoolbox-3 3.0.19.14.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 86,796 kB
  • sloc: ansic: 176,245; cpp: 20,103; objc: 5,393; sh: 2,753; python: 1,397; php: 384; makefile: 193; java: 113
file content (59 lines) | stat: -rwxr-xr-x 2,335 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*

08/15/01 awi  wrote it
08/16/01 awi  changed the last word of synopsis string to "trackballs".

*/

#include "StdAfx.h"


char useGetBall[] = "[deltaX, deltaY]  = JOYSTICK(joystickNumber,'GetBall',ballNumber)";
char synopsisGetBall[] = "Given a joystick number and an trackball number, return the change in the trackball " 
  "X and Y positions since the previous call to 'GetBall'.\n"
  "Use 'GetNumJoysticks' and 'GetNumBalls' to determine maximum legal values for joystickNumber and "
  "buttonNumber arguments to 'GetBall'. The first joystick and the first ball are numbered 1. "
  "It is an error to call 'GetBall' if the specified joystick has no trackballs.";  
	

void JOYSTICKGetBall(int nlhs, mxArray *plhs[], int nrhs, CONSTmxArray *prhs[])
{

	ProjectTable *joystickTable=GetProjectTable();
	int  numSticks, numBalls, fetchedBall, ballX, ballY;
	CONSTmxArray *numArg;
	double stickNum;
	SDL_Joystick *pStick;


	if(joystickTable->giveHelp){GiveHelp(useGetBall,synopsisGetBall);return;}
	numArg = joystickTable->joystickNumberArgument; 
	if(numArg == NULL || nlhs > 2 || nrhs > 1 || nrhs < 1 || !mxIsDouble(numArg) || (mxGetM(numArg) * mxGetN(numArg)) != 1 ||
		!mxIsDouble(prhs[0]) || (mxGetM(prhs[0]) * mxGetN(prhs[0]) != 1)){
		GiveUsageExit(useGetBall);
	}
	numSticks = SDL_NumJoysticks();
	stickNum = mxGetPr(numArg)[0];
	if(stickNum > numSticks)
		PrintfExit("The joystick number %d passed to JOYSTICK 'GetBall' exceeds the number of joysticks, %d",stickNum,numSticks);
	if(stickNum < 1)
		PrintfExit("The joystick number passed to JOYSTICK 'GetBall' must be greater than 0");
	pStick = GetJoystickObjFromNum((int)stickNum-1);
	if(pStick == NULL)
		PrintfExit("JOYSTICK 'GetBall' can not open joystick number %d",stickNum);
	numBalls = SDL_JoystickNumBalls(pStick);
	fetchedBall = (int)mxGetPr(prhs[0])[0];
	if(fetchedBall > numBalls || fetchedBall < 0)
		PrintfExit("The ball number %d passed to JOYSTICK 'GetBall' is oustide the allowable range",fetchedBall);
	SDL_JoystickUpdate();
	SDL_JoystickGetBall(pStick, fetchedBall-1, &ballX, &ballY);

	switch(nlhs){
	case 2: 
		plhs[1] = mxCreateDoubleMatrix(1,1,mxREAL);
		mxGetPr(plhs[1])[0] = (double)ballY;
	case 1:
		plhs[0] = mxCreateDoubleMatrix(1,1,mxREAL);
		mxGetPr(plhs[0])[0] = (double)ballX;
	}
}