2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2006 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "SDL_config.h"
25 * Atari keyboard events manager, using Gemdos
31 #include <mint/osbind.h>
32 #include <mint/cookie.h>
34 #include "../../events/SDL_sysevents.h"
35 #include "../../events/SDL_events_c.h"
37 #include "SDL_atarikeys.h"
38 #include "SDL_atarievents_c.h"
39 #include "SDL_xbiosevents_c.h"
40 #include "SDL_ataridevmouse_c.h"
42 /* To save state of keyboard */
44 static unsigned char gemdos_currentkeyboard[ATARIBIOS_MAXKEYS];
45 static unsigned char gemdos_previouskeyboard[ATARIBIOS_MAXKEYS];
46 static SDL_bool use_dev_mouse = SDL_FALSE;
53 static void UpdateSpecialKeys(int special_keys_state);
56 AtariGemdos_InitOSKeymap(_THIS)
61 SDL_memset(gemdos_currentkeyboard, 0, sizeof(gemdos_currentkeyboard));
62 SDL_memset(gemdos_previouskeyboard, 0, sizeof(gemdos_previouskeyboard));
64 use_dev_mouse = (SDL_AtariDevMouse_Open() != 0) ? SDL_TRUE : SDL_FALSE;
66 vectors_mask = ATARI_XBIOS_JOYSTICKEVENTS; /* XBIOS joystick events */
68 vectors_mask |= ATARI_XBIOS_MOUSEEVENTS; /* XBIOS mouse events */
70 /*if (Getcookie(C_MiNT, &dummy) == C_FOUND) {
74 SDL_AtariXbios_InstallVectors(vectors_mask);
78 AtariGemdos_PumpEvents(_THIS)
83 /* Update pressed keys */
84 SDL_memset(gemdos_currentkeyboard, 0, ATARIBIOS_MAXKEYS);
86 while (Cconis() != DEV_BUSY) {
87 unsigned long key_pressed;
89 gemdos_currentkeyboard[(key_pressed>>16)&(ATARIBIOS_MAXKEYS-1)]=0xFF;
92 /* Read special keys */
93 UpdateSpecialKeys(Kbshift(-1));
95 /* Now generate events */
96 for (i = 0; i < ATARIBIOS_MAXKEYS; i++) {
98 if (gemdos_currentkeyboard[i] && !gemdos_previouskeyboard[i])
99 SDL_PrivateKeyboard(SDL_PRESSED,
100 SDL_Atari_TranslateKey(i, &keysym, SDL_TRUE));
102 /* Key unpressed ? */
103 if (gemdos_previouskeyboard[i] && !gemdos_currentkeyboard[i])
104 SDL_PrivateKeyboard(SDL_RELEASED,
105 SDL_Atari_TranslateKey(i, &keysym, SDL_FALSE));
109 SDL_AtariDevMouse_PostMouseEvents(this, SDL_TRUE);
111 SDL_AtariXbios_PostMouseEvents(this, SDL_TRUE);
114 /* Will be previous table */
115 SDL_memcpy(gemdos_previouskeyboard, gemdos_currentkeyboard,
116 sizeof(gemdos_previouskeyboard));
120 UpdateSpecialKeys(int special_keys_state)
122 #define UPDATE_SPECIAL_KEYS(numbit,scancode) \
124 if (special_keys_state & (1<<(numbit))) { \
125 gemdos_currentkeyboard[scancode]=0xFF; \
126 gemdos_currentascii[scancode]=0; \
130 UPDATE_SPECIAL_KEYS(K_RSHIFT, SCANCODE_RIGHTSHIFT);
131 UPDATE_SPECIAL_KEYS(K_LSHIFT, SCANCODE_LEFTSHIFT);
132 UPDATE_SPECIAL_KEYS(K_CTRL, SCANCODE_LEFTCONTROL);
133 UPDATE_SPECIAL_KEYS(K_ALT, SCANCODE_LEFTALT);
134 UPDATE_SPECIAL_KEYS(K_CAPSLOCK, SCANCODE_CAPSLOCK);
138 AtariGemdos_ShutdownEvents(void)
140 SDL_AtariXbios_RestoreVectors();
142 SDL_AtariDevMouse_Close();
146 /* vi: set ts=4 sw=4 expandtab: */