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

Latest commit

 

History

History
265 lines (215 loc) · 7.38 KB

SDL_DirectFB_mouse.c

File metadata and controls

265 lines (215 loc) · 7.38 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
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
Lesser General Public License for more details.
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
Sam Lantinga
slouken@libsdl.org
Feb 6, 2011
Feb 6, 2011
21
22
23
SDL1.3 DirectFB driver by couriersud@arcor.de
Feb 6, 2011
Feb 6, 2011
25
26
27
28
29
30
31
32
#include "SDL_config.h"
#include "SDL_DirectFB_video.h"
#include "../SDL_sysvideo.h"
#include "../../events/SDL_mouse_c.h"
Jul 24, 2010
Jul 24, 2010
33
#if USE_MULTI_API
Jan 11, 2009
Jan 11, 2009
34
35
static SDL_Cursor *DirectFB_CreateCursor(SDL_Surface * surface,
int hot_x, int hot_y);
36
37
38
static int DirectFB_ShowCursor(SDL_Cursor * cursor);
static void DirectFB_MoveCursor(SDL_Cursor * cursor);
static void DirectFB_FreeCursor(SDL_Cursor * cursor);
Jan 21, 2010
Jan 21, 2010
39
static void DirectFB_WarpMouse(SDL_Mouse * mouse, SDL_Window * window,
40
41
42
int x, int y);
static void DirectFB_FreeMouse(SDL_Mouse * mouse);
Dec 8, 2008
Dec 8, 2008
43
44
45
static int id_mask;
static DFBEnumerationResult
Jan 11, 2009
Jan 11, 2009
46
47
EnumMice(DFBInputDeviceID device_id, DFBInputDeviceDescription desc,
void *callbackdata)
Dec 8, 2008
Dec 8, 2008
48
49
50
51
52
53
54
{
DFB_DeviceData *devdata = callbackdata;
if ((desc.type & DIDTF_MOUSE) && (device_id & id_mask)) {
SDL_Mouse mouse;
SDL_zero(mouse);
Jan 1, 2009
Jan 1, 2009
55
mouse.id = device_id;
Dec 8, 2008
Dec 8, 2008
56
57
58
59
60
61
62
63
mouse.CreateCursor = DirectFB_CreateCursor;
mouse.ShowCursor = DirectFB_ShowCursor;
mouse.MoveCursor = DirectFB_MoveCursor;
mouse.FreeCursor = DirectFB_FreeCursor;
mouse.WarpMouse = DirectFB_WarpMouse;
mouse.FreeMouse = DirectFB_FreeMouse;
mouse.cursor_shown = 1;
Jan 1, 2009
Jan 1, 2009
64
65
SDL_AddMouse(&mouse, desc.name, 0, 0, 1);
devdata->mouse_id[devdata->num_mice++] = device_id;
Dec 8, 2008
Dec 8, 2008
66
67
68
69
}
return DFENUM_OK;
}
70
71
72
73
void
DirectFB_InitMouse(_THIS)
{
SDL_DFB_DEVICEDATA(_this);
Dec 8, 2008
Dec 8, 2008
74
75
devdata->num_mice = 0;
Jan 4, 2009
Jan 4, 2009
76
if (devdata->use_linux_input) {
Dec 8, 2008
Dec 8, 2008
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* try non-core devices first */
id_mask = 0xF0;
devdata->dfb->EnumInputDevices(devdata->dfb, EnumMice, devdata);
if (devdata->num_mice == 0) {
/* try core devices */
id_mask = 0x0F;
devdata->dfb->EnumInputDevices(devdata->dfb, EnumMice, devdata);
}
}
if (devdata->num_mice == 0) {
SDL_Mouse mouse;
SDL_zero(mouse);
mouse.CreateCursor = DirectFB_CreateCursor;
mouse.ShowCursor = DirectFB_ShowCursor;
mouse.MoveCursor = DirectFB_MoveCursor;
mouse.FreeCursor = DirectFB_FreeCursor;
mouse.WarpMouse = DirectFB_WarpMouse;
mouse.FreeMouse = DirectFB_FreeMouse;
mouse.cursor_shown = 1;
Jan 1, 2009
Jan 1, 2009
98
SDL_AddMouse(&mouse, "Mouse", 0, 0, 1);
Dec 8, 2008
Dec 8, 2008
99
100
devdata->num_mice = 1;
}
101
102
103
104
105
106
107
}
void
DirectFB_QuitMouse(_THIS)
{
SDL_DFB_DEVICEDATA(_this);
Jan 4, 2009
Jan 4, 2009
108
if (devdata->use_linux_input) {
Dec 8, 2008
Dec 8, 2008
109
110
111
112
SDL_MouseQuit();
} else {
SDL_DelMouse(0);
}
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
}
/* Create a cursor from a surface */
static SDL_Cursor *
DirectFB_CreateCursor(SDL_Surface * surface, int hot_x, int hot_y)
{
SDL_VideoDevice *dev = SDL_GetVideoDevice();
SDL_DFB_DEVICEDATA(dev);
DFB_CursorData *curdata;
DFBResult ret;
DFBSurfaceDescription dsc;
SDL_Cursor *cursor;
Uint32 *dest;
Uint32 *p;
int pitch, i;
Feb 6, 2011
Feb 6, 2011
130
131
SDL_DFB_ALLOC_CLEAR(cursor, 1, sizeof(*cursor));
SDL_DFB_ALLOC_CLEAR(curdata, 1, sizeof(*curdata));
132
133
134
dsc.flags =
DSDESC_WIDTH | DSDESC_HEIGHT | DSDESC_PIXELFORMAT | DSDESC_CAPS;
Aug 26, 2008
Aug 26, 2008
135
dsc.caps = DSCAPS_VIDEOONLY;
136
137
138
139
dsc.width = surface->w;
dsc.height = surface->h;
dsc.pixelformat = DSPF_ARGB;
Jan 11, 2009
Jan 11, 2009
140
141
SDL_DFB_CHECKERR(devdata->dfb->CreateSurface(devdata->dfb, &dsc,
&curdata->surf));
142
143
144
145
curdata->hotx = hot_x;
curdata->hoty = hot_y;
cursor->driverdata = curdata;
Jan 11, 2009
Jan 11, 2009
146
147
SDL_DFB_CHECKERR(curdata->surf->Lock(curdata->surf, DSLF_WRITE,
(void *) &dest, &pitch));
Aug 31, 2008
Aug 31, 2008
149
/* Relies on the fact that this is only called with ARGB surface. */
150
p = surface->pixels;
Aug 31, 2008
Aug 31, 2008
151
for (i = 0; i < surface->h; i++)
Jan 11, 2009
Jan 11, 2009
152
153
memcpy((char *) dest + i * pitch,
(char *) p + i * surface->pitch, 4 * surface->w);
Aug 31, 2008
Aug 31, 2008
154
155
156
157
158
159
160
161
162
163
164
165
166
curdata->surf->Unlock(curdata->surf);
return cursor;
error:
return NULL;
}
/* Show the specified cursor, or hide if cursor is NULL */
static int
DirectFB_ShowCursor(SDL_Cursor * cursor)
{
SDL_DFB_CURSORDATA(cursor);
DFBResult ret;
Jan 21, 2010
Jan 21, 2010
167
SDL_Window *window;
Jan 21, 2010
Jan 21, 2010
169
170
window = SDL_GetFocusWindow();
if (!window)
171
172
return -1;
else {
Jan 21, 2010
Jan 21, 2010
173
SDL_VideoDisplay *display = window->display;
Aug 31, 2008
Aug 31, 2008
174
175
176
177
178
179
180
if (display) {
DFB_DisplayData *dispdata =
(DFB_DisplayData *) display->driverdata;
DFB_WindowData *windata = (DFB_WindowData *) window->driverdata;
if (cursor)
Jan 10, 2009
Jan 10, 2009
181
SDL_DFB_CHECKERR(windata->window->
Feb 6, 2011
Feb 6, 2011
182
SetCursorShape(windata->dfbwin,
Jan 10, 2009
Jan 10, 2009
183
184
curdata->surf, curdata->hotx,
curdata->hoty));
Aug 31, 2008
Aug 31, 2008
185
Jan 10, 2009
Jan 10, 2009
186
187
188
189
190
191
192
193
194
SDL_DFB_CHECKERR(dispdata->layer->
SetCooperativeLevel(dispdata->layer,
DLSCL_ADMINISTRATIVE));
SDL_DFB_CHECKERR(dispdata->layer->
SetCursorOpacity(dispdata->layer,
cursor ? 0xC0 : 0x00));
SDL_DFB_CHECKERR(dispdata->layer->
SetCooperativeLevel(dispdata->layer,
DLSCL_SHARED));
Aug 31, 2008
Aug 31, 2008
195
}
196
197
198
199
200
201
202
203
204
205
206
}
return 0;
error:
return -1;
}
/* This is called when a mouse motion event occurs */
static void
DirectFB_MoveCursor(SDL_Cursor * cursor)
{
Aug 31, 2008
Aug 31, 2008
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
}
/* Free a window manager cursor */
static void
DirectFB_FreeCursor(SDL_Cursor * cursor)
{
SDL_DFB_CURSORDATA(cursor);
SDL_DFB_RELEASE(curdata->surf);
SDL_DFB_FREE(cursor->driverdata);
SDL_DFB_FREE(cursor);
}
/* Warp the mouse to (x,y) */
static void
Jan 21, 2010
Jan 21, 2010
223
DirectFB_WarpMouse(SDL_Mouse * mouse, SDL_Window * window, int x, int y)
Jan 21, 2010
Jan 21, 2010
225
SDL_VideoDisplay *display = window->display;
226
227
228
229
230
DFB_DisplayData *dispdata = (DFB_DisplayData *) display->driverdata;
DFB_WindowData *windata = (DFB_WindowData *) window->driverdata;
DFBResult ret;
int cx, cy;
Feb 6, 2011
Feb 6, 2011
231
SDL_DFB_CHECKERR(windata->dfbwin->GetPosition(windata->dfbwin, &cx, &cy));
Jan 11, 2009
Jan 11, 2009
232
233
234
SDL_DFB_CHECKERR(dispdata->layer->WarpCursor(dispdata->layer,
cx + x + windata->client.x,
cy + y + windata->client.y));
235
236
237
238
239
240
241
242
243
error:
return;
}
/* Free the mouse when it's time */
static void
DirectFB_FreeMouse(SDL_Mouse * mouse)
{
Aug 31, 2008
Aug 31, 2008
244
/* nothing yet */
245
246
}
Jul 24, 2010
Jul 24, 2010
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#else /* USE_MULTI_API */
void
DirectFB_InitMouse(_THIS)
{
SDL_DFB_DEVICEDATA(_this);
devdata->num_mice = 1;
}
void
DirectFB_QuitMouse(_THIS)
{
}
#endif
265
/* vi: set ts=4 sw=4 expandtab: */