summaryrefslogtreecommitdiff
path: root/src/linux_jstk.c
blob: e128de9a30b93d0f59706c5e415e3aeb76555af0 (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
 * Copyright 2007      by Sascha Hlusiak. <saschahlusiak@freedesktop.org>     
 *                                                                            
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is  hereby granted without fee, provided that
 * the  above copyright   notice appear  in   all  copies and  that both  that
 * copyright  notice   and   this  permission   notice  appear  in  supporting
 * documentation, and that   the  name of  Sascha   Hlusiak  not  be  used  in
 * advertising or publicity pertaining to distribution of the software without
 * specific,  written      prior  permission.     Sascha   Hlusiak   makes  no
 * representations about the suitability of this software for any purpose.  It
 * is provided "as is" without express or implied warranty.                   
 *                                                                            
 * SASCHA  HLUSIAK  DISCLAIMS ALL   WARRANTIES WITH REGARD  TO  THIS SOFTWARE,
 * INCLUDING ALL IMPLIED   WARRANTIES OF MERCHANTABILITY  AND   FITNESS, IN NO
 * EVENT  SHALL SASCHA  HLUSIAK  BE   LIABLE   FOR ANY  SPECIAL, INDIRECT   OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
 * DATA  OR PROFITS, WHETHER  IN  AN ACTION OF  CONTRACT,  NEGLIGENCE OR OTHER
 * TORTIOUS  ACTION, ARISING    OUT OF OR   IN  CONNECTION  WITH THE USE    OR
 * PERFORMANCE OF THIS SOFTWARE.
 *
 */


#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <unistd.h>
#include <sys/types.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <linux/joystick.h>

#include <xf86.h>
#include <xf86_OSproc.h>

#include "jstk.h"
#include "linux_jstk.h"


/***********************************************************************
 *
 * jstkOpenDevice --
 *
 * Open and initialize a joystick device
 * Returns the filedescriptor, or -1 in case of error
 *
 ***********************************************************************
 */

int
jstkOpenDevice(JoystickDevPtr joystick,int init)
{
  char joy_name[128];
  int driver_version;

  if ((joystick->fd = open(joystick->device, O_RDWR | O_NDELAY, 0)) < 0) {
    xf86Msg(X_ERROR, "Cannot open joystick '%s' (%s)\n", joystick->device,
            strerror(errno));
    return -1;
  }

  if (ioctl(joystick->fd, JSIOCGVERSION, &driver_version) == -1) {
    xf86Msg(X_ERROR, "Joystick: ioctl on '%s' failed: %s\n", joystick->device,
            strerror(errno));
    return -1;
  }
  if ((driver_version >> 16) < 2) {
    xf86Msg(X_WARNING, "Joystick: Driver version is only %d.%d.%d\n",
            driver_version >> 16,
            (driver_version >> 8) & 0xff,
            driver_version & 0xff);
  }

  if (ioctl(joystick->fd, JSIOCGAXES, &joystick->axes) == -1) {
    xf86Msg(X_ERROR, "Joystick: ioctl on '%s' failed: %s\n", joystick->device,
            strerror(errno));
    return -1;
  }
  if (ioctl(joystick->fd, JSIOCGBUTTONS, &joystick->buttons) == -1) {
    xf86Msg(X_ERROR, "Joystick: ioctl on '%s' failed: %s\n", joystick->device,
            strerror(errno));
    return -1;
  }

  /* Only show these information once, not every time the device is opened */
  if (init != 0) {
    if (ioctl(joystick->fd, JSIOCGNAME(128), joy_name) == -1) {
      xf86Msg(X_ERROR, "Joystick: ioctl on '%s' failed: %s\n", 
              joystick->device, strerror(errno));
      return -1;
    }

    xf86Msg(X_INFO, "Joystick: %s. %d buttons, %d axes\n", 
      joy_name, joystick->axes, joystick->buttons);
  }

  return joystick->fd;
}


/***********************************************************************
 *
 * jstkCloseDevice --
 *
 * close the handle.
 *
 ***********************************************************************
 */

void
jstkCloseDevice(JoystickDevPtr joystick)
{
  if ((joystick->fd >= 0)) {
    xf86CloseSerial(joystick->fd);
    joystick->fd = -1;
  }
}


/***********************************************************************
 *
 * jstkReadData --
 *
 * Reads data from fd and stores it in the JoystickDevRec struct
 * fills in the type of event and the number of the button/axis
 * return 1 if success, 0 otherwise. Success does not neccessarily
 * mean that there is a new event waiting.
 *
 ***********************************************************************
 */

int
jstkReadData(JoystickDevPtr joystick,
             enum JOYSTICKEVENT *event,
             int *number)
{
  struct js_event js;
  if (event != NULL) *event = EVENT_NONE;
  if (xf86ReadSerial(joystick->fd,
                     &js,
                     sizeof(struct js_event)
      ) != sizeof(struct js_event))
    return 0;

  switch(js.type & ~JS_EVENT_INIT) {
    case JS_EVENT_BUTTON:
      if (js.number < MAXBUTTONS)
      {
        joystick->button[js.number].pressed = js.value;
        if (event != NULL) *event = EVENT_BUTTON;
        if (number != NULL) *number = js.number;
      }
      break;
    case JS_EVENT_AXIS:
      if (js.number < MAXAXES) {
        if (abs(js.value) < joystick->axis[js.number].deadzone) {
          /* We only want one event when in deadzone */
          if (joystick->axis[js.number].value != 0) {
            joystick->axis[js.number].value = 0;
            if (event != NULL) *event = EVENT_AXIS;
            if (number != NULL) *number = js.number;
          }
        }else{
          joystick->axis[js.number].value = js.value;
          if (event != NULL) *event = EVENT_AXIS;
          if (number != NULL) *number = js.number;
        }
      }
      break;
  }

  /* If it is an JS_EVENT_INIT just save the state, but don't report
     as an event */
  if ((js.type & JS_EVENT_INIT) == JS_EVENT_INIT) {
    if (event != NULL) *event = EVENT_NONE;
  }
  return 1;
}