forked from tmackay/g13
-
Notifications
You must be signed in to change notification settings - Fork 0
/
g13_device.cpp
549 lines (480 loc) · 16.1 KB
/
g13_device.cpp
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
//
// Created by khampf on 07-05-2020.
//
#include "g13_device.hpp"
#include "g13.hpp"
#include "g13_fonts.hpp"
#include "g13_log.hpp"
#include "g13_manager.hpp"
#include "g13_profile.hpp"
#include "g13_stick.hpp"
#include "logo.hpp"
#include <fstream>
#include <unistd.h>
namespace G13 {
// *************************************************************************
G13_Device::G13_Device(libusb_device *dev, libusb_context *ctx,
libusb_device_handle *handle, int m_id)
: m_lcd(*this), m_stick(*this), device(dev), handle(handle),
m_id_within_manager(m_id), m_uinput_fid(-1), m_ctx(ctx) {
m_currentProfile = std::make_shared<G13_Profile>(*this, "default");
m_profiles["default"] = m_currentProfile;
for (bool &key : keys) {
key = false;
}
lcd().image_clear();
InitFonts();
InitCommands();
}
// *************************************************************************
std::string G13_Device::DescribeLibusbErrorCode(int code) {
/*
auto description = std::string(libusb_error_name(code)) + " (" +
std::to_string(code) + ") - " +
std::string(libusb_strerror((libusb_error)code));
*/
auto description = std::string(libusb_strerror((libusb_error)code));
return std::move(description);
// return "unknown error";
}
int G13CreateFifo(const char *fifo_name) {
// mkfifo(g13->fifo_name(), 0777); - didn't work
mkfifo(fifo_name, 0666);
chmod(fifo_name, 0777);
return open(fifo_name, O_RDWR | O_NONBLOCK);
}
int G13CreateUinput(G13_Device *g13) {
struct uinput_user_dev uinp {};
struct input_event event {};
const char *dev_uinput_fname =
access("/dev/input/uinput", F_OK) == 0
? "/dev/input/uinput"
: access("/dev/uinput", F_OK) == 0 ? "/dev/uinput" : nullptr;
if (!dev_uinput_fname) {
G13_ERR("Could not find an uinput device");
return -1;
}
if (access(dev_uinput_fname, W_OK) != 0) {
G13_ERR(dev_uinput_fname << " doesn't grant write permissions");
return -1;
}
int ufile = open(dev_uinput_fname, O_WRONLY | O_NDELAY);
if (ufile <= 0) {
G13_ERR("Could not open uinput");
return -1;
}
memset(&uinp, 0, sizeof(uinp));
char name[] = "G13";
strncpy(uinp.name, name, sizeof(name));
uinp.id.version = 1;
uinp.id.bustype = BUS_USB;
uinp.id.product = G13_PRODUCT_ID;
uinp.id.vendor = G13_VENDOR_ID;
uinp.absmin[ABS_X] = 0;
uinp.absmin[ABS_Y] = 0;
uinp.absmax[ABS_X] = 0xff;
uinp.absmax[ABS_Y] = 0xff;
// uinp.absfuzz[ABS_X] = 4;
// uinp.absfuzz[ABS_Y] = 4;
// uinp.absflat[ABS_X] = 0x80;
// uinp.absflat[ABS_Y] = 0x80;
ioctl(ufile, UI_SET_EVBIT, EV_KEY);
ioctl(ufile, UI_SET_EVBIT, EV_ABS);
/* ioctl(ufile, UI_SET_EVBIT, EV_REL);*/
ioctl(ufile, UI_SET_MSCBIT, MSC_SCAN);
ioctl(ufile, UI_SET_ABSBIT, ABS_X);
ioctl(ufile, UI_SET_ABSBIT, ABS_Y);
/* ioctl(ufile, UI_SET_RELBIT, REL_X);
ioctl(ufile, UI_SET_RELBIT, REL_Y);*/
for (int i = 0; i < 256; i++) {
ioctl(ufile, UI_SET_KEYBIT, i);
}
// Mouse buttons
for (int i = 0x110; i < 0x118; i++) {
ioctl(ufile, UI_SET_KEYBIT, i);
}
ioctl(ufile, UI_SET_KEYBIT, BTN_THUMB);
int retcode = write(ufile, &uinp, sizeof(uinp));
if (retcode < 0) {
G13_ERR("Could not write to uinput device (" << retcode << ")");
return -1;
}
retcode = ioctl(ufile, UI_DEV_CREATE);
if (retcode) {
G13_ERR("Error creating uinput device for G13");
return -1;
}
return ufile;
}
// *************************************************************************
void G13_Device::SendEvent(int type, int code, int val) {
memset(&m_event, 0, sizeof(m_event));
gettimeofday(&m_event.time, nullptr);
m_event.type = type;
m_event.code = code;
m_event.value = val;
write(m_uinput_fid, &m_event, sizeof(m_event));
}
void G13_Device::OutputPipeWrite(const std::string &out) const {
write(m_output_pipe_fid, out.c_str(), out.size());
}
void G13_Device::SetModeLeds(int leds) {
unsigned char usb_data[] = {5, 0, 0, 0, 0};
usb_data[1] = leds;
int error = libusb_control_transfer(
handle, LIBUSB_REQUEST_TYPE_CLASS | LIBUSB_RECIPIENT_INTERFACE, 9, 0x305,
0, usb_data, 5, 1000);
if (error != 5) {
G13_ERR("Problem setting mode LEDs: " + DescribeLibusbErrorCode(error));
return;
}
}
void G13_Device::SetKeyColor(int red, int green, int blue) {
int error;
unsigned char usb_data[] = {5, 0, 0, 0, 0};
usb_data[1] = red;
usb_data[2] = green;
usb_data[3] = blue;
error = libusb_control_transfer(
handle, LIBUSB_REQUEST_TYPE_CLASS | LIBUSB_RECIPIENT_INTERFACE, 9, 0x307,
0, usb_data, 5, 1000);
if (error != 5) {
G13_ERR("Problem changing color: " + DescribeLibusbErrorCode(error));
return;
}
}
/*! reads and processes key state report from G13
*
*/
int G13_Device::ReadKeypresses() {
unsigned char buffer[G13_REPORT_SIZE];
int size = 0;
int error =
libusb_interrupt_transfer(handle, LIBUSB_ENDPOINT_IN | G13_KEY_ENDPOINT,
buffer, G13_REPORT_SIZE, &size, 100);
if (error && error != LIBUSB_ERROR_TIMEOUT) {
G13_ERR("Error while reading keys: " << DescribeLibusbErrorCode(error));
if (error == LIBUSB_ERROR_NO_DEVICE || error == LIBUSB_ERROR_IO) {
G13_DBG("Giving libusb a nudge");
libusb_handle_events(m_ctx);
}
}
if (size == G13_REPORT_SIZE) {
parse_joystick(buffer);
m_currentProfile->ParseKeys(buffer);
SendEvent(EV_SYN, SYN_REPORT, 0);
}
return 0;
}
void G13_Device::ReadConfigFile(const std::string &filename) {
std::ifstream s(filename);
G13_OUT("reading configuration from " << filename);
if (s.fail()) G13_LOG(log4cpp::Priority::ERROR << "Error: " << strerror(errno));
else while (s.good()) {
// grab a line
char buf[1024];
buf[0] = 0;
buf[sizeof(buf) - 1] = 0;
s.getline(buf, sizeof(buf) - 1);
// strip comment
char *comment = strchr(buf, '#');
if (comment) {
comment--;
while (comment > buf && isspace(*comment))
comment--;
comment++;
*comment = 0;
}
// send it
if (buf[0]) {
G13_OUT(" cfg: " << buf);
Command(buf);
}
}
}
void G13_Device::ReadCommandsFromPipe() {
fd_set set;
FD_ZERO(&set);
FD_SET(m_input_pipe_fid, &set);
struct timeval tv {};
tv.tv_sec = 0;
tv.tv_usec = 0;
int ret = select(m_input_pipe_fid + 1, &set, nullptr, nullptr, &tv);
if (ret > 0) {
unsigned char buf[1024 * 1024];
memset(buf, 0, 1024 * 1024);
ret = read(m_input_pipe_fid, buf, 1024 * 1024);
G13_LOG(log4cpp::Priority::DEBUG << "read " << ret << " characters");
if (ret ==
960) { // TODO probably image, for now, don't test, just assume image
lcd().Image(buf, ret);
} else {
std::string buffer = reinterpret_cast<const char *>(buf);
auto lines = Helper::split<std::vector<std::string>>(
buffer, "\n\r", Helper::split::no_empties);
for (auto &cmd : lines) {
auto command_comment = Helper::split<std::vector<std::string>>(
cmd, "#", Helper::split::no_empties);
if (!command_comment.empty() && command_comment[0] != std::string("")) {
while (isspace(command_comment[0].back()))
command_comment[0].pop_back();
if (command_comment[0] != std::string("")) {
G13_OUT("command: " << command_comment[0]);
Command(command_comment[0].c_str());
}
}
}
}
}
}
FontPtr G13_Device::SwitchToFont(const std::string &name) {
FontPtr rv = pFonts[name];
if (rv) {
m_currentFont = rv;
}
return rv;
}
void G13_Device::SwitchToProfile(const std::string &name) {
m_currentProfile = Profile(name);
}
ProfilePtr G13_Device::Profile(const std::string &name) {
ProfilePtr rv = m_profiles[name];
if (!rv) {
rv = std::make_shared<G13_Profile>(*m_currentProfile, name);
m_profiles[name] = rv;
}
return rv;
}
G13_ActionPtr G13_Device::MakeAction(const std::string &action) {
if (action.empty()) {
throw G13_CommandException("empty action string");
}
if (action[0] == '>' || action[0] == '|') {
return G13_ActionPtr(new G13_Action_PipeOut(*this, &action[1], action[0] == '|'));
} else if (action[0] == '!') {
return G13_ActionPtr(new G13_Action_Command(*this, &action[1]));
} else {
return G13_ActionPtr(new G13_Action_Keys(*this, action));
}
// UNREACHABLE: throw G13_CommandException("can't create action for " +
// action);
}
// *************************************************************************
void G13_Device::Dump(std::ostream &o, int detail) {
o << "G13 id=" << id_within_manager() << std::endl;
o << " input_pipe_name=" << Helper::repr(m_input_pipe_name) << std::endl;
o << " output_pipe_name=" << Helper::repr(m_output_pipe_name) << std::endl;
o << " current_profile=" << m_currentProfile->name() << std::endl;
o << " current_font=" << m_currentFont->name() << std::endl;
if (detail > 0) {
o << "STICK" << std::endl;
stick().dump(o);
if (detail == 1) {
m_currentProfile->dump(o);
} else {
for (auto &_profile : m_profiles) {
_profile.second->dump(o);
}
}
}
}
struct commandAdder {
commandAdder(G13_Device::CommandFunctionTable &t, const char *name)
: _t(t), _name(name) {}
commandAdder(G13_Device::CommandFunctionTable &t, const char *name,
G13_Device::COMMAND_FUNCTION f)
: _t(t), _name(name) {
_t[_name] = std::move(f);
}
G13_Device::CommandFunctionTable &_t;
std::string _name;
commandAdder &operator+=(G13_Device::COMMAND_FUNCTION f) {
_t[_name] = std::move(f);
return *this;
};
};
void G13_Device::InitCommands() {
using Helper::advance_ws;
// const char *remainder;
commandAdder add_out(_command_table, "out", [this](const char *remainder) {
lcd().WriteString(remainder);
});
commandAdder add_pos(_command_table, "pos", [this](const char *remainder) {
int row, col;
if (sscanf(remainder, "%i %i", &row, &col) == 2) {
lcd().WritePos(row, col);
} else {
G13_ERR("bad pos : " << remainder);
}
});
commandAdder add_bind(_command_table, "bind", [this](const char *remainder) {
std::string keyname;
advance_ws(remainder, keyname);
std::string action = remainder;
try {
if (auto key = m_currentProfile->FindKey(keyname)) {
key->set_action(MakeAction(action));
} else if (auto stick_key = m_stick.zone(keyname)) {
stick_key->set_action(MakeAction(action));
} else {
G13_ERR("bind key " << keyname << " unknown");
return;
}
G13_LOG(log4cpp::Priority::DEBUG << "bind " << keyname << " [" << action
<< "]");
} catch (const std::exception &ex) {
G13_ERR("bind " << keyname << " " << action << " failed : " << ex.what());
}
});
commandAdder add_profile(
_command_table, "profile",
[this](const char *remainder) { SwitchToProfile(remainder); });
commandAdder add_font(_command_table, "font", [this](const char *remainder) {
SwitchToFont(remainder);
});
commandAdder add_mod(_command_table, "mod", [this](const char *remainder) {
SetModeLeds(atoi(remainder));
});
commandAdder add_textmode(
_command_table, "textmode",
[this](const char *remainder) { lcd().text_mode = atoi(remainder); });
commandAdder add_rgb(_command_table, "rgb", [this](const char *remainder) {
int red, green, blue;
if (sscanf(remainder, "%i %i %i", &red, &green, &blue) == 3) {
SetKeyColor(red, green, blue);
} else {
G13_ERR("rgb bad format: <" << remainder << ">");
}
});
commandAdder add_stickmode(
_command_table, "stickmode", [this](const char *remainder) {
std::string mode = remainder;
// TODO: this could be part of a G13::Constants class I think
const std::set<std::string> modes = {"ABSOLUTE", "RELATIVE",
"KEYS", "CALCENTER",
"CALBOUNDS", "CALNORTH"};
int index = 0;
for (auto &test : modes) {
if (test == mode) {
m_stick.set_mode((G13::stick_mode_t)index);
return;
}
index++;
}
G13_ERR("unknown stick mode : <" << mode << ">");
});
commandAdder add_stickzone(
_command_table, "stickzone", [this](const char *remainder) {
std::string operation, zonename;
advance_ws(remainder, operation);
advance_ws(remainder, zonename);
if (operation == "add") {
/* G13_StickZone* zone = */
m_stick.zone(zonename, true);
} else {
G13_StickZone *zone = m_stick.zone(zonename);
if (!zone) {
throw G13_CommandException("unknown stick zone");
}
if (operation == "action") {
zone->set_action(MakeAction(remainder));
} else if (operation == "bounds") {
double x1, y1, x2, y2;
if (sscanf(remainder, "%lf %lf %lf %lf", &x1, &y1, &x2, &y2) != 4) {
throw G13_CommandException("bad bounds format");
}
// TODO: Add center offset and bounds (or update zone)
zone->set_bounds(G13_ZoneBounds(
(unsigned char)(x1 * UCHAR_MAX),
(unsigned char)(y1 * UCHAR_MAX),
(unsigned char)(x2 * UCHAR_MAX),
(unsigned char)(y2 * UCHAR_MAX)
));
} else if (operation == "del") {
m_stick.RemoveZone(*zone);
} else {
G13_ERR("unknown stickzone operation: <" << operation << ">");
}
}
});
commandAdder add_dump(_command_table, "dump", [this](const char *remainder) {
std::string target;
advance_ws(remainder, target);
if (target == "all") {
Dump(std::cout, 3);
} else if (target == "current") {
Dump(std::cout, 1);
} else if (target == "summary") {
Dump(std::cout, 0);
} else {
G13_ERR("unknown dump target: <" << target << ">");
}
});
commandAdder add_log_level(_command_table, "log_level",
[this](const char *remainder) {
std::string level;
advance_ws(remainder, level);
G13_Manager::Instance()->SetLogLevel(level);
});
commandAdder add_refresh(
_command_table, "refresh",
[this](const char *remainder) { lcd().image_send(); });
commandAdder add_clear(_command_table, "clear",
[this](const char *remainder) {
lcd().image_clear();
lcd().image_send();
});
}
void G13_Device::Command(char const *str) {
const char *remainder = str;
try {
using Helper::advance_ws;
std::string cmd;
advance_ws(remainder, cmd);
auto i = _command_table.find(cmd);
if (i == _command_table.end()) {
G13_ERR("unknown command : " << cmd);
} else {
COMMAND_FUNCTION f = i->second;
f(remainder);
}
} catch (const std::exception &ex) {
G13_ERR("command failed : " << ex.what());
}
}
void G13_Device::RegisterContext(libusb_context *libusbContext) {
m_ctx = libusbContext;
int leds = 0;
int red = 0;
int green = 0;
int blue = 255;
LcdInit();
SetModeLeds(leds);
SetKeyColor(red, green, blue);
m_uinput_fid = G13CreateUinput(this);
m_input_pipe_name = G13_Manager::Instance()->MakePipeName(this, true);
m_input_pipe_fid = G13CreateFifo(m_input_pipe_name.c_str());
if (m_input_pipe_fid == -1) {
G13_ERR("failed opening input pipe " << m_input_pipe_name);
}
m_output_pipe_name = G13_Manager::Instance()->MakePipeName(this, false);
m_output_pipe_fid = G13CreateFifo(m_output_pipe_name.c_str());
if (m_output_pipe_fid == -1) {
G13_ERR("failed opening output pipe " << m_output_pipe_name);
}
}
void G13_Device::Cleanup() {
SetKeyColor(0, 0, 0);
remove(m_input_pipe_name.c_str());
remove(m_output_pipe_name.c_str());
ioctl(m_uinput_fid, UI_DEV_DESTROY);
close(m_uinput_fid);
libusb_release_interface(handle, 0);
libusb_close(handle);
}
G13_Device::~G13_Device() {
Cleanup();
}
// libusb_device_handle *G13_Device::Handle() const { return handle; }
libusb_device *G13_Device::Device() const { return device; }
} // namespace G13