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

Latest commit

 

History

History
185 lines (159 loc) · 5.06 KB

SDL_sysjoystick.c

File metadata and controls

185 lines (159 loc) · 5.06 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997, 1998, 1999, 2000, 2001 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
slouken@devolution.com
*/
#ifdef SAVE_RCSID
static char rcsid =
Jun 12, 2008
Jun 12, 2008
25
"@(#) $Id: SDL_sysjoystick.c,v 1.2 2001/04/26 16:50:17 hercules Exp $";
Jun 19, 2008
Jun 19, 2008
28
29
30
31
#include "SDL_config.h"
#ifdef SDL_JOYSTICK_NDS
32
33
34
/* This is the system specific header for the SDL joystick API */
#include <nds.h>
//#include <nds/registers_alt.h>
Jun 12, 2008
Jun 12, 2008
35
#include <stdio.h> /* For the definition of NULL */
36
37
#include "SDL_error.h"
Jun 19, 2008
Jun 19, 2008
38
#include "SDL_events.h"
39
40
41
42
43
44
45
46
47
48
49
#include "SDL_joystick.h"
#include "SDL_sysjoystick.h"
#include "SDL_joystick_c.h"
#include "../../video/nds/SDL_ndsevents_c.h"
/* Function to scan the system for joysticks.
* This function should set SDL_numjoysticks to the number of available
* joysticks. Joystick 0 should be the system default joystick.
* It should return 0, or -1 on an unrecoverable fatal error.
*/
Jun 12, 2008
Jun 12, 2008
50
51
int
SDL_SYS_JoystickInit(void)
Jun 12, 2008
Jun 12, 2008
53
SDL_numjoysticks = 1;
Jun 19, 2008
Jun 19, 2008
54
55
/* keysInit();*/
return (1);
56
57
58
}
/* Function to get the device-dependent name of a joystick */
Jun 12, 2008
Jun 12, 2008
59
60
const char *
SDL_SYS_JoystickName(int index)
Jun 12, 2008
Jun 12, 2008
62
63
64
65
if (!index)
return "NDS builtin joypad";
SDL_SetError("No joystick available with that index");
return (NULL);
66
67
68
69
70
71
72
}
/* Function to open a joystick for use.
The joystick to open is specified by the index field of the joystick.
This should fill the nbuttons and naxes fields of the joystick structure.
It returns 0, or -1 if there is an error.
*/
Jun 12, 2008
Jun 12, 2008
73
74
int
SDL_SYS_JoystickOpen(SDL_Joystick * joystick)
Jun 12, 2008
Jun 12, 2008
76
77
78
79
80
joystick->nbuttons = 8;
joystick->nhats = 0;
joystick->nballs = 0;
joystick->naxes = 2;
return 0;
Jun 12, 2008
Jun 12, 2008
83
84
85
86
87
88
/* Function to update the state of a joystick - called as a device poll.
* This function shouldn't update the joystick structure directly,
* but instead should call SDL_PrivateJoystick*() to deliver events
* and update joystick device state.
*/
Jun 12, 2008
Jun 12, 2008
89
90
91
void
SDL_SYS_JoystickUpdate(SDL_Joystick * joystick)
{
Jun 19, 2008
Jun 19, 2008
92
93
94
95
96
97
u32 keysd, keysu;
int magnitude = 16384;
scanKeys();
keysd = keysDown();
keysu = keysUp();
Jun 12, 2008
Jun 12, 2008
98
if ((keysd & KEY_UP)) {
Jun 19, 2008
Jun 19, 2008
99
100
SDL_PrivateJoystickAxis(joystick, 1, -magnitude);
}
Jun 12, 2008
Jun 12, 2008
101
if ((keysd & KEY_DOWN)) {
Jun 19, 2008
Jun 19, 2008
102
103
SDL_PrivateJoystickAxis(joystick, 1, magnitude);
}
Jun 12, 2008
Jun 12, 2008
104
if ((keysd & KEY_LEFT)) {
Jun 19, 2008
Jun 19, 2008
105
106
SDL_PrivateJoystickAxis(joystick, 0, -magnitude);
}
Jun 12, 2008
Jun 12, 2008
107
if ((keysd & KEY_RIGHT)) {
Jun 19, 2008
Jun 19, 2008
108
SDL_PrivateJoystickAxis(joystick, 0, magnitude);
Jun 12, 2008
Jun 12, 2008
109
}
Jun 19, 2008
Jun 19, 2008
110
111
112
113
114
if ((keysu & (KEY_UP|KEY_DOWN))) {
SDL_PrivateJoystickAxis(joystick, 1, 0);
}
if ((keysu & (KEY_LEFT|KEY_RIGHT))) {
SDL_PrivateJoystickAxis(joystick, 0, 0);
Jun 12, 2008
Jun 12, 2008
115
}
Jun 19, 2008
Jun 19, 2008
116
117
118
119
120
if ((keysd & KEY_A)) {
SDL_PrivateJoystickButton(joystick, 0, SDL_PRESSED);
} if ((keysd & KEY_B)) {
SDL_PrivateJoystickButton(joystick, 1, SDL_PRESSED);
} if ((keysd & KEY_X)) {
Jun 12, 2008
Jun 12, 2008
121
SDL_PrivateJoystickButton(joystick, 2, SDL_PRESSED);
Jun 19, 2008
Jun 19, 2008
122
} if ((keysd & KEY_Y)) {
Jun 12, 2008
Jun 12, 2008
123
124
SDL_PrivateJoystickButton(joystick, 3, SDL_PRESSED);
}
Jun 19, 2008
Jun 19, 2008
125
if ((keysd & KEY_L)) {
Jun 12, 2008
Jun 12, 2008
126
SDL_PrivateJoystickButton(joystick, 4, SDL_PRESSED);
Jun 19, 2008
Jun 19, 2008
127
} if ((keysd & KEY_R)) {
Jun 12, 2008
Jun 12, 2008
128
129
SDL_PrivateJoystickButton(joystick, 5, SDL_PRESSED);
}
Jun 19, 2008
Jun 19, 2008
130
131
132
133
if ((keysd & KEY_SELECT)) {
SDL_PrivateJoystickButton(joystick, 6, SDL_PRESSED);
} if ((keysd & KEY_START)) {
SDL_PrivateJoystickButton(joystick, 7, SDL_PRESSED);
Jun 12, 2008
Jun 12, 2008
134
}
Jun 19, 2008
Jun 19, 2008
135
136
137
if ((keysu & KEY_A)) {
SDL_PrivateJoystickButton(joystick, 0, SDL_RELEASED);
} if ((keysu & KEY_B)) {
Jun 12, 2008
Jun 12, 2008
138
SDL_PrivateJoystickButton(joystick, 1, SDL_RELEASED);
Jun 19, 2008
Jun 19, 2008
139
} if ((keysu & KEY_X)) {
Jun 12, 2008
Jun 12, 2008
140
SDL_PrivateJoystickButton(joystick, 2, SDL_RELEASED);
Jun 19, 2008
Jun 19, 2008
141
} if ((keysu & KEY_Y)) {
Jun 12, 2008
Jun 12, 2008
142
143
SDL_PrivateJoystickButton(joystick, 3, SDL_RELEASED);
}
Jun 19, 2008
Jun 19, 2008
144
if ((keysu & KEY_L)) {
Jun 12, 2008
Jun 12, 2008
145
SDL_PrivateJoystickButton(joystick, 4, SDL_RELEASED);
Jun 19, 2008
Jun 19, 2008
146
} if ((keysu & KEY_R)) {
Jun 12, 2008
Jun 12, 2008
147
148
SDL_PrivateJoystickButton(joystick, 5, SDL_RELEASED);
}
Jun 19, 2008
Jun 19, 2008
149
150
151
152
153
if ((keysu & KEY_SELECT)) {
SDL_PrivateJoystickButton(joystick, 6, SDL_RELEASED);
} if ((keysu & KEY_START)) {
SDL_PrivateJoystickButton(joystick, 7, SDL_RELEASED);
}}
154
155
/* Function to close a joystick after use */
Jun 12, 2008
Jun 12, 2008
156
157
void
SDL_SYS_JoystickClose(SDL_Joystick * joystick)
158
159
160
161
{
}
/* Function to perform any system-specific joystick related cleanup */
Jun 12, 2008
Jun 12, 2008
162
163
void
SDL_SYS_JoystickQuit(void)
Jun 19, 2008
Jun 19, 2008
166
#endif /* SDL_JOYSTICK_NDS */