Skip to content

Latest commit

 

History

History
102 lines (81 loc) · 2.78 KB

manymouse.c

File metadata and controls

102 lines (81 loc) · 2.78 KB
 
Jun 27, 2005
Jun 27, 2005
1
/*
Jun 27, 2005
Jun 27, 2005
2
* ManyMouse foundation code; apps talks to this and it talks to the lowlevel
Jun 27, 2005
Jun 27, 2005
3
4
5
6
7
8
* code for various platforms.
*
* Please see the file LICENSE in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
Jun 26, 2005
Jun 26, 2005
10
#include <stdlib.h>
Jun 27, 2005
Jun 27, 2005
11
#include "manymouse.h"
Jun 28, 2005
Jun 28, 2005
13
static const char *manymouse_copyright =
Jul 28, 2008
Jul 28, 2008
14
"ManyMouse " MANYMOUSE_VERSION " copyright (c) 2005-2008 Ryan C. Gordon.";
Jun 28, 2005
Jun 28, 2005
15
Jul 27, 2007
Jul 27, 2007
16
17
extern const ManyMouseDriver *ManyMouseDriver_windows;
extern const ManyMouseDriver *ManyMouseDriver_evdev;
Feb 8, 2008
Feb 8, 2008
18
extern const ManyMouseDriver *ManyMouseDriver_hidmanager;
Feb 7, 2008
Feb 7, 2008
19
extern const ManyMouseDriver *ManyMouseDriver_hidutilities;
Jul 27, 2007
Jul 27, 2007
20
extern const ManyMouseDriver *ManyMouseDriver_xinput;
Feb 8, 2008
Feb 8, 2008
22
23
24
25
26
27
28
29
30
31
/*
* 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.
*/
Jul 27, 2007
Jul 27, 2007
32
static const ManyMouseDriver **mice_drivers[] =
Jul 28, 2008
Jul 28, 2008
34
#if 0 /* FIXME: re-add this when the code is written! */
Jun 27, 2005
Jun 27, 2005
35
&ManyMouseDriver_xinput,
Jul 28, 2008
Jul 28, 2008
36
37
#endif
Jun 27, 2005
Jun 27, 2005
38
&ManyMouseDriver_evdev,
Mar 24, 2006
Mar 24, 2006
39
&ManyMouseDriver_windows,
Feb 8, 2008
Feb 8, 2008
40
&ManyMouseDriver_hidmanager,
Feb 7, 2008
Feb 7, 2008
41
&ManyMouseDriver_hidutilities,
Jun 27, 2005
Jun 27, 2005
45
static const ManyMouseDriver *driver = NULL;
Jun 27, 2005
Jun 27, 2005
47
int ManyMouse_Init(void)
Jul 27, 2007
Jul 27, 2007
49
const int upper = (sizeof (mice_drivers) / sizeof (mice_drivers[0]));
Mar 24, 2006
Mar 24, 2006
51
int retval = -1;
Jun 28, 2005
Jun 28, 2005
53
/* impossible test to keep manymouse_copyright linked into the binary. */
Mar 24, 2006
Mar 24, 2006
54
if (manymouse_copyright == NULL)
Jun 28, 2005
Jun 28, 2005
55
56
return(-1);
57
58
59
if (driver != NULL)
return(-1);
Jul 27, 2007
Jul 27, 2007
60
for (i = 0; (i < upper) && (driver == NULL); i++)
Jul 27, 2007
Jul 27, 2007
62
63
const ManyMouseDriver *this_driver = *(mice_drivers[i]);
if (this_driver != NULL) /* if not built for this platform, skip it. */
Jul 27, 2007
Jul 27, 2007
65
66
67
68
69
70
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;
71
72
73
} /* if */
} /* for */
Mar 24, 2006
Mar 24, 2006
74
return(retval);
Jun 27, 2005
Jun 27, 2005
75
} /* ManyMouse_Init */
Jun 27, 2005
Jun 27, 2005
78
void ManyMouse_Quit(void)
79
80
81
82
{
if (driver != NULL)
driver->quit();
driver = NULL;
Jun 27, 2005
Jun 27, 2005
83
} /* ManyMouse_Quit */
Jun 27, 2005
Jun 27, 2005
86
const char *ManyMouse_DeviceName(unsigned int index)
Jun 26, 2005
Jun 26, 2005
87
88
89
90
{
if (driver != NULL)
return(driver->name(index));
return(NULL);
Jun 27, 2005
Jun 27, 2005
91
} /* ManyMouse_PollEvent */
Jun 26, 2005
Jun 26, 2005
92
93
Jun 27, 2005
Jun 27, 2005
94
int ManyMouse_PollEvent(ManyMouseEvent *event)
95
96
97
98
{
if (driver != NULL)
return(driver->poll(event));
return(0);
Jun 27, 2005
Jun 27, 2005
99
} /* ManyMouse_PollEvent */
Jun 27, 2005
Jun 27, 2005
101
/* end of manymouse.c ... */