Skip to content

Latest commit

 

History

History
535 lines (476 loc) · 13 KB

SDL_amigaevents.c

File metadata and controls

535 lines (476 loc) · 13 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
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
Apr 26, 2001
Apr 26, 2001
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.
Apr 26, 2001
Apr 26, 2001
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.
Apr 26, 2001
Apr 26, 2001
14
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
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
/* Handle the event stream, converting Amiga events into SDL events */
#include "SDL.h"
#include "SDL_syswm.h"
Feb 16, 2006
Feb 16, 2006
28
29
30
#include "../SDL_sysvideo.h"
#include "../../events/SDL_sysevents.h"
#include "../../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
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
#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
147
case IDCMP_ACTIVEWINDOW:
Apr 26, 2001
Apr 26, 2001
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
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
165
case IDCMP_MOUSEMOVE:
Apr 26, 2001
Apr 26, 2001
166
167
168
169
170
171
172
173
174
175
176
177
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
178
posted = SDL_PrivateMouseButton(SDL_PRESSED,
Apr 26, 2001
Apr 26, 2001
179
180
181
182
183
184
amiga_GetButton(code), 0, 0);
}
/* Mouse button release? */
else
{
code&=~IECODE_UP_PREFIX;
Dec 16, 2001
Dec 16, 2001
185
posted = SDL_PrivateMouseButton(SDL_RELEASED,
Apr 26, 2001
Apr 26, 2001
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
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
210
posted = SDL_PrivateKeyboard(SDL_RELEASED,
Apr 26, 2001
Apr 26, 2001
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
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
234
(SDL_VideoSurface->flags & SDL_FULLSCREEN) )
Apr 26, 2001
Apr 26, 2001
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
{
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
253
case IDCMP_NEWSIZE:
May 10, 2001
May 10, 2001
254
255
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
256
Apr 26, 2001
Apr 26, 2001
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
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 */
Feb 19, 2006
Feb 19, 2006
305
for ( i=0; i<SDL_arraysize(MISC_keymap); ++i )
Apr 26, 2001
Apr 26, 2001
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
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
428
429
430
#ifdef STORMC4_WOS
static struct Library *KeymapBase=NULL; /* Linking failed in WOS version if ConsoleDevice was used */
#else
Apr 26, 2001
Apr 26, 2001
431
static struct Library *ConsoleDevice=NULL;
Dec 16, 2001
Dec 16, 2001
432
#endif
Apr 26, 2001
Apr 26, 2001
433
434
435
436
437
438
439
440
441
/* 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
442
if ( keysym->sym==SDLK_UNKNOWN )
Apr 26, 2001
Apr 26, 2001
443
{
Dec 16, 2001
Dec 16, 2001
444
445
446
#ifdef STORMC4_WOS
if(!KeymapBase)
#else
Apr 26, 2001
Apr 26, 2001
447
if(!ConsoleDevice)
Dec 16, 2001
Dec 16, 2001
448
#endif
Apr 26, 2001
Apr 26, 2001
449
{
Dec 16, 2001
Dec 16, 2001
450
451
452
#ifdef STORMC4_WOS
KeymapBase=OpenLibrary("keymap.library", 0L);
#else
Apr 26, 2001
Apr 26, 2001
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
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
471
#endif
Apr 26, 2001
Apr 26, 2001
472
473
}
Dec 16, 2001
Dec 16, 2001
474
475
476
#ifdef STORMC4_WOS
if(KeymapBase)
#else
Apr 26, 2001
Apr 26, 2001
477
if(ConsoleDevice)
Dec 16, 2001
Dec 16, 2001
478
#endif
Apr 26, 2001
Apr 26, 2001
479
480
481
482
483
484
485
486
487
488
489
490
491
492
{
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
493
494
495
#ifdef STORMC4_WOS
if( (actual=MapRawKey(&event,buffer,5,NULL))>=0)
#else
Apr 26, 2001
Apr 26, 2001
496
if( (actual=RawKeyConvert(&event,buffer,5,NULL))>=0)
Dec 16, 2001
Dec 16, 2001
497
#endif
Apr 26, 2001
Apr 26, 2001
498
499
500
501
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
{
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();
}