Disable XBIOS driver for mouse and joystick under MiNT. Will write a driver for /dev/mouse later.
2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2004 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with this library; if not, write to the Free
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 * Atari keyboard events manager, using BIOS
37 #include <mint/osbind.h>
38 #include <mint/cookie.h>
41 #include "SDL_sysevents.h"
42 #include "SDL_events_c.h"
44 #include "SDL_atarikeys.h"
45 #include "SDL_atarievents_c.h"
46 #include "SDL_xbiosevents_c.h"
48 /* To save state of keyboard */
49 #define ATARIBIOS_MAXKEYS 128
51 static unsigned char bios_currentkeyboard[ATARIBIOS_MAXKEYS];
52 static unsigned char bios_previouskeyboard[ATARIBIOS_MAXKEYS];
53 static unsigned char bios_currentascii[ATARIBIOS_MAXKEYS];
55 /* Special keys state */
66 /* The translation tables from a console scancode to a SDL keysym */
67 static SDLKey keymap[ATARIBIOS_MAXKEYS];
69 static SDL_keysym *TranslateKey(int scancode, int asciicode, SDL_keysym *keysym,
71 static void UpdateSpecialKeys(int special_keys_state);
73 void AtariBios_InitOSKeymap(_THIS)
78 memset(bios_currentkeyboard, 0, sizeof(bios_currentkeyboard));
79 memset(bios_previouskeyboard, 0, sizeof(bios_previouskeyboard));
81 /* Initialize keymap */
82 for ( i=0; i<sizeof(keymap); i++ )
83 keymap[i] = SDLK_UNKNOWN;
86 for ( i = 0; i<10; i++ )
87 keymap[SCANCODE_F1 + i] = SDLK_F1+i;
90 keymap[SCANCODE_HELP] = SDLK_HELP;
91 keymap[SCANCODE_UNDO] = SDLK_UNDO;
92 keymap[SCANCODE_INSERT] = SDLK_INSERT;
93 keymap[SCANCODE_CLRHOME] = SDLK_HOME;
94 keymap[SCANCODE_UP] = SDLK_UP;
95 keymap[SCANCODE_DOWN] = SDLK_DOWN;
96 keymap[SCANCODE_RIGHT] = SDLK_RIGHT;
97 keymap[SCANCODE_LEFT] = SDLK_LEFT;
100 keymap[SCANCODE_ESCAPE] = SDLK_ESCAPE;
101 keymap[SCANCODE_BACKSPACE] = SDLK_BACKSPACE;
102 keymap[SCANCODE_TAB] = SDLK_TAB;
103 keymap[SCANCODE_ENTER] = SDLK_RETURN;
104 keymap[SCANCODE_DELETE] = SDLK_DELETE;
105 keymap[SCANCODE_LEFTCONTROL] = SDLK_LCTRL;
106 keymap[SCANCODE_LEFTSHIFT] = SDLK_LSHIFT;
107 keymap[SCANCODE_RIGHTSHIFT] = SDLK_RSHIFT;
108 keymap[SCANCODE_LEFTALT] = SDLK_LALT;
109 keymap[SCANCODE_CAPSLOCK] = SDLK_CAPSLOCK;
111 vectors_mask = ATARI_XBIOS_MOUSEEVENTS|ATARI_XBIOS_JOYSTICKEVENTS;
112 if (Getcookie(C_MiNT, &dummy)==C_FOUND) {
116 SDL_AtariXbios_InstallVectors(vectors_mask);
119 void AtariBios_PumpEvents(_THIS)
124 /* Update pressed keys */
125 memset(bios_currentkeyboard, 0, ATARIBIOS_MAXKEYS);
127 while (Bconstat(_CON)) {
128 unsigned long key_pressed;
129 unsigned char asciicode, scancode;
131 key_pressed=Bconin(_CON);
133 asciicode = key_pressed;
134 scancode = key_pressed >> 16;
136 bios_currentkeyboard[scancode]=0xFF;
137 bios_currentascii[scancode]=asciicode;
140 /* Read special keys */
141 UpdateSpecialKeys(Kbshift(-1));
143 /* Now generate events */
144 for (i=0; i<ATARIBIOS_MAXKEYS; i++) {
146 if (bios_currentkeyboard[i] && !bios_previouskeyboard[i])
147 SDL_PrivateKeyboard(SDL_PRESSED,
148 TranslateKey(i, bios_currentascii[i], &keysym, SDL_TRUE));
150 /* Key unpressed ? */
151 if (bios_previouskeyboard[i] && !bios_currentkeyboard[i])
152 SDL_PrivateKeyboard(SDL_RELEASED,
153 TranslateKey(i, bios_currentascii[i], &keysym, SDL_FALSE));
156 SDL_AtariXbios_PostMouseEvents(this);
158 /* Will be previous table */
159 memcpy(bios_previouskeyboard, bios_currentkeyboard, ATARIBIOS_MAXKEYS);
162 static void UpdateSpecialKeys(int special_keys_state)
164 #define UPDATE_SPECIAL_KEYS(numbit,scancode) \
166 if (special_keys_state & (1<<(numbit))) { \
167 bios_currentkeyboard[scancode]=0xFF; \
168 bios_currentascii[scancode]=0; \
172 UPDATE_SPECIAL_KEYS(K_RSHIFT, SCANCODE_RIGHTSHIFT);
173 UPDATE_SPECIAL_KEYS(K_LSHIFT, SCANCODE_LEFTSHIFT);
174 UPDATE_SPECIAL_KEYS(K_CTRL, SCANCODE_LEFTCONTROL);
175 UPDATE_SPECIAL_KEYS(K_ALT, SCANCODE_LEFTALT);
176 UPDATE_SPECIAL_KEYS(K_CAPSLOCK, SCANCODE_CAPSLOCK);
179 static SDL_keysym *TranslateKey(int scancode, int asciicode, SDL_keysym *keysym,
182 /* Set the keysym information */
183 keysym->scancode = scancode;
186 keysym->sym = asciicode;
188 keysym->sym = keymap[scancode];
190 keysym->mod = KMOD_NONE;
192 if (SDL_TranslateUNICODE && pressed) {
193 keysym->unicode = SDL_AtariToUnicodeTable[asciicode];
199 void AtariBios_ShutdownEvents(void)
201 SDL_AtariXbios_RestoreVectors();