-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuzz.c
65 lines (50 loc) · 1.33 KB
/
Buzz.c
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
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include "Buzz.h"
static int joystick_fd = -1;
int OpenJoystick(char *JoystickDevice)
{
if (JoystickDevice == NULL)
JoystickDevice = DEVNAME;
joystick_fd = open(JoystickDevice, O_RDONLY | O_NONBLOCK); /* read write for force feedback? */
if (joystick_fd < 0)
return joystick_fd;
/* maybe ioctls to interrogate features here? */
return joystick_fd;
}
int ReadJoystick(struct Joystick *JoystickEvent)
{
int bytes;
bytes = read(joystick_fd, JoystickEvent, sizeof(*JoystickEvent));
if (bytes == -1)
return 0;
if (bytes == sizeof(*JoystickEvent))
return 1;
printf("Unexpected bytes from controller: %d\n", bytes);
return -1;
}
void CloseJoystick()
{
close(joystick_fd);
}
int GetBuzzStatus(struct BuzzController *BuzzEvent)
{
int rc;
struct Joystick JoystickEvent;
if (joystick_fd < 0)
return -1;
/* memset(wjse, 0, sizeof(*wjse)); */
if ((rc = ReadJoystick(&JoystickEvent) == 1)) {
//JoystickEvent.Type &= ~JS_EVENT_INIT; /* ignore synthetic events */
BuzzEvent->ButtonID =JoystickEvent.Number % 5;
BuzzEvent->ControllerID =JoystickEvent.Number / 5;
BuzzEvent->State =JoystickEvent.Value;
BuzzEvent->Time =JoystickEvent.Time;
}
return rc;
}