Skip to content

Latest commit

 

History

History
183 lines (152 loc) · 9.98 KB

README.txt

File metadata and controls

183 lines (152 loc) · 9.98 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
26
27
- Call ManyMouse_Init() once before using anything else in the library,
usually at program startup time. If it returns > 0, it found mice it can
use.
Apr 26, 2011
Apr 26, 2011
28
29
30
31
32
- 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.
Jun 27, 2005
Jun 27, 2005
33
- Call ManyMouse_DeviceName() if you want to know the human-readable
Apr 26, 2011
Apr 26, 2011
34
35
36
37
38
39
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
40
- Read input from the mice with ManyMouse_PollEvent() in a loop until the
Jun 29, 2005
Jun 29, 2005
41
42
43
44
45
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
46
47
- When you are done processing mice, call ManyMouse_Quit() once, usually at
program termination.
Jun 26, 2005
Jun 26, 2005
48
49
50
There are examples of complete usage in the "example" directory.
Feb 8, 2008
Feb 8, 2008
51
52
53
54
55
56
57
58
59
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
60
The test apps on Linux and Mac OS X can be built by running "make" from a
Jun 29, 2005
Jun 29, 2005
61
62
63
64
65
66
67
68
69
70
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
71
72
73
(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
74
75
Aug 3, 2006
Aug 3, 2006
76
77
78
79
80
81
82
83
84
85
86
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
87
88
89
90
91
92
93
94
95
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
96
Jul 28, 2007
Jul 28, 2007
97
98
Some general ManyMouse usage notes:
Jun 26, 2005
Jun 26, 2005
99
100
- 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
101
through the MANYMOUSE_EVENT_DISCONNECT event, which will be the last
Jun 26, 2005
Jun 26, 2005
102
event sent for the disconnected device. You can safely redetect all mice by
Jun 27, 2005
Jun 27, 2005
103
calling ManyMouse_Quit() followed by ManyMouse_Init(), but be warned that
Jun 26, 2005
Jun 26, 2005
104
this may cause mice (even ones that weren't unplugged) to suddenly have a
Jun 27, 2005
Jun 27, 2005
105
106
107
108
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
109
110
- In most systems, all mice will control the same system cursor. It's
Jun 27, 2005
Jun 27, 2005
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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
129
130
131
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
132
to DI8's limitations, but its parallel use seems to prevent ManyMouse from
Jun 29, 2005
Jun 29, 2005
133
134
135
136
137
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
138
Apr 18, 2011
Apr 18, 2011
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
- 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
X server is running. Please note that you should NOT grab the mouse in your
app, though, as it will prevent XInput2 from supplying mouse events.
- On Linux, we can try to use the /dev/input/event* devices; this means
Jul 13, 2005
Jul 13, 2005
155
that ManyMouse can function with or without an X server. Please note that
Apr 18, 2011
Apr 18, 2011
156
157
158
159
160
161
162
163
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
permissions on /dev/input/events/*, or upgrade their X server. This is a
problem that will solve itself with time.
Jun 27, 2005
Jun 27, 2005
164
Jul 27, 2007
Jul 27, 2007
165
- On Mac OS X, we use IOKit's HID Manager API, which means you can use this
Jun 27, 2005
Jun 27, 2005
166
C-callable library from Cocoa, Carbon, and generic Unix applications, with
Aug 3, 2006
Aug 3, 2006
167
168
169
170
171
172
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
173
Jul 27, 2007
Jul 27, 2007
174
175
176
- 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
177
178
179
180
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
181
182
--ryan.