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

Latest commit

 

History

History
103 lines (88 loc) · 3.6 KB

SDL_x11mouse.c

File metadata and controls

103 lines (88 loc) · 3.6 KB
 
Jul 26, 2006
Jul 26, 2006
1
2
3
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
29
30
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2006 Sam Lantinga
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)
{
Jun 6, 2008
Jun 6, 2008
31
32
33
34
35
36
extern XDevice **SDL_XDevices;
XDevice **newDevices;
int i,j,index=0, numOfDevices;
extern int SDL_NumOfXDevices;
XDeviceInfo *DevList;
XAnyClassPtr deviceClass;
Jul 26, 2006
Jul 26, 2006
37
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
Aug 2, 2008
Aug 2, 2008
38
39
/*we're getting the list of input devices*/
Jun 6, 2008
Jun 6, 2008
40
DevList=XListInputDevices(data->display, &numOfDevices);
Jun 19, 2008
Jun 19, 2008
41
SDL_XDevices=(XDevice**) SDL_malloc(sizeof(XDevice));
Aug 2, 2008
Aug 2, 2008
42
43
/*we're aquiring valuators:mices, tablets, etc.*/
Jun 6, 2008
Jun 6, 2008
44
45
for(i=0;i<numOfDevices;++i)
{
Aug 2, 2008
Aug 2, 2008
46
/*if it's the core pointer or core keyborard we don't want it*/
Jun 6, 2008
Jun 6, 2008
47
48
if((DevList[i].use!=IsXPointer && DevList[i].use!=IsXKeyboard))
{
Aug 2, 2008
Aug 2, 2008
49
/*we have to check all of the device classes*/
Jun 6, 2008
Jun 6, 2008
50
51
52
deviceClass=DevList[i].inputclassinfo;
for(j=0;j<DevList[i].num_classes;++j)
{
Aug 2, 2008
Aug 2, 2008
53
if(deviceClass->class==ValuatorClass)/*bingo;)*/
Jun 6, 2008
Jun 6, 2008
54
{
Jul 6, 2008
Jul 6, 2008
55
XValuatorInfo* valInfo;
Aug 2, 2008
Aug 2, 2008
56
57
SDL_Mouse mouse;
Jun 6, 2008
Jun 6, 2008
58
59
60
61
newDevices= (XDevice**) SDL_realloc(SDL_XDevices, (index+1)*sizeof(*newDevices));
if(!newDevices)
{
SDL_OutOfMemory();
Aug 6, 2008
Aug 6, 2008
62
return;
Jun 6, 2008
Jun 6, 2008
63
64
65
66
}
SDL_XDevices=newDevices;
SDL_XDevices[index]=XOpenDevice(data->display,DevList[i].id);
SDL_zero(mouse);
Aug 2, 2008
Aug 2, 2008
67
68
69
/*the id of the device differs from its index
*so we're assigning the index of a device to it's id*/
Jun 6, 2008
Jun 6, 2008
70
SDL_SetIndexId(DevList[i].id,index);
Aug 2, 2008
Aug 2, 2008
71
/*lets get the device parameters*/
Jul 6, 2008
Jul 6, 2008
72
valInfo=(XValuatorInfo*)deviceClass;
Aug 2, 2008
Aug 2, 2008
73
/*if the device reports pressure, lets check it parameteres*/
Jul 6, 2008
Jul 6, 2008
74
75
if(valInfo->num_axes>2)
{
Aug 5, 2008
Aug 5, 2008
76
data->mouse = SDL_AddMouse(&mouse, index++,DevList[i].name,valInfo->axes[2].max_value,valInfo->axes[2].min_value,1);
Jul 6, 2008
Jul 6, 2008
77
78
79
}
else
{
Aug 5, 2008
Aug 5, 2008
80
data->mouse = SDL_AddMouse(&mouse, index++,DevList[i].name,0,0,1);
Jul 6, 2008
Jul 6, 2008
81
}
Jun 6, 2008
Jun 6, 2008
82
83
break;
}
Aug 2, 2008
Aug 2, 2008
84
/*if it's not class we're interested in, lets go further*/
Jun 6, 2008
Jun 6, 2008
85
86
87
88
89
deviceClass=(XAnyClassPtr)((char*)deviceClass + deviceClass->length);
}
}
}
XFreeDeviceList(DevList);
Aug 2, 2008
Aug 2, 2008
90
Jun 6, 2008
Jun 6, 2008
91
SDL_NumOfXDevices=index;
Jul 26, 2006
Jul 26, 2006
92
93
94
95
96
97
98
}
void
X11_QuitMouse(_THIS)
{
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
Aug 2, 2008
Aug 2, 2008
99
/*Lets delete all of the mice*/
Jun 6, 2008
Jun 6, 2008
100
SDL_MouseQuit();
Jul 26, 2006
Jul 26, 2006
101
102
103
}
/* vi: set ts=4 sw=4 expandtab: */