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

Latest commit

 

History

History
114 lines (98 loc) · 4.17 KB

SDL_x11mouse.c

File metadata and controls

114 lines (98 loc) · 4.17 KB
 
Jul 26, 2006
Jul 26, 2006
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 Sam Lantinga
Jul 26, 2006
Jul 26, 2006
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
*/
#include "SDL_config.h"
#include "SDL_x11video.h"
#include "../../events/SDL_mouse_c.h"
void
X11_InitMouse(_THIS)
{
Sep 17, 2008
Sep 17, 2008
29
#if SDL_VIDEO_DRIVER_X11_XINPUT
Aug 25, 2008
Aug 25, 2008
30
31
32
33
XDevice **newDevices;
int i, j, index = 0, numOfDevices;
XDeviceInfo *DevList;
XAnyClassPtr deviceClass;
Jul 26, 2006
Jul 26, 2006
34
35
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
Sep 17, 2008
Sep 17, 2008
36
37
38
SDL_XDevices = NULL;
SDL_NumOfXDevices = 0;
Oct 4, 2008
Oct 4, 2008
39
40
41
42
if (!SDL_X11_HAVE_XINPUT) {
/* should have dynamically loaded, but wasn't available. */
return;
}
Sep 17, 2008
Sep 17, 2008
43
Aug 25, 2008
Aug 25, 2008
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
/* we're getting the list of input devices */
DevList = XListInputDevices(data->display, &numOfDevices);
SDL_XDevices = (XDevice **) SDL_malloc(sizeof(XDevice));
/* we're aquiring valuators:mices, tablets, etc. */
for (i = 0; i < numOfDevices; ++i) {
/* if it's the core pointer or core keyborard we don't want it */
if ((DevList[i].use != IsXPointer && DevList[i].use != IsXKeyboard)) {
/* we have to check all of the device classes */
deviceClass = DevList[i].inputclassinfo;
for (j = 0; j < DevList[i].num_classes; ++j) {
if (deviceClass->class == ValuatorClass) { /* bingo ;) */
XValuatorInfo *valInfo;
SDL_Mouse mouse;
newDevices =
(XDevice **) SDL_realloc(SDL_XDevices,
(index +
1) * sizeof(*newDevices));
if (!newDevices) {
SDL_OutOfMemory();
return;
}
SDL_XDevices = newDevices;
SDL_XDevices[index] =
XOpenDevice(data->display, DevList[i].id);
SDL_zero(mouse);
/* the id of the device differs from its index
* so we're assigning the index of a device to it's id */
SDL_SetMouseIndexId(DevList[i].id, index);
/* lets get the device parameters */
valInfo = (XValuatorInfo *) deviceClass;
/* if the device reports pressure, lets check it parameteres */
if (valInfo->num_axes > 2) {
data->mouse =
SDL_AddMouse(&mouse, index++, DevList[i].name,
valInfo->axes[2].max_value,
valInfo->axes[2].min_value, 1);
} else {
data->mouse =
SDL_AddMouse(&mouse, index++, DevList[i].name, 0,
0, 1);
}
break;
}
/* if it's not class we're interested in, lets go further */
deviceClass =
(XAnyClassPtr) ((char *) deviceClass +
deviceClass->length);
}
}
}
XFreeDeviceList(DevList);
SDL_NumOfXDevices = index;
Sep 17, 2008
Sep 17, 2008
100
#endif
Jul 26, 2006
Jul 26, 2006
101
102
103
104
105
106
107
}
void
X11_QuitMouse(_THIS)
{
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
Sep 17, 2008
Sep 17, 2008
108
109
/* !!! FIXME: use XCloseDevice()? Or maybe handle under SDL_MouseQuit()? */
Aug 25, 2008
Aug 25, 2008
110
111
/* let's delete all of the mice */
SDL_MouseQuit();
Jul 26, 2006
Jul 26, 2006
112
113
114
}
/* vi: set ts=4 sw=4 expandtab: */