This repository has been archived by the owner on Jul 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathinput_PSP.c
395 lines (337 loc) · 7.06 KB
/
input_PSP.c
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
//
// Copyright (c) 2009, Pal_Bazzi.
//
// All rights reserved.
//
// This file is part of SDLPAL.
//
// SDLPAL is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#include "main.h"
#ifdef PSP
#include <math.h>
#include <pspkernel.h>
#include <pspctrl.h>
#include <SDL_thread.h>
PALINPUTSTATE g_InputState;
BOOL g_fUseJoystick = TRUE;
static SceCtrlData pad;
static SDL_sem *pad_sem = 0;
static SDL_Thread *bthread = 0;
static int running = 0;
static unsigned int old_button=0;
static unsigned char old_x = 0, old_y = 0;
//
// Collect pad data about once per frame
//
int PSP_JoystickUpdate(void *data)
{
while (running)
{
SDL_SemWait(pad_sem);
sceCtrlPeekBufferPositive(&pad, 1);
SDL_SemPost(pad_sem);
//
// Delay 1/60th of a second
//
sceKernelDelayThread(1000000 / 60);
}
return 0;
}
void PAL_calc_Axes(
unsigned char x,
unsigned char y
)
{
if(x<y && x+y<51)
{
g_InputState.dwKeyPress = kKeyLeft;
g_InputState.prevdir = g_InputState.dir;
g_InputState.dir = kDirWest;
return;
}
if(x<y && x+y>51)
{
g_InputState.dwKeyPress = kKeyDown;
g_InputState.prevdir = g_InputState.dir;
g_InputState.dir = kDirSouth;
return;
}
if(x>y && x+y<51)
{
g_InputState.dwKeyPress = kKeyUp;
g_InputState.prevdir = g_InputState.dir;
g_InputState.dir = kDirNorth;
return;
}
if(x>y && x+y>51)
{
g_InputState.dwKeyPress = kKeyRight;
g_InputState.prevdir = g_InputState.dir;
g_InputState.dir = kDirEast;
return;
}
g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
g_InputState.dir = kDirUnknown;
}
VOID
PAL_JoystickEventFilter(
VOID
)
/*++
Purpose:
Handle joystick events.
Parameters:
None.
Return value:
None.
--*/
{
unsigned int button;
unsigned char x, y;
SDL_SemWait(pad_sem);
button = pad.Buttons;
x = pad.Lx;
y = pad.Ly;
SDL_SemPost(pad_sem);
//
//Axes
//
x /= 5;
y /= 5;
BOOL onCenter=(x>16 && x<32) && (y>16 && y<32);
if(!onCenter)
{
if(old_x != x || old_y != y)
{
PAL_calc_Axes(x,y);
old_y = y;
old_x = x;
}
}
else if (!button)
{
g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
g_InputState.dir = kDirUnknown;
}
//
//Buttons
//
int changed = (button != old_button);
old_button = button;
if(changed)
{
if (button & PSP_CTRL_UP)
{
g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
g_InputState.dir = kDirNorth;
g_InputState.dwKeyPress = kKeyUp;
return;
}
if (button & PSP_CTRL_DOWN)
{
g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
g_InputState.dir = kDirSouth;
g_InputState.dwKeyPress = kKeyDown;
return;
}
if (button & PSP_CTRL_LEFT)
{
g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
g_InputState.dir = kDirWest;
g_InputState.dwKeyPress = kKeyLeft;
return;
}
if (button & PSP_CTRL_RIGHT)
{
g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
g_InputState.dir = kDirEast;
g_InputState.dwKeyPress = kKeyRight;
return;
}
if (button & PSP_CTRL_SQUARE)
{
g_InputState.dwKeyPress = kKeyForce;
return;
}
if (button & PSP_CTRL_TRIANGLE)
{
g_InputState.dwKeyPress = kKeyThrowItem;
return;
}
if (button & PSP_CTRL_CIRCLE)
{
g_InputState.dwKeyPress = kKeySearch;
return;
}
if (button & PSP_CTRL_CROSS)
{
g_InputState.dwKeyPress = kKeyMenu;
return;
}
if (button & PSP_CTRL_START)
{
g_InputState.dwKeyPress = kKeySearch;
return;
}
if (button & PSP_CTRL_SELECT)
{
g_InputState.dwKeyPress = kKeyMenu;
return;
}
if (button & PSP_CTRL_LTRIGGER)
{
g_InputState.dwKeyPress = kKeyUseItem;
return;
}
if (button & PSP_CTRL_RTRIGGER)
{
g_InputState.dwKeyPress = kKeyRepeat;
return;
}
g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
g_InputState.dir = kDirUnknown;
}
}
#if SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION <= 2
static int SDLCALL
PAL_EventFilter(
const SDL_Event *lpEvent
)
#else
static int SDLCALL
PAL_EventFilter(
void *userdata,
const SDL_Event *lpEvent
)
#endif
/*++
Purpose:
SDL event filter function. A filter to process all events.
Parameters:
[IN] lpEvent - pointer to the event.
Return value:
1 = the event will be added to the internal queue.
0 = the event will be dropped from the queue.
--*/
{
switch (lpEvent->type)
{
case SDL_QUIT:
//
// clicked on the close button of the window. Quit immediately.
//
PAL_Shutdown();
exit(0);
}
//
// All events are handled here; don't put anything to the internal queue
//
return 0;
}
VOID
PAL_ClearKeyState(
VOID
)
/*++
Purpose:
Clear the record of pressed keys.
Parameters:
None.
Return value:
None.
--*/
{
g_InputState.dwKeyPress = 0;
}
VOID
PAL_InitInput(
VOID
)
/*++
Purpose:
Initialize the input subsystem.
Parameters:
None.
Return value:
None.
--*/
{
memset(&g_InputState, 0, sizeof(g_InputState));
g_InputState.dir = kDirUnknown;
g_InputState.prevdir = kDirUnknown;
#if SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION <= 2
SDL_SetEventFilter(PAL_EventFilter);
#else
SDL_SetEventFilter(PAL_EventFilter, NULL);
#endif
//
// Setup input
//
sceCtrlSetSamplingCycle(0);
sceCtrlSetSamplingMode(PSP_CTRL_MODE_ANALOG);
pad.Buttons = 0;
//
// Start thread to read data
//
if((pad_sem = SDL_CreateSemaphore(1)) == NULL)
{
TerminateOnError("Can't create input semaphore\n");
return;
}
running = 1;
if((bthread = SDL_CreateThread(PSP_JoystickUpdate, NULL)) == NULL)
{
TerminateOnError("Can't create input thread\n");
return;
}
}
VOID
PAL_ShutdownInput(
VOID
)
/*++
Purpose:
Shutdown the input subsystem.
Parameters:
None.
Return value:
None.
--*/
{
//
// Cleanup Threads and Semaphore.
//
running = 0;
SDL_WaitThread(bthread, NULL);
SDL_DestroySemaphore(pad_sem);
}
VOID
PAL_ProcessEvent(
VOID
)
/*++
Purpose:
Process all events.
Parameters:
None.
Return value:
None.
--*/
{
while (PAL_PollEvent(NULL));
PAL_JoystickEventFilter();
}
#endif