SDL_sysjoystick.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:8k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@devolution.com
  17. */
  18. /*
  19.  * Joystick driver for the uhid(4) interface found in OpenBSD,
  20.  * NetBSD and FreeBSD.
  21.  *
  22.  * Maintainer: <vedge at csoft.org>
  23.  */
  24. #ifdef SAVE_RCSID
  25. static char rcsid =
  26.  "@(#) $Id $";
  27. #endif
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <unistd.h>
  31. #include <fcntl.h>
  32. #include <string.h>
  33. #include <errno.h>
  34. #include <dev/usb/usb.h>
  35. #include <dev/usb/usbhid.h>
  36. #include <usbhid.h>
  37. #include "SDL_error.h"
  38. #include "SDL_joystick.h"
  39. #include "SDL_sysjoystick.h"
  40. #include "SDL_joystick_c.h"
  41. #define MAX_UHID_JOYS 4
  42. #define MAX_JOY_JOYS 2
  43. #define MAX_JOYS (MAX_UHID_JOYS + MAX_JOY_JOYS)
  44. struct report {
  45. struct usb_ctl_report *buf; /* Buffer */
  46. size_t size; /* Buffer size */
  47. int rid; /* Report ID */
  48. enum {
  49. SREPORT_UNINIT,
  50. SREPORT_CLEAN,
  51. SREPORT_DIRTY
  52. } status;
  53. };
  54. static struct {
  55. int uhid_report;
  56. enum hid_kind kind;
  57. const char *name;
  58. } const repinfo[] = {
  59. { UHID_INPUT_REPORT, hid_input, "input" },
  60. { UHID_OUTPUT_REPORT, hid_output, "output" },
  61. { UHID_FEATURE_REPORT, hid_feature, "feature" }
  62. };
  63. enum {
  64. REPORT_INPUT = 0,
  65. REPORT_OUTPUT = 1,
  66. REPORT_FEATURE = 2
  67. };
  68. enum {
  69. JOYAXE_X,
  70. JOYAXE_Y,
  71. JOYAXE_Z,
  72. JOYAXE_SLIDER,
  73. JOYAXE_WHEEL
  74. };
  75. struct joystick_hwdata {
  76. int fd;
  77. char *path;
  78. enum {
  79. BSDJOY_UHID, /* uhid(4) */
  80. BSDJOY_JOY /* joy(4) */
  81. } type;
  82. struct report_desc *repdesc;
  83. struct report inreport;
  84. #if 0
  85. int axismin[];
  86. int axismax[];
  87. #endif
  88. };
  89. static char *joynames[MAX_JOYS];
  90. static char *joydevnames[MAX_JOYS];
  91. static int report_alloc(struct report *, struct report_desc *, int);
  92. static void report_free(struct report *);
  93. int
  94. SDL_SYS_JoystickInit(void)
  95. {
  96. char s[10];
  97. int i, fd;
  98. SDL_numjoysticks = 0;
  99. memset(joynames, NULL, sizeof(joynames));
  100. memset(joydevnames, NULL, sizeof(joydevnames));
  101. for (i = 0; i < MAX_UHID_JOYS; i++) {
  102. sprintf(s, "/dev/uhid%d", i);
  103. fd = open(s, O_RDWR);
  104. if (fd > 0) {
  105. joynames[SDL_numjoysticks++] = strdup(s);
  106. close(fd);
  107. }
  108. }
  109. for (i = 0; i < MAX_JOY_JOYS; i++) {
  110. sprintf(s, "/dev/joy%d", i);
  111. fd = open(s, O_RDWR);
  112. if (fd > 0) {
  113. joynames[SDL_numjoysticks++] = strdup(s);
  114. close(fd);
  115. }
  116. }
  117. /* Read the default USB HID usage table. */
  118. hid_init(NULL);
  119. return (SDL_numjoysticks);
  120. }
  121. const char *
  122. SDL_SYS_JoystickName(int index)
  123. {
  124. if (joydevnames[index] != NULL) {
  125. return (joydevnames[index]);
  126. }
  127. return (joynames[index]);
  128. }
  129. int
  130. SDL_SYS_JoystickOpen(SDL_Joystick *joy)
  131. {
  132. char *path = joynames[joy->index];
  133. struct joystick_hwdata *hw;
  134. struct hid_item hitem;
  135. struct hid_data *hdata;
  136. struct report *rep;
  137. int fd;
  138. fd = open(path, O_RDWR);
  139. if (fd < 0) {
  140. SDL_SetError("%s: %s", path, strerror(errno));
  141. return (-1);
  142. }
  143. hw = (struct joystick_hwdata *)malloc(sizeof(struct joystick_hwdata));
  144. if (hw == NULL) {
  145. SDL_OutOfMemory();
  146. close(fd);
  147. return (-1);
  148. }
  149. joy->hwdata = hw;
  150. hw->fd = fd;
  151. hw->path = strdup(path);
  152. hw->type = BSDJOY_UHID;
  153. hw->repdesc = hid_get_report_desc(fd);
  154. if (hw->repdesc == NULL) {
  155. SDL_SetError("%s: USB_GET_REPORT_DESC: %s", hw->path,
  156.     strerror(errno));
  157. goto usberr;
  158. }
  159. rep = &hw->inreport;
  160. if (report_alloc(rep, hw->repdesc, REPORT_INPUT) < 0) {
  161. goto usberr;
  162. }
  163. if (rep->size <= 0) {
  164. SDL_SetError("%s: Input report descriptor has invalid length",
  165.     hw->path);
  166. goto usberr;
  167. }
  168. hdata = hid_start_parse(hw->repdesc, 1 << hid_input);
  169. if (hdata == NULL) {
  170. SDL_SetError("%s: Cannot start HID parser", hw->path);
  171. goto usberr;
  172. }
  173. joy->naxes = 0;
  174. joy->nbuttons = 0;
  175. joy->nhats = 0;
  176. joy->nballs = 0;
  177. while (hid_get_item(hdata, &hitem) > 0) {
  178. char *s, *sp;
  179. switch (hitem.kind) {
  180. case hid_collection:
  181. switch (HID_PAGE(hitem.usage)) {
  182. case HUP_GENERIC_DESKTOP:
  183. switch (HID_USAGE(hitem.usage)) {
  184. case HUG_JOYSTICK:
  185. case HUG_GAME_PAD:
  186. s = hid_usage_in_page(hitem.usage);
  187. sp = malloc(strlen(s) + 5);
  188. sprintf(sp, "%s (%d)", s,
  189.     joy->index);
  190. joydevnames[joy->index] = sp;
  191. }
  192. }
  193. break;
  194. case hid_input:
  195. switch (HID_PAGE(hitem.usage)) {
  196. case HUP_UNDEFINED:
  197. break;
  198. case HUP_GENERIC_DESKTOP:
  199. switch (HID_USAGE(hitem.usage)) {
  200. case HUG_X:
  201. case HUG_Y:
  202. case HUG_Z:
  203. case HUG_SLIDER:
  204. case HUG_WHEEL:
  205. #if 0
  206. hw->axismin[joy->naxes] =
  207.     hitem.logical_minimum;
  208. hw->axismax[joy->naxes] =
  209.     hitem.logical_maximum;
  210. #endif
  211. joy->naxes++;
  212. break;
  213. }
  214. break;
  215. case HUP_BUTTON:
  216. joy->nbuttons++;
  217. break;
  218. }
  219. break;
  220. default:
  221. break;
  222. }
  223. }
  224. hid_end_parse(hdata);
  225. /* The poll blocks the event thread. */
  226. fcntl(fd, F_SETFL, O_NONBLOCK);
  227. return (0);
  228. usberr:
  229. close(hw->fd);
  230. free(hw->path);
  231. free(hw);
  232. return (-1);
  233. }
  234. void
  235. SDL_SYS_JoystickUpdate(SDL_Joystick *joy)
  236. {
  237. static struct hid_item hitem;
  238. static struct hid_data *hdata;
  239. static struct report *rep;
  240. int nbutton, naxe;
  241. Sint32 v;
  242. rep = &joy->hwdata->inreport;
  243. if (read(joy->hwdata->fd, rep->buf->data, rep->size) != rep->size) {
  244. return;
  245. }
  246. hdata = hid_start_parse(joy->hwdata->repdesc, 1 << hid_input);
  247. if (hdata == NULL) {
  248. fprintf(stderr, "%s: Cannot start HID parsern",
  249.     joy->hwdata->path);
  250. return;
  251. }
  252. for (nbutton = 0; hid_get_item(hdata, &hitem) > 0;) {
  253. switch (hitem.kind) {
  254. case hid_input:
  255. switch (HID_PAGE(hitem.usage)) {
  256. case HUP_UNDEFINED:
  257. continue;
  258. case HUP_GENERIC_DESKTOP:
  259. switch (HID_USAGE(hitem.usage)) {
  260. case HUG_X:
  261. naxe = JOYAXE_X;
  262. goto scaleaxe;
  263. case HUG_Y:
  264. naxe = JOYAXE_Y;
  265. goto scaleaxe;
  266. case HUG_Z:
  267. naxe = JOYAXE_Z;
  268. goto scaleaxe;
  269. case HUG_SLIDER:
  270. naxe = JOYAXE_SLIDER;
  271. goto scaleaxe;
  272. case HUG_WHEEL:
  273. naxe = JOYAXE_WHEEL;
  274. goto scaleaxe;
  275. }
  276. scaleaxe:
  277. v = (Sint32)hid_get_data(rep->buf->data, &hitem);
  278. if (v != 127) {
  279. if (v < 127) {
  280. v = -(256 - v);
  281. v <<= 7;
  282. v++;
  283. } else {
  284. v++;
  285. v <<= 7;
  286. v--;
  287. }
  288. } else {
  289. v = 0;
  290. }
  291. if (v != joy->axes[naxe]) {
  292. SDL_PrivateJoystickAxis(joy, naxe, v);
  293. }
  294. break;
  295. case HUP_BUTTON:
  296. v = (Sint32)hid_get_data(rep->buf->data,
  297.     &hitem);
  298. if (joy->buttons[nbutton] != v) {
  299. SDL_PrivateJoystickButton(joy,
  300.     nbutton, v);
  301. }
  302. nbutton++;
  303. break;
  304. }
  305. break;
  306. default:
  307. break;
  308. }
  309. }
  310. hid_end_parse(hdata);
  311. return;
  312. }
  313. /* Function to close a joystick after use */
  314. void
  315. SDL_SYS_JoystickClose(SDL_Joystick *joy)
  316. {
  317. report_free(&joy->hwdata->inreport);
  318. hid_dispose_report_desc(joy->hwdata->repdesc);
  319. close(joy->hwdata->fd);
  320. free(joy->hwdata->path);
  321. free(joy->hwdata);
  322. return;
  323. }
  324. void
  325. SDL_SYS_JoystickQuit(void)
  326. {
  327. int i;
  328. for (i = 0; i < MAX_JOYS; i++) {
  329. if (joynames[i] != NULL)
  330. free(joynames[i]);
  331. if (joydevnames[i] != NULL)
  332. free(joydevnames[i]);
  333. }
  334. return;
  335. }
  336. static int
  337. report_alloc(struct report *r, struct report_desc *rd, int repind)
  338. {
  339. int len;
  340. len = hid_report_size(rd, repinfo[repind].kind, &r->rid);
  341. if (len < 0) {
  342. SDL_SetError("Negative HID report size");
  343. return (-1);
  344. }
  345. r->size = len;
  346. if (r->size > 0) {
  347. r->buf = malloc(sizeof(*r->buf) - sizeof(r->buf->data) +
  348.     r->size);
  349. if (r->buf == NULL) {
  350. SDL_OutOfMemory();
  351. return (-1);
  352. }
  353. } else {
  354. r->buf = NULL;
  355. }
  356. r->status = SREPORT_CLEAN;
  357. return (0);
  358. }
  359. static void
  360. report_free(struct report *r)
  361. {
  362. if (r->buf != NULL) {
  363. free(r->buf);
  364. }
  365. r->status = SREPORT_UNINIT;
  366. }