Skip to content

Latest commit

 

History

History
101 lines (85 loc) · 2.85 KB

SDL_cacaevents.c

File metadata and controls

101 lines (85 loc) · 2.85 KB
 
Oct 10, 2009
Oct 10, 2009
1
2
/*
SDL - Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga
Oct 10, 2009
Oct 10, 2009
4
5
This library is free software; you can redistribute it and/or
Dec 31, 2011
Dec 31, 2011
6
modify it under the terms of the GNU Lesser General Public
Oct 10, 2009
Oct 10, 2009
7
License as published by the Free Software Foundation; either
Dec 31, 2011
Dec 31, 2011
8
version 2.1 of the License, or (at your option) any later version.
Oct 10, 2009
Oct 10, 2009
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
Dec 31, 2011
Dec 31, 2011
13
Lesser General Public License for more details.
Oct 10, 2009
Oct 10, 2009
14
Dec 31, 2011
Dec 31, 2011
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
Oct 10, 2009
Oct 10, 2009
18
19
20
21
22
23
24
25
26
27
28
29
30
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
Sam Lantinga
slouken@libsdl.org
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id: libsdl-1.2.11-libcaca.patch,v 1.1 2006/09/18 16:06:06 mr_bones_ Exp $";
#endif
#include <stdio.h>
#include <caca.h>
#ifdef CACA_API_VERSION_1
#include <caca0.h>
#endif
#include "SDL.h"
#include "../../events/SDL_sysevents.h"
#include "../../events/SDL_events_c.h"
#include "SDL_cacavideo.h"
#include "SDL_cacaevents_c.h"
void Caca_PumpEvents(_THIS)
{
int posted = 0;
int event;
SDL_keysym keysym;
if( ! this->screen ) /* Wait till we got the screen initialised */
return;
do {
posted = 0;
/* Get libcaca event */
SDL_mutexP(Caca_mutex);
event = caca_get_event(CACA_EVENT_ANY);
SDL_mutexV(Caca_mutex);
if ( event & (CACA_EVENT_KEY_PRESS | CACA_EVENT_KEY_RELEASE)) {
int key;
switch ( event & 0xffffff )
{
case CACA_KEY_LEFT: key = SDLK_LEFT; break;
case CACA_KEY_RIGHT: key = SDLK_RIGHT; break;
case CACA_KEY_UP: key = SDLK_UP; break;
case CACA_KEY_DOWN: key = SDLK_DOWN; break;
default: key = event & 0xff; break;
}
/* Key pressed */
/* printf("Key pressed: %d (%c)\n", key, key); */
keysym.scancode = key;
keysym.sym = key;
keysym.mod = KMOD_NONE;
keysym.unicode = 0;
if ( SDL_TranslateUNICODE ) {
keysym.unicode = key;
}
posted += SDL_PrivateKeyboard((event & CACA_EVENT_KEY_PRESS) ? SDL_PRESSED : SDL_RELEASED, &keysym);
}
else if ( event & (CACA_EVENT_MOUSE_PRESS | CACA_EVENT_MOUSE_RELEASE) ) {
/* FIXME: we currently ignore the button type! */
int button = event & 0x00ffffff;
if ( button > 3 ) {
button = 1;
}
posted += SDL_PrivateMouseButton((event & CACA_EVENT_MOUSE_PRESS) ? SDL_PRESSED : SDL_RELEASED, button, 0, 0);
}
else if ( event & CACA_EVENT_MOUSE_MOTION ) {
int new_x = 0, new_y = 0;
new_x = ((event & 0x00fff000) >> 12) * Caca_w / caca_get_width();
new_y = ((event & 0x00000fff) >> 0) * Caca_h / caca_get_height();
posted += SDL_PrivateMouseMotion(0, 0, new_x, new_y);
}
} while ( posted );
}
void Caca_InitOSKeymap(_THIS)
{
return;
}