Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
213 lines (181 loc) · 6.29 KB

SDL_aaevents.c

File metadata and controls

213 lines (181 loc) · 6.29 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
28
29
30
/* Handle the event stream, converting AA events into SDL events */
#include <stdio.h>
#include <aalib.h>
#include "SDL.h"
Feb 16, 2006
Feb 16, 2006
31
32
#include "../../events/SDL_sysevents.h"
#include "../../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
33
34
35
36
37
38
#include "SDL_aavideo.h"
#include "SDL_aaevents_c.h"
/* The translation tables from a console scancode to a SDL keysym */
static SDLKey keymap[401];
Jul 10, 2006
Jul 10, 2006
39
static SDL_keysym *TranslateKey(int scancode, SDL_keysym * keysym);
Apr 26, 2001
Apr 26, 2001
40
41
Jul 10, 2006
Jul 10, 2006
42
43
void
AA_PumpEvents(_THIS)
Apr 26, 2001
Apr 26, 2001
44
{
Jul 10, 2006
Jul 10, 2006
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
int posted = 0;
int mouse_button, mouse_x, mouse_y;
int evt;
SDL_keysym keysym;
static int prev_button = -1, prev_x = -1, prev_y = -1;
if (!this->screen) /* Wait till we got the screen initialized */
return;
do {
posted = 0;
/* Gather events */
/* Get mouse status */
SDL_mutexP(AA_mutex);
aa_getmouse(AA_context, &mouse_x, &mouse_y, &mouse_button);
SDL_mutexV(AA_mutex);
mouse_x = mouse_x * this->screen->w / aa_scrwidth(AA_context);
mouse_y = mouse_y * this->screen->h / aa_scrheight(AA_context);
/* Compare against previous state and generate events */
if (prev_button != mouse_button) {
if (mouse_button & AA_BUTTON1) {
if (!(prev_button & AA_BUTTON1)) {
posted += SDL_PrivateMouseButton(SDL_PRESSED, 1, 0, 0);
}
} else {
if (prev_button & AA_BUTTON1) {
posted += SDL_PrivateMouseButton(SDL_RELEASED, 1, 0, 0);
}
}
if (mouse_button & AA_BUTTON2) {
if (!(prev_button & AA_BUTTON2)) {
posted += SDL_PrivateMouseButton(SDL_PRESSED, 2, 0, 0);
}
} else {
if (prev_button & AA_BUTTON2) {
posted += SDL_PrivateMouseButton(SDL_RELEASED, 2, 0, 0);
}
}
if (mouse_button & AA_BUTTON3) {
if (!(prev_button & AA_BUTTON3)) {
posted += SDL_PrivateMouseButton(SDL_PRESSED, 3, 0, 0);
}
} else {
if (prev_button & AA_BUTTON3) {
posted += SDL_PrivateMouseButton(SDL_RELEASED, 3, 0, 0);
}
}
}
if (prev_x != mouse_x || prev_y != mouse_y) {
posted += SDL_PrivateMouseMotion(0, 0, mouse_x, mouse_y);
}
prev_button = mouse_button;
prev_x = mouse_x;
prev_y = mouse_y;
/* Get keyboard event */
SDL_mutexP(AA_mutex);
evt = aa_getevent(AA_context, 0);
SDL_mutexV(AA_mutex);
if ((evt > AA_NONE) && (evt < AA_RELEASE) && (evt != AA_MOUSE)
&& (evt != AA_RESIZE)) {
/* Key pressed */
Apr 26, 2001
Apr 26, 2001
111
/* printf("Key pressed: %d (%c)\n", evt, evt); */
Jul 10, 2006
Jul 10, 2006
112
113
114
115
116
posted +=
SDL_PrivateKeyboard(SDL_PRESSED, TranslateKey(evt, &keysym));
} else if (evt >= AA_RELEASE) {
/* Key released */
evt &= ~AA_RELEASE;
Apr 26, 2001
Apr 26, 2001
117
/* printf("Key released: %d (%c)\n", evt, evt); */
Jul 10, 2006
Jul 10, 2006
118
119
120
121
122
posted +=
SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(evt, &keysym));
}
}
while (posted);
Apr 26, 2001
Apr 26, 2001
123
124
}
Jul 10, 2006
Jul 10, 2006
125
126
void
AA_InitOSKeymap(_THIS)
Apr 26, 2001
Apr 26, 2001
127
{
Jul 10, 2006
Jul 10, 2006
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
int i;
static const char *std_keys =
" 01234567890&#'()_-|$*+-=/\\:;.,!?<>{}[]@~%^\x9";
const char *std;
/* Initialize the AAlib key translation table */
for (i = 0; i < SDL_arraysize(keymap); ++i)
keymap[i] = SDLK_UNKNOWN;
/* Alphabet keys */
for (i = 0; i < 26; ++i) {
keymap['a' + i] = SDLK_a + i;
keymap['A' + i] = SDLK_a + i;
}
/* Function keys */
for (i = 0; i < 12; ++i) {
keymap[334 + i] = SDLK_F1 + i;
}
/* Keys that have the same symbols and don't have to be translated */
for (std = std_keys; *std; std++) {
keymap[*std] = *std;
}
keymap[13] = SDLK_RETURN;
keymap[AA_BACKSPACE] = SDLK_BACKSPACE;
keymap[369] = SDLK_LSHIFT;
keymap[370] = SDLK_RSHIFT;
keymap[371] = SDLK_LCTRL;
keymap[372] = SDLK_RCTRL;
keymap[377] = SDLK_LALT;
keymap[270] = SDLK_RALT;
keymap[271] = SDLK_NUMLOCK;
keymap[373] = SDLK_CAPSLOCK;
keymap[164] = SDLK_SCROLLOCK;
keymap[243] = SDLK_INSERT;
keymap[304] = SDLK_DELETE;
keymap[224] = SDLK_HOME;
keymap[231] = SDLK_END;
keymap[229] = SDLK_PAGEUP;
keymap[230] = SDLK_PAGEDOWN;
keymap[241] = SDLK_PRINT;
keymap[163] = SDLK_BREAK;
keymap[302] = SDLK_KP0;
keymap[300] = SDLK_KP1;
keymap[297] = SDLK_KP2;
keymap[299] = SDLK_KP3;
keymap[294] = SDLK_KP4;
keymap[301] = SDLK_KP5;
keymap[296] = SDLK_KP6;
keymap[293] = SDLK_KP7;
keymap[295] = SDLK_KP8;
keymap[298] = SDLK_KP9;
keymap[AA_ESC] = SDLK_ESCAPE;
keymap[AA_UP] = SDLK_UP;
keymap[AA_DOWN] = SDLK_DOWN;
keymap[AA_LEFT] = SDLK_LEFT;
keymap[AA_RIGHT] = SDLK_RIGHT;
Apr 26, 2001
Apr 26, 2001
190
191
}
Jul 10, 2006
Jul 10, 2006
192
193
static SDL_keysym *
TranslateKey(int scancode, SDL_keysym * keysym)
Apr 26, 2001
Apr 26, 2001
194
{
Jul 10, 2006
Jul 10, 2006
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/* Sanity check */
if (scancode >= SDL_arraysize(keymap))
scancode = AA_UNKNOWN;
/* Set the keysym information */
keysym->scancode = scancode;
keysym->sym = keymap[scancode];
keysym->mod = KMOD_NONE;
/* If UNICODE is on, get the UNICODE value for the key */
keysym->unicode = 0;
if (SDL_TranslateUNICODE) {
/* Populate the unicode field with the ASCII value */
keysym->unicode = scancode;
}
return (keysym);
Apr 26, 2001
Apr 26, 2001
211
}
Jul 10, 2006
Jul 10, 2006
212
213
/* vi: set ts=4 sw=4 expandtab: */