2004-12-02 18:02:37 +03:00
|
|
|
.\" $NetBSD: joy.4,v 1.7 2004/12/02 15:02:37 wiz Exp $
|
1996-03-27 22:11:13 +03:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1996 Matthieu Herrb
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
|
|
|
.\" must display the following acknowledgement:
|
|
|
|
.\" This product includes software developed by Christopher G. Demetriou.
|
1999-04-07 00:24:37 +04:00
|
|
|
.\" 4. The name of the author may not be used to endorse or promote products
|
1996-03-27 22:11:13 +03:00
|
|
|
.\" derived from this software without specific prior written permission
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
2004-12-02 17:33:31 +03:00
|
|
|
.Dd December 2, 2004
|
2002-02-07 00:06:32 +03:00
|
|
|
.Dt JOY 4
|
1999-03-16 04:19:14 +03:00
|
|
|
.Os
|
1996-03-27 22:11:13 +03:00
|
|
|
.Sh NAME
|
|
|
|
.Nm joy
|
2004-05-12 02:42:47 +04:00
|
|
|
.Nd game adapter driver
|
1996-03-27 22:11:13 +03:00
|
|
|
.Sh SYNOPSIS
|
2004-12-02 18:02:37 +03:00
|
|
|
.Cd "joy* at acpi?"
|
|
|
|
.Cd "joy* at eso?"
|
1996-03-27 22:11:13 +03:00
|
|
|
.Cd "joy0 at isa? port 0x201"
|
2000-03-14 23:17:46 +03:00
|
|
|
.Cd "joy* at isapnp?"
|
2000-07-27 02:09:45 +04:00
|
|
|
.Cd "joy* at ofisa?"
|
2000-03-27 13:05:48 +04:00
|
|
|
.Cd "joy* at pci?"
|
2001-01-28 03:59:27 +03:00
|
|
|
.Cd "joy* at pnpbios? index ?"
|
1996-03-27 22:11:13 +03:00
|
|
|
.Sh DESCRIPTION
|
2004-05-12 02:42:47 +04:00
|
|
|
This driver provides access to the game adapter.
|
2004-12-02 18:02:37 +03:00
|
|
|
The lower bit in the minor device number selects the joystick: 0
|
|
|
|
is the first joystick and 1 is the second.
|
1996-03-27 22:11:13 +03:00
|
|
|
.Pp
|
|
|
|
The game control adapter allows up to two joysticks to be attached to
|
2004-12-02 18:02:37 +03:00
|
|
|
the system.
|
|
|
|
The adapter plus the driver convert the present resistive value to
|
|
|
|
a relative joystick position.
|
|
|
|
On receipt of an output signal, four timing circuits are started.
|
|
|
|
By determining the time required for the circuit to time-out (a
|
|
|
|
function of the resistance), the paddle position can be determined.
|
|
|
|
The adapter could be used as a general purpose I/O card with four
|
|
|
|
analog (resistive) inputs plus four digital input points.
|
1996-03-27 22:11:13 +03:00
|
|
|
.Pp
|
2002-02-07 00:18:51 +03:00
|
|
|
Applications may call
|
|
|
|
.Xr ioctl 2
|
|
|
|
on a game adapter driver file descriptor
|
1996-03-31 04:17:43 +04:00
|
|
|
to set and get the offsets of the two potentiometers and the maximum
|
2004-12-02 18:02:37 +03:00
|
|
|
time-out value for the circuit.
|
|
|
|
The
|
2002-02-07 00:18:51 +03:00
|
|
|
.Xr ioctl 2
|
|
|
|
commands are listed in
|
2003-06-27 22:34:07 +04:00
|
|
|
.Aq Pa machine/joystick.h
|
1996-03-27 22:11:13 +03:00
|
|
|
and currently are:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width JOY_GET_X_OFFSET -compact
|
2004-12-02 18:02:37 +03:00
|
|
|
.It Dv JOY_SETTIMEOUT
|
1996-03-31 04:17:43 +04:00
|
|
|
Sets the maximum time-out for the adapter.
|
2004-12-02 18:02:37 +03:00
|
|
|
.It Dv JOY_GETTIMEOUT
|
1996-03-31 04:17:43 +04:00
|
|
|
Returns the current maximum time-out.
|
2004-12-02 18:02:37 +03:00
|
|
|
.It Dv JOY_SET_X_OFFSET
|
1996-03-27 22:11:13 +03:00
|
|
|
Sets an offset on X value.
|
2004-12-02 18:02:37 +03:00
|
|
|
.It Dv JOY_GET_X_OFFSET
|
1996-03-27 22:11:13 +03:00
|
|
|
Returns the current X offset.
|
2004-12-02 18:02:37 +03:00
|
|
|
.It Dv JOY_SET_Y_OFFSET
|
1996-03-27 22:11:13 +03:00
|
|
|
Sets an offset on Y value.
|
2004-12-02 18:02:37 +03:00
|
|
|
.It Dv JOY_GET_Y_OFFSET
|
1996-03-27 22:11:13 +03:00
|
|
|
Returns the current Y offset.
|
|
|
|
.El
|
|
|
|
.Pp
|
2004-12-02 18:02:37 +03:00
|
|
|
All these commands take an integer parameter.
|
1996-03-27 22:11:13 +03:00
|
|
|
.Pp
|
2002-02-07 00:18:51 +03:00
|
|
|
.Xr read 2
|
|
|
|
on the file descriptor returns a
|
2001-04-03 00:42:19 +04:00
|
|
|
.Fa joystick
|
1996-03-27 22:11:13 +03:00
|
|
|
structure:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
struct joystick {
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int b1;
|
|
|
|
int b2;
|
|
|
|
};
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
The fields have the following functions:
|
2001-12-07 22:02:30 +03:00
|
|
|
.Bl -tag -width xxx
|
1996-03-27 22:11:13 +03:00
|
|
|
.It Fa x
|
2001-12-07 22:02:30 +03:00
|
|
|
current X coordinate of the joystick (or position of paddle 1)
|
1996-03-27 22:11:13 +03:00
|
|
|
.It Fa y
|
2001-12-07 22:02:30 +03:00
|
|
|
current Y coordinate of the joystick (or position of paddle 2)
|
1996-03-27 22:11:13 +03:00
|
|
|
.It Fa b1
|
2001-12-07 22:02:30 +03:00
|
|
|
current state of button 1
|
1996-03-27 22:11:13 +03:00
|
|
|
.It Fa b2
|
2001-12-07 22:02:30 +03:00
|
|
|
current state of button 2
|
1996-03-27 22:11:13 +03:00
|
|
|
.El
|
1996-03-31 04:17:43 +04:00
|
|
|
.Pp
|
|
|
|
The b1 and b2 fields in struct joystick are set to 1 if the
|
|
|
|
corresponding button is down, 0 otherwise.
|
|
|
|
.Pp
|
|
|
|
The x and y coordinates are supposed to be between 0 and 255 for a
|
2004-12-02 18:02:37 +03:00
|
|
|
good joystick and a good adapter.
|
|
|
|
Unfortunately, because of the
|
1996-03-31 04:17:43 +04:00
|
|
|
hardware hack that is used to measure the position (by measuring the
|
|
|
|
time needed to discharge an RC circuit made from the joystick's
|
|
|
|
potentiometer and a capacitor on the adapter), calibration
|
|
|
|
is needed to determine exactly what values are returned for a specific
|
2004-12-02 18:02:37 +03:00
|
|
|
joystick/adapter combination.
|
|
|
|
Incorrect hardware can yield negative or values greater than 255.
|
1996-03-31 04:17:43 +04:00
|
|
|
.Pp
|
|
|
|
A typical calibration procedure uses the values returned at lower
|
|
|
|
left, center and upper right positions of the joystick to compute the
|
|
|
|
relative position.
|
|
|
|
.Pp
|
|
|
|
This calibration is not part of the driver.
|
1996-03-27 22:11:13 +03:00
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width Pa -compact
|
|
|
|
.It Pa /dev/joy0
|
|
|
|
first joystick
|
|
|
|
.It Pa /dev/joy1
|
|
|
|
second joystick
|
|
|
|
.El
|
2000-07-27 02:16:56 +04:00
|
|
|
.Sh SEE ALSO
|
2004-12-02 17:33:31 +03:00
|
|
|
.Xr acpi 4 ,
|
2002-04-25 04:59:25 +04:00
|
|
|
.Xr eso 4 ,
|
2000-07-27 02:16:56 +04:00
|
|
|
.Xr isa 4 ,
|
|
|
|
.Xr isapnp 4 ,
|
|
|
|
.Xr ofisa 4 ,
|
2001-01-28 03:59:27 +03:00
|
|
|
.Xr pci 4 ,
|
|
|
|
.Xr pnpbios 4
|
1996-03-27 22:11:13 +03:00
|
|
|
.Sh AUTHORS
|
2001-04-03 00:42:19 +04:00
|
|
|
Jean-Marc Zucconi wrote the
|
1998-02-06 08:54:12 +03:00
|
|
|
.Fx
|
2004-12-02 18:02:37 +03:00
|
|
|
driver.
|
|
|
|
Matthieu Herrb ported it to
|
1998-02-06 08:54:12 +03:00
|
|
|
.Nx
|
|
|
|
and wrote this manual page.
|