Skip to content

Latest commit

 

History

History
684 lines (589 loc) · 16.4 KB

SDL_sysjoystick.c

File metadata and controls

684 lines (589 loc) · 16.4 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19
20
21
Sam Lantinga
slouken@libsdl.org
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 14, 2006
Apr 14, 2006
24
25
#ifdef SDL_JOYSTICK_MINT
26
27
28
29
30
31
/*
* Atari Joystick/Joypad drivers
*
* Patrice Mandin
*/
Dec 7, 2002
Dec 7, 2002
32
#include <mint/cookie.h>
33
34
#include <mint/osbind.h>
Feb 8, 2006
Feb 8, 2006
35
#include "SDL_events.h"
Feb 16, 2006
Feb 16, 2006
36
37
#include "../SDL_sysjoystick.h"
#include "../SDL_joystick_c.h"
Feb 21, 2006
Feb 21, 2006
39
40
41
#include "../../video/ataricommon/SDL_ikbdinterrupt_s.h"
#include "../../video/ataricommon/SDL_xbiosevents_c.h"
#include "../../video/ataricommon/SDL_xbiosinterrupt_s.h"
42
43
44
45
/*--- Const ---*/
/* We can have:
Mar 10, 2002
Mar 10, 2002
46
1 joystick on IKBD port 1, read via hardware I/O
Aug 2, 2006
Aug 2, 2006
47
48
49
50
or same joystick on IKBD port 1, read via xbios
1 joypad on port A (up to 4 with teamtap)
or 2 joysticks on joypad port A
or 1 analog paddle on joypad port A
51
or 1 lightpen on joypad port A
Aug 2, 2006
Aug 2, 2006
52
53
54
1 joypad on port B (up to 4 with teamtap)
or 2 joysticks on joypad port B
or 1 analog paddle on joypad port B
55
56
57
58
59
2 joysticks on parallel port
*/
enum {
IKBD_JOY1=0,
Mar 10, 2002
Mar 10, 2002
60
XBIOS_JOY1,
Aug 2, 2006
Aug 2, 2006
61
62
63
64
65
66
67
68
PORTA_PAD0,
PORTA_PAD1,
PORTA_PAD2,
PORTA_PAD3,
PORTB_PAD0,
PORTB_PAD1,
PORTB_PAD2,
PORTB_PAD3,
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
PORTA_JOY0,
PORTA_JOY1,
PORTB_JOY0,
PORTB_JOY1,
PORTA_LP,
PORTA_ANPAD,
PORTB_ANPAD,
#if 0
PARA_JOY0,
PARA_JOY1,
#endif
MAX_JOYSTICKS
};
enum {
MCH_ST=0,
MCH_STE,
MCH_TT,
May 5, 2005
May 5, 2005
87
MCH_F30,
Jun 25, 2005
Jun 25, 2005
88
MCH_CLONE,
May 5, 2005
May 5, 2005
89
MCH_ARANYM
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
};
/* Joypad buttons
* Procontroller note:
* L,R are connected to 4,6
* X,Y,Z are connected to 7,8,9
*/
enum {
JP_UP=0, JP_DOWN, JP_LEFT, JP_RIGHT,
JP_KPMULT, JP_KP7, JP_KP4, JP_KP1,
JP_KP0, JP_KP8, JP_KP5, JP_KP2,
JP_KPNUM, JP_KP9, JP_KP6, JP_KP3,
JP_PAUSE, JP_FIRE0, JP_UNDEF0, JP_FIRE1,
JP_UNDEF1, JP_FIRE2, JP_UNDEF2, JP_OPTION
};
#define JP_NUM_BUTTONS 17
#define PORT_JS_RIGHT (1<<0)
#define PORT_JS_LEFT (1<<1)
#define PORT_JS_DOWN (1<<2)
#define PORT_JS_UP (1<<3)
#define PORT_JS_FIRE (1<<4)
/*--- Types ---*/
typedef struct {
SDL_bool enabled;
unsigned char *name;
Uint32 prevstate;
} atarijoy_t;
/*--- Variables ---*/
static atarijoy_t atarijoysticks[MAX_JOYSTICKS]={
{SDL_FALSE,"IKBD joystick port 1",0},
Mar 10, 2002
Mar 10, 2002
127
{SDL_FALSE,"Xbios joystick port 1",0},
Aug 2, 2006
Aug 2, 2006
128
129
130
131
132
133
134
135
{SDL_FALSE,"Joypad 0 port A",0},
{SDL_FALSE,"Joypad 1 port A",0},
{SDL_FALSE,"Joypad 2 port A",0},
{SDL_FALSE,"Joypad 3 port A",0},
{SDL_FALSE,"Joypad 0 port B",0},
{SDL_FALSE,"Joypad 1 port B",0},
{SDL_FALSE,"Joypad 2 port B",0},
{SDL_FALSE,"Joypad 3 port B",0},
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{SDL_FALSE,"Joystick 0 port A",0},
{SDL_FALSE,"Joystick 1 port A",0},
{SDL_FALSE,"Joystick 0 port B",0},
{SDL_FALSE,"Joystick 1 port B",0},
{SDL_FALSE,"Lightpen port A",0},
{SDL_FALSE,"Analog paddle port A",0},
{SDL_FALSE,"Analog paddle port B",0}
#if 0
,{SDL_FALSE,"Joystick 0 parallel port",0},
{SDL_FALSE,"Joystick 1 parallel port",0}
#endif
};
static const int jp_buttons[JP_NUM_BUTTONS]={
Mar 10, 2002
Mar 10, 2002
150
151
152
153
154
JP_FIRE0, JP_FIRE1, JP_FIRE2, JP_PAUSE,
JP_OPTION, JP_KPMULT, JP_KPNUM, JP_KP0,
JP_KP1, JP_KP2, JP_KP3, JP_KP4,
JP_KP5, JP_KP6, JP_KP7, JP_KP8,
JP_KP9
155
156
157
158
159
160
161
162
163
};
static SDL_bool joypad_ports_enabled=SDL_FALSE;
/* Updated joypad ports */
static Uint16 jp_paddles[4];
static Uint16 jp_lightpens[2];
static Uint16 jp_directions;
static Uint16 jp_fires;
Aug 2, 2006
Aug 2, 2006
164
static Uint32 jp_joypads[8];
165
166
167
168
169
170
171
172
173
174
175
176
/*--- Functions prototypes ---*/
static int GetEnabledAtariJoystick(int index);
static void UpdateJoypads(void);
/*--- Functions ---*/
int SDL_SYS_JoystickInit(void)
{
int i;
unsigned long cookie_mch;
Feb 7, 2006
Feb 7, 2006
177
const char *envr=SDL_getenv("SDL_JOYSTICK_ATARI");
178
179
#define TEST_JOY_ENABLED(env,idstring,num) \
Feb 7, 2006
Feb 7, 2006
180
if (SDL_strstr(env,idstring"-off")) { \
181
182
atarijoysticks[num].enabled=SDL_FALSE; \
} \
Feb 7, 2006
Feb 7, 2006
183
if (SDL_strstr(env,idstring"-on")) { \
184
185
186
187
188
189
190
191
192
193
atarijoysticks[num].enabled=SDL_TRUE; \
}
/* Cookie _MCH present ? if not, assume ST machine */
if (Getcookie(C__MCH, &cookie_mch) != C_FOUND) {
cookie_mch = MCH_ST << 16;
}
/* Enable some default joysticks */
if ((cookie_mch == MCH_ST<<16) || ((cookie_mch>>16) == MCH_STE) ||
May 5, 2005
May 5, 2005
194
195
(cookie_mch == MCH_TT<<16) || (cookie_mch == MCH_F30<<16) ||
(cookie_mch == MCH_ARANYM<<16)) {
Mar 10, 2002
Mar 10, 2002
196
atarijoysticks[IKBD_JOY1].enabled=(SDL_AtariIkbd_enabled!=0);
197
198
}
if ((cookie_mch == MCH_STE<<16) || (cookie_mch == MCH_F30<<16)) {
Aug 2, 2006
Aug 2, 2006
199
200
201
202
203
204
205
206
atarijoysticks[PORTA_PAD0].enabled =
atarijoysticks[PORTA_PAD1].enabled =
atarijoysticks[PORTA_PAD2].enabled =
atarijoysticks[PORTA_PAD3].enabled =
atarijoysticks[PORTB_PAD0].enabled =
atarijoysticks[PORTB_PAD1].enabled =
atarijoysticks[PORTB_PAD2].enabled =
atarijoysticks[PORTB_PAD3].enabled = SDL_TRUE;
Mar 10, 2002
Mar 10, 2002
208
209
210
if (!atarijoysticks[IKBD_JOY1].enabled) {
atarijoysticks[XBIOS_JOY1].enabled=(SDL_AtariXbios_enabled!=0);
}
211
212
213
214
215
/* Read environment for joysticks to enable */
if (envr) {
/* IKBD on any Atari, maybe clones */
if ((cookie_mch == MCH_ST<<16) || ((cookie_mch>>16) == MCH_STE) ||
May 5, 2005
May 5, 2005
216
217
(cookie_mch == MCH_TT<<16) || (cookie_mch == MCH_F30<<16) ||
(cookie_mch == MCH_ARANYM<<16)) {
Mar 10, 2002
Mar 10, 2002
218
219
if (SDL_AtariIkbd_enabled!=0) {
TEST_JOY_ENABLED(envr, "ikbd-joy1", IKBD_JOY1);
220
221
}
}
Nov 5, 2008
Nov 5, 2008
222
223
224
/* Joypads ports on STE, Falcon and maybe others */
if ((cookie_mch == MCH_STE<<16) || (cookie_mch == MCH_F30<<16) ||
(cookie_mch == MCH_ARANYM<<16)) {
Aug 2, 2006
Aug 2, 2006
225
226
TEST_JOY_ENABLED(envr, "porta-pad", PORTA_PAD0);
if (!atarijoysticks[PORTA_PAD0].enabled) {
227
228
229
230
231
232
233
234
235
236
TEST_JOY_ENABLED(envr, "porta-joy0", PORTA_JOY0);
TEST_JOY_ENABLED(envr, "porta-joy1", PORTA_JOY1);
if (!(atarijoysticks[PORTA_JOY0].enabled) && !(atarijoysticks[PORTA_JOY1].enabled)) {
TEST_JOY_ENABLED(envr, "porta-lp", PORTA_LP);
if (!atarijoysticks[PORTA_LP].enabled) {
TEST_JOY_ENABLED(envr, "porta-anpad", PORTA_ANPAD);
}
}
}
Aug 2, 2006
Aug 2, 2006
237
238
TEST_JOY_ENABLED(envr, "portb-pad", PORTB_PAD0);
if (!atarijoysticks[PORTB_PAD0].enabled) {
239
240
241
242
243
244
245
TEST_JOY_ENABLED(envr, "portb-joy0", PORTB_JOY0);
TEST_JOY_ENABLED(envr, "portb-joy1", PORTB_JOY1);
if (!(atarijoysticks[PORTB_JOY0].enabled) && !(atarijoysticks[PORTB_JOY1].enabled)) {
TEST_JOY_ENABLED(envr, "portb-anpad", PORTB_ANPAD);
}
}
}
Mar 10, 2002
Mar 10, 2002
246
247
248
249
250
251
if (!atarijoysticks[IKBD_JOY1].enabled) {
if (SDL_AtariXbios_enabled!=0) {
TEST_JOY_ENABLED(envr, "xbios-joy1", XBIOS_JOY1);
}
}
252
253
254
255
256
257
258
259
260
261
262
263
#if 0
/* Parallel port on any Atari, maybe clones */
if ((cookie_mch == MCH_ST<<16) || ((cookie_mch>>16) == MCH_STE) ||
(cookie_mch == MCH_TT<<16) || (cookie_mch == MCH_F30<<16)) {
TEST_JOY_ENABLED(envr, "para-joy0", PARA_JOY0);
TEST_JOY_ENABLED(envr, "para-joy1", PARA_JOY1);
}
#endif
}
/* Need to update joypad ports ? */
joypad_ports_enabled=SDL_FALSE;
Aug 2, 2006
Aug 2, 2006
264
for (i=PORTA_PAD0;i<=PORTB_ANPAD;i++) {
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
if (atarijoysticks[i].enabled) {
joypad_ports_enabled=SDL_TRUE;
break;
}
}
SDL_numjoysticks = 0;
for (i=0;i<MAX_JOYSTICKS;i++) {
if (atarijoysticks[i].enabled) {
++SDL_numjoysticks;
}
}
return(SDL_numjoysticks);
}
static int GetEnabledAtariJoystick(int index)
{
int i,j;
/* Return the nth'index' enabled atari joystick */
j=0;
for (i=0;i<MAX_JOYSTICKS;i++) {
Mar 10, 2002
Mar 10, 2002
288
289
290
291
292
293
if (!atarijoysticks[i].enabled) {
continue;
}
if (j==index) {
break;
Mar 10, 2002
Mar 10, 2002
295
296
++j;
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
}
if (i==MAX_JOYSTICKS)
return -1;
return i;
}
const char *SDL_SYS_JoystickName(int index)
{
int numjoystick;
numjoystick=GetEnabledAtariJoystick(index);
if (numjoystick==-1)
return NULL;
return(atarijoysticks[numjoystick].name);
}
int SDL_SYS_JoystickOpen(SDL_Joystick *joystick)
{
int numjoystick;
numjoystick=GetEnabledAtariJoystick(joystick->index);
if (numjoystick==-1)
return -1;
Oct 31, 2004
Oct 31, 2004
323
joystick->naxes=0;
324
joystick->nhats=0;
Oct 31, 2004
Oct 31, 2004
325
326
327
joystick->nballs=0;
switch(numjoystick) {
Aug 2, 2006
Aug 2, 2006
328
329
330
331
332
333
334
335
case PORTA_PAD0:
case PORTA_PAD1:
case PORTA_PAD2:
case PORTA_PAD3:
case PORTB_PAD0:
case PORTB_PAD1:
case PORTB_PAD2:
case PORTB_PAD3:
Oct 31, 2004
Oct 31, 2004
336
337
338
339
340
341
342
343
344
345
346
347
348
349
joystick->nhats=1;
joystick->nbuttons=JP_NUM_BUTTONS;
break;
case PORTA_LP:
case PORTA_ANPAD:
case PORTB_ANPAD:
joystick->naxes=2;
joystick->nbuttons=2;
break;
default:
joystick->nhats=1;
joystick->nbuttons=1;
break;
}
350
351
352
353
354
355
356
return(0);
}
void SDL_SYS_JoystickUpdate(SDL_Joystick *joystick)
{
int numjoystick;
Oct 31, 2004
Oct 31, 2004
357
Uint8 hatstate;
358
359
360
361
362
363
364
365
366
367
368
369
370
371
Uint32 curstate,prevstate;
numjoystick=GetEnabledAtariJoystick(joystick->index);
if (numjoystick==-1)
return;
prevstate = atarijoysticks[numjoystick].prevstate;
if (joypad_ports_enabled) {
Supexec(UpdateJoypads);
}
switch (numjoystick) {
case IKBD_JOY1:
Mar 10, 2002
Mar 10, 2002
372
case XBIOS_JOY1:
Mar 10, 2002
Mar 10, 2002
374
375
376
377
378
379
380
381
382
curstate = 0;
if (numjoystick==IKBD_JOY1) {
curstate = SDL_AtariIkbd_joystick & 0xff;
}
if (numjoystick==XBIOS_JOY1) {
curstate = SDL_AtariXbios_joystick & 0xff;
}
383
if (curstate != prevstate) {
Oct 31, 2004
Oct 31, 2004
384
385
386
hatstate = SDL_HAT_CENTERED;
if (curstate & IKBD_JOY_LEFT) {
hatstate |= SDL_HAT_LEFT;
Oct 31, 2004
Oct 31, 2004
388
389
if (curstate & IKBD_JOY_RIGHT) {
hatstate |= SDL_HAT_RIGHT;
Oct 31, 2004
Oct 31, 2004
391
392
393
394
395
396
397
398
if (curstate & IKBD_JOY_UP) {
hatstate |= SDL_HAT_UP;
}
if (curstate & IKBD_JOY_DOWN) {
hatstate |= SDL_HAT_DOWN;
}
SDL_PrivateJoystickHat(joystick, 0, hatstate);
399
400
401
402
403
404
405
406
/* Button */
if ((curstate & IKBD_JOY_FIRE) && !(prevstate & IKBD_JOY_FIRE)) {
SDL_PrivateJoystickButton(joystick,0,SDL_PRESSED);
}
if (!(curstate & IKBD_JOY_FIRE) && (prevstate & IKBD_JOY_FIRE)) {
SDL_PrivateJoystickButton(joystick,0,SDL_RELEASED);
}
}
Mar 10, 2002
Mar 10, 2002
407
atarijoysticks[numjoystick].prevstate = curstate;
408
409
}
break;
Aug 2, 2006
Aug 2, 2006
410
411
412
413
414
415
416
417
case PORTA_PAD0:
case PORTA_PAD1:
case PORTA_PAD2:
case PORTA_PAD3:
case PORTB_PAD0:
case PORTB_PAD1:
case PORTB_PAD2:
case PORTB_PAD3:
418
419
420
{
int numjoypad,i;
Aug 2, 2006
Aug 2, 2006
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
numjoypad = 0;
switch(numjoystick) {
case PORTA_PAD0:
numjoypad = 0; break;
case PORTA_PAD1:
numjoypad = 1; break;
case PORTA_PAD2:
numjoypad = 2; break;
case PORTA_PAD3:
numjoypad = 3; break;
case PORTB_PAD0:
numjoypad = 4; break;
case PORTB_PAD1:
numjoypad = 5; break;
case PORTB_PAD2:
numjoypad = 6; break;
case PORTB_PAD3:
numjoypad = 7; break;
}
Nov 5, 2008
Nov 5, 2008
441
curstate=jp_joypads[numjoypad] & 0xabffff;
442
if (curstate!=prevstate) {
Oct 31, 2004
Oct 31, 2004
443
444
445
446
447
448
449
450
451
hatstate = SDL_HAT_CENTERED;
if (curstate & (1<<JP_LEFT)) {
hatstate |= SDL_HAT_LEFT;
}
if (curstate & (1<<JP_RIGHT)) {
hatstate |= SDL_HAT_RIGHT;
}
if (curstate & (1<<JP_UP)) {
hatstate |= SDL_HAT_UP;
Oct 31, 2004
Oct 31, 2004
453
454
if (curstate & (1<<JP_DOWN)) {
hatstate |= SDL_HAT_DOWN;
Oct 31, 2004
Oct 31, 2004
456
457
SDL_PrivateJoystickHat(joystick, 0, hatstate);
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
/* Buttons */
for (i=0;i<JP_NUM_BUTTONS;i++) {
int button;
button=1<<jp_buttons[i];
if ((curstate & button) && !(prevstate & button)) {
SDL_PrivateJoystickButton(joystick,i,SDL_PRESSED);
}
if (!(curstate & button) && (prevstate & button)) {
SDL_PrivateJoystickButton(joystick,i,SDL_RELEASED);
}
}
}
atarijoysticks[numjoystick].prevstate = curstate;
}
break;
case PORTA_JOY0:
case PORTA_JOY1:
case PORTB_JOY0:
case PORTB_JOY1:
{
int fire_shift=0,dir_shift=0;
if (numjoystick==PORTA_JOY0) { fire_shift=0; dir_shift=0; }
if (numjoystick==PORTA_JOY1) { fire_shift=1; dir_shift=4; }
if (numjoystick==PORTB_JOY0) { fire_shift=2; dir_shift=8; }
if (numjoystick==PORTB_JOY1) { fire_shift=3; dir_shift=12; }
curstate = (jp_directions>>dir_shift) & 15;
curstate |= ((jp_fires>>fire_shift) & 1)<<4;
if (curstate != prevstate) {
Oct 31, 2004
Oct 31, 2004
491
492
493
494
495
496
hatstate = SDL_HAT_CENTERED;
if (curstate & PORT_JS_LEFT) {
hatstate |= SDL_HAT_LEFT;
}
if (curstate & PORT_JS_RIGHT) {
hatstate |= SDL_HAT_RIGHT;
Oct 31, 2004
Oct 31, 2004
498
499
if (curstate & PORT_JS_UP) {
hatstate |= SDL_HAT_UP;
Oct 31, 2004
Oct 31, 2004
501
502
503
504
505
if (curstate & PORT_JS_DOWN) {
hatstate |= SDL_HAT_DOWN;
}
SDL_PrivateJoystickHat(joystick, 0, hatstate);
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
/* Button */
if ((curstate & PORT_JS_FIRE) && !(prevstate & PORT_JS_FIRE)) {
SDL_PrivateJoystickButton(joystick,0,SDL_PRESSED);
}
if (!(curstate & PORT_JS_FIRE) && (prevstate & PORT_JS_FIRE)) {
SDL_PrivateJoystickButton(joystick,0,SDL_RELEASED);
}
}
atarijoysticks[numjoystick].prevstate = curstate;
}
break;
case PORTA_LP:
{
int i;
curstate = jp_lightpens[0]>>1;
curstate |= (jp_lightpens[1]>>1)<<15;
curstate |= (jp_fires & 3)<<30;
if (curstate != prevstate) {
/* X axis */
Oct 5, 2002
Oct 5, 2002
527
SDL_PrivateJoystickAxis(joystick,0,jp_lightpens[0] ^ 0x8000);
528
/* Y axis */
Oct 5, 2002
Oct 5, 2002
529
SDL_PrivateJoystickAxis(joystick,1,jp_lightpens[1] ^ 0x8000);
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
/* Buttons */
for (i=0;i<2;i++) {
int button;
button=1<<(30+i);
if ((curstate & button) && !(prevstate & button)) {
SDL_PrivateJoystickButton(joystick,i,SDL_PRESSED);
}
if (!(curstate & button) && (prevstate & button)) {
SDL_PrivateJoystickButton(joystick,i,SDL_RELEASED);
}
}
}
atarijoysticks[numjoystick].prevstate = curstate;
}
break;
case PORTA_ANPAD:
case PORTB_ANPAD:
{
int numpaddle, i;
numpaddle=0<<1;
if (numjoystick==PORTB_ANPAD) numpaddle=1<<1;
curstate = jp_paddles[numpaddle]>>1;
curstate |= (jp_paddles[numpaddle+1]>>1)<<15;
curstate |= ((jp_fires>>numpaddle) & 3)<<30;
if (curstate != prevstate) {
/* X axis */
Oct 5, 2002
Oct 5, 2002
561
SDL_PrivateJoystickAxis(joystick,0,jp_paddles[numpaddle] ^ 0x8000);
562
/* Y axis */
Oct 5, 2002
Oct 5, 2002
563
SDL_PrivateJoystickAxis(joystick,1,jp_paddles[numpaddle+1] ^ 0x8000);
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
/* Buttons */
for (i=0;i<2;i++) {
int button;
button=1<<(30+i);
if ((curstate & button) && !(prevstate & button)) {
SDL_PrivateJoystickButton(joystick,i,SDL_PRESSED);
}
if (!(curstate & button) && (prevstate & button)) {
SDL_PrivateJoystickButton(joystick,i,SDL_RELEASED);
}
}
}
atarijoysticks[numjoystick].prevstate = curstate;
}
break;
#if 0
case PARA_JOY0:
case PARA_JOY1:
break;
#endif
};
return;
}
void SDL_SYS_JoystickClose(SDL_Joystick *joystick)
{
return;
}
void SDL_SYS_JoystickQuit(void)
{
SDL_numjoysticks=0;
return;
}
/*--- Joypad I/O read/write interface ---*/
#define JOYPAD_IO_BASE (0xffff9200)
struct JOYPAD_IO_S {
Uint16 fires;
Uint16 directions;
Uint16 dummy1[6];
Uint16 paddles[4];
Uint16 dummy2[4];
Uint16 lightpens[2];
};
#define JOYPAD_IO ((*(volatile struct JOYPAD_IO_S *)JOYPAD_IO_BASE))
Aug 2, 2006
Aug 2, 2006
615
616
617
618
619
620
621
622
623
624
625
static const Uint16 joypad_masks[8*4]={
0xfffe, 0xfffd, 0xfffb, 0xfff7,
0xfff0, 0xfff1, 0xfff2, 0xfff3,
0xfff4, 0xfff5, 0xfff6, 0xfff8,
0xfff9, 0xfffa, 0xfffc, 0xffff,
0xffef, 0xffdf, 0xffbf, 0xff7f,
0xff0f, 0xff1f, 0xff2f, 0xff3f,
0xff4f, 0xff5f, 0xff6f, 0xff8f,
0xff9f, 0xffaf, 0xffcf, 0xffff
};
626
627
static void UpdateJoypads(void)
{
Aug 2, 2006
Aug 2, 2006
628
629
Uint16 tmp, i, j;
Uint32 cur_fire, cur_dir;
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
/*--- This function is called in supervisor mode ---*/
/* Update joysticks */
jp_fires = (~(JOYPAD_IO.fires)) & 15;
jp_directions = (~(JOYPAD_IO.directions));
/* Update lightpen */
tmp = JOYPAD_IO.lightpens[0] & 1023;
jp_lightpens[0] = (tmp<<6) | (tmp>>4);
tmp = JOYPAD_IO.lightpens[1] & 1023;
jp_lightpens[1] = (tmp<<6) | (tmp>>4);
/* Update paddles */
tmp = (JOYPAD_IO.paddles[0] & 255);
jp_paddles[0] = (tmp<<8) | tmp;
tmp = (JOYPAD_IO.paddles[1] & 255);
jp_paddles[1] = (tmp<<8) | tmp;
tmp = (JOYPAD_IO.paddles[2] & 255);
jp_paddles[2] = (tmp<<8) | tmp;
tmp = (JOYPAD_IO.paddles[3] & 255);
jp_paddles[3] = (tmp<<8) | tmp;
Aug 2, 2006
Aug 2, 2006
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
/* Update joypads on teamtap port A */
for (i=0; i<4; i++) {
jp_joypads[i] = 0;
for (j=0; j<4; j++) {
JOYPAD_IO.directions = joypad_masks[(i*4)+j];
cur_fire = (~(JOYPAD_IO.fires) & 3)<<16;
cur_dir = (~(JOYPAD_IO.directions)>>8) & 15;
jp_joypads[i] |= cur_fire<<(j*2);
jp_joypads[i] |= cur_dir<<(j*4);
}
}
/* Update joypads on teamtap port B */
for (i=4; i<8; i++) {
jp_joypads[i] = 0;
for (j=0; j<4; j++) {
JOYPAD_IO.directions = joypad_masks[(i*4)+j];
cur_fire = (~(JOYPAD_IO.fires) & 0xc)<<14;
cur_dir = (~(JOYPAD_IO.directions)>>12) & 15;
jp_joypads[i] |= cur_fire<<(j*2);
jp_joypads[i] |= cur_dir<<(j*4);
}
}
JOYPAD_IO.directions=0xffff;
Apr 14, 2006
Apr 14, 2006
683
684
#endif /* SDL_JOYSTICK_MINT */