Skip to content

Latest commit

 

History

History
539 lines (479 loc) · 13 KB

SDL_amigaevents.c

File metadata and controls

539 lines (479 loc) · 13 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
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
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
/* Handle the event stream, converting Amiga events into SDL events */
#include "SDL.h"
#include "SDL_syswm.h"
#include "SDL_sysevents.h"
#include "SDL_sysvideo.h"
#include "SDL_events_c.h"
#include "SDL_cgxvideo.h"
#include "SDL_cgxmodes_c.h"
#include "SDL_cgximage_c.h"
#include "SDL_cgxwm_c.h"
#include "SDL_amigaevents_c.h"
/* The translation tables from an Amiga keysym to a SDL keysym */
static SDLKey MISC_keymap[256];
SDL_keysym *amiga_TranslateKey(int code, SDL_keysym *keysym);
struct IOStdReq *ConReq=NULL;
struct MsgPort *ConPort=NULL;
/* Note: The X server buffers and accumulates mouse motion events, so
the motion event generated by the warp may not appear exactly as we
expect it to. We work around this (and improve performance) by only
warping the pointer when it reaches the edge, and then wait for it.
*/
#define MOUSE_FUDGE_FACTOR 8
#if 0
static inline int amiga_WarpedMotion(_THIS, struct IntuiMessage *m)
{
int w, h, i;
int deltax, deltay;
int posted;
w = SDL_VideoSurface->w;
h = SDL_VideoSurface->h;
deltax = xevent->xmotion.x - mouse_last.x;
deltay = xevent->xmotion.y - mouse_last.y;
#ifdef DEBUG_MOTION
printf("Warped mouse motion: %d,%d\n", deltax, deltay);
#endif
mouse_last.x = xevent->xmotion.x;
mouse_last.y = xevent->xmotion.y;
posted = SDL_PrivateMouseMotion(0, 1, deltax, deltay);
if ( (xevent->xmotion.x < MOUSE_FUDGE_FACTOR) ||
(xevent->xmotion.x > (w-MOUSE_FUDGE_FACTOR)) ||
(xevent->xmotion.y < MOUSE_FUDGE_FACTOR) ||
(xevent->xmotion.y > (h-MOUSE_FUDGE_FACTOR)) ) {
/* Get the events that have accumulated */
while ( XCheckTypedEvent(SDL_Display, MotionNotify, xevent) ) {
deltax = xevent->xmotion.x - mouse_last.x;
deltay = xevent->xmotion.y - mouse_last.y;
#ifdef DEBUG_MOTION
printf("Extra mouse motion: %d,%d\n", deltax, deltay);
#endif
mouse_last.x = xevent->xmotion.x;
mouse_last.y = xevent->xmotion.y;
posted += SDL_PrivateMouseMotion(0, 1, deltax, deltay);
}
mouse_last.x = w/2;
mouse_last.y = h/2;
XWarpPointer(SDL_Display, None, SDL_Window, 0, 0, 0, 0,
mouse_last.x, mouse_last.y);
for ( i=0; i<10; ++i ) {
XMaskEvent(SDL_Display, PointerMotionMask, xevent);
if ( (xevent->xmotion.x >
(mouse_last.x-MOUSE_FUDGE_FACTOR)) &&
(xevent->xmotion.x <
(mouse_last.x+MOUSE_FUDGE_FACTOR)) &&
(xevent->xmotion.y >
(mouse_last.y-MOUSE_FUDGE_FACTOR)) &&
(xevent->xmotion.y <
(mouse_last.y+MOUSE_FUDGE_FACTOR)) ) {
break;
}
#ifdef DEBUG_XEVENTS
printf("Lost mouse motion: %d,%d\n", xevent->xmotion.x, xevent->xmotion.y);
#endif
}
#ifdef DEBUG_XEVENTS
if ( i == 10 ) {
printf("Warning: didn't detect mouse warp motion\n");
}
#endif
}
return(posted);
}
#endif
static int amiga_GetButton(int code)
{
switch(code)
{
case IECODE_MBUTTON:
return SDL_BUTTON_MIDDLE;
case IECODE_RBUTTON:
return SDL_BUTTON_RIGHT;
default:
return SDL_BUTTON_LEFT;
}
}
static int amiga_DispatchEvent(_THIS,struct IntuiMessage *msg)
{
int class=msg->Class,code=msg->Code;
int posted;
posted = 0;
switch (class) {
/* Gaining mouse coverage? */
case IDCMP_ACTIVEWINDOW:
posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
break;
/* Losing mouse coverage? */
case IDCMP_INACTIVEWINDOW:
posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
break;
#if 0
/* Gaining input focus? */
Dec 16, 2001
Dec 16, 2001
151
case IDCMP_ACTIVEWINDOW:
Apr 26, 2001
Apr 26, 2001
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
posted = SDL_PrivateAppActive(1, SDL_APPINPUTFOCUS);
/* Queue entry into fullscreen mode */
switch_waiting = 0x01 | SDL_FULLSCREEN;
switch_time = SDL_GetTicks() + 1500;
break;
/* Losing input focus? */
case IDCMP_INACTIVEWINDOW:
posted = SDL_PrivateAppActive(0, SDL_APPINPUTFOCUS);
/* Queue leaving fullscreen mode */
switch_waiting = 0x01;
switch_time = SDL_GetTicks() + 200;
break;
#endif
/* Mouse motion? */
Dec 16, 2001
Dec 16, 2001
169
case IDCMP_MOUSEMOVE:
Apr 26, 2001
Apr 26, 2001
170
171
172
173
174
175
176
177
178
179
180
181
if ( SDL_VideoSurface ) {
posted = SDL_PrivateMouseMotion(0, 0,
msg->MouseX-SDL_Window->BorderLeft,
msg->MouseY-SDL_Window->BorderTop);
}
break;
/* Mouse button press? */
case IDCMP_MOUSEBUTTONS:
if(!(code&IECODE_UP_PREFIX))
{
Dec 16, 2001
Dec 16, 2001
182
posted = SDL_PrivateMouseButton(SDL_PRESSED,
Apr 26, 2001
Apr 26, 2001
183
184
185
186
187
188
amiga_GetButton(code), 0, 0);
}
/* Mouse button release? */
else
{
code&=~IECODE_UP_PREFIX;
Dec 16, 2001
Dec 16, 2001
189
posted = SDL_PrivateMouseButton(SDL_RELEASED,
Apr 26, 2001
Apr 26, 2001
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
amiga_GetButton(code), 0, 0);
}
break;
case IDCMP_RAWKEY:
/* Key press? */
if( !(code&IECODE_UP_PREFIX) )
{
SDL_keysym keysym;
posted = SDL_PrivateKeyboard(SDL_PRESSED,
amiga_TranslateKey(code, &keysym));
}
else
{
/* Key release? */
SDL_keysym keysym;
code&=~IECODE_UP_PREFIX;
/* Check to see if this is a repeated key */
/* if ( ! X11_KeyRepeat(SDL_Display, &xevent) ) */
Dec 16, 2001
Dec 16, 2001
214
posted = SDL_PrivateKeyboard(SDL_RELEASED,
Apr 26, 2001
Apr 26, 2001
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
amiga_TranslateKey(code, &keysym));
}
break;
/* Have we been iconified? */
#if 0
case UnmapNotify: {
#ifdef DEBUG_XEVENTS
printf("UnmapNotify!\n");
#endif
posted=SDL_PrivateAppActive(0, SDL_APPACTIVE|SDL_APPINPUTFOCUS);
}
break;
/* Have we been restored? */
case MapNotify: {
#ifdef DEBUG_XEVENTS
printf("MapNotify!\n");
#endif
posted = SDL_PrivateAppActive(1, SDL_APPACTIVE);
if ( SDL_VideoSurface &&
Dec 16, 2001
Dec 16, 2001
238
(SDL_VideoSurface->flags & SDL_FULLSCREEN) )
Apr 26, 2001
Apr 26, 2001
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
{
CGX_EnterFullScreen(this);
} else {
X11_GrabInputNoLock(this, this->input_grab);
}
if ( SDL_VideoSurface ) {
CGX_RefreshDisplay(this);
}
}
break;
case Expose:
if ( SDL_VideoSurface && (xevent.xexpose.count == 0) ) {
CGX_RefreshDisplay(this);
}
break;
#endif
/* Have we been resized? */
Dec 16, 2001
Dec 16, 2001
257
case IDCMP_NEWSIZE:
May 10, 2001
May 10, 2001
258
259
SDL_PrivateResize(SDL_Window->Width-SDL_Window->BorderLeft-SDL_Window->BorderRight,
SDL_Window->Height-SDL_Window->BorderTop-SDL_Window->BorderBottom);
Dec 16, 2001
Dec 16, 2001
260
Apr 26, 2001
Apr 26, 2001
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
break;
/* Have we been requested to quit? */
case IDCMP_CLOSEWINDOW:
posted = SDL_PrivateQuit();
break;
/* Do we need to refresh ourselves? */
default: {
/* Only post the event if we're watching for it */
if ( SDL_ProcessEvents[SDL_SYSWMEVENT] == SDL_ENABLE ) {
SDL_SysWMmsg wmmsg;
SDL_VERSION(&wmmsg.version);
#if 0
wmmsg.subsystem = SDL_SYSWM_CGX;
wmmsg.event.xevent = xevent;
#endif
posted = SDL_PrivateSysWMEvent(&wmmsg);
}
}
break;
}
ReplyMsg((struct Message *)msg);
return(posted);
}
void amiga_PumpEvents(_THIS)
{
int pending;
struct IntuiMessage *m;
/* Keep processing pending events */
pending = 0;
while ( m=(struct IntuiMessage *)GetMsg(SDL_Window->UserPort) ) {
amiga_DispatchEvent(this,m);
++pending;
}
}
void amiga_InitKeymap(void)
{
int i;
/* Map the miscellaneous keys */
for ( i=0; i<SDL_TABLESIZE(MISC_keymap); ++i )
MISC_keymap[i] = SDLK_UNKNOWN;
/* These X keysyms have 0xFF as the high byte */
MISC_keymap[65] = SDLK_BACKSPACE;
MISC_keymap[66] = SDLK_TAB;
MISC_keymap[70] = SDLK_CLEAR;
MISC_keymap[70] = SDLK_DELETE;
MISC_keymap[68] = SDLK_RETURN;
// MISC_keymap[XK_Pause&0xFF] = SDLK_PAUSE;
MISC_keymap[69] = SDLK_ESCAPE;
MISC_keymap[70] = SDLK_DELETE;
/*
SDLK_SPACE = 32,
SDLK_MINUS = 45,
SDLK_LESS = 60,
SDLK_COMMA = 44,
SDLK_PERIOD = 46,
SDLK_0 = 48,
SDLK_1 = 49,
SDLK_2 = 50,
SDLK_3 = 51,
SDLK_4 = 52,
SDLK_5 = 53,
SDLK_6 = 54,
SDLK_7 = 55,
SDLK_8 = 56,
SDLK_9 = 57,
SDLK_BACKQUOTE = 96,
SDLK_BACKSLASH = 92,
SDLK_a = 97,
SDLK_b = 98,
SDLK_c = 99,
SDLK_d = 100,
SDLK_e = 101,
SDLK_f = 102,
SDLK_g = 103,
SDLK_h = 104,
SDLK_i = 105,
SDLK_j = 106,
SDLK_k = 107,
SDLK_l = 108,
SDLK_m = 109,
SDLK_n = 110,
SDLK_o = 111,
SDLK_p = 112,
SDLK_q = 113,
SDLK_r = 114,
SDLK_s = 115,
SDLK_t = 116,
SDLK_u = 117,
SDLK_v = 118,
SDLK_w = 119,
SDLK_x = 120,
SDLK_y = 121,
SDLK_z = 122,
*/
MISC_keymap[15] = SDLK_KP0; /* Keypad 0-9 */
MISC_keymap[29] = SDLK_KP1;
MISC_keymap[30] = SDLK_KP2;
MISC_keymap[31] = SDLK_KP3;
MISC_keymap[45] = SDLK_KP4;
MISC_keymap[46] = SDLK_KP5;
MISC_keymap[47] = SDLK_KP6;
MISC_keymap[61] = SDLK_KP7;
MISC_keymap[62] = SDLK_KP8;
MISC_keymap[63] = SDLK_KP9;
MISC_keymap[60] = SDLK_KP_PERIOD;
MISC_keymap[92] = SDLK_KP_DIVIDE;
MISC_keymap[93] = SDLK_KP_MULTIPLY;
MISC_keymap[74] = SDLK_KP_MINUS;
MISC_keymap[94] = SDLK_KP_PLUS;
MISC_keymap[67] = SDLK_KP_ENTER;
// MISC_keymap[XK_KP_Equal&0xFF] = SDLK_KP_EQUALS;
MISC_keymap[76] = SDLK_UP;
MISC_keymap[77] = SDLK_DOWN;
MISC_keymap[78] = SDLK_RIGHT;
MISC_keymap[79] = SDLK_LEFT;
/*
MISC_keymap[XK_Insert&0xFF] = SDLK_INSERT;
MISC_keymap[XK_Home&0xFF] = SDLK_HOME;
MISC_keymap[XK_End&0xFF] = SDLK_END;
*/
// Mappati sulle parentesi del taastierino
MISC_keymap[90] = SDLK_PAGEUP;
MISC_keymap[91] = SDLK_PAGEDOWN;
MISC_keymap[80] = SDLK_F1;
MISC_keymap[81] = SDLK_F2;
MISC_keymap[82] = SDLK_F3;
MISC_keymap[83] = SDLK_F4;
MISC_keymap[84] = SDLK_F5;
MISC_keymap[85] = SDLK_F6;
MISC_keymap[86] = SDLK_F7;
MISC_keymap[87] = SDLK_F8;
MISC_keymap[88] = SDLK_F9;
MISC_keymap[89] = SDLK_F10;
// MISC_keymap[XK_F11&0xFF] = SDLK_F11;
// MISC_keymap[XK_F12&0xFF] = SDLK_F12;
// MISC_keymap[XK_F13&0xFF] = SDLK_F13;
// MISC_keymap[XK_F14&0xFF] = SDLK_F14;
// MISC_keymap[XK_F15&0xFF] = SDLK_F15;
// MISC_keymap[XK_Num_Lock&0xFF] = SDLK_NUMLOCK;
MISC_keymap[98] = SDLK_CAPSLOCK;
// MISC_keymap[XK_Scroll_Lock&0xFF] = SDLK_SCROLLOCK;
MISC_keymap[97] = SDLK_RSHIFT;
MISC_keymap[96] = SDLK_LSHIFT;
MISC_keymap[99] = SDLK_LCTRL;
MISC_keymap[99] = SDLK_LCTRL;
MISC_keymap[101] = SDLK_RALT;
MISC_keymap[100] = SDLK_LALT;
// MISC_keymap[XK_Meta_R&0xFF] = SDLK_RMETA;
// MISC_keymap[XK_Meta_L&0xFF] = SDLK_LMETA;
MISC_keymap[103] = SDLK_LSUPER; /* Left "Windows" */
MISC_keymap[102] = SDLK_RSUPER; /* Right "Windows */
MISC_keymap[95] = SDLK_HELP;
}
SDL_keysym *amiga_TranslateKey(int code, SDL_keysym *keysym)
{
Dec 16, 2001
Dec 16, 2001
432
433
434
#ifdef STORMC4_WOS
static struct Library *KeymapBase=NULL; /* Linking failed in WOS version if ConsoleDevice was used */
#else
Apr 26, 2001
Apr 26, 2001
435
static struct Library *ConsoleDevice=NULL;
Dec 16, 2001
Dec 16, 2001
436
#endif
Apr 26, 2001
Apr 26, 2001
437
438
439
440
441
442
443
444
445
/* Get the raw keyboard scancode */
keysym->scancode = code;
keysym->sym = MISC_keymap[code];
#ifdef DEBUG_KEYS
fprintf(stderr, "Translating key 0x%.4x (%d)\n", xsym, xkey->keycode);
#endif
/* Get the translated SDL virtual keysym */
Dec 16, 2001
Dec 16, 2001
446
if ( keysym->sym==SDLK_UNKNOWN )
Apr 26, 2001
Apr 26, 2001
447
{
Dec 16, 2001
Dec 16, 2001
448
449
450
#ifdef STORMC4_WOS
if(!KeymapBase)
#else
Apr 26, 2001
Apr 26, 2001
451
if(!ConsoleDevice)
Dec 16, 2001
Dec 16, 2001
452
#endif
Apr 26, 2001
Apr 26, 2001
453
{
Dec 16, 2001
Dec 16, 2001
454
455
456
#ifdef STORMC4_WOS
KeymapBase=OpenLibrary("keymap.library", 0L);
#else
Apr 26, 2001
Apr 26, 2001
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
if(ConPort=CreateMsgPort())
{
if(ConReq=CreateIORequest(ConPort,sizeof(struct IOStdReq)))
{
if(!OpenDevice("console.device",-1,(struct IORequest *)ConReq,0))
ConsoleDevice=(struct Library *)ConReq->io_Device;
else
{
DeleteIORequest(ConReq);
ConReq=NULL;
}
}
else
{
DeleteMsgPort(ConPort);
ConPort=NULL;
}
}
Dec 16, 2001
Dec 16, 2001
475
#endif
Apr 26, 2001
Apr 26, 2001
476
477
}
Dec 16, 2001
Dec 16, 2001
478
479
480
#ifdef STORMC4_WOS
if(KeymapBase)
#else
Apr 26, 2001
Apr 26, 2001
481
if(ConsoleDevice)
Dec 16, 2001
Dec 16, 2001
482
#endif
Apr 26, 2001
Apr 26, 2001
483
484
485
486
487
488
489
490
491
492
493
494
495
496
{
struct InputEvent event;
long actual;
char buffer[5];
event.ie_Qualifier=0;
event.ie_Class=IECLASS_RAWKEY;
event.ie_SubClass=0L;
event.ie_Code=code;
event.ie_X=event.ie_Y=0;
event.ie_EventAddress=NULL;
event.ie_NextEvent=NULL;
event.ie_Prev1DownCode=event.ie_Prev1DownQual=event.ie_Prev2DownCode=event.ie_Prev2DownQual=0;
Dec 16, 2001
Dec 16, 2001
497
498
499
#ifdef STORMC4_WOS
if( (actual=MapRawKey(&event,buffer,5,NULL))>=0)
#else
Apr 26, 2001
Apr 26, 2001
500
if( (actual=RawKeyConvert(&event,buffer,5,NULL))>=0)
Dec 16, 2001
Dec 16, 2001
501
#endif
Apr 26, 2001
Apr 26, 2001
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
{
if(actual>1)
{
D(bug("Warning (%ld) character conversion!\n",actual));
}
else if(actual==1)
{
keysym->sym=*buffer;
D(bug("Converted rawcode %ld to <%lc>\n",code,*buffer));
// Bufferizzo x le successive chiamate!
MISC_keymap[code]=*buffer;
}
}
}
}
keysym->mod = KMOD_NONE;
/* If UNICODE is on, get the UNICODE value for the key */
keysym->unicode = 0;
if ( SDL_TranslateUNICODE ) {
#if 0
static XComposeStatus state;
/* Until we handle the IM protocol, use XLookupString() */
unsigned char keybuf[32];
if ( XLookupString(xkey, (char *)keybuf, sizeof(keybuf),
NULL, &state) ) {
keysym->unicode = keybuf[0];
}
#endif
}
return(keysym);
}
void amiga_InitOSKeymap(_THIS)
{
amiga_InitKeymap();
}