atari: Do not use system interrupt for handling timer. Do it from userspace, like RISCOS backend.
2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2012 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 BIOS
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 static unsigned char bios_currentkeyboard[ATARIBIOS_MAXKEYS];
43 static unsigned char bios_previouskeyboard[ATARIBIOS_MAXKEYS];
44 static SDL_bool use_dev_mouse = SDL_FALSE;
46 static void UpdateSpecialKeys(int special_keys_state);
48 void AtariBios_InitOSKeymap(_THIS)
51 /* unsigned long dummy;*/
53 SDL_memset(bios_currentkeyboard, 0, sizeof(bios_currentkeyboard));
54 SDL_memset(bios_previouskeyboard, 0, sizeof(bios_previouskeyboard));
56 use_dev_mouse = (SDL_AtariDevMouse_Open()!=0) ? SDL_TRUE : SDL_FALSE;
58 vectors_mask = ATARI_XBIOS_JOYSTICKEVENTS; /* XBIOS joystick events */
60 vectors_mask |= ATARI_XBIOS_MOUSEEVENTS; /* XBIOS mouse events */
62 /* if (Getcookie(C_MiNT, &dummy)==C_FOUND) {
66 SDL_AtariXbios_InstallVectors(vectors_mask);
69 void AtariBios_PumpEvents(_THIS)
74 SDL_AtariMint_BackgroundTasks();
76 /* Update pressed keys */
77 SDL_memset(bios_currentkeyboard, 0, ATARIBIOS_MAXKEYS);
79 while (Bconstat(_CON)) {
80 unsigned long key_pressed;
81 key_pressed=Bconin(_CON);
82 bios_currentkeyboard[(key_pressed>>16)&(ATARIBIOS_MAXKEYS-1)]=0xFF;
85 /* Read special keys */
86 UpdateSpecialKeys(Kbshift(-1));
88 /* Now generate events */
89 for (i=0; i<ATARIBIOS_MAXKEYS; i++) {
91 if (bios_currentkeyboard[i] && !bios_previouskeyboard[i])
92 SDL_PrivateKeyboard(SDL_PRESSED,
93 SDL_Atari_TranslateKey(i, &keysym, SDL_TRUE));
96 if (bios_previouskeyboard[i] && !bios_currentkeyboard[i])
97 SDL_PrivateKeyboard(SDL_RELEASED,
98 SDL_Atari_TranslateKey(i, &keysym, SDL_FALSE));
102 SDL_AtariDevMouse_PostMouseEvents(this, SDL_TRUE);
104 SDL_AtariXbios_PostMouseEvents(this, SDL_TRUE);
107 /* Will be previous table */
108 SDL_memcpy(bios_previouskeyboard, bios_currentkeyboard, sizeof(bios_previouskeyboard));
111 static void UpdateSpecialKeys(int special_keys_state)
113 #define UPDATE_SPECIAL_KEYS(numbit,scancode) \
115 if (special_keys_state & (1<<(numbit))) { \
116 bios_currentkeyboard[scancode]=0xFF; \
120 UPDATE_SPECIAL_KEYS(K_RSHIFT, SCANCODE_RIGHTSHIFT);
121 UPDATE_SPECIAL_KEYS(K_LSHIFT, SCANCODE_LEFTSHIFT);
122 UPDATE_SPECIAL_KEYS(K_CTRL, SCANCODE_LEFTCONTROL);
123 UPDATE_SPECIAL_KEYS(K_ALT, SCANCODE_LEFTALT);
124 UPDATE_SPECIAL_KEYS(K_CAPSLOCK, SCANCODE_CAPSLOCK);
127 void AtariBios_ShutdownEvents(void)
129 SDL_AtariXbios_RestoreVectors();
131 SDL_AtariDevMouse_Close();