-
Notifications
You must be signed in to change notification settings - Fork 16
/
input_socket.c
255 lines (231 loc) · 6.12 KB
/
input_socket.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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#include "input_socket.h"
#include <sys/socket.h>
#include <sys/types.h>
#include <netdb.h>
#include <sys/un.h>
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define PROGRAM_NAME "wmemulator"
static bool input_socket_init_from_addrinfo(struct addrinfo *addrinfo);
static int sock;
static char buf[512];
static size_t buf_len;
void input_socket_init_unix_at_path(char const *path)
{
struct sockaddr_un address = {
.sun_family = AF_UNIX
};
strncpy(address.sun_path, path, sizeof address.sun_path);
unlink(path);
input_socket_init((struct sockaddr *)&address, sizeof address);
}
void input_socket_init_ip_on_port(char const *port)
{
struct addrinfo hints = {
.ai_family = AF_UNSPEC,
.ai_socktype = SOCK_DGRAM,
.ai_flags = AI_PASSIVE
};
struct addrinfo *result_info;
int ret = getaddrinfo(NULL, port, &hints, &result_info);
if (ret)
{
printf(PROGRAM_NAME ": getaddrinfo: %s\n", gai_strerror(ret));
exit(1);
}
for (struct addrinfo *info = result_info; info; info = info->ai_next)
{
if (input_socket_init_from_addrinfo(info))
{
freeaddrinfo(result_info);
return;
}
}
printf(PROGRAM_NAME ": fatal: can't bind to port %s\n", port);
exit(1);
}
void input_socket_init(struct sockaddr *socket_address, socklen_t socket_address_size)
{
sock = socket(socket_address->sa_family, SOCK_DGRAM | SOCK_NONBLOCK, 0);
if (sock == -1)
{
perror(PROGRAM_NAME);
exit(1);
}
if (bind(sock, socket_address, socket_address_size))
{
perror(PROGRAM_NAME);
exit(1);
}
}
static bool input_socket_init_from_addrinfo(struct addrinfo *addrinfo)
{
sock = socket(addrinfo->ai_family, addrinfo->ai_socktype | SOCK_NONBLOCK, addrinfo->ai_protocol);
if (sock == -1)
{
return false;
}
if (bind(sock, addrinfo->ai_addr, addrinfo->ai_addrlen))
{
close(sock);
return false;
}
return true;
}
static void input_socket_unload(void)
{
if (close(sock))
{
perror(PROGRAM_NAME);
}
}
static bool input_socket_poll_event(struct input_event *event)
{
if (!buf_len)
{
buf_len = recv(sock, buf, sizeof(buf) - 1, 0);
if (buf_len == -1)
{
buf_len = 0;
if (!(errno == EAGAIN || errno == EWOULDBLOCK))
{
perror(PROGRAM_NAME);
}
return false;
}
}
buf[buf_len] = '\0';
printf("received %d bytes: %s\n", buf_len, buf);
event->type = INPUT_EVENT_TYPE_BUTTON;
char event_type_s[32], event_param_s[32];
int event_status;
if (sscanf(buf, "%32s %d %32s", event_type_s, &event_status, event_param_s) == EOF)
{
printf(PROGRAM_NAME ": received input in invalid format\n");
buf_len = 0;
return false;
}
if (strcmp(event_type_s, "emulator_control") == 0)
{
event->type = INPUT_EVENT_TYPE_EMULATOR_CONTROL;
if (strcmp(event_param_s, "quit") == 0)
{
event->emulator_control_event.control = INPUT_EMULATOR_CONTROL_QUIT;
}
else if (strcmp(event_param_s, "power_off") == 0)
{
event->emulator_control_event.control = INPUT_EMULATOR_CONTROL_POWER_OFF;
}
}
else if (strcmp(event_type_s, "hotplug") == 0)
{
event->type = INPUT_EVENT_TYPE_HOTPLUG;
if (event_status == 0)
{
event->hotplug_event.extension = NoExtension;
}
else if (strcmp(event_param_s, "nunchuk") == 0)
{
event->hotplug_event.extension = Nunchuk;
}
else if (strcmp(event_param_s, "classic") == 0)
{
event->hotplug_event.extension = Classic;
}
else if (strcmp(event_param_s, "balance_board") == 0)
{
event->hotplug_event.extension = BalanceBoard;
}
else
{
event->hotplug_event.extension = NoExtension;
}
}
else if (strcmp(event_type_s, "button") == 0)
{
event->type = INPUT_EVENT_TYPE_BUTTON;
event->button_event.pressed = event_status;
#define CHECK(Button) if (strcmp(event_param_s, #Button) == 0) event->button_event.button = INPUT_BUTTON_##Button
CHECK(HOME);
else CHECK(WIIMOTE_UP);
else CHECK(WIIMOTE_DOWN);
else CHECK(WIIMOTE_LEFT);
else CHECK(WIIMOTE_RIGHT);
else CHECK(WIIMOTE_A);
else CHECK(WIIMOTE_B);
else CHECK(WIIMOTE_1);
else CHECK(WIIMOTE_2);
else CHECK(WIIMOTE_PLUS);
else CHECK(WIIMOTE_MINUS);
else CHECK(NUNCHUK_C);
else CHECK(NUNCHUK_Z);
else CHECK(CLASSIC_UP);
else CHECK(CLASSIC_DOWN);
else CHECK(CLASSIC_LEFT);
else CHECK(CLASSIC_RIGHT);
else CHECK(CLASSIC_A);
else CHECK(CLASSIC_B);
else CHECK(CLASSIC_X);
else CHECK(CLASSIC_Y);
else CHECK(CLASSIC_L);
else CHECK(CLASSIC_R);
else CHECK(CLASSIC_ZL);
else CHECK(CLASSIC_ZR);
else CHECK(CLASSIC_PLUS);
else CHECK(CLASSIC_MINUS);
#undef CHECK
else
{
printf(PROGRAM_NAME ": received invalid 'button' parameter: %s\n", event_param_s);
buf_len = 0;
return false;
}
}
else if (strcmp(event_type_s, "analog_motion") == 0)
{
event->type = INPUT_EVENT_TYPE_ANALOG_MOTION;
event->analog_motion_event.moving = event_status;
#define CHECK(Motion) if (strcmp(event_param_s, #Motion) == 0) event->analog_motion_event.motion = INPUT_ANALOG_MOTION_##Motion
CHECK(IR_UP);
else CHECK(IR_DOWN);
else CHECK(IR_LEFT);
else CHECK(IR_RIGHT);
else CHECK(STEER_LEFT);
else CHECK(STEER_RIGHT);
else CHECK(NUNCHUK_UP);
else CHECK(NUNCHUK_DOWN);
else CHECK(NUNCHUK_LEFT);
else CHECK(NUNCHUK_RIGHT);
else CHECK(CLASSIC_LEFT_STICK_UP);
else CHECK(CLASSIC_LEFT_STICK_DOWN);
else CHECK(CLASSIC_LEFT_STICK_LEFT);
else CHECK(CLASSIC_LEFT_STICK_RIGHT);
else CHECK(MOTIONPLUS_UP);
else CHECK(MOTIONPLUS_DOWN);
else CHECK(MOTIONPLUS_LEFT);
else CHECK(MOTIONPLUS_RIGHT);
else CHECK(MOTIONPLUS_SLOW);
#undef CHECK
else
{
printf(PROGRAM_NAME ": received invalid 'analog_motion' parameter: %s\n", event_param_s);
buf_len = 0;
return false;
}
}
else
{
printf(PROGRAM_NAME ": received invalid event type: %s\n", event_type_s);
buf_len = 0;
return false;
}
buf_len = 0;
return true;
}
struct input_source input_source_socket = {
.unload = input_socket_unload,
.poll_event = input_socket_poll_event
};