-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
manymouse.c
100 lines (81 loc) · 2.8 KB
/
manymouse.c
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
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
/*
* ManyMouse foundation code; apps talks to this and it talks to the lowlevel
* code for various platforms.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
#include <stdlib.h>
#include "manymouse.h"
static const char *manymouse_copyright =
"ManyMouse " MANYMOUSE_VERSION " copyright (c) 2005-2012 Ryan C. Gordon.";
extern const ManyMouseDriver *ManyMouseDriver_windows;
extern const ManyMouseDriver *ManyMouseDriver_evdev;
extern const ManyMouseDriver *ManyMouseDriver_hidmanager;
extern const ManyMouseDriver *ManyMouseDriver_hidutilities;
extern const ManyMouseDriver *ManyMouseDriver_xinput2;
/*
* These have to be in the favored order...obviously it doesn't matter if the
* Linux driver comes before or after the Windows one, since one won't
* exist on a given platform, but things like Mac OS X's hidmanager (which
* only works on OS X 10.5 and later) should come before Mac OS X's
* hidutilities (which works on older systems, but may stop working in 10.6
* and later). In the Mac OS X case, you want to try the newer tech, and if
* it's not available (on 10.4 or earlier), fall back to trying the legacy
* code.
*/
static const ManyMouseDriver **mice_drivers[] =
{
&ManyMouseDriver_xinput2,
&ManyMouseDriver_evdev,
&ManyMouseDriver_windows,
&ManyMouseDriver_hidmanager,
&ManyMouseDriver_hidutilities,
};
static const ManyMouseDriver *driver = NULL;
int ManyMouse_Init(void)
{
const int upper = (sizeof (mice_drivers) / sizeof (mice_drivers[0]));
int i;
int retval = -1;
/* impossible test to keep manymouse_copyright linked into the binary. */
if (manymouse_copyright == NULL)
return -1;
if (driver != NULL)
return -1;
for (i = 0; (i < upper) && (driver == NULL); i++)
{
const ManyMouseDriver *this_driver = *(mice_drivers[i]);
if (this_driver != NULL) /* if not built for this platform, skip it. */
{
const int mice = this_driver->init();
if (mice > retval)
retval = mice; /* may move from "error" to "no mice found". */
if (mice >= 0)
driver = this_driver;
} /* if */
} /* for */
return retval;
} /* ManyMouse_Init */
void ManyMouse_Quit(void)
{
if (driver != NULL)
{
driver->quit();
driver = NULL;
} /* if */
} /* ManyMouse_Quit */
const char *ManyMouse_DriverName(void)
{
return (driver) ? driver->driver_name : NULL;
} /* ManyMouse_DriverName */
const char *ManyMouse_DeviceName(unsigned int index)
{
return (driver) ? driver->name(index) : NULL;
} /* ManyMouse_DeviceName */
int ManyMouse_PollEvent(ManyMouseEvent *event)
{
return (driver) ? driver->poll(event) : 0;
} /* ManyMouse_PollEvent */
/* end of manymouse.c ... */