Skip to content

Latest commit

 

History

History
204 lines (170 loc) · 10.9 KB

README.txt

File metadata and controls

204 lines (170 loc) · 10.9 KB
 
Jun 25, 2005
Jun 25, 2005
1
Jun 27, 2005
Jun 27, 2005
2
3
ManyMouse's website is http://icculus.org/manymouse/
Jun 26, 2005
Jun 26, 2005
4
5
6
7
This is a simple library to abstract away the reading of multiple input
devices. It is designed to work cross-platform.
Just copy all of the C files and headers in this directory into your
Aug 3, 2006
Aug 3, 2006
8
9
project, and build the C files. Unless explicitly noted, you shouldn't have
to #define anything, and each file is wrapped in #ifdefs to avoid compiling
Jun 27, 2005
Jun 27, 2005
10
11
12
13
14
15
16
17
18
19
on the wrong platforms, so it is safe to build everything without close
examination.
You don't have to build this as a shared library; we encourage you to just
compile the source and statically link them into your application...this
makes integrating ManyMouse much less complex.
The "example" directory contains complete programs to demostrate the use of
the ManyMouse API in action. These files don't need to be copied into your
project, but you can cut-and-paste their contents as needed.
Jun 26, 2005
Jun 26, 2005
20
Jun 29, 2005
Jun 29, 2005
21
22
23
Basic usage:
- Copy *.c and *.h from the base of the manymouse folder to your project.
- Add the new files to your project's build system.
Jun 27, 2005
Jun 27, 2005
24
- #include "manymouse.h" in your source code
Mar 23, 2006
Mar 23, 2006
25
- Call ManyMouse_Init() once before using anything else in the library,
Apr 26, 2011
Apr 26, 2011
26
27
28
29
30
31
usually at program startup time. If it returns > 0, that's the number of
mice it found. If it returns zero, it means the system works, but there
aren't any mice to be found, and calling ManyMouse_Init() may report mice
in the future if one is plugged in. If it returns < 0, it means the system
will never report mice; this can happen, for example, on Windows 95, which
lacks functionality we need that was introduced with Windows XP.
Apr 26, 2011
Apr 26, 2011
32
33
34
35
36
- Call ManyMouse_DriverName() if you want to know the human-readable
name of the driver that handles devices behind the scenes. Some platforms
have different drivers depending on the system being used. This is for
debugging purposes only: it is not localized and we don't promise they
won't change. The string is in UTF-8 format. Don't free this string.
Apr 26, 2011
Apr 26, 2011
37
This will return NULL if ManyMouse_Init() failed.
Jun 27, 2005
Jun 27, 2005
38
- Call ManyMouse_DeviceName() if you want to know the human-readable
Apr 26, 2011
Apr 26, 2011
39
40
41
42
43
44
name of each device ("Logitech USB mouse", etc). This is for debugging
purposes only: it is not localized and we don't promise they won't change.
As these strings are created by the device and the OS, we can't even
promise they'll even actually help you identify the mouse in your hand;
sometimes, they are quite lousy descriptions. The string is in UTF-8
format. Don't free this string.
Jun 27, 2005
Jun 27, 2005
45
- Read input from the mice with ManyMouse_PollEvent() in a loop until the
Jun 29, 2005
Jun 29, 2005
46
47
48
49
50
function returns 0. Each time through the loop, examine the event that
was returned and react appropriately. Do this with regular frequency:
generally, a good rule is to poll for ManyMouse events at the same time
you poll for other system GUI events...once per iteration of your
program's main loop.
Mar 23, 2006
Mar 23, 2006
51
- When you are done processing mice, call ManyMouse_Quit() once, usually at
Aug 9, 2012
Aug 9, 2012
52
53
program termination. You should call this even if ManyMouse_Init() returned
zero.
Jun 26, 2005
Jun 26, 2005
54
Apr 26, 2011
Apr 26, 2011
55
56
There are examples of complete usage in the "example" directory. The simplest
is test_manymouse_stdio.c ...
Jun 26, 2005
Jun 26, 2005
57
Feb 8, 2008
Feb 8, 2008
58
59
60
61
62
63
64
65
66
Thread safety note:
Pick a thread to call into ManyMouse from, and don't call into it from any
other. We make no promises on any platform of thread safety. For safety's
sake, you might want to use the same thread that talks to the system's
GUI interfaces and/or the main thread, if you have one.
Building the code:
Jul 27, 2007
Jul 27, 2007
67
The test apps on Linux and Mac OS X can be built by running "make" from a
Jun 29, 2005
Jun 29, 2005
68
69
70
71
72
73
74
75
76
77
terminal. The SDL test app will fail if Simple Directmedia Layer
(http://libsdl.org/) isn't installed. The stdio apps will still work.
Windows isn't integrated into the Makefile, since most people will want to
put it in a VS.NET project anyhow, but here's the command line used to
build some of the standalone test apps:
cl /I. *.c example\test_manymouse_stdio.c /Fetest_manymouse_stdio.exe
cl /I. *.c example\detect_mice.c /Fedetect_mice.exe
Jul 9, 2005
Jul 9, 2005
78
79
80
(yes, that's simple, that's the point)...getting the SDL test app to work
on Windows can be done, but takes too much effort unrelated to ManyMouse
itself for this document to explain.
Jun 29, 2005
Jun 29, 2005
81
82
Aug 3, 2006
Aug 3, 2006
83
84
85
86
87
88
89
90
91
92
93
Java bindings:
There are now Java bindings available in the contrib/java directory.
They should work on any platform that ManyMouse supports that has a Java
virtual machine. If you're using the makefile, you can run "make java" and
it will produce the native code glue library and class files that you can
include in your application. Please see contrib/java/TestManyMouse.java
for an example of how to use ManyMouse from your Java application. Most
of this documentation talks about the C interface to ManyMouse, but with
minor modifications also applies to the Java bindings. We welcome patches
and bug reports on the Java bindings, but don't officially support them.
Jul 28, 2007
Jul 28, 2007
94
95
96
97
98
99
100
101
102
Mac OS X, Linux and Cygwin can run "make java" to build the bindings and run
"java TestManyMouse" to make sure they worked. Cygwin users may need to
adjust the WINDOWS_JDK_PATH line at the top of the Makefile to match their
JDK installation. Linux users should do the same with LINUX_JDK_PATH and
make sure that the resulting libManyMouse.so file is in their dynamic loader
path (LD_LIBRARY_PATH or whatnot) so that the Java VM can find it.
Thanks to Brian Ballsun-Stanton for kicking this into gear. Jeremy Brown
gave me the rundown on getting this to work with Cygwin.
Aug 3, 2006
Aug 3, 2006
103
Jul 28, 2007
Jul 28, 2007
104
105
Some general ManyMouse usage notes:
Jun 26, 2005
Jun 26, 2005
106
107
- If a mouse is disconnected, it will not return future events, even if you
plug it right back in. You will be alerted of disconnects programmatically
Jun 27, 2005
Jun 27, 2005
108
through the MANYMOUSE_EVENT_DISCONNECT event, which will be the last
Jun 26, 2005
Jun 26, 2005
109
event sent for the disconnected device. You can safely redetect all mice by
Jun 27, 2005
Jun 27, 2005
110
calling ManyMouse_Quit() followed by ManyMouse_Init(), but be warned that
Jun 26, 2005
Jun 26, 2005
111
this may cause mice (even ones that weren't unplugged) to suddenly have a
Jun 27, 2005
Jun 27, 2005
112
113
114
115
different device index, since on most systems, the replug will cause the
mouse to show up elsewhere in the system's USB device tree. It is
recommended that you make redetection an explicit user-requested function
for this reason.
Jun 26, 2005
Jun 26, 2005
116
117
- In most systems, all mice will control the same system cursor. It's
Jun 27, 2005
Jun 27, 2005
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
recommended that you ask your window system to grab the mouse input to your
application and hide the system cursor, and then do all mouse input
processing through ManyMouse. Most GUI systems will continue to deliver
mouse events through the system cursor even when ManyMouse is working; in
these cases, you should continue to read the usual GUI system event queue,
for the usual reasons, and just throw away the mouse events, which you
instead grab via ManyMouse_PollEvent(). Hiding the system cursor will mean
that you may need to draw your own cursor in an app-specific way, but
chances are you need to do that anyhow if you plan to support multiple
mice. Grabbing the input means preventing other apps from getting mouse
events, too, so you'll probably need to build in a means to ungrab the
mouse if the user wants to, say, respond to an instant message window or
email...again, you will probably need to do this anyhow.
- On Windows, ManyMouse requires Windows XP or later to function, since it
relies on APIs that are new to XP...it uses LoadLibrary() on User32.dll and
GetProcAddress() to get all the Windows entry points it uses, so on pre-XP
systems, it will run, but fail to find any mice in ManyMouse_Init().
Jun 29, 2005
Jun 29, 2005
136
137
138
ManyMouse does not require a window to run, and can even be used by console
(stdio) applications. Please note that using DirectInput at the same time
as ManyMouse can cause problems; ManyMouse does not use DirectInput, due
Jul 9, 2005
Jul 9, 2005
139
to DI8's limitations, but its parallel use seems to prevent ManyMouse from
Jun 29, 2005
Jun 29, 2005
140
141
142
143
144
getting mouse input anyhow. This is mostly not an issue, but users of
Simple Directmedia Layer (SDL, http://libsdl.org/) may find that it uses
DirectInput behind the scenes. We are still researching the issue, but we
recommend using SDL's "windib" target in the meantime to avoid this
problem.
Jun 27, 2005
Jun 27, 2005
145
Apr 18, 2011
Apr 18, 2011
146
147
148
149
150
151
152
153
154
155
156
157
- On Unix systems, we try to use the XInput2 extension if possible.
ManyMouse will try to fallback to other approaches if there is no X server
available or the X server doesn't support XInput2. If you want to use the
XInput2 target, make sure you link with "-ldl", since we use dlopen() to
find the X11/XInput2 libraries. You do not have to link against Xlib
directly, and ManyMouse will fail gracefully (reporting no mice in the
ManyMouse XInput2 driver) if the libraries don't exist on the end user's
system. Naturally, you'll need the X11 headers on your system (on Ubuntu,
you would want to apt-get install libxi-dev). You can build with
SUPPORT_XINPUT2 defined to zero to disable XInput2 support completely.
Please note that the XInput2 target does not need your app to supply an X11
window. The test_manymouse_stdio app works with this target, so long as the
Aug 6, 2011
Aug 6, 2011
158
159
160
161
162
163
164
165
166
167
X server is running. Please note that the X11 DGA extension conflicts with
XInput2 (specifically: SDL might use it). This is a good way to deal with
this in SDL 1.2:
char namebuf[16];
const char *driver;
SDL_Init(SDL_INIT_VIDEO);
driver = SDL_VideoDriverName(namebuf, sizeof (namebuf));
if (driver && (strcmp(driver, "x11") == 0))
Aug 6, 2011
Aug 6, 2011
168
{
Aug 6, 2011
Aug 6, 2011
169
if (strcmp(ManyMouse_DriverName(), "X11 XInput2 extension") == 0)
Aug 6, 2011
Aug 6, 2011
170
171
setenv("SDL_MOUSE_RELATIVE", "0", 1);
}
Aug 6, 2011
Aug 6, 2011
172
173
// now you may call SDL_SetVideoMode() or SDL_WM_GrabInput() safely.
Apr 18, 2011
Apr 18, 2011
174
175
- On Linux, we can try to use the /dev/input/event* devices; this means
Jul 13, 2005
Jul 13, 2005
176
that ManyMouse can function with or without an X server. Please note that
Apr 18, 2011
Apr 18, 2011
177
178
179
180
181
182
modern Linux systems only allow root access to these devices. Most users
will want XInput2, but this can be used if the device permissions allow.
- There (currently) exists a class of users that have Linux systems with
evdev device nodes forbidden to all but the root user, and no XInput2
support. These users are out of luck; they should either force the
Apr 26, 2011
Apr 26, 2011
183
permissions on /dev/input/event*, or upgrade their X server. This is a
Apr 18, 2011
Apr 18, 2011
184
problem that will solve itself with time.
Jun 27, 2005
Jun 27, 2005
185
Jul 27, 2007
Jul 27, 2007
186
- On Mac OS X, we use IOKit's HID Manager API, which means you can use this
Jun 27, 2005
Jun 27, 2005
187
C-callable library from Cocoa, Carbon, and generic Unix applications, with
Aug 3, 2006
Aug 3, 2006
188
189
190
191
192
193
or without a GUI. There are Java bindings available, too, letting you use
ManyMouse from any of the official Mac application layers. This code may or
may not work on Darwin (we're not sure if IOKit is available to that
platform); reports of success are welcome. If you aren't already, you will
need to make sure you link against the "Carbon" and "IOKit" frameworks once
you add ManyMouse to your project.
Jun 26, 2005
Jun 26, 2005
194
Jul 27, 2007
Jul 27, 2007
195
196
197
- Support for other platforms than Mac OS X, Linux, and Windows is not
planned, but contributions of implementations for other platforms are
welcome.
Jun 26, 2005
Jun 26, 2005
198
199
200
201
Please see the file LICENSE in the source's root directory.
This library was written by Ryan C. Gordon <icculus@icculus.org>.
Jun 25, 2005
Jun 25, 2005
202
203
--ryan.